|
|
是不是一次只能执行一个YUM进程?如果你想YUM软件时,系统同时在YUM别的,就会出现:
[root@localhost ~]# yum install xmss
Loading "installonlyn" plugin
Existing lock /var/run/yum.pid: another copy is running. Aborting.
[root@localhost ~]#
是吧?但为什么我中止不了这个进程呢?
[root@localhost ~]# ps aux|grep yum
root 3356 0.0 1.4 22496 10952 tty6 T 10:34 0:00 /usr/bin/python /usr/bin/yum install xmms
root 4527 0.0 0.0 4744 672 pts/1 R+ 12:52 0:00 grep yum
[root@localhost ~]# kill 3356
[root@localhost ~]# ps aux|grep yum
root 3356 0.0 1.4 22496 10952 tty6 T 10:34 0:00 /usr/bin/python /usr/bin/yum install xmms
root 4529 0.0 0.0 4744 676 pts/1 R+ 12:52 0:00 grep yum
[root@localhost ~]# |
|