yum error
2019. 2. 28. 09:39ㆍIT-OS/Linux
반응형
VMware 에서 power > suspend 걸었다가 다시 실행해서 yum 실행했더니... 이런 메세지만 나온다.
Existing lock /var/run/yum.pid: another copy is running as pid 17831.
Another app is currently holding the yum lock; waiting for it to exit...
The other application is: PackageKit
Memory : 89 M RSS (433 MB VSZ)
Started: Thu Feb 28 09:07:39 2019 - 06:45 ago
State : Sleeping, pid: 17831
다른 process가 yum 실행중이고 나오지를 않아서 생기는 원인인듯~
( yum process kill )
# ps -ef | grep yum (프로세스 확인)
# kill -9 17831 (프로세스 죽이기)
( /var/run/yum.pid 삭제 )
# rm -rf /var/run/yum.pid
이후에는 YUM 잘됨! ^^
'IT-OS > Linux' 카테고리의 다른 글
Character Device File vs Block Device File (0) | 2019.03.15 |
---|---|
Linux [CentOS] - (Licmd : Linux Command) 유용한 명령어 모음 (3) - PS (프로세스보기) (0) | 2019.03.08 |
RPM, YUM 설치 방법 (1) (0) | 2019.02.25 |
[CentOS 설치] (펌) (0) | 2019.02.18 |
Linux [CentOS] - (Licmd : Linux Command) 유용한 명령어 모음 (2) (0) | 2019.02.14 |