從上次發表過
Fedora Core 7 Linux ThinkPad X61 安裝筆記(T60/T61也適用)-新增升級Fedora 8的方法後
Fedora也跟我用了三四個月,原本我一直都是Redhat的用戶
從Redhat 6,7,8,9到Fedora的1,2,3,4,5,6,7,8也用了好多年
不過基於一些很惱人的問題,我決定跳槽Ubuntu了
第一個主要因素就是Fedora的NetworkManager一直有問題,更新kernel掛掉,更新madwifi也會掛掉
一天到晚無線網路都不能用,這個真的很討厭
甚至是說只要休眠完NetworkManager也掛掉,這點讓我非常煩
另外音效卡驅動也一直有問題,每次開機都沒聲音,要搞好久才有聲音
而麥克風更是從頭到尾都沒法使用,
更別說我的Pulsar 590 藍芽耳機了(在ubuntu下可用)
以下是我個人簡略的安裝筆記,相信網站上還可以找到很多相關的資料
這次沒有照順序,想到什麼就寫什麼
休眠之後背光會背關掉
這時候用ctrl+alt+F1切到文字模式在切回f7就可以了
啟動被停用的桌面特效
mkdir -p ~/.config/compiz/ && echo SKIP_CHECKS=yes >> ~/.config/compiz/compiz-manager
使用A2DP藍牙耳機
安裝Bluetooth Headset
解決firefox下無法起動scim輸入法
編輯/usr/bin/firefox
在最上面加入
unset XMODIFIERS
export GTK_IM_MODULE=scim
export XLIB_SKIP_ARGB_VISUALS=1
注意不要安裝拼音輸入法
啟用硬碟省電功能
編輯/etc/hdparm.conf最後面加入
command_line {
hdparm -S 100 /dev/sda
}
啟用中間捲軸鍵
編輯/etc/X11/xorg.conf
在Section "InputDevice"的Driver "mouse"中 最後面加入
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
啟用OSD功能
apt-get install tpb
用指紋辨識
在 /etc/apt/sources.list加入
deb http://ppa.launchpad.net/jldugger/ubuntu gutsy main restricted universe multiverse
deb-src http://ppa.launchpad.net/jldugger/ubuntu gutsy main restricted universe multiverse
然後執行
apt-get install thinkfinger-tools libpam-thinkfinger
接著編輯/etc/pam.d/common-auth
auth sufficient pam_thinkfinger.so <----加入這行
auth required pam_unix.so try_first_pass nullok_secure
再來編輯 /etc/modules並且加入uinput
接著執行modprobe uinput
最後新增指紋辨識的user:
sudo tf-tool --add-user YourUserName
將上下頁按鍵改成PgUp/PgDn
在家目錄下新增 .Xmodmap 檔案並寫入兩行
keycode 234 = Prior
keycode 233 = Next
安裝省電工具
apt-get install powertop
接著執行sudo powertop就可以設定了
安裝多媒體編碼
sudo wget http://www.medibuntu.org/sources.list.d/gutsy.list -O /etc/apt/sources.list.d/medibuntu.list
wget -q http://packages.medibuntu.org/medibuntu-key.gpg -O- | sudo apt-key add - && sudo apt-get update
sudo apt-get install w32codecs
修正firefox按backspace不會回到上一頁
網址列輸入 about:config
Filter打 ‘browser.backspace_action’ 然後將數值改成 0
修正firefox按中間鍵會亂跑
網址列輸入 about:config
Filter打 ‘middlemouse.contentLoadURL’ 然後將數值改成false
補充一些心得:
1. 桌面特效雖然可以用那個方式開啟,
不過這樣看影片就會有問題,
所以我平常是沒有開啟 compiz~~~
(桌面特效不能用也是因為 driver 有 bug,
所以才會被 compiz 設為 blacklist,
這邊有更多訊息,可以看一下:
http://www.realistanew.com/2007/09/23/compiz-in-ubuntu-update/
http://ubuntuforums.org/showthread.php?p=3451249)
2. scim 問題比較多,建議改用 gcin,
sudo aptitude install gcin 就可以安裝了~~~
參考一下囉 :)