#プロローグ
yum install してたら、プロセスが残ってしまったので解消するだけ
#環境
[root@localhost ~]# cat /etc/redhat-release
CentOS Linux release 8.2.2004 (Core)
#手順
[root@localhost ~]# yum install bind
pid 5016 のプロセスが終了するのを待ちます。
「いつまでたっても終わらんぞ...」
[root@localhost ~]# ps|grep "5016"
5016 pts/0 00:00:04 yum
「進んでない。殺すか。」
[root@localhost ~]# kill 5016
[root@localhost ~]# echo $?
0
[root@localhost ~]# ps|grep "5016"
5016 pts/0 00:00:04 yum
「死なないだと...」
[root@localhost ~]# kill -s 9 5016
[1]+ 強制終了 yum install bind
[root@localhost ~]# ps|grep "5016"
(完)
#エピローグ
killの戻りは0でしたが、なぜか生きていたので、強制終了しました。