共计 2681 个字符,预计需要花费 7 分钟才能阅读完成。
导读 | 介绍一下 linux 运维需要掌握的技巧 |
find . -name“*.tar”-exec mv {}./backup/ ;
注解:find –name 主要用于查找某个文件名字,-exec、xargs 可以用来承接前面的结果,然后将要执行的动作,一般跟 find 在一起用的很多,find 使用我们可以延伸 -mtime 查找修改时间、-type 是指定对象类型(常见包括 f 代表文件、d 代表目录),-size 指定大小,例如经常用到的:查找当前目录 30 天以前大于 100M 的 LOG 文件并删除。
find . -name “*.log” –mtime +30 –typef –size +100M |xargs rm –rf {};
for i in `find . –name“*.zip”–type f `
do
unzip –d $i /data/www/img/
done
注解:forI in(command);do … done 为 for 循环的一个常用格式,其中 I 为变量,可以自己指定。
如何去掉行首的. 字符:
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
更多 sed 命令请查阅相关文档。
if
[! –d /data/backup/];then
Mkdir–p /data/backup/
else
echo "The Directory alreadyexists,please exit"
fi
注解:if…;then …else ..fi:为 if 条件语句,! 叹号表示反义“不存在“,- d 代表目录。
(1)、打印根分区大小
df -h |sed -n '//$/p'|awk '{print $5}'|awk –F”%”'{print $1}'
注解:awk‘{print $5}’意思是打印第 5 个域,- F 的意思为分隔,例如以 % 分隔,简单意思就是去掉百分号,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 LinuxSA Check Linux Disk !”|mail -s“Warn Linux / Parts is $i%”XXX@XXX.XX
fi
done
done
cat access.log |awk '{print $1}'|sort|uniq -c |sort -nr |head -20
注解:sort 排序、uniq(检查及删除文本文件中重复出现的行列)
sed -i '/SELINUX/s/enforcing/disabled/' /etc/selinux/config
Sed 冒号方式 sed -i‘s:/tmp:/tmp/abc/:g’test.txt 意思是将 /tmp 改成 /tmp/abc/。
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’
snmpwalk -v2c -c public 192.168.0.241
sed -e‘s/jk$/yz/g’b.txt
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 端口!tcp/ip 7 层协议物理层–数据链路层 - 网络层 - 传输层 - 会话层 - 表示层 - 应用层。
cat .bash_history |grep -v ^# |awk‘{print $1}’|sort |uniq -c |sort -nr |head-20
find . -mtime +3 -name "*.log" |xargs rm -rf {} ;
find . -size +100k -exec mv {} /tmp ;
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
/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
sed 's:/user/local:/tmp:g' test.txt
或者
sed -i 's//usr/local//tmp/g' test.txt