Ubuntu 查看和殺死進程

Ubuntu 查看和殺死進程

今天在netbeans中關閉webrick時,發現沒有關閉掉,打入localhost:3000 依然顯示頁面,發現無法從nb中再次關閉
只有進入ubuntu的進程下關閉

查看進程:
ps -e 命令 


1.feng@feng:~$ sudo netstat -antup
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      4672/cupsd      
tcp        0      0 0.0.0.0:3000            0.0.0.0:*               LISTEN      7082/ruby       
tcp        0      0 192.168.1.102:41121     66.113.164.119:80       ESTABLISHED 5709/firefox    
tcp        0      0 192.168.1.102:44746     209.85.201.125:5222     ESTABLISHED 6130/pidgin     
tcp        0      0 192.168.1.102:54797     192.168.1.128:3306      ESTABLISHED 7082/ruby       
tcp        0      0 192.168.1.102:43466     64.4.34.77:1863         ESTABLISHED 6130/pidgin     
tcp        0      0 192.168.1.102:41999     64.233.189.19:443       ESTABLISHED 5709/firefox    
tcp        0      0 192.168.1.102:54900     58.251.60.53:80         ESTABLISHED 6130/pidgin     
tcp        0      0 192.168.1.102:34180     220.181.37.210:80       TIME_WAIT   -               
tcp6       0      0 ::1:42801               :::*                    LISTEN      6863/java       
udp        0      0 0.0.0.0:68              0.0.0.0:*                           5161/dhclient   
udp        0      0 0.0.0.0:5353            0.0.0.0:*                           4625/avahi-daemon: 
udp        0      0 0.0.0.0:56699           0.0.0.0:*                           4625/avahi-daemon: 

殺死webrick的進程:
feng@feng:~$ sudo kill 7082


2法:

譬如Firefox現在僵死,無法相應請求。打開一個終端,輸入:

pgrep firefox

會返回數值,譬如是7198.現在輸入:

kill 7198

就會殺死Firefox進程了。

你也可以使用killall命令。killall可以使用程序的名稱,譬如輸入:

killall firefox


3法

如果前兩者還是殺不死,用 kill -9 pid 命令,來絕殺



參考:
http://hi.baidu.com/lidongxing1005/blog/item/63c65dec28dfae4779f05566.html
http://hi.baidu.com/camark/blog/item/fb918dca3e237981c81768e6.html
http://hi.baidu.com/strive_boy/blog/item/d3020b1865efd6b14aedbcd2.html




發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章