1、创建用户gentoo,附加组为bin和root,默认shell为/bin/csh,注释信息为"Gentoo istribution"
[root@centos6 ~]# useradd gentoo -G bin,root -s /bin/csh -c "Gentoo istribution"
附效果图
[root@centos6 ~]# groupadd admins
附效果图
用户natasha,使用admins 作为附属组
[root@centos6 ~]# useradd natasha -G admins
附效果图
用户harry,也使用admins 作为附属组
[root@centos6 ~]# useradd harry -G admins
附效果图
用户sarah,不可交互登录系统,且不是admins 的成员,natasha,harry,sarah密码都是centos
[root@centos6 ~]# useradd sarah -s /bin/nologin //不可交互登录系统
[root@centos6 ~]# echo "centos" | passwd --stdin natasha //添加密码为centos
[root@centos6 ~]# echo "centos" | passwd --stdin harry //添加密码为centos
[root@centos6 ~]# echo "centos" | passwd --stdin sarah //添加密码为centos
附效果图
3,创建testuser uid 1234,主组:bin,辅助组:root,ftp,shell:/bin/csh home:/testdir/testuser
[root@centos6 ~]# useradd testuser -u 1234 -g bin -G root,ftp -s /bin/csh -d /testdir/testuser
附效果图
4,修改testuser uid:4321,主组:root,辅助组:nobody,loginname:test,home:/home/test 家数据迁移
[root@centos6 ~]# usermod testuser -u 4321 -g root -G nobody -l test -d /home/test -m
附效果图
5,批量创建帐号:user1...user10
1)首先创建一个user.txt文档格式如下:
uid:3000-3009,shell:/bin/csh,home:/testdir/username
附效果图
使用命令:newusers加编辑文件
[root@centos6 ~]# newusers user.txt
附效果图
然后在新建一个passwd.txt文档按格式写入密码
passwd:usernamepass
附效果图
在使用命令:chpasswd导入密码
[root@centos6 ~]# cat passwd.txt | chpasswd
附效果图
到此还不算完,还需要拷贝/etc/skel/下所有文件到10个用户目
[root@centos6 ~]# for testdir in user{1..10};do cp -rf /etc/skel/.[^.]* /testdir/$testdir;done
注意家目录相关配置,使用户正常登录
本文出自 “运维的未来” 博客,谢绝转载!
原文地址:http://mashaojie.blog.51cto.com/3166974/1833165