實驗四 Linux系統管理

2021-08-09 16:00:41 字數 1458 閱讀 5707

進入/etc目錄,#cd /etc,#ls顯示出/etc中的檔案

#cat passwd執行結果顯示出使用者帳號

# cat shadow,顯示使用者口令檔案

# cat group,顯示使用者組帳號檔案

# cat gshadow,顯示使用者組口令檔案

增加student使用者組

# groupadd student

增加student使用者,並且指定使用者組為student

# useradd -g student student,產生乙個新的使用者student,其屬組為student。

為student使用者設定密碼

# passwd student,執行後提示changingpassword for user student,輸入新密碼,設定成功。

使用su命令將當前使用者由root轉換為student

# su student,由[root@localhostroot]變為[student@localhost root]。

使用id命令顯示當前使用者的uid和gid

$ id,執行後顯示uid=1001(student)gid=1002(student) groups=1002(student)。

顯示登陸者自身的使用者名稱

$ whoami,執行顯示student,說明當前使用者名稱稱為student。

將當前使用者切換為root

$ su,執行後需重新輸入密碼。

使用id命令檢視student的uid和gid

# id student,結果與在student使用者下執行id命令相同。

# usermod -l stu student,結果將student使用者名稱改為stu

使用groupmod命令修改student使用者組為stu :# groupmod -n stu student

檢視stu使用者的uid和gid,注意和student進行比較

# id stu,執行後發現使用者stu與之前的student的uid和gid相同。

刪除stu使用者:# userdel stu。

實驗四 Linux系統管理

實驗四 linux系統管理 1 實驗目的 1 掌握linux基本系統管理命令 2 掌握基本管理方法 3 初步了解linux中與系統管理相關的有關配置檔案 2 實驗內容 1 使用者管理 adduser useradd passwd等 觀察 etc passwd檔案 刪除使用者命令是 userdel 使...

Linux 系統管理命令(四)

u 顯示 發呆 時間 檢視詳細 who uh p 指定使用者名稱的登陸時間 如果使用者名稱引數為空 則顯示每個使用者的登陸時間 d 按時間顯示 y 顯示日期同時顯示年份 finger 查詢顯示指定賬號使用者的相關資訊 l s p以上3個引數根據需要顯示不同的內容 users 根據檔案顯示當前登陸情況...

Linux系統管理

程序是正在執行的乙個程式或命令,每乙個程序都有乙個執行的實體,都喲自己的位址空間,並占用一定的系統資源。盤點伺服器的健康狀態 檢視所有系統中所有程序 殺死程序 1.3.1 ps aux 檢視系統中所有程序,使用bsd作業系統格式 1.3.2 ps le 檢視系統中所有程序,使用linux標準命令格式...