Disk info

Disk
http://www.dataclinic.co.uk/data-recovery/hard-disk-functionality.htm
http://thestarman.pcministry.com/asm/mbr/DriveOffsets.htm
MBR
http://thestarman.pcministry.com/asm/mbr/PartTables.htm#mbr
EBR
http://en.wikipedia.org/wiki/Extended_boot_record

BIOS Parameter Block
http://thestarman.pcministry.com/asm/mbr/GRUBbpb.htm
http://bootmaster.filerecovery.biz/appnote3.html
Floopy disk
http://en.wikipedia.org/wiki/Floppy_disk
Inside the Linux boot process
http://www.ibm.com/developerworks/linux/library/l-linuxboot/
Linux initial RAM disk (initrd) overview
http://www.ibm.com/developerworks/linux/library/l-initrd.html

查看initrd.img文件:

[root@localhost fd_linux]# pwd
/root/fd_linux
[root@localhost fd_linux]# cp /boot/initrd-2.6.9-78.EL.img .
[root@localhost fd_linux]# ls
initrd-2.6.9-78.EL.img
[root@localhost fd_linux]# file initrd-2.6.9-78.EL.img
initrd-2.6.9-78.EL.img: gzip compressed data, from Unix, max compression
[root@localhost fd_linux]# mv initrd-2.6.9-78.EL.img initrd-2.6.9-78.EL.img.gz
[root@localhost fd_linux]# gunzip initrd-2.6.9-78.EL.img.gz
[root@localhost fd_linux]# ls
initrd-2.6.9-78.EL.img
[root@localhost fd_linux]# file initrd-2.6.9-78.EL.img
initrd-2.6.9-78.EL.img: ASCII cpio archive (SVR4 with no CRC)
[root@localhost fd_linux]# cpio -i –make-directories <
initrd-2.6.9-78.EL.img
3376 blocks
[root@localhost fd_linux]# ls
bin dev etc init initrd-2.6.9-78.EL.img lib loopfs proc sbin sys sysroot

perl的学习 1

1. With Perl, command-line arguments are stored in the array named @ARGV.

#!/usr/bin/perl

#———————#

PROGRAM: argv.pl

#———————#

$numArgs = $#ARGV + 1;
print “thanks, you gave me $numArgs command-line arguments:/n”;

foreach $argnum (0 .. $#ARGV) {

print “$ARGV[$argnum]/n”;

}
result :
[root@localhost perl]# ./argv.pl 2 2 2 fd
thanks, you gave me 4 command-line arguments:
2
2
2
fd

2. Scalar variables
$priority = 9;
$priority = ‘high’;
$priority = ‘9’;
$default = ‘0009’;

[root@localhost perl]# cat basic.pl

#!/usr/bin/perl

#———————#

PROGRAM: basic.pl

#———————#

$a = ‘fff’;
$b = ‘x’;
$c = 3;
print ‘$a and $b’;
print “/n”;
print “$a and $b”;
print “/n”;
print $a . $c;
print “/n”;
print $a x $c;
print “/n”;

result :
[root@localhost perl]# perl basic.pl
$a and $b
fff and x
fff3
fffffffff

3. reg
http://www.comp.leeds.ac.uk/Perl/matching.html

4. subroutine
http://www.comp.leeds.ac.uk/Perl/subroutines.html

也谈 逃出你的肖申克(from pongda)

我们自己存在很多偏见和认知偏差,所以需要防止它们。
首先要了解它们是什么,然后用critical thinking来克服。

逃出你的肖申克(一):为什么一定要亲身经历了之后才能明白?

http://mindhacks.cn/2009/01/18/escape-from-your-shawshank-part1/
《Mistakes Were Made(But not by Me)》
《Mean Genes》
《进化心理学》
《Predictably Irrational》
《别做正常的傻瓜》
《摇摆(Sway):难以抗拒的非理性诱惑》
《Behavioral Economics》
《找寻逝去的自我》
逃出你的肖申克(二):仁者见仁智者见智?从视觉错觉到偏见

http://mindhacks.cn/2009/03/15/preconception-explained/
《Making Up the Mind》
逃出你的肖申克(三):遇见20万年前的自己

http://mindhacks.cn/2010/03/18/escape-from-your-shawshank-part3/
《Synaptic Self》
《Kluge》
《Phantoms in the Brain》
《社会性动物》
《How We Decide》
《The Brain That Changes Itself》
逃出你的肖申克(四):理智与情感
http://mindhacks.cn/2011/01/23/escape-from-your-shawshank-4/
《How We Know What Isn’t So》
《欲望之源》
《进化心理学》
《谁会认错》
《决策与判断》

Linux下一些使用到的命令

设置显示语言为eucip

export LANG=ja_JP.eucjp

设置显示语言为英文
export LANG=en_US.utf8
export LC_ALL=C

优先从环境变量中取得对应的变量 ; 如果设置和和makefile中同名的环境变量,

使用make时会使用你的环境变量

alias make=’make -e

找到所以的xml文件,然后将它们copy到/root/xml目录下

find -name ‘*.xml’ -print |xargs -I{} cp {} /root/xml

从当前目录开始,递归查找所有包含abc的文件的具体行的内容,并显示出行号, -v表示不显示

grep -nr *abc . | grep -v svn | grep extern

将本地svn中不同的文件打包为diff.tar.gz

svn status | awk ‘{ print $2 }’ | xargs tar -zcvf diff.tar.gz

查找当前目录下的所有文件中的以│开头的行的内容(注意要查找日文或中文字符是需要通过-8E来连接)

grep -n “^│” *

将make的执行结果重定向到tmp文件中

make &>tmp

使make的调用使用/bin/sh shell

make clean SHELL=/bin/sh
make SHELL=/bin/sh

下载svn server上的第八版source

svn co svn://localhost/my_repo -r 8

设置自己的prompt

export PS1=”[${LOGNAME}@$(hostname) /W]”

vi search whole word:
/

vi 忽略大小写

:set ic ignore case when searching
:set noic turn ignore case off

vi 显示行号

:set nu turn on line numbering
:set nonu turn line numbering off

从当前目录开始递归生成所有c文件的tags,以便以后使用

ctags -R *

其他

不同平台下的回车换行

CR: mac
CR+LF: microsoft
LF: linux

斜线和反斜线

slash /
back slash /
http://en.wikipedia.org/wiki/Slash_%28punctuation%29

linux下解压命令

ZIP

zip -r archive_name.zip directory_to_compress

unzip archive_name.zip

TAR

tar -cvf archive_name.tar directory_to_compress

tar -xvf archive_name.tar.gz

tar -xvf archive_name.tar -C /tmp/extract_here/

TAR.GZ

tar -zcvf archive_name.tar.gz directory_to_compress

tar -zxvf archive_name.tar.gz

tar -zxvf archive_name.tar.gz -C /tmp/extract_here/

TAR.BZ2

tar -jcvf archive_name.tar.bz2 directory_to_compress

tar -jxvf archive_name.tar.bz2

tar -jxvf archive_name.tar.bz2 -C /tmp/extract_here/

各种工具下的正则表达式

1. eclipse:
http://www.eclipse.org/tptp/home/downloads/installguide/gla_42/ref/rregexp.html
(在eclipse中查找和替换时会用到)

2. notepad++

  • // - Backslash character;
  • /t – TAB character;
  • /r – CR character;
  • /n – LF character;
  • /0 – NULL character;
  • /x## - Hexadecimal value (between 00 and FF);
  • /u#### - Extended hexadecimal value (between 0000 and FFFF, meant for Unicode characters);
  • /d### - Decimal value (between 000 and 255);
  • /o### - Octal value (between 000 and 377);
  • /b######## - Binary value (between 00000000 and 11111111).

http://www.scintilla.org/SciTERegEx.html