热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

在EeePC安装Debian

在EeePC安装Debian--Linux发行版技术-Debian信息,下面是详情阅读。
前段时间华硕推出的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
推荐阅读
author-avatar
zhangjy妍
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有