无法卸载 CIFS 挂载?

无法卸载 CIFS 挂载?

我正在使用 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 选项,结果相同。有什么想法吗?

谢谢。

答案1

我在 CentOS 5.4 上遇到了同样的问题,并在RedHat 错误报告,建议使用-i,告诉它不要使用umount.<filesystem>助手。

对于你的情况,只需运行

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

相关内容