Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux系統常見問題解答 >> linux中yum update被占用怎麼辦

linux中yum update被占用怎麼辦

日期:2017/1/20 17:32:50      編輯:Linux系統常見問題解答

 使用yum安裝計劃任務功能,結果提示:

  復制代碼

  代碼如下:

  # yum -y install vixie-cron

  Loaded plugins: fastestmirror, refresh-packagekit, security

  Existing lock /var/run/yum.pid: another copy is running as pid 25960.

  Another app is currently holding the yum lock; waiting for it to exit...

  可能是系統自動升級正在運行,yum在鎖定狀態中。

  已經有一個yum進程在運行了,使用kill干掉它:

  復制代碼

  代碼如下:

  # kill -s 9 25960

  # ps aux|grep yum

  root 6744 0.0 0.0 103260 900 pts/1 S+ 14:59 0:00 grep yum

  root 25960 0.0 0.0 0 0 ? Z Sep19 0:01 [yumBackend.py]

  很遺憾,kill對付不了它,那怎麼辦呢?

  可以通過強制關掉yum進程:

  #rm -f /var/run/yum.pid

  然後就可以使用yum了。如果不行可以重啟yum

  /sbin/service yum-updatesd restart

  以下是其它網友的補充:

  補充一、

  有時,在linux下yum update會提示:

  Another app is currently holding the yum lock解決方案

  解決辦法是干掉緩存中的yum進程,重啟yum。

  清掉緩存中的進程:

  rm -f /var/run/yum.pid

  重啟yum(我的系統是fedora)

  systemctl status yum-updatesd.service

  centos用戶使用:

  /sbin/service yum-updatesd restart

  補充二、

  在CentOS上yum -y install gcc* gcc-c++* autoconf* automake* zlib* libxml* ncurses-devel* libmcrypt* libtool*時出現錯誤:

\linux中yum update被占用怎麼辦 三聯

  1)怎麼回事呢?根據提示,原來是系統進程已經有一個update在運行了。在進程裡查看下:ps -ef | grep update

\

  2)通過kill殺掉這個進程,可殺掉之後,錯誤依舊。原來在/var/run目錄下,還有yum這個進程ID,需要將這個進程id文件強制刪除掉:

\

  3)同時重啟下yum更新服務,如下:

\

  4)最後重新yum -y install gcc* gcc-c++* autoconf* automake* zlib* libxml* ncurses-devel* libmcrypt* libtool* ,已正常

\
Copyright © Windows教程網 All Rights Reserved