1.列出当前系统上所有已登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可
[root@junfeng ~]# who | cut -d' ' -f1 | sort -u jeason root
2.列出最后登录到当前系统的用户的相关信息
[root@junfeng ~]# lastlog | egrep 'root|jeason' root pts/1 192.168.80.1 二 7月 19 11:04:44 +0800 2016 jeason pts/2 192.168.80.1 二 7月 19 11:02:49 +0800 2016
3.读取当前系统上被用户当做其默认shell最多的那个shell
[root@junfeng ~]# cut -d: -f7 /etc/passwd | uniq -cd | sort -n | tail -1 28 /sbin/nologin
4.将/etc/passwd
中的第三个字段数值最大的后10个用户的信息全部改为大写后保存至/tmp/etc.conf
文件中
[root@junfeng ~]# sort -t : -k 3 -n /etc/passwd | tail -10 | tr 'a-z' 'A-Z' > /tmp/etc.conf
5.取出当前主机的ip地址
[root@junfeng ~]# ifconfig eth0 | grep 'inet addr' | cut -d: -f2 | cut -d' ' -f1 192.168.80.80
6.列出/etc
目录下所有以.conf
结尾的文件的文件名,并将其名字转换为大写后保存至/tmp/etc.conf
文件中
[root@junfeng ~]# ls /etc/*.conf | tr '[:lower:]' '[:upper:]' >> /tmp/etc.conf
7.显示/var
目录下一级子目录或文件的个数
[root@junfeng ~]# ls /var | wc -l 23
8.取出/etc/group文件中第三个字段数值最小的10个组的名字
[root@junfeng ~]# sort -t : -k 3 -n /etc/group | head -10 | cut -d: -f1 root bin daemon sys adm tty disk lp mem kmem
9.将/etc/fstab和/etc/issue文件的内容合并为同一个内容后保存至/tmp/etc.test文件中
[root@junfeng ~]# cat /etc/issue /etc/fstab >> /tmp/etc.test
10.请总结描述用户和组管理类命令的使用方法并完成以下练习:
(1)创建组distro,其GID为2016
[root@junfeng ~]# groupadd -g 2016 distro
(2)创建用户mandriva, 其ID号为1005,基本组为distro
[root@junfeng ~]# useradd -u 1005 -g 2016 mandriva
(3)创建用户mageia,其ID号为1100,家目录为/home/linux
[root@junfeng ~]# useradd -u 1100 -d /home/linux mageia
(4)给用户mageia添加密码,密码为mageedu
[root@junfeng ~]# echo 'mageedu' | passwd --stdin mageia 更改用户 mageia 的密码 。 passwd: 所有的身份验证令牌已经成功更新。
(5)删除mandriva,但保留其家目录
[root@junfeng ~]# userdel mandriva
(6)创建用户slackware,其ID号为2002,基本组为distro,附加组peguin
[root@junfeng ~]# useradd -u 2002 -g distro -G peguin slackware
(7)修改slackware的默认shell为/bin/tcsh
[root@junfeng ~]# usermod -s /bin/tcsh slackware
(8)为用户slackware新增附加组admins
[root@junfeng ~]# usermod -G admins slackware
(9)为slackware添加密码,且要求密码最短使用期限为3天,最长为180天,警告为3天
[root@junfeng ~]# passwd -n 3 -x 180 -w 3 slackware [root@junfeng ~]# chage -m 3 -M 180 -W 3 slackware
(10)添加用户openstack,其ID号为3003, 基本组为clouds,附加组为peguin和nova
[root@junfeng ~]# useradd -u 3003 -g clouds -G peguin,nova openstack
(11)添加系统用户mysql,要求其shell为/sbin/nologin
[root@junfeng ~]# useradd -s /sbin/nologin mysql
(12)使用echo命令,非交互式为openstack添加密码
[root@junfeng ~]# echo 'redhat' | passwd --stdin openstack
原创文章,作者:Jeason,如若转载,请注明出处:http://www.178linux.com/24919
评论列表(1条)
写的很好,排版也很棒,加油