命令操作如下所示:
[root@localhost ~]# groupadd –g 600 stugrp
[root@localhost ~]# grep stugrp /etc/group /etc/gshadow
/etc/group:stugrp:x:600:
/etc/gshadow:stugrp:!::
[root@localhost ~]#
為stugrp組新增三個成員使用者(user01、root、zhangsan),命令操作如下所示:
[root@localhost ~]# grep stugrp /etc/group
stugrp:x:600:
[root@localhost ~]# useradd user01
[root@localhost ~]# useradd zhangsan
[root@localhost ~]# id user01 //確認user01使用者存在
uid=581(user01) gid=582(user01) 組=582(user01)
[root@localhost ~]# id zhangsan //確認zhangsan使用者存在
uid=582(zhangsan) gid=583(zhangsan) 組=583(zhangsan)
[root@localhost ~]# id root //確認root使用者存在
uid=0(root) gid=0(root) 組=0(root)
[root@localhost ~]# gpasswd -m user01,root,zhangsan stugrp
[root@localhost ~]# grep stugrp /etc/group
stugrp:x:600:user01,root,zhangsan
[root@localhost ~]#
從stugrp組刪除乙個成員(user01),命令操作如下所示:
[root@localhost ~]# grep stugrp /etc/group
stugrp:x:600:user01,root,zhangsan
[root@localhost ~]# gpasswd -d user01 stugrp
removing user user01 from group stugrp
[root@localhost ~]# grep stugrp /etc/group
stugrp:x:600:root,zhangsan
[root@localhost ~]#
重新定義stugrp組的成員列表(user02、zhangsan),命令操作如下所示:
[root@localhost ~]# useradd user02
[root@localhost ~]# id user02
uid=583(user02) gid=584(user02) 組=584(user02)
[root@localhost ~]# grep stugrp /etc/group
stugrp:x:600:root,zhangsan
[root@localhost ~]# gpasswd -m user02,zhangsan stugrp
[root@localhost ~]# grep stugrp /etc/group
stugrp:x:600:user02,zhangsan
[root@localhost ~]#
為stugrp組新增乙個組管理員user01,命令操作如下所示:
[root@localhost ~]# grep stugrp /etc/gshadow //檢視組管理員列表
stugrp:!::user02,zhangsan
[root@localhost ~]# gpasswd -a user01 stugrp
[root@localhost ~]# grep stugrp /etc/gshadow //檢視組管理員列表
stugrp:!:user01:user02,zhangsan
[root@localhost ~]#
以使用者user01登入,把自己新增為stugrp組的成員,刪除組成員user02
[root@localhost ~]# su - user01 //切換使用者身份
[user01@localhost ~]$ whoami //檢視自己當前使用者身份
user01
[user01@localhost ~]$ grep stugrp /etc/group
stugrp:x:600:user02,zhangsan
[user01@localhost ~]$ gpasswd -a user01 stugrp
adding user user01 to group stugrp
[user01@localhost ~]$ grep stugrp /etc/group
stugrp:x:600:user02,zhangsan,user01
[user01@localhost ~]$ gpasswd -d user02 stugrp
removing user user02 from group stugrp
[user01@localhost ~]$ grep stugrp /etc/group
stugrp:x:600:zhangsan,user01
[user01@localhost ~]$exit //退出當前使用者回到root
組賬號的管理控制 linux
組賬號的管理控制 問題 新建組賬號stugrp,將gid設為600 為stugrp組新增三個成員使用者 user01 root zhangsan 從stugrp組刪除乙個成員 user01 重新定義stugrp組的成員列表 user02 zhangsan 為stugrp組新增乙個組管理員user01...
賬號與許可權管理 使用者賬號與組賬號
五 使用者賬號的初始配置檔案3個重要隱藏檔案 六 組賬號檔案 七 組賬號常用命令 uid和gid uid user identify,使用者標識號 gid gronp identify,組標識號 root localhost head 2 etc passwd root x 0 0 root roo...
使用者管理 組賬號管理 計畫任務
基於賬戶身份對資源訪問進行控制 不同的使用者具備不同的許可權 賬戶類別 使用者賬號 組賬號 識別方式 uid gid 使用者lisi的uid為1001 組名sg的gid為2000 使用者賬號 超級使用者root的uid為0 系統使用者 普通使用者 uid從1000開始 組賬號 方便對使用者的管理 在...