반응형

/********************************************************************************************
-- Title : [Lnx] 진행중인 yum 삭제하기
-- Reference : yoonka.tistory.com
-- Key word : yum kill another app is currently holding the yum lock; waiting for it to exit...
********************************************************************************************/

-- 1. root로 로긴
    # su - root

-- 2. 진행되고 있는 yum 확인
    # ps -aef | grep yum

-- 3. 진행중인 yum 프로세스 kill
    # kill -9 [pid]

-- 4. yum 프로세서를 담고 잇는 파일 날리기
    # cd /var/run
    # rm yum.pid


반응형

+ Recent posts