M20用户和组练习题和作业

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

 useradd gentoo -G bin,boot -s /bin/csh -c "Gentoo Distribution"

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

     名字为admins的组

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

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

     用户sarah,不可交互登录系统,且不是admins的成员,

     natasha,harry,sarah密码都是centos

   group add admins

   useradd natasha -G admins

   useradd harry -G admins

   useradd sarah -s /bin/nologin

   echo "centos" | passwd –stdin natasha

   echo "centos" | passwd –stdin harry

   echo "centos" | passwd –stdin sarah

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

   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 家数据迁移

   usermod testuser -u 4321 -g root -G nobody -l test -d -m /home/test

5、批量创建帐号:user1…user10

uid:3000-3009,shell:/bin/csh,home:/testdir/username

passwd:usernamepass

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

  vim useradd.txt

  将用户的信息写入:

       user1:x:3000:3000:/testdir/user1:/bin/csh

       user2:x:3001:3001:/testdir/user2:/bin/csh

       user3:x:3002:3002:/testdir/user3:/bin/csh

       user4:x:3003:3003:/testdir/user4:/bin/csh

       user5:x:3004:3004:/testdir/user5:/bin/csh

       user6:x:3005:3005:/testdir/user6:/bin/csh

       user7:x:3006:3006:/testdir/user7:/bin/csh

       user8:x:3007:3007:/testdir/user8:/bin/csh

   newusers useradd.txt

   将用户的密码写入passwd.txt中

       user1:user1pass

       user2:user2pass

       user3:user3pass

       user4:user4epass

       user5:user5pass

       user6:user6pass

       user7:user7pass

       user8:user8pass

  cat passwd.txt | chpasswd

  cp /etc/skel/.[^.]* /home/{user1..user8}

user:usernamepass

原创文章,作者:sjsir,如若转载,请注明出处:http://www.178linux.com/27441

(0)
sjsirsjsir
上一篇 2016-08-02
下一篇 2016-08-03

相关推荐

  • man和history及bashi的快捷键

    man:帮助命令     命令格式:man# cmd;使用时可以先使用whatis 查询所对应的man的章节,然后用对应的man章节来查询帮助;     info:本地帮助文档     官方文档,在线查询等等,如果是付费版系统的话可以使用S…

    Linux干货 2016-07-29
  • 磁盘、文件系统管理

    linux磁盘、文件系统管理 硬盘:机械硬盘、固态硬盘     计算硬盘速度:IoPs:(Io  per  second ) 每秒20次 机械硬盘:     track:磁道     平均寻道时间  &nbsp…

    Linux干货 2016-08-25
  • 基于kubernetes构建Docker集群管理详解

    一、前言        Kubernetes 是Google开源的容器集群管理系统,基于Docker构建一个容器的调度服务,提供资源调度、均衡容灾、服务注册、动态扩缩容等功能套件,目前最新版本为0.6.2。本文介绍如何基于Centos7.0构建Kubernetes平台,在正式介绍…

    2015-03-10
  • Redis 3.0.0正式版发布,全新的分布式高可用数据库

    Redis 3.0.0 正式版终于到来了!最重要的新特性是集群(Redis Cluster),提供Redis功能子集(比如不支持多数据库)的分布式、容错的实现(最多支持1000结点)。   Salvatore 'antirez' Sanfilippo在Google Groups里表示,这是Redis的重要时刻。“我相信今天的Redis 3.0…

    Linux干货 2015-04-03
  • Linux基本知识之echo命令详解

    该博文以CentOS6.8_x86_64系统为基础,Xshell使用pts/X终端登录CentOS6.8系统,以root身份登录系统。 为什么学习echo命令?     echo是一种最常用的与广泛使用的内置于Linux的bash和C shell的命令,通常用在脚本语言和批处理文件中来在标准输出或者文件中显示一行文本或者字符串。…

    Linux干货 2016-07-29