[Linux] 建立、修改、刪除群組 group 及 GID
請使用 root 來操作
1. 請建立群組 engineers,GID 為 1111
#groupadd -g 1111 engineers
2. 請查詢建立好的群組是否正確
#tail /etc/group
3. 請將 engineers 群組的 GID 修改為 2222
#groupmod -g 2222 engineers
4. 請將 engineers 群組名稱修改為 students
#groupmod -n students engineers
5. 請刪除剛剛建立的群組
#groupdel students
留言
張貼留言