列出你最常用的10条shell
history | awk ‘{a[$2]++}END{for(i in a){print a[i] " " i}}‘ | sort -rn | head
history | awk ‘{a[$4]++}END{for(i in a){print a[$i] " " i}}‘ | sort -rn | head
grep -v "#" .bash_history |awk ‘{++a[$1]}END{for(i in a)print i,a[i]|"sort -k2 -nr"}‘ | head
网络连接数目
netstat -an | grep -E "^(tcp)" | cut -c 68- | sort | uniq -c | sort -n #查看状态数连接数
netstat -ntu | awk ‘{print $5"\n"}‘ | cut -d: -f1 | sort | uniq -c | sort -nr|head -n 20 #统计IP连接数
netstat -an -t | grep ":22" | grep ESTABLISHED | awk ‘{printf "%s %s\n",$5,$6}‘ | sort | wc -l #进程连接数
取网卡IP
/sbin/ifconfig |sed ‘s/.*inet addr:\(.*\) Bca.*/\1/g‘ |sed -n ‘/br/{n;p}‘ #双网卡绑定用这个
/sbin/ifconfig |sed ‘s/.*inet addr:\(.*\) Bca.*/\1/g‘ |sed -n ‘/eth/{n;p}‘ #普通网卡用这个
ifconfig eth0 |grep "inet addr:" |awk ‘{print $2}‘|cut -c 6- 或者
ifconfig | grep ‘inet addr:‘| grep -v ‘127.0.0.1‘ | cut -d: -f2 | awk ‘{ print $1}‘
系统信息统计
dmidecode -t system |grep -E ‘Serial‘|awk -F‘:‘ ‘{print $2}‘ (系统序列号查询)
cat /proc/cpuinfo | grep CPU | awk -F: ‘{print $2}‘ | sort|uniq -c (cpu核数)
dmidecode -t system |grep ‘Product‘|awk ‘{print $3$4}‘ (单板设备类型)
dmidecode | grep -P -A 5 ‘Memory Device‘ | grep Size | grep -v Range|grep -i -v "no module"|sed -r ‘s/^\s+//g‘ | sort|uniq -c (内存大小)
echo `/sbin/ifconfig |sed ‘s/.*inet addr:\(.*\) Bca.*/\1/g‘ |sed -n ‘/eth/{n;p}‘ ` `hostname` >>/etc/hosts 取IP和主机名定向到/etc/hostname
系统抓包分析
tcpdump -c 10000 -i eth0 -n dst port 80 > /root/pkts (tcpdump 抓包 ,用来防止80端口被人攻击时可以分析数据 )
less | awk ‘ {printf $3"\n"}‘ | cut -d. -f 1-4 | sort | uniq -c | awk ‘{printf $1" "$2"\n"}‘ | sort -n -t\ +0 (然后检查IP的重复数 并从小到大排序 注意 "-t\ +0" 中间是两个空格 )
系统进程管理
ps -eo pid,lstart,etime | grep 26871 (进程运行时间)
lsof -p 10412 (查看进程打开的文件 10412是进程的PID)
ps -e -o "%C : %p : %z : %a"|sort -k5 -nr (查看进程 按内存从大到小排列 )
ps -e -o "%C : %p : %z : %a"|sort -nr (按cpu利用率从大到小排列)
ps aux |grep mysql |grep -v grep |awk ‘{print $2}‘ |xargs kill -9 (杀掉mysql进程)
killall -TERM mysqld 杀掉mysql进程:
ps -eal | awk ‘{ if ($2 == "Z") {print $4}}‘ | kill -9 杀掉僵死进程
网卡流量
dstat -acdgilmnprstTfy (centos查看网卡流量)
iftop (suse系统网卡流量)
sar -n DEV 1 10 (suse系统网卡流量)
iotop -o (查看那个进程最磨磁盘)
文件管理
删除0字节文件
find -type f -size 0 -exec rm -rf {} \;
查看目录下10个大文件
du -cks * | sort -rn | head -n 10
du -h --max-depth=1 /home
运维常用shell
时间: 2024-10-08 18:55:49
运维常用shell的相关文章
五年屌丝运维工作shell精华
屌丝运维常用shell列出你最常用的10条shellhistory | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | headhistory | awk '{a[$4]++}END{for(i in a){print a[$i] " " i}}' | sort -rn | head grep -v "#" .bash_history |awk '{++a[$1]}EN
Linux运维常用命令
Linux运维常用的150个命令 命令 功能说明 线上查询及帮助命令(2个) man 查看命令帮助,命令的词典,更复杂的还有info,但不常用. help 查看Linux内置命令的帮助,比如cd命令. 文件和目录操作命令(18个) ls 全拼list,功能是列出目录的内容及其内容属性信息. cd 全拼change directory,功能是从当前工作目录切换到指定的工作目录. cp 全拼copy,其功能为复制文件或目录. find 查找的意思,用于查找目录及目录下的文件. mkdir 全拼mak
《跟老男孩学Linux运维之shell编程实战》-第二章 shell变量的核心基础
这篇文章主要讲解 shell变量的核心基础. 1.变量是什么? 变量是什么?可能有好多人不明白,简单地说,变量就是用一个固定的字符串(也可能是字符.数字等的组合)代替更多.更复杂的内容,该内容里可能还会包含变量.路径.字符串等其他的内容. 变量的赋值方式为:先写变量名称,紧接着是"="这个字符,最后是值,中间无任何空格(变量的内容一般要加双引号,以防止出错,特别是当值里的内容之间有空格时). 如何打印变量?通过echo命令加上$变量名 打印变量的值: 例如:定义变量和打印变量: [[e
Python系统运维常用库
Python系统运维常用库 1.psutil是一个跨平台库(http://code.google.com/p/psutil/) 能够实现获取系统运行的进程和系统利用率(内存,CPU,磁盘,网络等),主要用于系统监控,分析和系统资源及进程的管理. 2.IPy(http://github.com/haypo/python-ipy),辅助IP规划. 3.dnspython(http://dnspython.org)Python实现的一个DNS工具包. 4.difflib:difflib作为Python
服务器运维常用的python模块概述
最近开始复习python的使用,把服务器运维常用的模块的用法进行了实例化概述. ==========sort========================= python 排序: ls=[1,31,13,141,41] ls.sort() print ls 元组sort: >>> lst=[('wyl',24),('hjj',25),('zs',22),('lisi',14)] >>> sorted(lst,key=lambda lst:lst[1],reverse=
《跟老男孩学Linux运维之shell编程实战》-第五章 shell脚本的条件测试
本文的知识点是关于shell脚本的条件测试的相关内容. 通常在shell脚本中我们需要做各式各样的条件判断,比如,测试一个文件是否存在.是否为文件或目录.是否 具有执行权限等等,所以在shell脚本中,条件判断还是至关重要的.接下来我们进入正题:shell脚本的条件测试. 1.在bash编程中,条件测试常用的语法形式如下表: 提示: 语法1中的test命令和语法2中的[]是等价的.语法3中的[[]]双中括号为扩展的test命令. 语法4中的(())常用于计算. 在双中括号[[]]中可以使用通配符
《跟老男孩学Linux运维之shell编程实战》-第四章 变量的数值计算
本文讲解shell编程中变量的数值计算. 1.常见的算术运算符: 提示: 此处对于我自己来说++.--比较难理解,之前一看到脚本中有这些符号,就看不懂了,所以在此举例说明一下: [[email protected] ~]# a=10 ==>定义变量a[[email protected] ~]# echo $((a++)) ==>如果a在运算符++或--的前面,那么输出整个表达式时,会输出a的值, 此前定义的变量a为10,所以此处的值为10.10[[email
Centos运维常用命令总结
Centos运维常用命令总结 1.删除0字节文件 find-type f -size 0 -exec rm -rf {} \; 2.查看进程 按内存从大到小排列 PS-e -o "%C : %p : %z : %a"|sort -k5 -nr 3.按cpu利用率从大到小排列 ps-e -o "%C : %p : %z : %a"|sort -nr 4.打印说cache里的URL grep -r-a jpg /data/cache/* | st
Python 运维常用模块
基础库:sys.os(os.path.os.stat).time.logging.prarmiko.re.random Python运维常用的20个库 1.psutil是一个跨平台库(https://github.com/giampaolo/psutil)能够实现获取系统运行的进程和系统利用率(内存,CPU,磁盘,网络等),主要用于系统监控,分析和系统资源及进程的管理. 2.IPy(http://github.com/haypo/python-ipy),辅助IP规划. 3.dnspython(h