linux03
2021/12/6 7:20:46
本文主要是介绍linux03,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
第三周
1、统计出/etc/passwd文件中其默认shell为非/sbin/nologin的用户个数,并将用户都显示出来
cat /etc/passwd|grep '/sbin/nologin$'|cut -d: -f1
2、查出用户UID最大值的用户名、UID及shell类型3
cat /etc/passwd|sort -t: -k3 -n|tail -n1|cut -d: -f1,3,7
3、统计当前连接本机的每个远程主机IP的连接数,并按从大到小排序
netstat -t | grep ':ssh'|tr -s ' '|cut -d ' ' -f5|cut -d: -f1 | uniq -c|sort -rn
4、编写脚本disk.sh,显示当前硬盘分区中空间利用率最大的值
#!/bin/bash
# **********************************************************
# * Author : haozhen
# * Email : haozhenyes@163.com
# * Create time : 2021-12-05 14:01
# * Filename : disk2.sh
# * Description :
# **********************************************************
df |grep -E "(/dev/nv)|(/dev/nv)"|grep -oE "[0-9]{1,3}%"|sort -nr|head -n1
5、编写脚本 systeminfo.sh,显示当前主机系统信息,包括:主机名,IPv4地址,操作系统版本,内核版本,CPU型号,内存大小,硬盘大小
#!/bin/bash
# **********************************************************
# * Author : haozhen
# * Email : haozhenyes@163.com
# * Create time : 2021-12-05 14:21
# * Filename : systeminfo.sh
# * Description :
# **********************************************************
echo "主机名:`hostname`"
echo "IPV4地址:`ifconfig ens160|grep -oE \"([0-9]{1,3}\.){3}[0-9]{1,3}\"|head -n1`"
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 '^nv' |tr -s ' ' |cut -d " " -f4`"
6、20分钟内通关vimtutor(可参考https://yyqing.me/post/2017/2017-02-22-vimtutor-chinese-summary)
这篇关于linux03的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南