Archive for the GNU/Linux category

Free Software Sticker Book

星期三, 8月 15th, 2007

http://raro.oreto.inf-cr.uclm.es/apps/stickers/
6x 頁都是 sticker,滿足你想要換掉機器上的 Windows sticker 的欲望 XD

SSH 設定與使用 DSA 認証

星期日, 8月 12th, 2007

yourname, 你在遠端 server 使用的帳號
secret.example.com, 遠端 server 的 IP 或 domain

加密金鑰長度 1024 (512 不夠安全,2048 比較慢)

$> ssh-keygen -d -b 1024 -C yourname@secret.example.com

就會產生公鑰 (id_dsa.pub) 與私鑰 (id_dsa)

再來將公鑰用你的方法傳送到 server 上,這裡使用 scp (無安全性的傳檔方式也是 OK 的,公鑰被竊取沒有關係 XD)

scp -P 22 /home/lancetw/.ssh/id_dsa.pub lancetw@secret.example.com:~/

成功送達,然後在 server 上將 id_dsa.pub 寫入 ~/.ssh/authorized_keys2

$> cat id_dsa.pub >> .ssh/authorized_keys2

Done.

往後使用這台 client 以 ssh 登入 secret.example.com 便不需密碼 ;)

使用 ssh-agent & ssh-add 減少輸入通行碼的次數。

Longman Dictionary of Contemporary English

星期日, 7月 29th, 2007

Longman Dictionary of Contemporary English 是本滿用心做的英英辭典,不僅印刷精美(內容甚至有彩圖),第四版還附了字典軟體,支援 Windows/Mac/Linux,以下筆記 Linux 底下如何方便使用該軟體。 (安裝過程太簡單,略過)

(more…)

iconv 轉換整個資料夾

星期四, 7月 26th, 2007

很久以前在 irc 上問的,$4 長輩開了示 :P

今天被問到,趕快從 google 把 log 挖出來XD

ref: http://logs.ubuntu-eu.org/freenode/2006/10/11/%23ubuntu-tw.html

加速你的 Ubuntu Feisty Fawn

星期四, 7月 26th, 2007

很有幫助的文章,像 CONCURRENCY=shell 對使用 SATA 硬碟的我就很有用。

加速你的 Ubuntu Feisty Fawn   (介紹)

開始翻譯Feisty Performance - 「Fly Like A Butterfly」—系統優化 (翻譯)

Feisty Performance - 「Fly Like A Butterfly」 (原文)

Ubuntu screenshoot - 20070627

星期六, 7月 14th, 2007

linux console 下使用無線網路

星期六, 7月 14th, 2007

安裝 wireless-tools

CODE:
  1. $sudo apt-get install wireless-tools

尋找附近的無線網路訊號

CODE:
  1. $sudo iwlist eth1 scanning

取得想連上的無線網路的 ESSID 後,將底下指令的 [name] 換成實際取得的 essid 名稱

CODE:
  1. $sudo iwlist eth1 scanning
  2. $sudo iwlist eth1 essid [name]  [passwd]
  3. $sudo dhclient eth1

不過上面這種方式不支援 WPA 加密,想要連上使用 WPA 加密的 AP 可以參考底下的鍊結:

http://ubuntuforums.org/showthread.php?t=92327

Recent Posts