|
机型:dell inspiron 2600。
老机器了,重新安装lenny。
安装完毕,启动后,在登录界面出了问题。屏幕呈现黄黑色,什么也看不出来。
按电源,关机,重启,进入单用户模式。
xorg.conf如下:
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
EndSection
Section "Device"
Identifier "Configured Video Device"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
EndSection
这台机器的显卡是intel 82830。
google 寻找答案:
解决方法一:用vesa驱动,startx可以了,但不完美。
更改如下对应:
Section "Device"
Identifier "Configured Video Device"
Driver "vesa "
EndSection
解决方法二:现在用的配置。
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
Option "XkbVariant" "pc104"
Option "XkbOptions" "pc104"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
EndSection
Section "Device"
Identifier "Configured Video Device"
Option "monitor-LVDS" "Configured Monitor"
Driver "intel"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
Option " referredMode" "1024x768"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection |
|