Linux系統中執行yum時提示被鎖住瞭解決辦法
阿新 • • 發佈:2019-01-10
當大家用linux的yum時,是不是經常會遇到下面的情況
Loaded plugins: fastestmirror
Existing lock /var/run/yum.pid: another copy is running as pid 3404.
Another app is currently holding the yum lock; waiting for it to exit…
The other application is: yum
Memory : 41 M RSS (253 MB VSZ)
Started: Wed Apr 11 07:03:37 2012 - 00:25 ago
State : Sleeping, pid: 3404
遇到上面情況我們使用兩條語句就可以搞定它。
首先我們執行以下命令
rm -r /var/run/yum.pid
rm:是否刪除 一般檔案 “/var/run/yum.pid”? y
如上所示,輸入y回車。
然後我們在執行以下命令。
/sbin/service yum-updatesd restart
停止 yum-updatesd: [確定]
啟動 yum-updatesd: [確定]
最後一步,執行以下命令即可繼續安裝我們自己的程式了。
yum install gcc*