linux學習筆記-5.用戶和組
阿新 • • 發佈:2019-03-19
upa groups groupadd 用戶 刪除 oot 信息 筆記 設置
1、添加一個tom用戶,設置它屬於users組,並添加註釋信息
分步完成:
useradd tom
usermod -g users tom
usermod -c "hr tom" tom
一步完成:
useradd -g users -c "hr tom" tom
2、設置tom用戶的密碼
passwd tom
3、修改tom用戶的登陸名為tomcat
usermod -l tomcat tom
4、將tomcat添加到sys和root組中
usermod -G sys,root tomcat
5、查看tomcat的組信息
groups tomcat
6、添加一個jerry用戶並設置密碼
useradd jerry
passwd jerry
7、添加一個交america的組
groupadd america
8、將jerry添加到america組中
usermod -g america jerry
9、將tomcat用戶從root組和sys組刪除
gpasswd -d tomcat root
gpasswd -d tomcat sys
10、將america組名修改為am
groupmod -n am america
linux學習筆記-5.用戶和組