Linux下检测性能的常用命令
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-23
性能检测命令
top
free
df
uptime
last
history
vmstat 1
sar
iostat
netstat -an
nmap -sT -O localhost
uname -r
chkconfig --list
w
du -ms
netstat -n -p -t | grep SYN_RECV | grep :80 | wc -l
ps -aux | grep imap
kill -9 <PID>
killall imapd
加入于2006.11.21
less /etc/sysconfig/iptables
less /etc/ssh/sshd_config
less /etc/passwd //look for new user
less /etc/group //look for new group or if have new user in root group
less /etc/rc.d/rc.local
Monitor Opening Port
# nmap –sT –O localhost
834/tcp open unknown
# cat /etc/services | grep 834 //查看834端口是否和任何已知服务相关
# netstat –anp | grep 834 //p选项揭示了打开834端口的进程ID(PID)
# lsof –i | grep 834
查找或删除正在使用某文件的进程 fuser filename fuser -k filename yum clear all yum -y update if you find "Error: Cannot find a valid baseurl for repo", try to ping [url]www.centos.org[/url] and check iptables policy. if you find "You may also check that you have the correct GPG keys installed",then: uname -r find / -name RPM-GPG-KEY-* //number:version about CentOS rpm --import /usr/share/doc/CentOS-release-3/RPM-GPG-KEY-centos3 //change IP address: vi /etc/sysconfig/network-scripts/ifcfg-eth0 //add default gateway route add default gw 192.168.18.1 dev eth0 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: linux下tar解压特定的目录下一篇: postfix配置main.cf
关于Linux下检测性能的常用命令的所有评论