摘要:
[root@ logs]# tzselect Please identify a location so that time zone rules can be set correctly.Please select a continent or ocean. 1) Africa 2) Americ... 阅读全文
摘要:
curl -o /dev/null -s -w %{speed_download}:%{time_total} urlss -ant | awk 'NR>1 {++s[$1]} END {for(k in s) print k,s[k]}'netstat -n | awk '/^tcp/ {++S... 阅读全文
摘要:
# yum -y install \automake make cmake autoconf rpm-build ncurses ncurses-devel ntp \gd cpp gcc gcc-c++ glibc glibc-devel glibc-common glib2 glib2-de... 阅读全文
摘要:
下面是我初步的排查过程: [1] [root@71 ~]# tcpdump host 192.168.0.71|grep "IP 115.*"|more tcpdump: verbose output suppressed, use -v or -vv for full proto... 阅读全文
摘要:
tcpdump -i eth0 -n -vvv src or dst port 443 阅读全文
摘要:
find . -name "*" -exec rm -fv {} \;find . -name "*"|xargs rm -rf "*"先创建一个空目录empty dir 然后rsync -a --delete /dir/empty dir 阅读全文
摘要:
Squid采用新方案部署的调整步骤一,隔离二,修改三,验证四,波及==============================[1] 把被引用到的待修改对像实例,从前端应用负载nginx的配置中摘出比如cdn节点XX截止2014-10-10,对外提供服务的2个节点是111.222,111.223登录... 阅读全文
摘要:
command1&command2&command3 三个命令同时执行 command1;command2;command3 不管前面命令执行成功没有,后面的命令继续执行 command1&&command2 只有前面命令执行成功,后面命令才继续执行 阅读全文
摘要:
sed -i '$a service snmpd start' /etc/rc.localsed -i "41s:public:mykey:g" /etc/snmp/snmpd.confsed -i "85s:#::g" /etc/snmp/snmpd.conf参考资料:http://www.osc... 阅读全文
摘要:
find ./ -mtime 83 -exec sz {} \;find . -type f -exec ls -l {} \;\;表达 -exec 的结束。==========================[1]find / -name "*.sh"|xargs tar -rf sh.tgz[2... 阅读全文