我正在使用Ubuntu 10.04.3 LTS.我有一个使用CIFS协议的NAS.我已经安装了一份.我根本不使用fstab.运行mount会产生以下结果:
//10.0.1.38/FOO on /home/s3backup/S3Backup/mnt/FOO type cifs (ro,mand)
当我尝试卸载它时,我得到以下内容:
$sudo umount mnt/FOO This utility only unmounts cifs filesystems. This utility only unmounts cifs filesystems.
我也尝试了-l选项,它产生了相同的结果.有什么想法吗?
谢谢.
我在CentOS 5.4上遇到了同样的问题,并在
RedHat bug report中找到了一种解决方法,建议使用-i来告诉它不要使用umount.< filesystem>帮手.
原文链接:https://www.f2er.com/ubuntu/348284.html在你的情况下,只需运行
umount -i /home/s3backup/S3Backup/mnt/FOO
这有用,虽然它会将以下内容写入stderr:
umount: //10.0.1.38/FOO: not found umount: /home/s3backup/S3Backup/mnt/FOO: not mounted umount: //10.0.1.38/FOO: not found umount: /home/s3backup/S3Backup/mnt/FOO: not mounted