English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Linux umount Command (full English name: unmount)
The umount command can unmount the filesystem currently mounted in the Linux directory.
umount [-ahnrvV][-t <filesystem type>][filesystem]
Parameter:
The following two commands unmount the filesystem through device name and mount point, and output detailed information at the same time:
-v /dev/sda1 Unmount through Device Name /dev/sda1 Unmounted -v /mnt/mymount/ Unmount through Mount Point /tmp/diskboot.img umounted
If the device is busy, the unmount operation will fail. Common reasons for unmount failure include that the current directory of an open shell is a directory within the mounted point:
-v /mnt/mymount/ umount: /mnt/mymount: device is busy umount: /mnt/mymount: device is busy