2024年4月16日发(作者:)
Linux中Kill进程的N种方法
常规篇:
首先,用ps查看进程,方法如下:
$ 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 ?
gnome-terminal
smx 1823 0.0 0.0 1988 712 ?
gnome-pty-helper
smx 1824 0.0 0.1 6820 3776 pts/0
smx 1827 4.3 5.8 398196 119568 ?
/usr/lib/firefox-3.6.18/firefox-bin
smx 1857 0.0 0.1 6688 3644 pts/1
smx 1880 0.0 0.6 41536 12620 ?
update-notifier
……
smx 11953 0.0 0.0 2716 1064 pts/0
11:38 0:49
11:38 0:00
Ss 11:38 0:02 bash
Sl 11:38 26:13
Ss 11:38 0:00 bash
11:38 0:00
R+ 21:42 0:00 ps -aux
Sl
S
S


发布评论