Home > Article > Operation and Maintenance > How to mount linux
How to mount linux
The way to mount devices such as CD-ROMs and U-disks in Linux is to use the mount command , first use fdisk -l to view the device, and then use mount /dev/u disk /mnt/u_disk to mount it.
Mounting concept
If files outside the root directory in Linux want to be accessed, they need to be "associated" with A directory under the root directory is implemented. This association operation is "mounting", and this directory is the "mount point". The process of releasing this association is called "uninstalling".
Note: The directory of the "mount point" requires the following requirements:
(1) The directory exists in advance, you can use the mkdir command to create a new directory;
(2) The mount point directory cannot be used by other processes;
(3) The original files under the mount point will be hidden.
Recommended: linux basic tutorial
The above is the detailed content of How to mount linux. For more information, please follow other related articles on the PHP Chinese website!