了解以下重要命令. du, df, top, free, pstack, su, sudo(sudo -, sudo -s), adduser, password
1). 檢視執行緒數(比pstree, 包含了詳細的堆疊資訊)
2). 能簡單驗證是否按照預定的呼叫順序/呼叫棧執行
3). 採用高頻率多次取樣使用時, 能發現程式當前的阻塞在**, 以及效能消耗點在**?
4). 能反映出疑似的死鎖現象(多個執行緒同時在wait lock, 具體需要進一步驗證)
password
passwd 作為普通使用者和超級許可權使用者都可以執行,
但作為普通使用者只能更改自己的使用者密碼,但前提是沒有被root使用者鎖定;
如果root使用者執行passwd ,可以設定或修改任何使用者的密碼。
1)語法:passwd 命令後面不接任何引數或使用者名稱,則表示修改當前使用者的密碼;
2)功能:如果是普通使用者執行passwd 只能修改自己的密碼;
如果新建使用者後,要為新使用者建立密碼,則用 passwd 使用者名稱 ,注意要以root使用者的許可權來建立;
3)命令引數:
-k, --keep-tokens keep non-expired authentication tokens
注:保留即將過期的使用者在期滿後能仍能使用;
-d, --delete delete the password for the named account (root only)
注:刪除使用者密碼,僅能以root許可權操作;
-l, --lock lock the named account (root only)注:鎖住使用者無權更改其密碼,僅能通過root許可權操作;
-u, --unlock unlock the named account (root only)
注:解除鎖定;
-f, --force force operation
注:強制操作;僅root許可權才能操作;
-x, --maximum=days maximum password lifetime (root only) 注:兩次密碼修正的最大天數,後面接數字;僅能root許可權操作;
-n, --minimum=days minimum password lifetime (root only) 注:兩次密碼修改的最小天數,後面接數字,僅能root許可權操作;
-w, --warning=days number of days warning users receives before 注:在距多少天提醒使用者修改密碼;僅能root許可權操作;
password expiration (root only)
-i, --inactive=days number of days after password expiration when an 注:在密碼過期後多少天,使用者被禁掉,僅能以root操作;
account becomes disabled (root only)
-s, --status report password status on the named account (root 注:查詢使用者的密碼狀態,僅能root使用者操作;
only)
--stdin read new tokens from stdin (root only)
linux中重要的目錄和命令
重要目錄 proc,sys,selinux,bin,usr lib,usr local,var,tmp 1 proc 特殊檔案目錄。此目錄的資料都在記憶體中,如系統核心,外部裝置,網路狀態,由於資料都存放於記憶體中,所以不占用磁碟空間,這個目錄採用一種特殊的檔案系統格式 proc格式,核心支援這種格...
linux命令 檔案和目錄的命令
一 linux 命令 一 目錄操作 命令格式 命令 選項 引數 1 ls命令 ls 選項 檔案或者目錄 ls顯示目錄 ls a 顯示所有檔案包括隱藏檔案 ls l 詳細資訊顯示 ls lh 檢視每個目錄大小 ls d 檢視目錄屬性 ls i 檢視檔案的id 查詢出的顯示資訊代表含義 rw r r 1...
Linux目錄命令
檢視系統檔案樹 tree 目錄 顯示當前工作位置 pwd print working directory 切換工作目錄 cd change directory cd username 管理員專屬進入指定使用者家目錄命令 建立空目錄 mkdir 目錄名 p parents 自動建立父目錄 v verb...