
linux useful
tmjdone
这个作者很懒,什么都没留下…
展开
-
Emacs Quick Reference
http://sean.wenzel.net/docs/emacs/quick_reference/Emacs Quick ReferenceNotationIt is important to understand the notation commonly used in Emacsdocumentation. Most of the commands转载 2009-10-27 13:14:00 · 659 阅读 · 0 评论 -
useful command
see eth0 status (10M or 100M , half or full) : ethtool eth0 拷贝别的地方的多个文件:cp /usr/share/grub/{unicode.pf2,ascii.pf2} /boot/grub/转换文件编码 iconv转换文件名编码 convmv -r --notest -f gbk -t utf-8 *原创 2011-05-01 22:46:00 · 350 阅读 · 0 评论 -
linux ftp mirror
wget -m ftp://path/to/directorylftp -c 'open -e "mirror genbank/genomes/Eukaryotes/vertebrates_mammals/Homo_sapiens/GRCh37 . /" ftp://ftp.ncbi.nih.gov'ncftpget -R -v -u "username" ftp://xxx/xxx/原创 2011-09-13 13:40:00 · 1658 阅读 · 0 评论 -
linux distro timeline
转载 2011-12-22 10:33:47 · 1512 阅读 · 0 评论 -
Open Grid Scheduler
#$ -S /bin/sh#$ -e JobName.err.$JOB_ID#$ -o JobName.out.$JOB_ID#$ -l vf=1G#$ -l hostname=node3#$ -m beas#$ -M xxx@xxx.xxx#$ -cwduname -n原创 2011-12-20 11:48:49 · 811 阅读 · 0 评论 -
linux 自己用的常用软件
http ftp downloader: wget 兼容性好,不能多线程; prozilla 多线程(开了代理貌似就不能多线程了); aria2 正准备试ed2k downloader: mldonkeytext editor: emacscluster: Open Grid Scheduler (sun grid engine)programming :原创 2011-08-10 14:16:02 · 362 阅读 · 0 评论 -
linux hibernate on swap file
https://wiki.archlinux.org/index.php/UswsuspStep A:install https://aur.archlinux.org/packages/us/uswsusp-git/uswsusp-git.tar.gztar z原创 2011-08-26 19:05:51 · 1283 阅读 · 0 评论 -
html5
http://slides.html5rocks.comhttp://visionwidget.com/inspiration/web/453-javascript-flash-photo-gallery.htmlhttp://net.tutsplus转载 2011-09-18 10:12:41 · 389 阅读 · 0 评论 -
linux file encoding convertion gbk to utf8(utf-8)
iconv -f "gbk" -t "utf-8" The.Legend.of.1900.webm.chs.srt -o The.Legend.of.1900.webm.chs.srt.utf8转载 2011-09-17 13:24:33 · 1400 阅读 · 0 评论 -
Changing a process’ file descriptor on the fly
source:http://ingvar.blog.redpill-linpro.com/2010/07/10/changing-a-process-file-descriptor-on-the-fly/Changing a process’ file descripto转载 2011-08-11 17:14:44 · 452 阅读 · 0 评论 -
iptables configuration
when successful compiled kernel:iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPTiptables -I INPUT 4 -m state --state NEW -s原创 2011-01-14 12:21:00 · 375 阅读 · 0 评论 -
linux installation
分区:parted /dev/sdbmklabel gptunit sprint -->disk /dev/sdb:Asmkpart primary ext4 0% 100%printquit原创 2011-08-10 16:02:28 · 311 阅读 · 0 评论 -
linux gb2312 to utf-8
<br />iconv -c -f "gbk" -t "utf-8" < readme.txt > readme-utf.txt原创 2011-05-04 13:31:00 · 382 阅读 · 0 评论 -
局域网 ip scan
<br />nmap -sn -n 192.168.0./24<br /> <br />sample output:<br /><br />Nmap scan report for 192.168.0.16<br />Host is up (0.024s latency).<br />MAC Address: xx:xx:xx:xx:xx:xx (Intel Corporate)<br />Nmap scan report for 192.168.0.22<br />Host is up.<br />Nma原创 2011-05-04 14:35:00 · 769 阅读 · 0 评论 -
linux 飞鸽传输
<br />http://code.google.com/p/iptux/<br />原创 2011-05-04 13:21:00 · 309 阅读 · 0 评论 -
glibc.so 更名问题
为了更新glibc, 重命名了下glibc.so 没想到之后什么命令都用不了了。google后结论如下:执行一下命令:LD_PRELOAD=/lib64/libc.so.6.old mv /lib64/libc.so.6.old /lib64/libc.so.6 其中libc.so.6.old是原始libc原创 2010-04-27 14:20:00 · 558 阅读 · 0 评论 -
pango 字变成方块问题及解决
估计是自己编译pango导致的,把libpango连接改了就好了。。。ln -s /usr/lib64/libpango-1.0.so.0.1400.9 /usr/lib64/libpango-1.0.so.0 郁闷,就这花了几个小时找原因。。。原创 2010-03-15 23:19:00 · 497 阅读 · 0 评论 -
emacs + selinux
add following line to .emacs(setq backup-by-copying t)原创 2012-02-14 20:41:54 · 627 阅读 · 0 评论