今天在netbeans中關(guān)閉webrick時,發(fā)現(xiàn)沒有關(guān)閉掉,打入localhost:3000 依然顯示頁面,發(fā)現(xiàn)無法從nb中再次關(guān)閉只有進入ubuntu的進程下關(guān)閉查看進程:1,ps -e 命令 2,feng@feng:~$ sudo netstat -antupActive Internet connections (servers and established)Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program nametcp 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 70822法:譬如Firefox現(xiàn)在僵死,無法相應(yīng)請求。打開一個終端,輸入:
pgrep firefox
會返回數(shù)值,譬如是7198.現(xiàn)在輸入:
kill 7198
就會殺死Firefox進程了。
你也可以使用killall命令。killall可以使用程序的名稱,譬如輸入:
killall firefox
3法
如果前兩者還是殺不死,用 kill -9 pid 命令,來絕殺
ref:http://hi.baidu.com/lidongxing1005/blog/item/63c65dec28dfae4779f05566.htmlhttp://hi.baidu.com/camark/blog/item/fb918dca3e237981c81768e6.htmlhttp://hi.baidu.com/strive_boy/blog/item/d3020b1865efd6b14aedbcd2.html
posted on 2012-06-28 15:29
風(fēng)輕云淡 閱讀(585)
評論(0) 編輯 收藏 引用 所屬分類:
Linux