码迷,mamicode.com
首页 > 其他好文 > 详细

用户管理--作业

时间:2016-08-02 11:51:04      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:用户   信息   

1、创建用户gentoo,附加组为bin和root,默认shell为/bin/csh,注释信息为"Gentoo Distribution"

[root@localhost ~]# useradd -G bin,root -s /bin/csh -c "Gentoo Distribution" gentoo

技术分享

2、创建下面的用户、组和组成员关系

名字为admins 的组

[root@localhost ~]# groupadd admins

技术分享

用户natasha,使用admins 作为附属组

[root@localhost ~]# useradd -G admins natasha

技术分享

用户harry,也使用admins 作为附属组

[root@localhost ~]# useradd -G admins harry

技术分享

用户sarah,不可交互登录系统,且不是admins 的成员,natasha,harry,sarah密码都是centos

[root@localhost ~]# useradd -s /sbin/nologin sarah

技术分享

4、创建testuser uid 1234,主组:bin,辅助组:root,ftp,shell:/bin/csh home:/testdir/testuser

[root@localhost ~]# useradd -u 1234 -g bin -G root,ftp -s /bin/csh -d /testdir/testuser testuser

技术分享

[root@localhost testuser]# echo "centos" | passwd --stdin testuser

[root@localhost testuser]# cp -r /etc/skel/.[^.]* /testdir/testuser/

技术分享

5、修改testuser uid:4321,主组:root,辅助组:nobody, loginname :test,home:/home/test 家数据迁移

[root@localhost ~]# 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

注意家目录相关配置,使用户正常登录

[root@localhost ~]# vim user.txt

[root@localhost ~]# newusers user.txt

技术分享

[root@localhost ~]# vim pass.txt

技术分享

[root@localhost ~]# cat pass.txt | chpasswd

技术分享

[root@localhost testuser]# cp -r /etc/skel/.[^.]*    /testdir/user1name/

[root@localhost testuser]# cp -r /etc/skel/.[^.]*    /testdir/user2name/

...

...

...

技术分享

用户管理--作业

标签:用户   信息   

原文地址:http://groot.blog.51cto.com/11448219/1833336

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!