How to mount linux
How to mount linux? In view of this problem, this article introduces the corresponding analysis and answers in detail, hoping to help more partners who want to solve this problem to find a more simple and feasible way.
The way to mount CD, U disk and other devices under 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
In order to access files outside the root directory in Linux, you need to "associate" them to a directory under the root directory to achieve. This association operation is "mount", and this directory is the "mount point". The process of unassociating this relationship is called "unmounting".
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 file will be hidden under the mount point.
This is the answer to the question about how to mount linux. I hope the above content can be of some help to you. If you still have a lot of doubts to solve, you can follow the industry information channel to learn more about it.