Linux

LemonBench
curl -fsSL http://ilemonra.in/LemonBenchIntl | bash -s fast
wget -qO- http://ilemonra.in/LemonBenchIntl | bash -s fast

yabs
curl -sL yabs.sh | bash -s -- -fi

登录系统记录
lastb
lastb | wc -l
echo "" > /var/log/wtmp  #清除登录系统成功的记录(last命令看到的记录)             
echo "" > /var/log/btmp  #清除登录系统失败的记录(lastb命令看到的记录)        
history -c               #清除历史执行命令(history命令看到的记录)

查看网络连接
netstat -an
netstat -an | grep :80 | wc -l
netstat -na | grep ESTABLISHED | wc -l

watch ifconfig
watch more /proc/net/dev

screen
screen -S
screen -r
screen -ls
screen -rd
CTRL+a+d
screen -dm tcpdump
exit

chattr
chattr +i ***   //禁止更改文件
chattr -i ***   //还原属性
chattr -R +i ***   //-R 递归
chattr +a ***   //增加数据而不能删除   

zip、unzip
zip ana.zip anaconda-ks.cfg
zip test.zip install.log install.log.syslog
zip -r dir1.zip dir1

unzip test.zip 				->将test.zip解压到当前文件下
unzip -n test.zip -d /tmp 	->将test.zip解压到/tmp目录下,并且不要覆盖已有文件
unzip -v test.zip			->查看test.zip内容,但不解压
unzip -o test.zip -d tmp/	->将test.zip解压到/tmp目录下,并且覆盖已有文件

BestTrace
yum -y install zip unzip
wget https://cdn.ipip.net/17mon/besttrace4linux.zip
unzip besttrace4linux.zip
chmod +x besttrace
./besttrace 14.122.163.247

Xshell 密钥登陆
mkdir .ssh
chmod 700 .ssh
chmod 600 .ssh/authorized_keys

nano /etc/ssh/sshd_config

RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
PasswordAuthentication no

service sshd restart