Als ich yum installiert habe, blieb der Prozess bestehen, also habe ich ihn einfach gelöst
[root@localhost ~]# cat /etc/redhat-release
CentOS Linux release 8.2.2004 (Core)
[root@localhost ~]# yum install bind
Warten Sie, bis der Prozess bei PID 5016 beendet ist.
"Es wird niemals enden ..."
[root@localhost ~]# ps|grep "5016"
5016 pts/0 00:00:04 yum
"Ich gehe nicht. Wirst du mich töten?"
[root@localhost ~]# kill 5016
[root@localhost ~]# echo $?
0
[root@localhost ~]# ps|grep "5016"
5016 pts/0 00:00:04 yum
"Wenn du nicht stirbst ..."
[root@localhost ~]# kill -s 9 5016
[1]+Zwangsbeendigung yum install bind
[root@localhost ~]# ps|grep "5016"
(Ende)
Die Rückkehr von kill war 0, aber es war aus irgendeinem Grund lebendig, also wurde es getötet.
Recommended Posts