1. 程式人生 > >解決umount: /home: device is busy

解決umount: /home: device is busy

 取消掛載/home時出現umount: /home: device is busy,

    原因是因為有程式在使用/home目錄,我們可以使用fuser檢視那些程式的程序,

    然後殺掉就可以了。

    [[email protected] home]# fuser -m /home

    /home: 10278c 10279c 10280c 10281c 10282c 10295 10365 18222c

    命令:kill -9 pid

其他還有很多命令:fuser -m /home

 fuser -kvm /home 

umount -l /home 強行解除掛載