炸蝦碎碎念。

[Notes, GNU/Linux, Open Source, Ruby on Rails, Computer Science, Archlinux]

aod250上裝Debian+LXDE遇到的問題與解決

在自己的Acer Aspire One d250(aod250)上裝Debian sid

遇到了不少問題

以下是找到的解決方案

  1. 無線網卡(Broadcom BCM4312)

Debian的套件庫裡已有它的驅動程式

sudo aptitude install firmware-b43-lpphy-installer wpasupplicant  
sudo modprobe b43  

在 /etc/network/interfaces 裡加上:

auto wlan0 inet dhcp  
wpa-ssid home #(你ssid的名字)  
wpa-psk ********** #(你的WPA密碼)  

然後

sudo chmod 0600 /etc/network/interfaces #(保護你的wifi密碼)  
sudo ifconfig wlan0 up  

2.在LXDE中 觸控板不能像在ubuntu/windows 上一樣 輕輕在板子上點 就可以選擇

sudo aptitude install gsynaptics

在/etc/xdg/lxsession/LXDE/autostart 前面加上

synclient VertEdgeScroll=1  
synclient HorizEdgeScroll=1  
synclient TapButton1=1  

然後登出再登入 就可以了

3.沒有聲音

sudo aptitude install gnome-alsamixer  
gnome alsa-mixer   

把 PCM 和 Speaker 調到最大 就解決了

工具列沒有音量調整按鈕?

在工作列上按右鍵 點 ”設定工作列 (panel settings)”

在工作列元件裡增加 『音量控制』

參考資料

http://wiki.debian.org/bcm43xx

http://wiki.debian.org/WiFi/HowToUse

http://solutionsandtips.blogspot.com/2010/07/enable-touchpad-tapping-scrolling-in.html

Comments