man參數(manual)

1 一般使用者指令 (General Commands)
2 系統呼叫 (System Calls)
3 函式庫中的函式 (Subroutines)
4 裝置及裝置的驅動程式 (Special Files)
5 設定檔的格式 (File Formats)
6 遊戲 (Games)
7 Macros and Conventions
8 系統維護及系統管理指令 (Maintenance Commands)
9 Kernel Interface
n New Commands
Ex:
man ls
man 1 ls
man k cp

vi 設定

vi 實在是個非常棒的編輯器... 功能太強大了...
而且非常方便又好用... 沒有它實在是綁手綁腳的... 唉...
我的 .vimrc 如下
syntax on
set expandtab
set shiftwidth=4
set softtabstop=4
set tabstop=4
set number
set cindent
set autoindent
這些在平常寫程式時很好用唷.. 🙂
# 自動判斷 big5 或 utf-8 會自動換編碼(Linux 設以下設定)
兩種方法:
1.
" 檔案存檔會存成utf-8編碼
"set fileencoding=utf-8
"
" 以下四個設下去. vim 編出來都是 utf-8 編碼的.
set fileencoding=utf-8
set fileencodings=big5,utf-8
set termencoding=big5
set enc=utf-8
" iconv -f big5 -t utf8 file.big5
2.
if has("multi_byte")
let $LANG="zh_TW.UTF-8"
set encoding=utf-8
setglobal fileencoding=big5
set fileencoding=big5
set bomb
set termencoding=big5
set fileencodings=utf-8,big5,euc-jp,gbk,euc-kr,utf-bom,iso8859-1
else
echoerr "Sorry, this version of (g)vim was not compiled with multi_byte"
endif
其它還有非常多功能.. 就下面再說囉.. 🙂

閱讀全文〈vi 設定〉

MT Styles 更換

今天突然想到.. 想要把 MT 的版面弄漂亮一點...
於是來找找 Styles...
找到了http://www.movablestyle.com/ 這邊..
mac matrix modern-Lines plan-blue 這四類都很棒.. 🙂
不過.. 為了美觀. 且字要看的清楚為原則的情況下...
還是 mac 的最好了.. (最原先的 Clean 也是很不錯啦. 不過單調了點)
預設 Style http://www.movabletype.org/default_styles.shtml

閱讀全文〈MT Styles 更換〉

螢火蟲字型

# wget --user-agent="Mozilla/4.0 (compatible; MSIE 5.00; Windows 98)" http://home.pchome.com.tw/net/tetralet/Files/Firefly.tar.bz2.jpg
# mv Firefly.tar.bz2.jpg Firefly.tar.bz2
# dpkg -i libfontconfig1_2.2.92-1_firefly_i386.deb
# dpkg -i fontconfig_2.2.92-1_firefly_i386.deb
# dpkg -i libfreetype6_2.1.7-1_firefly_i386.deb
# dpkg -i libxft2_2.1.2-5_firefly_i386.deb
# dpkg -i libpango1.0-common_1.2.5-2.1_firefly_i386.deb
# dpkg -i libpango1.0-0_1.2.5-2.1_firefly_i386.deb
或參考 螢火蟲論壇 來自己制作也可以.
安裝完後. 重新設定fontconfig
dpkg-reconfigure fontconfig
(全部選 NO)
再來重新進入 Xwindow 後.
開啟 Mozilla 設定字型
Proportional: Serif 16
Serif: MingLiU
Sans-serif: MingLiU
Cursive: MingLiU
Fantasy: MingLiU
Monospace: MingLiU 16
Minimum font size: None
再開網頁瀏覽看看吧.. 🙂
設定 Gnome 的應用程式字型
$ gnome-control-center
選 字型
PMingLiU 10
PMingLiU 12
PMingLiU 12
PMingLiU 10
即可
若要用回官方版
apt-get install libfontconfig1/unstable
apt-get install fontconfig/unstable
apt-get install libfreetype6/unstable
apt-get install libxft2/unstable
apt-get install libpango1.0-0/unstable
apt-get install libpango1.0-common/unstable
其中的 unstable 請視您需求或更改為 testing。
參照
http://moto.debian.org.tw/viewtopic.php?t=2720

Java Applet For Mozilla

照前一篇安裝好 Java 後...
於 .bashrc 中設 /usr/local/j2re1.4.2_01/plugin/i386/ns610-gcc32/
就是為了 讓 Java Applet 能跑....
現在是 已經裝好 Java(於 /usr/local/j2re1.4.2_01/), 且 .bashrc 也設好了..
步驟如下
# cd /usr/lib/mozilla/plugins
# ln -s /usr/local/j2re1.4.2_01/plugin/i386/ns610-gcc32/libjavaplugin_oji.so libjavaplugin_oji.so
基本上做完這兩步 Java Applet 就沒有問題了.. 但是會發現中文字會變"框框"或"亂碼"的問題..
於是要設定 Java Applet 來解決亂碼問題... 步驟如下..
# cd /usr/local/j2re1.4.2_01/lib/
# wget http://people.debian.org.tw/~asho/java/font.properties.zh_TW
這樣子之後 mozilla 開啟就有中文的 Java Applet 了...
wget http://people.debian.org.tw/~asho/java/font.properties.zh_TW
上述wget 的路徑.. 是參照到下面這篇(感謝阿信大大的提供)
http://moto.debian.org.tw/viewtopic.php?t=1996&highlight=java+applet+%E4%BA%82%E7%A2%BC
阿信提供 font.properties.zh_TW ... 解決中文亂碼問題.. 大感謝....

Java 安裝

可參考
http://moto.debian.org.tw/viewtopic.php?t=1996&highlight=java+applet+%E4%BA%82%E7%A2%BC
於 source.list 中加入
deb http://www.stud.uni-karlsruhe.de/~ude2 debian/
再如下
apt-get update; apt-get install mpkg-j2sdk java-common
不過我還是習慣自己的方法...
先到 http://java.sun.com 下載
會下載到 j2re-1_4_2_04-linux-i586.bin
# cd /usr/local
# chmod +x j2re-1_4_2_04-linux-i586.bin
# ./j2re-1_4_2_04-linux-i586.bin
再來 YES.... 就會安裝完.. 再設定
$ vi .bashrc
export PATH="$PATH:/usr/local/j2re1.4.2_04/bin:/usr/local/j2re1.4.2_04/plugin/i386/ns610-gcc32/:"
就可以使用了 .. 🙂