將乙個使用者新增到使用者組中,千萬不能直接用:
usermod -g groupa
這樣做會使你離開其他使用者組,僅僅做為 這個使用者組 groupa 的成員。
應該用 加上 -a 選項:
usermod -a -g groupa
命令的所有的選項,及其含義:
options:
-c, --comment comment new value of the gecos field
-d, --home home_dir new home directory for the user account
-e, --expiredate expire_date set account expiration date to expire_date
-f, --inactive inactive set password inactive after expiration
to inactive
-g, --gid group force use group as new primary group
-g, --groups groups new list of supplementary groups
mentioned by the -g option without removing
him/her from other groups
-h, --help display this help message and exit
-l, --login new_login new value of the login name
-l, --lock lock the user account
-m, --move-home move contents of the home directory to the new
location (use only with -d)
-o, --non-unique allow using duplicate (non-unique) uid
-p, --password password use encrypted password for the new password
-s, --shell shell new login shell for the user account
-u, --uid uid new uid for the user account
-u, --unlock unlock the user account
檢視使用者所屬的組使用命令:$ groups tmn
linux新增使用者組
chmod 755 abc 賦予abc許可權rwxr xr x chmod u rwx,g rx,o rx abc 同上u 使用者許可權,g 組許可權,o 不同組其他使用者許可權 chmod u x,g w abc 給abc去除使用者執行的許可權,增加組寫的許可權 chmod a r abc 給所有...
linux 新增使用者組和使用者
一 新增使用者組,groupadd命令 groupadd 使用者組示例如下 新增成功後可通過以下命令檢視使用者組是否新增成功 cat etc group 二 刪除使用者組,groupdel命令 groupdel 使用者組 三 新增使用者,useradd命令 g 指定使用者組 useradd g 使用...
inux新增使用者(user)到使用者組(group)
將乙個使用者新增到使用者組中,千萬不能直接用 usermod g groupa 這樣做會使你離開其他使用者組,僅僅做為 這個使用者組 groupa 的成員。應該用 加上 a 選項 usermod a g groupa user 命令的所有的選項,及其含義 options c,comment comm...