0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[linux]プロセスを終了するkillコマンド

Posted at

killコマンドとは?

指定したプロセスIDのプロセスを終了させるコマンド。


$ kill プロセス番号(PID

##使い方
1.以下のコマンドを実行してプロセスIDを調べる。


$ ps # 現在起動しているプロセスを確認する

$ ps ax | grep gedit # プロセスに”gedit”の名称がついたプロセスのみを表示
16619 ?        Sl     0:01 gedit

2.killコマンドでプロセスIDを指定してプログラムを終了する。


$ kill 16619

3.強制終了したい場合は以下のコマンドを実行する。


$ kill -9 16619

##主なオプション

コマンド 概要
-s シグナル 指定したシグナル名またはシグナル番号を送信する
-シグナル 指定したシグナル名またはシグナル番号を送信する
-l [] シグナル名とシグナル番号の対応を表示する
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?