N26_第三周作业

1、列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可。

演示:

[root@joylin test]# who|cut -d" " -f1|uniq 
root
gentoo
[root@joylin test]# who|cut -d" " -f1|uniq -c
      5 root
      1 gentoo
或者
[root@joylin test]# who|cut -d" " -f1|sort -u
gentoo
root
或者
[root@joylin test]# w|sed '1,2d'|cut -d" " -f1|uniq
root
gentoo

2、取出最后登录到当前系统的用户的相关信息。

[root@joylin test]# last|head -1
gentoo   pts/4        10.0.0.52        Tue Feb 21 22:02   still logged in 

3、取出当前系统上被用户当作其默认shell的最多的那个shell。

[root@joylin ~]# cat /etc/passwd|cut -d: -f7|uniq -c|sort -nr
     34 /sbin/nologin
      7 /bin/bash
      4 /sbin/nologin
      1 /sbin/shutdown
      1 /sbin/halt
      1 /bin/sync
      1 /bin/bash
[root@joylin ~]# cat /etc/passwd|cut -d: -f7|uniq -c|sort -nr|head -1 
     34 /sbin/nologin

4、将/etc/passwd中的第三个字段数值最大的后10个用户的信息全部改为大写后保存至/tmp/maxusers.txt文件中。

[root@joylin test]# cat /etc/passwd|sort -nrk 3 -t:|head -10 >/tmp/maxusers.txt ##方法1
[root@joylin test]# cat /tmp/maxusers.txt 
nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/sbin/nologin
gentoo:x:2005:2005::/home/gentoo:/bin/bash
user2:x:2004:2004::/home/user2:/bin/bash
user1:x:2003:2003::/home/user1:/bin/bash
test:x:2002:2002::/home/test:/bin/bash
bb:x:2001:2001::/home/bb:/bin/bash
aa:x:2000:1000:test user:/test:/bin/bash
systemd-bus-proxy:x:999:997:systemd Bus Proxy:/:/sbin/nologin
polkitd:x:998:996:User for polkitd:/:/sbin/nologin
unbound:x:997:994:Unbound DNS resolver:/etc/unbound:/sbin/nologin
[root@joylin test]# cat /etc/passwd|sort -nk 3 -t:|tail >/tmp/maxusers.txt  ##方法2 [root@joylin test]# cat /tmp/maxusers.txt  unbound:x:997:994:Unbound DNS resolver:/etc/unbound:/sbin/nologin polkitd:x:998:996:User for polkitd:/:/sbin/nologin systemd-bus-proxy:x:999:997:systemd Bus Proxy:/:/sbin/nologin aa:x:2000:1000:test user:/test:/bin/bash bb:x:2001:2001::/home/bb:/bin/bash test:x:2002:2002::/home/test:/bin/bash user1:x:2003:2003::/home/user1:/bin/bash user2:x:2004:2004::/home/user2:/bin/bash gentoo:x:2005:2005::/home/gentoo:/bin/bash nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/sbin/nologin

5、取出当前主机的IP地址,提示:对ifconfig命令的结果进行切分。

[root@joylin ~]# ifconfig ens33|grep inet|cut -d" " -f10 ##方法1
10.0.0.2
[root@joylin ~]# ifconfig ens33|head -2|tail -1|cut -d" " -f10 ##方法2
10.0.0.2

6、列出/etc目录下所有以.conf结尾的文件的文件名,并将其名字转换为大写后保存至/tmp/etc.conf文件中。

[root@joylin ~]# find /etc/ -name "*.conf"|tr 'a-z' 'A-Z' >/tmp/etc.conf
[root@joylin ~]# head -3 /tmp/etc.conf 
/ETC/RESOLV.CONF
/ETC/FONTS/CONF.D/65-0-SMC-MEERA.CONF
/ETC/FONTS/CONF.D/59-LIBERATION-SANS.CONF

7、显示/var目录下一级子目录或文件的总个数。

[root@joylin test]# tree -L 1 /var/|wc -l
27

8、取出/etc/group文件中第三个字段数值最小的10个组的名字。

[root@joylin test]# cat /etc/group|sort -nrk 3 -t:|tail
kmem:x:9:
mem:x:8:
lp:x:7:
disk:x:6:
tty:x:5:
adm:x:4:
sys:x:3:
daemon:x:2:
bin:x:1:
root:x:0:
[root@joylin test]# cat /etc/group|sort -nrk 3 -t:|tail|cut -d: -f1 ##方法1
kmem
mem
lp
disk
tty
adm
sys
daemon
bin
root
[root@joylin test]# cat /etc/group|sort -nk 3 -t:|head root:x:0: bin:x:1: daemon:x:2: sys:x:3: adm:x:4: tty:x:5: disk:x:6: lp:x:7: mem:x:8: kmem:x:9: [root@joylin test]# cat /etc/group|sort -nk 3 -t:|head|cut -d: -f1 ##方法2 root bin daemon sys adm tty disk lp mem kmem

9、将/etc/fstab和/etc/issue文件的内容合并为同一个内容后保存至/tmp/etc.test文件中。

[root@joylin test]# sort -c /etc/fstab /etc/issue  ##-c检查文件是否已经排序
sort: 不允许额外的操作数"/etc/issue" 与-c 一起使用
[root@joylin test]# sort -c /etc/fstab
sort:/etc/fstab:4:无序: # Created by anaconda on Tue Feb  7 00:35:57 2017
[root@joylin test]# sort -c /etc/issue
sort:/etc/issue:2:无序: Kernel \r on an \m
[root@joylin test]# sort /etc/fstab >/test/fstab
[root@joylin test]# sort /etc/issue >/test/issue
[root@joylin test]# sort -m /test/fstab /test/issue >/tmp/etc.test #-m合并文件
[root@joylin test]# wc -l /etc/fstab 
12 /etc/fstab
[root@joylin test]# wc -l /etc/issue
3 /etc/issue
[root@joylin test]# wc -l /tmp/etc.test 
15 /tmp/etc.test

10、请总结描述用户和组管理类命令的使用方法并完成以下练习:

   (1)、创建组distro,其GID为2016;

[root@joylin test]# groupadd distro -g 2016
[root@joylin test]# tail -1 /etc/group
distro:x:2016:

   (2)、创建用户mandriva, 其ID号为1005;基本组为distro;

[root@joylin test]# useradd mandriva -u 1005 -g distro
[root@joylin test]# grep mandriva /etc/passwd
mandriva:x:1005:2016::/home/mandriva:/bin/bash

   (3)、创建用户mageia,其ID号为1100,家目录为/home/linux;

[root@joylin test]# useradd mageia -u 1100 -d /home/linux
[root@joylin test]# grep mageia /etc/passwd
mageia:x:1100:1100::/home/linux:/bin/bash

   (4)、给用户mageia添加密码,密码为mageedu;

[root@joylin test]# echo "mageedu"|passwd --stdin mageia
更改用户 mageia 的密码 。
passwd:所有的身份验证令牌已经成功更新。

   (5)、删除mandriva,但保留其家目录;

[root@joylin test]# grep mandriva /etc/passwd
mandriva:x:1005:2016::/home/mandriva:/bin/bash
[root@joylin test]# userdel mandriva 
[root@joylin test]# grep mandriva /etc/passwd

   (6)、创建用户slackware,其ID号为2002,基本组为distro,附加组peguin;

[root@joylin test]# groupadd peguin
[root@joylin test]# useradd slackware -u 2002 -g distro -G peguin
[root@joylin test]# grep 2002 /etc/passwd
slackware:x:2002:2016::/home/slackware:/bin/bash

   (7)、修改slackware的默认shell为/bin/tcsh;

[root@joylin test]# grep slackware /etc/passwd
slackware:x:2002:2016::/home/slackware:/bin/bash
[root@joylin test]# usermod -s /bin/tcsh slackware 
[root@joylin test]# grep slackware /etc/passwd
slackware:x:2002:2016::/home/slackware:/bin/tcsh

   (8)、为用户slackware新增附加组admins;

[root@joylin test]# grep admins /etc/group
[root@joylin test]# groupadd admins
[root@joylin test]# usermod -G admins slackware
[root@joylin test]# groups slackware
slackware : distro admins
[root@joylin test]# id slackware
uid=2002(slackware) gid=2016(distro) 组=2016(distro),2018(admins

   (9)、为slackware添加密码,且要求密码最短使用期限为3天,最长为180天,警告为3天;

[root@joylin test]# chage -l slackware
最近一次密码修改时间                  :2月 21, 2017
密码过期时间                  :从不
密码失效时间                  :从不
帐户过期时间                      :从不
两次改变密码之间相距的最小天数     :0
两次改变密码之间相距的最大天数     :99999
在密码过期之前警告的天数    
[root@joylin test]# chage -m 3 -M 180 -W 3 slackware
[root@joylin test]# chage -l slackware
最近一次密码修改时间                  :2月 21, 2017
密码过期时间                  :8月 20, 2017
密码失效时间                  :从不
帐户过期时间                      :从不
两次改变密码之间相距的最小天数     :3
两次改变密码之间相距的最大天数     :180
在密码过期之前警告的天数    :3

   (10)、添加用户openstack,其ID号为3003, 基本组为clouds,附加组为peguin和nova;

[root@joylin test]# grep clouds /etc/group
[root@joylin test]# grep nova /etc/group
[root@joylin test]# groupadd clouds 
[root@joylin test]# groupadd nova
[root@joylin test]# useradd openstack -u 3003 -g clouds -G peguin,nova
[root@joylin test]# groups openstack
openstack : clouds peguin nova
[root@joylin test]# id openstack
uid=3003(openstack) gid=2019(clouds) 组=2019(clouds),2017(peguin),2020(nova)

   (11)、添加系统用户mysql,要求其shell为/sbin/nologin;

[root@joylin test]# grep mysql /etc/passwd
[root@joylin test]# useradd -r mysql -s /sbin/nologin 
[root@joylin test]# grep mysql /etc/passwd
mysql:x:600:600::/home/mysql:/sbin/nologin

   (12)、使用echo命令,非交互式为openstack添加密码。

[root@joylin test]# echo "openstack"|passwd --stdin openstack
更改用户 openstack 的密码 。
passwd:所有的身份验证令牌已经成功更新。

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

(0)
jaylinjaylin
上一篇 2017-02-21
下一篇 2017-02-22

相关推荐

  • varnish浅述

    安装varnish,安装包需要到官网下载http://www.varnish-cache.org/releases/index.html varnish的程序环境: /etc/varnish/varnish.params:配置varnish服务进程的工作特性,例如监听的地址、端口及缓存机制等; /etc/varnish/default.vcl:配置各Chil…

    2016-11-15
  • 浅谈DNS基本原理以及实现方法(一)

     DNS(Domain Name System,域名系统),是目前互联网上最不可或缺的服务器之一,我们在互联网从访问一个网站,到发送一封电子邮件,再到定位域中的域控制器,无时无刻不再使用着DNS为我们提供的服务,那为什么我们会需要这样一个服务那?带着这样一个疑问让我们先来认识一下什么是DNS吧  DNS最核心的工作就是域名解析,也就是把计…

    Linux干货 2015-12-15
  • 第九周

    1、写一个脚本,判断当前系统上所有用户的shell是否为可登录shell(即用户的shell不是/sbin/nologin);分别这两类用户的个数;通过字符串比较来实现;   1 #!/bib/bash   2 #   3 a=0   4 x=0   5 y=…

    Linux干货 2017-05-25
  • 马哥教育网络班19期+第七周课程练习

    1、创建一个10G分区,并格式为ext4文件系统;   (1) 要求其block大小为2048, 预留空间百分比为2, 卷标为MYDATA, 默认挂载属性包含acl;         mke2fs -b 2048 -m 2 -L 'MYDATA' -o defau…

    Linux干货 2016-06-21
  • MariaDB

    Mariadb 结构化数据–>关系型数据库 范式:Entry(每一行来描述一个整体) 半结构化数据–>YAML,XML,JSON 非结构化数据–>日志文件 NoSQL 关系型数据库:事务能力 ACID测试(原子性,一致性,隔离性,持久性) MariaDB or MySQL: 层次模型–>…

    Linux干货 2016-11-15
  • 封装和结构及set

    封装|set

    Linux干货 2017-10-09

评论列表(1条)

  • 马哥教育
    马哥教育 2017-03-06 19:55

    解答问题的方法很棒