美文网首页
umount.nfs4: /mnt: device is bus

umount.nfs4: /mnt: device is bus

作者: 木头_95b3 | 来源:发表于2020-07-29 14:19 被阅读0次

    取消挂载报错:

    [root@localhost ~ 14:02:51]#umount /mnt/
    umount.nfs4: /mnt: device is busy
    

    原因就是挂载的目录被其它进程占用了,需要找出占用的进程,杀掉;再umount 就可以了

    需要用到 fuser 命令,如果没有就安装一下

    yum install -y psmisc
    

    查看挂载目录被谁占用了:

    [root@localhost ~ 14:02:00]#fuser -m -v /mnt/
                         用户     进程号 权限   命令
    /mnt:                root     kernel mount /mnt
                         root       4848 ..c.. bash
    
    

    使用kill -9 结束占用挂载进程

    [root@localhost / 14:13:57]#kill -9 4848
    

    再执行umount卸载命令就可以了:

    [root@localhost / 14:14:08]#umount /mnt
    

    相关文章

      网友评论

          本文标题:umount.nfs4: /mnt: device is bus

          本文链接:https://www.haomeiwen.com/subject/kzmhrktx.html