记录屏幕回显到文件:script –q vv.log
添加新的系统变量到系统:echo ” export PATH=”$PATH:/my_new_path” ” >> /etc/profile ,source /etc/profile 让更改立即生效
监控网卡的流量:apt-get install nload ; nload -u M eth0 这样就可以实时监控网卡的发送与接收流量了
Linux 添加静态路由到文件
Red-hat,Centos 在/etc/sysconfig/static-routes ,如果没有该文件则建立,原本使用route add –net *.*.*.* netmask *.*.*.* gw *.*.*.* 添加路由的可以在该文件里写成any –net *.*.*.* netmask *.*.*.* gw *.*.*.* Ubuntu,Debian
在/etc/network/interfaces里,在最后添加up route add –net *.*.*.* netmask *.*.*.* gw *.*.*.* 将MAN输出为PDF文件:man -t ipsec.conf | ps2pdf ->a.pdf
Linux中踢出一个用户:
apt-get install psmisc
fuser -k /dev/pts/* *代表使用w命令后所显示的pts*的数字
Debian系统安装内核头文件:apt-get install linux-headers-`uname -r`