編碼的世界 / 優質文選 / 生物

在Linux中如何將用戶從組中移除?


2022年7月18日
-   

如何將用戶從一個組中移除?
gpasswd -d userName groupName
# id用來查看用戶屬性
[root@gl gl]# id root
uid=0(root) gid=0(root) groups=0(root),1000(gl)
[root@gl gl]# gpasswd -d root gl
Removing user root from group gl
[root@gl gl]# id root
uid=0(root) gid=0(root) groups=0(root)

參考: https://unix.stackexchange.com/questions/29570/how-do-i-remove-a-user-from-a-group
歡迎補充指正!

熱門文章