2008年1月16日 星期三

find 使用技巧

尋找5分鐘內修改的檔案並排除 test目錄
find . -path "./test" -prune -o -cmin -5 -print

尋找超過2G 的檔案
find / -size +2000000k



find + md5sum to check file integrity
find . -name '*' -type f -exec md5sum '{}' >checksum.md5 \; 

刪除副檔名為png 的檔案
find . -name "*.png" | xargs -i rm {}
find . -name "*.png" -exec rm {} \;


Recursive update files timestamp
find . -exec touch {} \;

date 應用

顯示前天日期 date -d "2 days ago" +%Y%m%d

顯示後天日期 date -d "2 days ago" +%Y%m%d
..依此類推

2008年1月9日 星期三

Google: Cluster Computing and MapReduce Lecture

從Google codes 上看到, 是講有關Cluster Computing

Lecture 1 - Introduction


slides

Lecture 2 - MapReduce
slides

Lecture 3 - Distributed File Systems
slides

Lecture 4 - Clustering Algorithms
slides

Lecture 5 - Graph Algorithms
slides

原文網址
http://code.google.com/edu/content/submissions/mapreduce-minilecture/listing.html

2008年1月8日 星期二

KOSE ESPRIQUE 廣告

主題曲: 無敵的妳 福山雅治

4-1


4-2


4-3


4-4

2008年1月3日 星期四

Grub 文章匯整

網路上Grub 的交章

Grub manual
http://www.gnu.org/software/grub/

Jamyy's GRUB & LILO 操作備忘http://cha.homeip.net/blog/archives/2006/04/grub_lilo.html

Gentoo 設定開機管理程式http://www.gentoo.org/doc/zh_tw/handbook/2004.3/handbook-x86.xml?part=1&chap=10