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

用户和组练习题

时间:2016-08-01 23:08:26      阅读:372      评论:0      收藏:0      [点我收藏+]

标签:登录系统   效果图   admins   练习题   sarah   

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

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

附效果图

技术分享 
2、创建下面的用户、组和组成员关系
名字为admins 的组

    [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

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

本文出自 “运维的未来” 博客,谢绝转载!

用户和组练习题

标签:登录系统   效果图   admins   练习题   sarah   

原文地址:http://mashaojie.blog.51cto.com/3166974/1833165

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