在Linux系统中使用yum安装软件时,提示yum处于锁定状态 Another app is currently holding the yum lock; waiting for it to exit... 通过查询得知,可能是系统内部在自动升级,可通过强制关闭yum进程 #rm -f /var/run/yum.pid 之后yum就可以正常使用了…
可能是系统自动升级正在运行,yum在锁定状态中. 已经有一个yum进程在运行了,使用kill干掉它: # # ps aux|grep yum root pts/ S+ : : grep yum root ? Z Sep19 : [yumBackend.py] <defunct> 很遗憾,kill对付不了它,那怎么办呢? 可以通过强制关掉yum进程: #rm -f /var/run/yum.pid 然后就可以使用yum了.…
可能是系统自动升级正在运行,yum在锁定状态中. 可以通过强制关掉yum进程: #rm -f /var/run/yum.pid 然后就可以使用yum了.…
yum安装时出现下面情况 可能是yum升级一些文件时,出现这种情况 解决方法: #rm -f /var/run/yum.pid 强制关掉yun进程…
yum被锁定无法使用 Another app is currently holding the yum lock; waiting for it to exit.. 解决方法: rm -rf /var/run/yum.pid 来强行解除锁定,然后你的yum就可以运行了…
Another app is currently holding the yum lock; waiting for it to exit... 另一个应用程序是:PackageKit 内存: 27 M RSS (1.4 GB VSZ) 已启动: Sat Oct 8 10:49:10 2016 - 01:35之前 状态 :睡眠中,进程ID:2637 Another app is currently holding the yum lock; waiting for it to exit... 另…
刚安装完虚拟机,用xshell连接上linux后,安装程序时一直出现这个信息Another app is currently holding the yum lock; waiting for it to exit... 解决方法:rm -rf /var/run/yum.pid 来强行解除锁定,然后你的yum就可以运行了 可以看博文 http://www.cnblogs.com/IceKernel/articles/2587274.html…
yum 安装报错 "Another app is currently holding the yum lock; waiting for it to exit... The other application is: PackageKit Memory : 153 M RSS (266 MB VSZ) Started: Thu Jul 12 00:03:05 2012 - 06:17 ago State : Sleeping, pid: 4018Another app is currently…
centos在yum install报错:Another app is currently holding the yum lock,这个问题可能是很多的新手经常遇到问题,之前也有人问我,包括本人在刚刚学习centos的时候也遇到过. Another app is currently holding the yum lock,这个意思很明显就是说,有另外一个应用在使用yum,被占用锁定了,所以咋办呢,直接结束掉呗. 可以通过强制关掉yum进程: # rm -f /var/run/yum.pid…
使用yum grouplis列举系统中以组安装的包,结果提示: # yum grouplist Loaded plugins: fastestmirror, refresh-packagekit, security Existing . Another app is currently holding the yum lock; waiting for it to exit... 应该是网上说可能系统正在自动升级,反正yum在锁定状态中,已经有一个yum进程在运行了,可以使用kill杀掉它: #…