linux許可權操作
功能項命令例項
作用重要性
使用者組groupadd testing
新增一-個新的使用者組testing
中cat /etc/group
檢視組是否被新增成功
中groupmod -n test testing
將testing重新命名成test
中groupdel test
刪除組test
中groups root
檢視使用者root所在的所有組
中useradd
useradd yuan
新增乙個使用者yuan (預設時將新增一乙個對應的名為
yuan的組)
中useradd -g test mark
新增乙個使用者mark並將其加入test組
中useradd -g test -g dev mary
新增使用者mary,其主組為test,並附加到組dev中
中usermod
usermod -g dev yuan
將使用者qiang換到dev組
中usermod -g 502 yuan
將使用者yuan附加到gid為502的這個組
中 usermod -d /home/temp/mary
將mary的主目錄從home/mary改為/home/temp
中 userdel
userdel yuan
刪除使用者yuan
中userdel -f yuan
強制刪除使用者yuan(即使該使用者已經登入)
中 userdel -r yuan
刪除使用者yuan並刪除其主目錄
中chmod
chmod [許可權] [檔案或目錄]
更改檔案或目錄許可權
高ls -l hello.txt
檢視檔案的詳細熟悉,並對其進行解釋
高左邊10位中的第一
位代表檔案型別
d ---- 代表目錄-
- ----代表普通檔案
l ----
代表鏈結檔案
高左邊10位中的後9
位代表許可權
前3位代表檔案所有者的許可權(用u表示)
中間3位代表檔案所在組的許可權(用g表示)
後3位代表其他組的許可權(用o表示)
高許可權rwx的意義
許可權r或數字4--表示可讀
許可權w或數字2--表示可寫
許可權x或數字1--表示可執行
高chmod u+x hello .txt
為hello.txt檔案所有者新增可執行許可權
高chmod u-x hello .txt
為hello.txt檔案所有去除可執行許可權
高chmod g-r hello.txt
為hllo.txt檔案所在組去除可讀許可權
高chmod o+w hello.txt
為hllo.txt檔案的所在組的其他組新增可寫許可權
高chmod a+w hello.txt
為所有三種角色新增可寫許可權
高chmod a+wx hello.txt
為所有三種角色新增可寫許可權
高chmod a-rwx hello.txt
去除nll oxt的所有許可權(此時僅rot可編舞)
高-------未完待續------
測試工程師常用Linux命令
安裝軟體 編輯 yum y install 檢視當前目錄 ls 檢視所有 ls a 建立乙個資料夾 mkdir foldername 同時建立幾個資料夾 mkdir f1 f2 f3 刪除資料夾 檔案 rm rf f1 刪除符合條件的 rm rf 建立檔案 touch jn.txt 編輯檔案 vim...
測試工程師用到常用的git命令
正常情況下,我們的工作流就是3個步驟,對應上圖中的3個箭頭線 git add git commit m comment git push git add 把所有檔案放入暫存區 git commit把所有檔案從暫存區提交進本地倉庫 git push把所有檔案從本地倉庫推送進遠端倉庫。檢查修改 已修改,...
測試工程師簡介
一 什麼是軟體測試?1975年,兩位軟體測試先驅john good enough和susan cerhart 在ieee上發表了 軟體資料選擇的原理 此時將軟體測試定義為 證明軟體的工作是正確 的活動。1979年,glenford j.myers的著名的 軟體測試藝術 對測試的定義是 發現錯誤而執行...