有另外的一个程序占用了yum进程,所以YUM被锁上了.等待他结束.下面的话是占用YUM的PackageKit进程的信息.你可先把PackageKit进程kill(杀死)再运行就行了用下面的命令就行 pid: 19319是PackageKit进程标志符.每一次都不一样kill 19319反馈 收藏
【题目】yum安装软件包提示错误Another app is currently holding the yum lock;waiting for it to exit...T he other application is: PackageKitMemory : 24 M RSS( 40 MB V SZ)Started: Mon Oct 24 18:31:26 2011 - 1:20:58agoState : Sleeping, pid: 19319是什么原因?应该怎么解决?
当你遇到“another app is currently holding the yum lock; waiting for it to exit... the other application is: packagekit”这一错误提示时,意味着PackageKit这个应用程序正在使用yum的锁,导致你无法同时进行其他的yum操作。以下是对这一问题的详细解析和解决方案: 1. 理解问题背景 在Linux系统中,尤其是基于RP...
yum提示Another app is currently holding the yum lock; waiting for it to exit...问题的解决 1、执行yum安装命令,报如下异常 2、可以看出有进程正在运行,可能是yum在自动升级 先尝试使用kill -9 看能不能杀死 如果干不掉的话就使用下面的命令,强制杀死进程 3、执行强制杀死进程 [root@doris3 jvm]# rm -...
yum提示another app is currently holding the yum lock;waiting for it to exit 有的时候使用yum命令的时候提示如下错误信息: 可能是系统自动升级正在运行,yum在锁定状态中。 可以通过强制关掉yum进程: #rm -f /var/run/yum.pid 然后就可以使用yum了。
页面提示:Another app is currently holding the yum lock; waiting for it to exit... 分析:已经有了一个yum进程在运行,所以yum在锁定状态中。(使用kill去干掉,无法干掉) 方法:强制干掉yum进程:rm-f /var/run/yum.pid(解决后,yum命令可正常使用)
yum安装软件包提示错误Another app is currently holding the yum lock; waiting for it to exit...The other application is:PackageKitMemory :24 M RSS ( 40 MB VSZ)Started:Mon Oct 24 18:31:26 2011 - 1:20:58 agoState :Sleeping,pid:19319是什么原因?应该怎么解决? 扫码下载作业帮搜索答疑一搜即得...
2、之后我们再来进行安装,此时就会提示Another app is currently holding the yum lock; waiting for it to exit... [root@server opt]#yum install -y gcc 已加载插件:fastestmirror 源'myrpm' 在配置文件中未指定名字,使用标识代替 /var/run/yum.pid 已被锁定,PID 为 969 的另一个程序正在运行。
复制代码代码如下:# yum -y install vixie-cronLoaded plugins: fastestmirror, refresh-packagekit, securityExisting 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提示Another app is currently holding the yum lock; waiting for it to exit竟然这样解决最快 原因:已经有一个yum进程在运行了,使用kill干掉它: ## pid就是进程id# kill -s 9 pid# ps aux|grep yumroot 6744 0.0 0.0 103260 900 pts/1 S+ 14:59 0:00 grep yumroot 25960 0.0 0.0 0 0...