2011年6月19日 星期日

Add user to group / 把使用者加入某個 group

Suppose that you want to add the user ( named neo ) into the group ( named vboxusers )
假設你要將使用者 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

2. Add user: neo into group: 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)

沒有留言:

熱門文章