Notes: November 2006 Archives

lftp limit-rate

| | Comments (0)

lftp 是少數能做到限速的 ftp client
set net:limit-rate 1048576:102400
表示下載 1M, 上傳100K (bytes per second), 預設是 0:0 (無限制)
也可以把設定加到 lftpd.conf
例:
printf "set net:limit-rate 1048576:102400\nget ls-lR.gz\n" | lftp ftp.isu.edu.tw

Remove System Volume Information

| | Comments (0)

若用不到 Windows XP/2003 下的「系統還原」功能, 可以把 System Volume Information 清除,
以節省一些硬碟空間, 僅適用 NTFS 分割區.
關閉系統還原(控制台>系統>系統還原>關閉所有磁碟上的系統還原)
停止 Distributed Link Tracking Client 服務(控制台>系統管理工具>服務)
cacls "c:\System Volume Information" /e /g everyone:f
rd/q/s "c:\System Volume Information"
c: ~ h: 批次處理範例:
for %d in (c d e f g h) do cacls "%d:\System Volume Information" /e /g everyone:f
for %d in (c d e f g h) do rd/q/s "%d:\System Volume Information"
清完後多了不少空間.

RedHat9: rpmdb: unable to join the environment

| | Comments (0)

會出現這個訊息是在 RedHat9 用 Kernel 2.6 開機, 然後用 rpm -q 或 rpm -qa 做查詢動作.
此問題和 O_DIRECT 有關.
解決方法有兩個:
1. export LD_ASSUME_KERNEL=2.2.5 (Workaround)
2. upgrade RPM to rpm-4.2-1.i386.rpm (need reboot to work fine)
ref. Bugzilla Bug 92247: rpmdb: unable to join the environment - db4 error(11) from dbenv->open: Resource temporarily unavailable

comm

| | Comments (0)

comm 這個指令可以比對兩個已排序的檔案相同的地方
輸出有三個欄位,
column 1 只有出現在 file1
column 2 只有出現在 file2
column 3 兩個檔案相同的地方
參數
-1 不顯示 column 1
-2 不顯示 column 2
-3 不顯示 column 3
如: comm -12 file1 file2 就可以秀出兩個檔案相同的地方

Pages

March 2008

Sun Mon Tue Wed Thu Fri Sat
            1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31          

About this Archive

This page is a archive of entries in the Notes category from November 2006.

Notes: October 2006 is the previous archive.

Notes: December 2006 is the next archive.

Find recent content on the main index or look in the archives to find all content.