|
发表于 2004-5-1 18:39:44
|
显示全部楼层
我一直都是按照Hangbook的方法的。
XFree86 -configure
XFree86 -xf86config /root/XF86Config.new
ee /root/XF86Config.new
添加你的显示器的垂直和水平刷新率
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
Horizsync 68.9 ##########这两行是添加的########
VertRefresh 85 ##########显示器刷新率。########
EndSection
选择默认的分辨率和颜色深度
Section "Screen"
Identifier "Card0"
Monitor "Monitor"
DefaultColorDepth 24 #######添加这行######
SubSection "Display"
……………………
……………………
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
让你点鼠标滑轮可以用。
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option " rotocol" "auto"
Option "Device" "/dev/psm0"
Option "ZAxisMapping" "4 5" ###添加这一行#####
EndSection
保存退出。
然后重复用
XFree86 -xf86config /root/XF86Config.new
测试。
测试没问题之后就:
cp /root/XF86Config.new /etc/X11/XF86Config
that is ok |
|