The content originates from the people's post and Telecommunications press "Linux command Application big dictionary"
tell 729 commands, 1935 examples
Learn about the Linux system's reference books, desk book, encountered the command or command not understand the options can be found
Strive to publish content every day
Umount Command
use the umount command to unload a file system, such as a specified partition, disc,U -disk, or removable hard disk. umount can uninstall the file system currently mounted in the Linux directory, in addition to specifying the file system directly, you can also use the device name or mount directory to represent the file system.
Command syntax:
umount [ options ] [ devices | Mount Directory ]
The meanings of the options in the command are as shown in the table.
table umount command options meaning
Options |
Meaning |
-A |
Uninstall all file systems recorded in the /etc/mtab |
-N |
do not store information in the/etc/mtab file when uninstalling |
-R |
If the uninstallation cannot be successful, try to re-mount the file system in a read-only manner |
-F |
Forcing the file system to unload |
-O < options > |
Use the file system option specified in the/etc/fstab file when uninstalling |
-T < file system types > |
Uninstalls only file systems of the specified type |
Example: unmount the disk partition /dev/sda5 file system.
[Email protected] ~]# UMOUNT/DEV/SDA5
Example: Unmount The disk partition file system where the/mnt/www directory resides.
[Email protected] ~]# umount/mnt/www
This article is from the "airfish2000" blog, make sure to keep this source http://airfish2000.blog.51cto.com/10829608/1873527
Umount Command--linux command application of large dictionary 729 commands interpretation