N62-3

Posted wx5c2a3973ce0e4

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了N62-3相关的知识,希望对你有一定的参考价值。

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

echo /etc/passwd文件详情如下:

echo /etc/passwd文件中其默认shell为非/sbin/nologin的用户个数为: `cat /etc/passwd | grep -v /sbin/nologin |wc -l`

echo 默认shell为非/sbin/nologin的用户为: `cat /etc/passwd | grep -v  "/sbin/nologin" |cut -d: -f1`

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

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

nologin:1012:/sbin/nologin

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

 [root@localhost ~]# netstat -tan | grep ESTABLISHED | tr -s | cut -d -f5 | cut -d: -f1 | uniq | sort -rn

192.168.52.1

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

 !/bin/bash$

##********************************************************************

#Date: 2022-04-05

#FileName: disk.sh

#Description: The disk script

#Copyright (C): 2022 All rights reserved

#********************************************************************

echo "磁盘分区信息如下"

df -h

echo -n "当前硬盘分区中最大空间利用率为:"

df -h | grep `df | grep -o [[:digit:]]\\1,3\\% | sort -rn | head -n 1` | tr -s | cut -d -f1,5

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

 #!/bin/bash$

##********************************************************************

#Date: 2022-04-05

#FileName: systeminfo.sh

#URL: http://www.magedu.com

#Description: The systeminfo script

#Copyright (C): 2022 All rights reserved

#********************************************************************

echo "当前系统信息如下"

echo "主机名:"`hostname`

echo "IPv4地址:"`ifconfig | sed -r -n /inet /s/^.*inet ([0-9.]+) .*$/\\1/gp | grep -v 127.0.0.1`

echo "操作系统版本: "`cat /etc/redhat-release`

echo "内核版本:"`uname -r`

echo "CPU型号:"`lscpu | grep Intel\\(R\\)`

echo "内存大小: "

free -h

echo "硬盘大小: "

lsblk


以上是关于N62-3的主要内容,如果未能解决你的问题,请参考以下文章

2874: 基础连续数的和

希尔排序笔记

ab测试参数描述详情

ab测试参数描述详情

linux上MongoDB安装部署

尚硅谷算法与数据结构学习笔记07 -- 排序算法2