|
发表于 2010-3-25 10:46:57
|
显示全部楼层
Xfce4+gnome,按LZ的方法成功移除hal,小插曲出在键盘鼠标不能动。
在xorg.conf增加如下配置才正常:
Section "InputDevice"
Identifier "Keyboard0"
Driver "evdev"
Option "XkbModel" "pc104"
Option "CoreKeyboard"
Option "Device" "/dev/input/by-path/platform-i8042-serio-0-event-kbd"
# Option "Name" "AT Translated Set 2 keyboard"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "evdev"
Option "CorePointer"
Option "Device" "/dev/input/by-path/platform-i8042-serio-1-event-mouse"
# Option "Name" "ImPS/2 Generic Wheel Mouse"
EndSection
Option "Name" 是网上找到的方法,但不行,只好先写上具体设置了。 |
|