Students familiar with Linux should know the Mount command.
In Linux, everything is file. Hard disk partitions are present in the file directory.
If we want to access the mobile HDD, USB stick etc We must mount these devices to
A directory in our Linux file system so that we can access the inside
Capacity.
The general format of the Mount command is:
Mount [-t filetypes] [-o option] device mount directory to mount
Where filetypes can not be specified, Mount automatically chooses the appropriate file type for us.
The types of filetypes include:
Disc or disc Image: iso9660
DOS FAT16 file system: MSDOS
Windows 9x FAT32 file system: VFAT
Windows NT NTFS file system: NTFS
Mount Windows file network share: SMBFS
UNIX (LINUX) file network share: NFS
The command options are:
Loop: Used to attach a file as a hard disk partition on the system
RO: Hook device with read-only method
RW: Mount device with read-write mode
Iocharset: Specifies the character set used to access the file system
For example, mount a disc image:
To create a mount directory:
#mkdir/mnt/vcdrom
Mount the Mydisk.iso file in the home directory to/mnt/vcdrom in the iso9660 type
#mount-O loop-t iso9660/home/sunky/mydisk.iso/mnt/vcdrom
Reprint please indicate the author: Xiao Liu
Mount of Linux commands