假設你要將使用者 neo 加入群組 vboxusers
1. make sure the group name exists
確認此群組名稱存在
# grep vboxusers /etc/group
if it exits, it will show like this:
如果存在會顯示類似訊息如下
vboxusers:x:502:
If not, you can use "groupadd" to add this group name
如果不存在, 則用 groupadd 加入此群組名稱
# groupadd vboxusers
加入使用者 neo 到群組 vboxusers
If the user is the new user, then
如果使用者是第一次, 尚未加入的
# useradd -G vboxusers neo
If the user exists already, then
如果使用者已經存在
# usermod -a -G vboxusers neo
3. Make sure if it success or not
確認是否成功加入
# id neo
It will show:
會顯示
uid=500(neo) gid=500(neo) groups=500(neo),502(vboxusers)
沒有留言:
張貼留言