一、添加用户
useradd -d /home/xiewb -m xiewb useradd -s /bin/sh -g xiewbgroup -G testgroup1,testgroup2,testgroup3
二、删除用户
userdel -r xiewb
三、修改用户
usermod -s /bin/ksh -d /home/zz -g othergroup xiewb usermod xiewb -g othergroup
四、查看用户
id xiewb groups xiewb
五、用户口令
passwd xiewb passwd -d xiewb passwd -l xiewb
六、用户组
groupadd testgroup1 groupadd 1010 testgroup2 groupdel testgroup1 groupmod -g 102 testgruop1
本文出自 “xwb” 博客,请务必保留此出处http://xiewb.blog.51cto.com/11091636/1793301
原文地址:http://xiewb.blog.51cto.com/11091636/1793301