1、 列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可。
[root@localhost ~]# who |cut
-d” ” -f1 | sort -u
2、 取出左后登录到当前系统的用户的相关信息。
[root@localhost ~]# id `last | head
-1 | cut -d’ ‘ -f1`
或者[root@localhost ~]# id
$(last | head -1 | cut -d’ ‘ -f1)
3、 取出当前系统上被用户当作其默认shell的最多的那个shell
[root@localhost ~]# cat /etc/passwd
| cut -d”:” -f7 | uniq -c |sort -nr|head -1|cut -d”/” -f3
4、 将/etc/passwd中的第三个字段数值最大的后10个用户的信息全部改写为大写后保存至/tmp/maxusers.txt文件中
[root@localhost ~]# cat /etc/passwd
| sort -t: -k3 -n | tail -10| tr ‘a-z’ ‘A-Z’ | tee /tmp/maxusers.txt
5、 取出当前主机的IP地址
ifconfig | grep -E ‘inet’ | head -1 | awk
‘{print $2}’
6、 列出/etc目录下所有以.conf结尾的文件的文件名,并将其名字转换为大写后保存至/tmp/etc.conf文件中
[root@localhost ~]# ll /etc/*.conf
| awk ‘{print $9}’ | cut -d’/’ -f3 |tr ‘a-z’ ‘A-Z’ |tee /tmp/etc.conf
7、 显示/var目录下一级子目录或文件的总个数
[root@localhost ~]# ls /var |wc -w
21
8、 取出/etc/group文件中第三个字段数值最小的10个组的名字
[root@localhost ~]# cat /etc/group
| sort -t: -k3 -n | head -10 |cut -d:
-f1
9、 将/etc/fstab和/etc/issue文件的内容合并为同一个内容后保存至/tmp/etc.test
[root@localhost ~]# cat /etc/fstab
/etc/issue >/tmp/etc.test
[root@localhost ~]# cat /tmp/etc.test
#
# /etc/fstab
# Created by anaconda on Mon Jul 31 09:42:26
2017
#sdf
# Accessible filesystems, by reference, are
maintained under ‘/dev/disk’
# See man pages fstab(5), findfs(8),
mount(8) and/or blkid(8) for more info
#
/dev/mapper/cl-root / xfs defaults 0 0
UUID=aae3f709-6440-444d-82d4-35b10e1394c7
/boot xfs defaults 0 0
/dev/mapper/cl-swap swap swap defaults 0 0
\S
Kernel \r on an \m
10、 请总结描述用户和管理类命令的使用方法并完成以下练习:
(1)、创建distro,其GID为2016
groupadd -g2016 distro
(2)、创建用户mandriva,其ID号为1005;基本组为distro
useradd mandriva -u1005 -gdistro
(3)、创建用户mageia,其ID号为1100,家目录为/home/linux
useradd mageia -u1100 -d
/home/linux
(4)、给用户mageia添加密码,密码为mageedu
echo ‘mageedu’ | passwd –stdin
mandriva
(5)、删除mandriva,但保留其家目录
userdel mandriva
(6)、创建用户slcakware,其ID号为2002,基本组为distro,附加组为peguin
useradd slackware -u 2002 -g distro
-G peguin
(7)、修改slackware的默认shell为/bin/tcsh
usermod -s /bin/tcsh slackware
(8)、为用户slackware新增附加组admins
usermod -a -G admins slackware
原创文章,作者:N27_flypig,如若转载,请注明出处:http://www.178linux.com/84291
评论列表(1条)
这次作业考察的是些基础的操作命令,熟练掌握,在以后的工作中会更加的得心应手