another app is currently hold yum lock问题

问题描述:

使用yum时出现下图错误:

问题原因:由于yum被另外一个程序使用,以被锁定。

解决方法:可以通过强制杀死进程

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

以上问题是很多新手常碰到的问题,笔者也时遇见过的,今天又遇见了,想写出来与正在学习linux的朋友分享,我学习的时候也是又好多网友帮助!不喜欢不要喷我哦!

时间: 2024-10-10 20:02:44

another app is currently hold yum lock问题的相关文章

Another app is currently holding the yum lock; waiting for it to exit 解决方法

Another app is currently holding the yum lock; waiting for it to exit... The other application is: PackageKit Memory : 46 M RSS (925 MB VSZ) Started: Thu Jul 6 08:40:45 2017 - 01:57 ago State : Running, pid: 10884 解决方法:手工杀死yum进程 sudo kill -9 10884

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 Error Another app is currently holding the yum lock; waiting for it to exit

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: 4018 Another app is currently holding t

Centos Another app is currently holding the yum lock

yum命令用ctrl+z命令中断后,再运行yum时,出现: Existing lock /var/run/yum.pid: another copy is running as pid 3046. Another app is currently holding the yum lock; waiting for it to exit... Another app is currently holding the yum lock; waiting for it to exit... Anoth

yum update时候出现Another app is currently holding the yum lock解决方法

[[email protected] ]# yum install app* Existing lock /var/run/yum.pid: another copy is running as pid 3807. Another app is currently holding the yum lock; waiting for it to exit... Another app is currently holding the yum lock; waiting for it to exit

yum提示another app is currently holding the yum lock;waiting for it to exit

强制关掉yum进程:#rm -f /var/run/yum.pid然后就可以使用yum了. yum提示another app is currently holding the yum lock;waiting for it to exit,布布扣,bubuko.com

解决linux 出现如下报错:Another app is currently holding the yum lock;

[[email protected] network-scripts]# yum install vim Loaded plugins: fastestmirror Existing lock /var/run/yum.pid: another copy is running as pid 2503. Another app is currently holding the yum lock; waiting for it to exit... The other application is:

yum下提示Another app is currently holding the yum lock

解决方案: 1.查看:ps -ef | grep yum root      3160     1  0 14:47 ?        00:00:00 /usr/bin/python -tt /usr/sbin/yum-updatesd root      3340  3160  0 14:47 ?        00:00:00 /usr/bin/python -tt /usr/libexec/yum-updatesd-helper --check --dbus root      3458

another app is currently holding the yum lock;waiting for it to exit解决

有时用yum升级一些文件时,会出现以下情况: another app is currently holding the yum lock;waiting for it to exit... 可以通过强制关掉yum进程: www.2cto.com #rm -f /var/run/yum.pid 然后就可以使用yum了.