Linux - 使用者加入最高權限及將使用者加入某群組

摘要:Linux - 使用者加入最高權限及將使用者加入某群組

如果要讓使用者擁有最高權限

將該使用者加入root 群組

usermod -g root user_name

 

將使用者加入某群組使用

usermod -a -G grp_name user_name

 

查看使用者

cat /etc/passwd

 

查看群組

cat /etc/group

 

http://www.shellhacks.com/en/HowTo-Create-USER-with-ROOT-Privileges-in-Linux