Linux
usefull command

通过8个技巧让你成为一个超强的Linux终端用户 http://www.geekfan.net/7112/

Tab键自动补全
管道符命令 ls | grep really
通配符 rm really*name
输出重定向 ls > file1
命令行历史 hirstory
波浪符”~”代表当前用户的主目录。所以,你可以使用”cd ~”切换到你的主目录,而不用输入”cd /home/name”。
这对相对路径同样使用,比如”cd ~/Desktop”会切换到当前用户的桌面目录。 
与之类似的是,”.”代表当前目录,”..”代表父级目录。所有,”cd ..”会跳到父级目录。
后台命令 firefox &
条件执行 sleep 5 && gnome-screenshot 停5秒然后运行gnome的截屏工具

在Linux上安装ack http://www.geekfan.net/6881/

linux 文本查找 grep, ack http://ju.outofmemory.cn/entry/26149

$ wget http://beyondgrep.com/ack-2.12-single-file
$ sudo mv ack-2.12-single-file /usr/local/bin/ack
$ sudo chmod 0755 /usr/local/bin/ack

怎样从Linux终端管理进程:10个你必须知道的命令 http://www.geekfan.net/7112/

top、htop、ps、pstree、kill、killall、xkill、pgrep

如何用Linux命令行管理网络:11个你必须知道的命令 http://www.geekfan.net/7192/

ping -c 4 baidu.com
tracepath baidu.com
tracerouter baidu.com
mtr baidu.com
whois baidu.com
ifconfig eth0
sudo ifdown eth0
sudo ifup eth0
sudo dhclient -r
netstat -s

使用Linux命令行测试网速 http://www.geekfan.net/5521/

$ wget https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py
$ chmod a+rx speedtest_cli.py
$ sudo mv speedtest_cli.py /usr/local/bin/speedtest-cli
$ sudo chown root:root /usr/local/bin/speedtest-cli
$ speedtest-cli

三张图看遍Linux 性能监控、测试、优化工具 http://www.geekfan.net/13481/

*****
Written by cuiqingwei on 18 August 2015