0
0

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 1 year has passed since last update.

SIGHUP(hangup), SIGINT(intercept), SIGTSTP(停止)

Posted at
linuxstudy@xxxx ~]$ sleep 1500&
[1] 5833
[linuxstudy@xxxx ~]$ kill -s SIGINT 5833
[1]+  割り込み            sleep 1500
[linuxstudy@xxxx ~]$ ps 5833
   PID TTY      STAT   TIME COMMAND      //SIGINTによりプロセスが消失
[linuxstudy@xxxx ~]$ sleep 1500&
[1] 5886
[linuxstudy@xxxx ~]$ kill -s SIGHUP 5886
[1]+  Hangup                  sleep 1500
[linuxstudy@xxxx ~]$ ps 5886
   PID TTY      STAT   TIME COMMAND      //SIGHUPによりプロセスが消失
[linuxstudy@xxxx ~]$ sleep 1500&
[1] 5926
[linuxstudy@xxxx ~]$ kill -1 5926
[1]+  Hangup                  sleep 1500  //ー1(SIGHUP)によりプロセスが消失
[linuxstudy@xxxx ~]$ sleep 1500&
[1] 5945
[linuxstudy@xxxx ~]$ kill -2 5945
[1]+  割り込み            sleep 1500        //ー2(SIGINT)によりプロセスが消失
[linuxstudy@xxxx ~]$ sleep 1500&
[1] 5973
[linuxstudy@xxxx ~]$ kill -20 5973        //ー20(SIGTSTP)によりプロセスが停止

[1]+  停止                  sleep 1500
[linuxstudy@xxxx ~]$ 
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?