ABOUT ME

Today
Yesterday
Total
  • centos umont target is busy 해결법
    프로그래밍 2020. 12. 9. 11:04
    반응형

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


    [root@localhost ~]# fuser -v /home
                         USER        PID ACCESS COMMAND
    /home:             root     kernel mount /home
                         root      10216 ..c.. bash
    -v 옵션으로 상황을 파악하고


    [root@localhost ~]# fuser -ck /home
    /backup:             10216c
    [root@localhost ~]# umount /home
    [root@localhost ~]#
    -ck 옵션으로 kill 한 다음, umount 를 합니다.
    fuser -ck 마운트 포인트 하면, 거의 대부분 해결됩니다.

    반응형

    '프로그래밍' 카테고리의 다른 글

    댓글

Designed by Tistory.