Linux上で実行中のプロセスを強制中止する方法をメモします。例えば、pythonのプログラムを強制的に中止したい場合、ps -ef コマンドで現在実行中のプロセスを一覧し、 grep pythonのコマンドでPythonのみのProcessを取り出します。
admin@axcf2152:~$ ps -ef | grep python |
Terminalにこのような出力が表示され、2列目ではProcess番号になります。
admin 2907 2903 0 03:29 pts/1 00:00:00 python3 admin 3082 2515 0 03:58 pts/0 00:00:34 python3 admin 4485 4471 2 17:24 pts/3 00:00:01 python3 pytestHostSide.py admin 4502 4496 0 17:25 pts/4 00:00:00 grep python |
最後はkill -9 Process番号のコマンドで該当するProcess番号を中止しましょう。
admin@axcf2152:~$ kill -9 4485 |