常規(guī)篇:
首先,用ps查看進(jìn)程,方法如下:
$ ps -ef
……
smx 1822 1 0 11:38 ? 00:00:49 gnome-terminal
smx 1823 1822 0 11:38 ? 00:00:00 gnome-pty-helper
smx 1824 1822 0 11:38 pts/0 00:00:02 bash
smx 1827 1 4 11:38 ? 00:26:28 /usr/lib/firefox-3.6.18/firefox-bin
smx 1857 1822 0 11:38 pts/1 00:00:00 bash
smx 1880 1619 0 11:38 ? 00:00:00 update-notifier
……
smx 11946 1824 0 21:41 pts/0 00:00:00 ps -ef
或者:
$ ps -aux
……
smx 1822 0.1 0.8 58484 18152 ? Sl 11:38 0:49 gnome-terminal
smx 1823 0.0 0.0 1988 712 ? S 11:38 0:00 gnome-pty-helper
smx 1824 0.0 0.1 6820 3776 pts/0 Ss 11:38 0:02 bash
smx 1827 4.3 5.8 398196 119568 ? Sl 11:38 26:13 /usr/lib/firefox-3.6.18/firefox-bin
smx 1857 0.0 0.1 6688 3644 pts/1 Ss 11:38 0:00 bash
smx 1880 0.0 0.6 41536 12620 ? S 11:38 0:00 update-notifier
……
smx 11953 0.0 0.0 2716 1064 pts/0 R+ 21:42 0:00 ps -aux
此時(shí)如果我想殺了火狐的進(jìn)程就在終端輸入:
$ kill -s 9 1827
其中-s 9 制定了傳遞給進(jìn)程的信號(hào)是9,即強(qiáng)制、盡快終止進(jìn)程。各個(gè)終止信號(hào)及其作用見附錄。
1827則是上面ps查到的火狐的PID。
簡單吧,但有個(gè)問題,進(jìn)程少了則無所謂,進(jìn)程多了,就會(huì)覺得痛苦了,無論是ps -ef 還是ps -aux,每次都要在一大串進(jìn)程信息里面查找到要?dú)⒌倪M(jìn)程,看的眼都花了。
進(jìn)階篇:
改進(jìn)1:
把ps的查詢結(jié)果通過管道給grep查找包含特定字符串的進(jìn)程。管道符“|”用來隔開兩個(gè)命令,管道符左邊命令的輸出會(huì)作為管道符右邊命令的輸入。
$ ps -ef | grep firefox
smx 1827 1 4 11:38 ? 00:27:33 /usr/lib/firefox-3.6.18/firefox-bin
smx 12029 1824 0 21:54 pts/0 00:00:00 grep --color=auto firefox
這次就清爽了。然后就是
$kill -s 9 1827
改進(jìn)2——使用pgrep:
一看到pgrep首先會(huì)想到什么?沒錯(cuò),grep!pgrep的p表明了這個(gè)命令是專門用于進(jìn)程查詢的grep。
$ pgrep firefox
1827
看到了什么?沒錯(cuò)火狐的PID,接下來又要打字了:
$kill -s 9 1827
改進(jìn)3——使用pidof:
看到pidof想到啥?沒錯(cuò)pid of xx,字面翻譯過來就是 xx的PID。
$ pidof firefox-bin
1827
和pgrep相比稍顯不足的是,pidof必須給出進(jìn)程的全名。然后就是老生常談:
$kill -s 9 1827
無論使用ps 然后慢慢查找進(jìn)程PID 還是用grep查找包含相應(yīng)字符串的進(jìn)程,亦或者用pgrep直接查找包含相應(yīng)字符串的進(jìn)程PID,然后手動(dòng)輸入給kill殺掉
改進(jìn)4:
$ps -ef | grep firefox | grep -v grep | cut -c 9-15 | xargs kill -s 9
說明:
“grep firefox”的輸出結(jié)果是,所有含有關(guān)鍵字“firefox”的進(jìn)程。
“grep -v grep”是在列出的進(jìn)程中去除含有關(guān)鍵字“grep”的進(jìn)程。
“cut -c 9-15”是截取輸入行的第9個(gè)字符到第15個(gè)字符,而這正好是進(jìn)程號(hào)PID。
“xargs kill -s 9”中的xargs命令是用來把前面命令的輸出結(jié)果(PID)作為“kill -s 9”命令的參數(shù),并執(zhí)行該命令?!発ill -s 9”會(huì)強(qiáng)行殺掉指定進(jìn)程。
改進(jìn)5:
知道pgrep和pidof兩個(gè)命令,干嘛還要打那么長一串!
$ pgrep firefox | xargs kill -s 9
改進(jìn)6:
$ ps -ef | grep firefox | awk '{print $2}' | xargs kill -9
kill: No such process
有一個(gè)比較郁悶的地方,進(jìn)程已經(jīng)正確找到并且終止了,但是執(zhí)行完卻提示找不到進(jìn)程。
其中awk '{print $2}' 的作用就是打印(print)出第二列的內(nèi)容。根據(jù)常規(guī)篇,可以知道ps輸出的第二列正好是PID。就把進(jìn)程相應(yīng)的PID通過xargs傳遞給kill作參數(shù),殺掉對應(yīng)的進(jìn)程。
改進(jìn)7:
難道每次都要調(diào)用xargs把PID傳遞給kill?答案是否定的:
$kill -s 9 `ps -aux | grep firefox | awk '{print $2}'`
改進(jìn)8:
沒錯(cuò),命令依然有點(diǎn)長,換成pgrep。
$kill -s 9 `pgrep firefox`
改進(jìn)9——pkill:
看到pkill想到了什么?沒錯(cuò)pgrep和kill!pkill=pgrep+kill。
$pkill -9 firefox
說明:"-9" 即發(fā)送的信號(hào)是9,pkill與kill在這點(diǎn)的差別是:pkill無須 “s”,終止信號(hào)等級(jí)直接跟在 “-“ 后面。之前我一直以為是 "-s 9",結(jié)果每次運(yùn)行都無法終止進(jìn)程。
改進(jìn)10——killall:
killall和pkill是相似的,不過如果給出的進(jìn)程名不完整,killall會(huì)報(bào)錯(cuò)。pkill或者pgrep只要給出進(jìn)程名的一部分就可以終止進(jìn)程。
$killall -9 firefox
附錄:各種信號(hào)及其用途
Signal |
Description |
Signal number on Linux x86[1] |
SIGABRT |
Process aborted |
6 |
SIGALRM |
Signal raised by alarm |
14 |
SIGBUS |
Bus error: "access to undefined portion of memory object" |
7 |
SIGCHLD |
Child process terminated, stopped (or continued*) |
17 |
SIGCONT |
Continue if stopped |
18 |
SIGFPE |
Floating point exception: "erroneous arithmetic operation" |
8 |
SIGHUP |
Hangup |
1 |
SIGILL |
Illegal instruction |
4 |
SIGINT |
Interrupt |
2 |
SIGKILL |
Kill (terminate immediately) |
9 |
SIGPIPE |
Write to pipe with no one reading |
13 |
SIGQUIT |
Quit and dump core |
3 |
SIGSEGV |
Segmentation violation |
11 |
SIGSTOP |
Stop executing temporarily |
19 |
SIGTERM |
Termination (request to terminate) |
15 |
SIGTSTP |
Terminal stop signal |
20 |
SIGTTIN |
Background process attempting to read from tty ("in") |
21 |
SIGTTOU |
Background process attempting to write to tty ("out") |
22 |
SIGUSR1 |
User-defined 1 |
10 |
SIGUSR2 |
User-defined 2 |
12 |
SIGPOLL |
Pollable event |
29 |
SIGPROF |
Profiling timer expired |
27 |
SIGSYS |
Bad syscall |
31 |
SIGTRAP |
Trace/breakpoint trap |
5 |
SIGURG |
Urgent data available on socket |
23 |
SIGVTALRM |
Signal raised by timer counting virtual time: "virtual timer expired" |
26 |
SIGXCPU |
CPU time limit exceeded |
24 |
SIGXFSZ |
File size limit exceeded |
25 |