?1、列出當前系統上所有已經登錄的用戶的用戶名,注意:同一個用戶登陸多次,則只顯示一次即可。
[root@localhost ~]# who |cut -d ‘ ‘ -f1 |sort -u
?2、取出最后登陸到當前系統的用戶的相關信息。
[root@localhost ~]# who |tail -1
?3、取出當前系統上被用戶當做其默認shell的最多得到那個shell。
[root@localhost ~]# cut -d : -f7 /etc/passwd |uniq -c |sort -n |tail -1
13 /sbin/nologin
?4、將/etc/passwd中點的第三個字段數值最大的后10個用戶的信息全部改為大寫后保存至/tmp/maxusers.txt文件中。
[root@localhost ~]# cat /etc/passwd |sort -t : -k 3 -n |tail -10 |tr ‘a-z’ ‘A-Z’ > /tmp/maxusers.txt
?5、取出當前主機的IP地址,提示:對ifconfig命令的結果進行切分。
[root@localhost tmp]# ifconfig|grep ‘inet’|grep -v ‘127.0.0.1’|grep -v ‘inet6’|cut -f10 -d ‘ ‘
10.1.12.210
?6、列出/etc目錄下所有以.conf結尾的文件的文件名,并將其名字轉換為大寫后保存至/tmp/etc.conf文件中。
[root@localhost tmp]# ls /etc/*.conf | tr ‘a-z’ ‘A-Z’ >> /tmp/etc.conf
7、顯示/var目錄下一級子目錄或文件的總個數。
[root@localhost tmp]# tree -L 1 /var/ |wc -l
24
8、取出/etc/group文件中第三個字段數最小的10個組的名字。
[root@localhost tmp]# cat /etc/group |sort -t : -k 3 -n | head -10 |cut -d : -f1
root
bin
daemon
sys
adm
tty
disk
lp
mem
kmem
9、將/etc/fstab和/etc/issue文件的內容合并為同一個內容后保存至/tmp/etc.test文件中。
[root@localhost tmp]# cat /etc/fstab /etc/issue >> /tmp/etc.test
10、請總結描述用戶和組類管理命令的使用方法并完成以下練習: ?
- 創建組distro,其GID為2016;
[root@localhost tmp]# groupadd distro -g 2016
- 創建用戶mandriva,其ID號為1005;基本組為distro;
[root@localhost tmp]# useradd mandriva -u 1005 -g distro
- ?創建用戶mageia,其ID號為1100;家目錄為/home/linux;
[root@localhost tmp]# useradd mageia -u 1100 -d /home/linux
- 給用戶mageia添加密碼,密碼為mageedu;
[root@localhost tmp]# passwd mageia
Changing password for user mageia.
New password:
BAD PASSWORD: The password is shorter than 8 characters
Retype new password:
passwd: all authentication tokens updated successfully.
- 刪除mandriva,但保留其家目錄;
[root@localhost tmp]# userdel mandriva
[root@localhost tmp]# ls /home/
linux mandriva xingqitian
- 創建用戶slackware,其ID號為2002,基本組為distro,附加組peguin;
[root@localhost tmp]# groupadd peguin && useradd slackware -u 2002 -g distro -G peguin
[root@localhost tmp]# id slackware
uid=2002(slackware) gid=2016(distro) groups=2016(distro),2017(peguin)
- 修改slackware的默認shell為/bin/tcsh;
[root@localhost tmp]# usermod -s /bin/tcsh slackware
[root@localhost tmp]# tail -1 /etc/passwd
slackware:x:2002:2016::/home/slackware:/bin/tcsh
- 為用戶slackware新增附加組admins;
[root@localhost tmp]# groupadd admins
[root@localhost tmp]# usermod -a -G admins slackware
[root@localhost tmp]# id slackware
uid=2002(slackware) gid=2016(distro) groups=2016(distro),2017(peguin),2018(admins)
本文來自投稿,不代表Linux運維部落立場,如若轉載,請注明出處:http://www.www58058.com/91507