umount:/:目标正忙

umount:/:目标正忙

当我运行命令时

umount /dev/mapper/ubuntu--gnome--vg-root我得到:

umount: /: target is busy
        (In some cases useful info about processes that
         use the device is found by lsof(8) or fuser(1).)

我尝试了命令lsof和的一些不同选项fuser,但到目前为止没有效果。

有人知道如何解决这个问题吗?

答案1

请尝试以下命令:

umount -l /PATH/OF/BUSY-DEVICE
umount -f /PATH/OF/BUSY-NFS(NETWORK-FILE-SYSTEM)

参考: https://stackoverflow.com/questions/7878707/umount-a-busy-device

答案2

尝试这些:

dmsestup ls

如果您的输出包含“ubuntu--gnome--vg-root”,则首先尝试停用 lvm 卷,然后尝试卸载您的卷:

lvchange -an "Path-to-Your-LVM-Volume (in this case: /dev/mapper/ubuntu--gnome--vg-root)"

umount /dev/mapper/ubuntu--gnome--vg-root

相关内容