linux_3

1、统计出/etc/passwd文件中其默认shell为非/sbin/nologin的用户个数,并将用户都显示出来

[root@lhq ~]#echo "total:`cat /etc/passwd |grep -v "/sbin/nologin$"| wc -l`";cat /etc/passwd |grep -v "/sbin/nologin$"|cut -d: -f1

2、查出用户UID最大值的用户名、UID及shell类型

[root@lhq ~]#cat /etc/passwd |cut -d: -f1,3,7 |sort -t: -k2 -n |tail -1

3、统计当前连接本机的每个远程主机IP的连接数,并按从大到小排序

#统计数量
[root@lhq ~]#echo "远程访问数量:`who |grep -v ":0" |wc -l`"
#过滤ip
[root@lhq ~]#netstat -t |tail -n +3 |tr -s " " |cut -d " " -f5 
192.168.239.1:61823
192.168.239.1:61812
192.168.239.1:61815
192.168.239.1:49600
#排序
考虑到使用桥接网络的虚拟机,其网关都是相同的,需要做去重处理,区别在于端口号不一样
[root@lhq ~]#netstat -t |tail -n +3 |tr -s " " |cut -d " " -f5 |cut -d: -f1 | tr -d . |sort -n |tail -1

4、编写脚本disk.sh,显示当前硬盘分区中空间利用率最大的值
answer1

#!/bin/bash
echo "当前硬盘分区空间利用率最大的值为:`df |tail -n +2 |tr -s " " "%" |cut -d% -f5 | sort -n |tail -1`%"

answer2

#!/bin/bash
df -h |awk ‘{print $5,$6}‘|sed -n ‘2,$p‘ > disk.txt
 
temp=0
for x in `awk -F ‘%‘ ‘{print $1}‘ disk.txt` #以%分割获取第一列
do
  if [ $x -gt $temp ];then   #如果获取的数字>临时变量
    let  temp=$x              #把数字赋值给temp
    fi
done
echo "挂载点:`cat disk.txt |awk -F ${temp}% ‘{print $2}‘` 磁盘空间利用率最大,利用率为:$temp%"

5、编写脚本 systeminfo.sh,显示当前主机系统信息,包括:主机名,IPv4地址,操作系统版本,内核版本,CPU型号,内存大小,硬盘大小

#!/bin/bash
echo "主机名:`hostname`"
echo "IPv4地址:`ip a |grep ".*inet.*[[:space:]]\?brd" |tr -s " "|cut -d" " -f3`"
echo "操作系统:`cat /etc/redhat-release`"
echo "内核版本:`uname -r`"
echo "CPU型号:`lscpu |grep "Model name" |tr -s " " |cut -d: -f2`"
echo "内存大小:`free -h |grep "Mem:" | tr -s " " |cut -d " " -f2`"
echo "硬盘大小:`lsblk | grep "SIZE" -A 1 |tail -1 |tr -s " " |cut -d " " -f4`"

6、20分钟内通关vimtutor(可参考https://yyqing.me/post/2017/2017-02-22-vimtutor-chinese-summary)

linux_3

上一篇:浅析PM2的十个实用功能:自动保存、自定义日志文件、设置内存限制、查看进程信息详细、监控所有进程


下一篇:Windows进程监控工具(1)--Windows下进程获取