显示消耗内存CPU最多的10个进程
ps aux|sort -nrk +3|head -10
ps aux|sort -nk +3 |tail -10
显示消耗内存MEM最多的10个进程
ps aux|sort -nrk +4|head -10
ps aux|sort -nk +4 |tail -10
----------------------------------------------------------------------------
2.查看Apache的并发请求数及其TCP连接状态
netstat -n|awk '/^tcp/ {++S[$NF]} END {for (a in S) print a, S[a]}'
------------------------------------------------------------------------------
3.找出自己最常用的10条命令及使用次数(或求访问最多的ip数)
sed -e ‘s/| /\n/g’ ~/.bash_history |cut -d ‘ ‘ -f 1 | sort | uniq -c | sort -nr | head
——————————————————————————————————————————
4.日志中第10个字段表示连接时间,求平均连接时间
cat access_log |grep “connect cbp” |awk ‘BEGIN{sum=0;count=0;}{sum+=$10;count++;}END{printf(“sum=%d,count=%d,avg=%f\n”,sum,count,
sum/count)}’
——————————————————————————————————————————
5.lsof命令
lsof abc.txt 显示开启文件abc.txt的进程
lsof -i :22 知道22端口现在运行什么程序
lsof -c abc 显示abc进程现在打开的文件
lsof -p 12 看进程号为12的进程打开了哪些文件
——————————————————————————————————————————
6.杀掉一个程序的所有进程
pkill -9 httpd
killall -9 httpd
注意尽量不用-9,数据库服务器上更不能轻易用kill,否则造成重要数据丢失后果将不堪设想。
——————————————————————————————————————————
7.rsync命令(要求只同步某天的压缩文件,而且远程目录保持与本地目录一致)
/usr/bin/rsync -azvR –password-file=/etc/rsync.secrets `find . -name “*$yesterday.gz” -type f ` storage@192.168.2.23::logbackup/13.21/
——————————————————————————————————————————
8.把目录下*.sh文件改名为*.SH
find . -name “*.sh” | sed ‘s/\(.*\)\.sh/mv \0 \1.SH/’ |sh
find . -name “*.sh” | sed ‘s/\(.*\)\.sh/mv & \1.SH/’|sh (跟上面那个效果一样)
find /root -name \*.IMAP && for i in `cat /tmp/list`;do mv $i `echo ${i%.IMAP}`;done //删除结尾的
expr $VALUE : ‘\(.*\).doc’ //把VALUE变量中的.doc后辍去掉
echo ${VALUE##*.} //取文件后辍名
——————————————————————————————————————————
9.ssh执行远程的程序,并在本地显示
ssh -n -l zouyunhao 192.168.2.14 “ls -al /home/zouyunhao”
——————————————————————————————————————————
10. 直接用命令行修改密码
echo “zouyunhaoPassword” |passwd –stdin zouyunhao
——————————————————————————————————————————
ssh-keygen
ssh-copy-id -i ~/.ssh/id_rsa.pub user@remoteServer
——————————————————————————————————————————
12.以http方式共享当前文件夹的文件
$ python -m SimpleHTTPServer
在浏览器访问http://IP:8000/即可下载当前目录的文件。
——————————————————————————————————————————
13.shell段注释
:<<‘echo hello,world!’
——————————————————————————————————————————
14.查看服务器序列号
dmidecode |grep “Serial Number” (查看机器其他硬件信息也可用这个命令)
——————————————————————————————————————————
15.查看网卡是否有网线物理连接
/sbin/mii-tool
/sbin/ethtool
——————————————————————————————————————————
16.查看linux系统或者mysql错误码表示的意思,如查看13错误码表示的意思:
perror 13
——————————————————————————————————————————
17.查看网络实时流量
watch -n 1 “/sbin/ifconfig eth0 | grep bytes”
——————————————————————————————————————————
18.修复mysql数据表
/usr/local/mysql-4.0.26/bin/mysqlcheck -A -o -r -uroot -p
——————————————————————————————————————————
19.检查磁盘超过容量删除备份
1 2 3 4 5 6 7 8 9 10 | #!/bin/sh df -h | grep sda7 | awk '{ print $5 " " $1 }' | while read output; do echo $output usep=$( echo $output | awk '{ print $1}' | cut -d '%' -f1 ) partition=$( echo $output | awk '{ print $2 }' ) if [ $usep - ge 90 ]; then find /home/backup/rollout - type f -mtime +30 - exec rm {} \; fi done |
——————————————————————————————————————————
20.查询域名zone transfer 记录
# dig -t axfr @ns1.pipedns.com sheriy.com
如何禁止:
options {
allow-transfer { IP;};
};
——————————————————————————————————————————
21.查询域名详细注册 信息:
#whois sheriy.com
——————————————————————————————————————————
22.查看mysql授权用户
select * from mysql.db
——————————————————————————————————————————
23.实时某个目录下查看最新改动过的文件
watch -d -n 1 ‘df; ls -FlAt /path’
————————————————————