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

相关推荐

  • 运维自动化之系统安装

    自动化安装系统,cobbler的安装使用

    Linux干货 2018-01-15
  • Linux安全与加密基础(一)

    Linux安全与加密基础(一) 常见的加密算法 SSL: Openssl与CA认证 ssh服务 dropbear AIDE sudo 常见的加密算法 密码学古以有之,尤其是在中国古代的战争中,在现在科技中,密码学不得不说是一门高深的学问,普通人知其一二足矣;本文要讨论的是关于加密与解密的基本原理与应用,以及关于Linux系统中的一些安全管理问题,如ssh服务…

    Linux干货 2016-10-06
  • 马哥教育网络班21期+第15周课程练习

    1、总结sed和awk的详细用法; sed 流编辑器,处理一行数据到模式空间(p),不匹配条件话就输出源行,匹配条件且有处理话,就输出处理过后的行和源行, 匹配条件且没有处理动作的话,只输出p空间的行;保持空间(h)用来存放模式空间的临时处理结果 [root@centos ~]# sed ''&nb…

    Linux干货 2016-08-30
  • n28 第二周作业

    n28 第二周作业

    Linux干货 2017-12-09
  • linux 计划任务

    Linux之 计划任务 介绍 相信每个人都有使用闹钟的习惯,我们设定闹钟的种类有很多。比如说,只提醒一次、工作日提醒、休息日提醒等。在设定闹钟之后,每天的设定时间都会按时的提醒你去做什么事情,以免自己忘记一些重要的会议等事情。像这样在每天特定的时间安排做一些事情。这样一种事情我们就称之为例行任务计划。 其实在个系统平台上都有类似的例行性任务计划功能,那如何去…

    Linux干货 2017-09-04
  • Linux第八周小结

    1、写一个脚本,使用ping命令探测172.16.250.1-172.16.250.254之间的所有主机的在线状态 在线的主机使用绿色显示 不在线的主使用红色显示 #!/bin/bash # for i in {1..254};do if ping -c 6 -w 1 192.168.1.$i &> /dev/null;then echo -e…

    Linux干货 2017-08-20

评论列表(1条)

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

    解答问题的方法很棒