1、创建用户gentoo,附加组为bin和root,默认shell为/bin/csh,注释信息为"Gentoo Distribution"
[[email protected] ~]# useradd -G bin,root -s /bin/csh -c "Gentoo Distribution" gentoo
2、创建下面的用户、组和组成员关系
名字为admins 的组
[[email protected] ~]# groupadd admins
用户natasha,使用admins 作为附属组
[[email protected] ~]# useradd -G admins natasha
用户harry,也使用admins 作为附属组
[[email protected] ~]# useradd -G admins harry
用户sarah,不可交互登录系统,且不是admins 的成员,natasha,harry,sarah密码都是centos
[[email protected] ~]# useradd -s /sbin/nologin sarah
4、创建testuser uid 1234,主组:bin,辅助组:root,ftp,shell:/bin/csh home:/testdir/testuser
[[email protected] ~]# useradd -u 1234 -g bin -G root,ftp -s /bin/csh -d /testdir/testuser testuser
[[email protected] testuser]# echo "centos" | passwd --stdin testuser
[[email protected] testuser]# cp -r /etc/skel/.[^.]* /testdir/testuser/
5、修改testuser uid:4321,主组:root,辅助组:nobody, loginname :test,home:/home/test 家数据迁移
[[email protected] ~]# usermod -u 4321 -g root -G nobody -l test -d /home/test -m testuser
6、批量创建帐号:user1...user10
uid:3000-3009,shell:/bin/csh,home:/testdir/username
passwd:usernamepass
注意家目录相关配置,使用户正常登录
[[email protected] ~]# vim user.txt
[[email protected] ~]# newusers user.txt
[[email protected] ~]# vim pass.txt
[[email protected] ~]# cat pass.txt | chpasswd
[[email protected] testuser]# cp -r /etc/skel/.[^.]* /testdir/user1name/
[[email protected] testuser]# cp -r /etc/skel/.[^.]* /testdir/user2name/
...
...
...