常用的ps命令有:
ps -ef或者
ps aux這些命令顯示的程序列表頭中有一項stat,其中各個狀態字元的解釋
d uninterruptible sleep (usually io)]
r running or runnable (on run queue)
s interruptible sleep (waiting for an event to complete)
t stopped by job control signal
t stopped by debugger during the tracing
w paging (not valid since the 2.6.xx kernel)
x dead (should never be seen)
z defunct ("zombie") process, terminated but not reaped by its parent
還可能有額外的字元對程序的狀態做補充說明:
< high-priority (not nice to other users)
n low-priority (nice to other users)
l has pages locked into memory (for real-time and custom io)
s is a session leader
l is multi-threaded (using clone_thread, like nptl pthreads do)
+ is in the foreground process group
比如,常見的狀態有:
ss:可中斷的休眠(待喚醒);會話
ssl:可中斷的休眠(待喚醒);會話;是乙個多執行緒
ssl+:可中斷的休眠(待喚醒);會話;是乙個多執行緒;屬於乙個前台的程序組
s<:可中斷的休眠(待喚醒);高優先順序
Linux中man手冊的使用
在linux中,不管是庫函式還是系統呼叫,都用到man手冊來檢視函式的三要素 功能 引數 返回值 這裡就詳細的介紹一下man手冊的使用。這裡需要注意的是 對於初學者來說,不能將手冊頁當教程,因為它只是簡明的參考資料.linux man中的man就是manual的縮寫,用來檢視系統中自帶的各種參考手冊...
偉大的man手冊
linux的man很強大,該手冊分成很多section,使用man時可以指定不同的section來瀏覽,各個section意義如下 1 commands 2 system calls 3 library calls 4 special files 5 file formats and convert...
Cool, 彩色的man手冊
man預設使用的是less來做為文字顯示程式。我們可以使用most來代替less,從而實現彩色的man手冊。pacman s most 然後修改 etc man.conf,將pager和browser都改成 usr bin most s即可。不過most的快捷鍵設定和less不太一樣,最主要的是往下...