linux – Umount无法卸载

前端之家收集整理的这篇文章主要介绍了linux – Umount无法卸载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不能在我的 Linux机器上卸载而不是在umount -f上卸载
请指教?
[root@Linux umount /mnt/cdrom
  umount: /mnt/cdrom: device is busy
  umount: /mnt/cdrom: device is busy

解决方法

您可以使用热熔器查看哪些进程仍在使用该装载:
fuser -mu /mnt/cdrom

如果要通过fuser终止这些进程,请使用-k:

fuser -mk /mnt/cdrom

我经常(因为:我希望我每次都有镍……)发现自己无法卸下,因为我已经为自己安装了一个坐骑,然后su to root.我的旧shell仍然在挂载点上,所以我无法卸载.尝试退出root shell,看看你的用户的shell是否仍然在/ mnt / cdrom下.

原文链接:https://www.f2er.com/linux/397062.html

猜你在找的Linux相关文章