3月 23

[荐]两个系统学习LaTeX的资料

PS1:两者都提供PDF电子书下载奥!
PS2:对于第二本书的网站,查看其上层链接会有更多惊喜!
……【阅读全文】

3月 16

命令行中复制移动时显示进度条

“世间最痛苦的事莫过于等待”,相信使用过Shell中cp或者mv命令操作大文件的朋友们都有这种感慨。要是能显示复制或者移动的进度,把无尽的等待变成有限的期待,那该多好呀!其实,确实有显示进度条的方法,而且方法还不止一种:

1
2
3
4
5
6
7
8
9
10
11
12
13
wget http://ftp.gnu.org/gnu/coreutils/coreutils-8.4.tar.gz
tar xvzf coreutils-8.4.tar.gz
cd coreutils-8.4/
wget http://beatex.org/web/advcopy/advcpmv-0.3-8.4.patch
patch -p1 -i advcpmv-0.3-8.4.patch
./configure
make
sudo cp src/cp /usr/local/bin/cpg
sudo cp src/mv /usr/local/bin/mvg
 
#vim ~/.bashrc
alias cpg="/usr/local/bin/cpg -g"
alias mvg="/usr/local/bin/mvg -g"

PS: An update is scheduled to be released in just three weeks, on March 24, 2012
Continue reading

3月 16

双系统安装与使用策略

如果你有至少两台电脑,比如:一台在家里用于娱乐,一台在公司用于工作,那安装与使用双系统最简单的方案就是在其中一台电脑上安装Windows,在另一台电脑上安装Linux。但如果手头只有一台电脑,又想体验或者需要使用双系统,那该怎么办呢?据我所知,至少有以下四种解决方案:……【阅读全文】

3月 16

监测网络流量的工具

实时监测工具(直观易用)

  • slurm

安装:sudo apt-get install slurm
使用:slurm -i eth0

  • nload

安装:sudo apt-get install nload
使用:nload

  • iftop

安装:sudo apt-get install iftop
使用:sudo iftop

  • bmon

安装:sudo apt-get install bmon
使用:bmon

  • dstat

安装:sudo apt-get install dstat
使用:dstat

  • nethogs

安装:sudo apt-get install nethogs
使用:sudo nethogs

  • ifstat

安装:sudo apt-get install ifstat
使用:ifstat

  • iptraf

安装:sudo apt-get install iptraf
使用:sudo iptraf
Continue reading

3月 16

Bioinformatics Links Directory

The Bioinformatics Links Directory features curated links to molecular resources, tools and databases. The links listed in this directory are selected on the basis of recommendations from bioinformatics experts in the field. We also rely on input from our community of bioinformatics users for suggestions. Starting in 2003, we have also started listing all links contained in the NAR Webserver issue.……【阅读全文】