Linux#How to kill a Process

Linux上で実行中のプロセスを強制中止する方法をメモします。例えば、pythonのプログラムを強制的に中止したい場合、ps -ef コマンドで現在実行中のプロセスを一覧し、 grep pythonのコマンドでPythonのみのProcessを取り出します。

admin@axcf2152:~$ ps -ef | grep python

Terminalにこのような出力が表示され、2列目ではProcess番号になります。

admin     290729030 03:29 pts/1    00:00:00 python3
admin     308225150 03:58 pts/0    00:00:34 python3
admin     448544712 17:24 pts/3    00:00:01 python3 pytestHostSide.py
admin     450244960 17:25 pts/4    00:00:00 grep python

最後はkill -9 Process番号のコマンドで該当するProcess番号を中止しましょう。

admin@axcf2152:~$ kill -9 4485

Footer_Basic

Please Support some devices for my blog

Amazon Gift List

Find ME

Twitter:@3threes2
Email:soup01threes*gmail.com (* to @)
YoutubeChannel:https://www.youtube.com/channel/UCQ3CHGAIXZAbeOC_9mjQiWQ

シェアする

  • このエントリーをはてなブックマークに追加

フォローする