前段时间华硕推出的2999RMB EeePC可谓是火遍大江南北,同时给华硕带来了不少的银子.呵呵,今天有幸拿到一台eeepc,先给它装个debian再说.
首先,可以看到
官方上面有推出一个eeepc的img 具体的地址可以参看
http://eeepc.debian.net/还有Eeepc的升级源呢,看来debian对eeepc的支持还是很不错的.
第一步还是要
下载debian-eeepc.img到你事先准备好的U盘上面
dd if=debian-eeepc.img of=/dev/sdX
#X代表你的U盘盘符
3.按ESC键选择U盘启动,下面的
安装就是和标准的
安装基本上是一致的了
4.安装好后,物理
网卡就会被
系统识别出来了,这个没有问题,老规矩,我们第一步还是需要把我们的硬件一个一个
驱动起来.
5.在/etc/apt/sources.list添加源(sigh,没有
网络的话debian就没有用武之地了)
deb
http://eeepc.debian.net/debian sid main contrib non-free
deb-src
http://eeepc.debian.net/debian sid main contrib non-free
我比较推荐用lenny的.如果大家需要用Lenny的话就这样写
deb
http://eeepc.debian.net/debian lenny main contrib non-free
deb-src
http://eeepc.debian.net/debian lenny main contrib non-free
用
root登陆装module-assistant,我们先驱动一下无线.呵呵
apt-get install module-assistant
module-assistant prepare
下载wifi驱动
wget
http://people.debian.org/~synrg/ ... .3.2-2+eee_i386.deb
dpkg -i madwifi-source_0.9.3.2-2+eee_i386.deb
m-a build madwifi
dpkg -i /usr/src/madwifi-modules-2.6.22-3-686_0.9.3.2+eee+2.6.22-6.lenny1_i386.deb
modprobe ath_pci
据debian wiki上面说不能用m-a a-i madwifi这个参数,会把他们搞得包版本不一致.
7.webcam摄像头驱动的安装
module-assistant. a-i linux-uvc
modprobe uvcvideo
这个驱动没有办法在2.6.24kernel上面使用
装luvcview
apt-get install luvcview
As normal user you can now make use of your web cam tool
luvcview -f yuv
8.下面我们来装acpi和快捷键(fn+*)
module-assistant auto-install eeepc-acpi
modprobe eeepc_acpi
/etc/init.d/acpid restart
在这里我们可以看到eeepc-acpi-scripts主要是控制快捷键的
/usr/share/doc/eeepc-acpi-scripts/README.
Debian
配置XORG启用触摸板
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "CorePointer"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "1"
EndSection
Section "Server Layout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Synaptics Touchpad"
EndSection
如果mic不能工作的话
编辑
/etc/modprobe.d/alsa-base
加入这个选项
options snd-hda-intel model=3stack-dig
如果不能关机的话
编辑
/etc/init.d/halt
加入
rmmod snd_hda_intel