mount error(16): Device or resource busy Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
时间: 2024-03-13 10:46:57 浏览: 305
CentOS6挂载linux7samba服务时报错:mount error(22): Invalid argument Refer to the mount.cifs(8) manual page (
这个错误通常是因为正在使用该设备或资源,导致无法挂载。您可以尝试使用以下命令来查看哪个进程正在使用该设备或资源:
```
sudo lsof +D /path/to/mount/point
```
然后,您可以尝试终止该进程,或者等待该进程完成后再进行挂载。如果您确定没有其他进程使用该设备或资源,则可能是由于之前的挂载未正确卸载而导致的。在这种情况下,您可以尝试强制卸载该设备或资源,然后重新挂载:
```
sudo umount -f /path/to/mount/point
sudo mount -t cifs //server/share /path/to/mount/point -o username=user,password=pass
```
其中,`//server/share` 是您要挂载的共享目录,`/path/to/mount/point` 是您要挂载到的本地目录,`username` 和 `password` 是访问该共享目录所需的用户名和密码。
阅读全文