• umount 报错


     在umount时报错:

    [root@node1 ~]# umount /usb
    umount: /usb: target is busy.
    (In some cases useful info about processes that use
    the device is found by lsof(8) or fuser(1))

    原因:其他进程在使用

    解决: 查找进程,杀掉,umount

    [root@node1 ~]# fuser -m /usb
    /usb: 25795c 25858c

    [root@node1 ~]# kill -9 25795

    [root@node1 ~]# umount /usb

  • 相关阅读:
    2.6
    zuoye
    练习1
    练习
    练习
    4
    3
    2
    1
    1.3
  • 原文地址:https://www.cnblogs.com/Z-style/p/6068382.html
Copyright © 2020-2023  润新知