美文网首页
解决umount报device is busy问题

解决umount报device is busy问题

作者: 弱弱的孤狼 | 来源:发表于2018-02-27 10:31 被阅读0次
使用的命令:fuser
操作步骤:
  1. 首先,确认有那些进程需要杀掉
    $ fuser -cu /mnt

  2. 其次,向进程发出SIGKILL信号
    $ fuser -ck /mnt

  3. 最后,确认
    $ fuser -c /mnt

  4. 再次执行umount即可
    $ sudo umount /mnt

相关文章

网友评论

      本文标题:解决umount报device is busy问题

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