linux运维常用命令大全(目录命令与磁盘分区命令等)

发布时间:2020-03-06编辑:脚本学堂
linux运维常用命令分享,查找当前目录下文件,sed命令、磁盘分区命令,网络抓包命令等,需要的朋友参考下。

1、查找当前目录下所有以.tar结尾的文件然后移动到指定目录:
 

find . -name “*.tar” -exec mv {} ./backup/ ;

查找当前目录30天以前大于100M的LOG文件并删除。
 

find  . -name "*.log" –mtime +30 –type f –size +100M |xargs rm –rf {} ;

查找最后创建时间是3天前,后缀是*.log的文件并删除。
 

find . -mtime +3  -name "*.log" |xargs rm -rf {} ;

将某目录下大于100k的文件移动至/tmp下。
 

find . -size +100k -exec mv {} /tmp ;

2、批量解压当前目录下以.zip结尾的所有文件到指定目录:
 

for i  in  `find . –name “*.zip” –type f `
do
unzip –d $i /data/www/img/
done

3、sed常用命收集:test.txt做测试
 

复制代码 代码示例:
#如何去掉行首的.字符:
sed -i 's/^.//g' test.txt

#在行首添加一个a字符:
sed 's/^/a/g'    test.txt

#在行尾添加一个a字符:
sed 's/$/a/'     tets.txt

#在特定行后添加一个c字符:
sed '/wuguangke/ac' test.txt

#在行前加入一个c字符:
sed '/wuguangke/ic' test.txt

4、如何判断某个目录是否存在,不存在则新建,存在则打印信息。
 

复制代码 代码示例:
if
[ ! –d /data/backup/ ];then
Mkdir –p /data/backup/
else
echo  "The Directory already exists,please exit"
fi
 

注解:if …;then …else ..fi:为if条件语句,!叹号表示反义“不存在“,-d代表目录。

5、监控linux磁盘根分区,如果根分区空间大于等于90%,发送邮件给Linux SA
(1)、打印根分区大小
 

复制代码 代码示例:
df -h |sed -n '//$/p'|awk '{print $5}'|awk –F ”%” '{print $1}'

(2)、if条件判断该大小是否大于90,如果大于90则发送邮件报警
 

复制代码 代码示例:
while sleep 5m
do
for i in `df -h |sed -n '//$/p' |awk '{print $5}' |sed 's/%//g'`
do
echo $i
if [ $i -ge 90 ];then
echo “More than 90% Linux of disk space ,Please Linux SA Check Linux Disk !” |mail -s “Warn Linux / Parts is $i%”
wugk@map.com
fi
done
done

6、统计nginx访问日志,访问量排在前20 的 IP地址
 

复制代码 代码示例:
cat access.log |awk '{print $1}'|sort|uniq -c |sort -nr |head -20

7、sed另外一个用法找到当前行,然后在修改该行后面的参数:
 

sed -i '/selinux/s/enforcing/disabled/' /etc/selinux/config
Sed冒号方式 sed -i ‘s:/tmp:/tmp/abc/:g’test.txt意思是将/tmp改成/tmp/abc/。

8、打印出一个文件里面最大和最小值:
 

cat a.txt |sort -nr|awk ‘{}END{print} NR==1′
cat a.txt |sort -nr |awk ‘END{print} NR==1′
 

真正的打印最大最小值:
 

sed ‘s/ / /g’ a.txt |sort -nr|sed -n ’1p;$p’

9、修改文本中以jk结尾的替换成yz:
 

sed -e ‘s/jk$/yz/g’ b.txt

10、网络抓包:tcpdump
 

tcpdump -nn host 192.168.56.7 and port 80 抓取56.7通过80请求的数据包。
tcpdump -nn host 192.168.56.7 or ! host 192.168.0.22 and port 80 排除0.22 80端口!

11、显示最常用的20条命令:
 

cat .bash_history |grep -v ^# |awk ‘{print $1}’ |sort |uniq -c |sort -nr |head -20

12、写一个防火墙配置脚本,只允许远程主机访问本机的80端口。
 

iptables -F
iptables -X
iptables -A INPUT -p tcp --dport 80 -j accept
iptables -A INPUT -p tcp -j REJECT
或者
iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

13、写一个脚本进行nginx日志统计,得到访问ip最多的前10个(nginx日志路径:/home/logs/nginx/default/access.log)。
 

cd /home/logs.nginx/default
sort -m -k 4 -o access.logok access.1 access.2 access.3 .....
cat access.logok |awk '{print $1}'|sort -n|uniq -c|sort -nr |head -10

14、写出下列命令的含义
1)MaxKeepAliveRequests    100  连接的最大请求数
2)Options FollowSymLinks  允许192.168.1.1可以列目录
 

Order Deny Allow
Deny from all
Allow from 192.168.1.1

15、替换文件中的目录
 

sed 's:/user/local:/tmp:g'  test.txt
或者
sed -i 's//usr/local//tmp/g' test.txt