2008-11-03

日立Flora用のxorg.conf

今回Xubuntuを入れたFloraは、もともとWin98の時代に企業向けに出されていた機種で、VRAMの量が極めて少ない。このため、デフォルトの24bppでは解像度が800x600になってしまう。

そこで、今どき必要な人がいるとも思えないのだけどxorg.confをさらしてみる。
Section "Server Layout"
Identifier "Configured Layout"
Screen 0 "Default Screen" 0 0
InputDevice "Configured Mouse" "CoreMouse"
InputDevice "Configured Keyboard" "CoreKeyboard"
EndSection

Section "Device"
Identifier "Configured Video Device"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
HorizSync 40-50
VertRefresh 50-70
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 16
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
EndSection

Section "InputDevice"
Identifier "Configured Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "jp106"
Option "XkbLayout" "jp,jp"
Option "Xkbvariant" "106,"
Option "XkbOptions" "ctrl:swapcaps"
EndSection

DefalutDepthを16にするだけではダメで、HSync/VSyncを明示的に指定することが必要。

0 件のコメント: