강제 umount device is busy

//강제 umount device is busy

강제 umount device is busy

umount /backup2
umount: /backup2: device is busy

 

강제로 마운트를 해제
umount -l /backup2/

 

또는

fuser 명령어 사용

해당 디렉토리를 사용하는 사용자 또는 프로레스 확인
fuser -cu /backup2
해당 디렉토리를 사용하는 프로레스 강제종료
fuser -ck /backup2

옵션
-c : current directory
-k : 지정된 파일과 관련된 모든 프로세스들을 KILL
-u : 프로세스 ID(PID)의 소유자를 보여줌

 

위 명령어로 프로레스 강제 종료후  마운트 해지
umount /backup2

By |2019-10-24T15:02:55+00:0010월 24th, 2019|Categories: linux|Tags: , , |0 Comments

About the Author: