使用者和組管理

2021-09-05 11:41:01 字數 1174 閱讀 6313

使用者 == 員工

組 == 部門

相關系統檔案

cat /etc/passwd檢視使用者資訊

cat /etc/shadow使用者密碼資訊

cat /etc/group/使用者組資訊

cat /etc/gshadow加密密碼

使用者分類

超級使用者:root uid=0

系統使用者:不需要登入系統 服務於應用程式 維護系統的執行

對使用者的操作

1:檢視使用者資訊

idwho am i

2:切換使用者

su -

3:退出 使用者

exit

4:新增

useradd

5:刪除

userdel

6:密碼

passwd

7:修改使用者

usermod

對組 的操作

1:新增

groupadd

2:修改

groupmod

3:刪除

groupdel

4:組管理

-a, --add user            新增使用者

-d, --delete user 刪除使用者

-h, --help display this help message and exit

-q, --root chroot_dir directory to chroot into

-r, --delete-password remove the group's password

-r, --restrict restrict access to group to its members

-m, --members user,... set the list of members of group

-a, --administrators admin

5:切換組

su -

使用者和組管理

1.1 使用者和組概念 authentication 認證 authorization 授權 accouting 審計 1.2 使用者分類 linux使用者分為管理員和普通使用者兩種 使用者類別 使用者id 管理員0 普通使用者 1 65535 其中普通使用者又分為系統使用者和登入使用者兩種 使用者...

使用者管理和組

一 使用者管理和組 1.使用者管理 sid安全識別符號 windows管理員uid通常為500,普通使用者從1000起 linux管理員uid通常為0 windows系統使用者資訊通常路徑為c windows system32 config sam hash不可逆演算法 伺服器預設密碼最長有效期42...

使用者和組管理

序號命令 作用01 groupadd 組名 新增組02 groupdel 組名 刪除組03 cat etc group 確認組資訊 04chgrp r 組名 檔案 目錄名 修改檔案 目錄的所屬組 序號命令 作用說明 01useradd m g 組 新建使用者名稱 新增使用者組 m 自動建立使用者家目...