xorg.conf

古いノートにVine 4.1をインストールする機会があったのでメモメモ。
Xconfiguratorだとセグフォで落ちるので、半手動でX Windowを設定。


xorg.confの生成
# Xorg -configure


テスト
# X -config /root/xorg.conf.new


OKなら、/etc/X11/xorg.confへコピー。


巧くいかなかった場合は、
# xorgconfig
# xorgcfg
# xorgcfg -textmode
等を試してみる。


centos だと、
system-config-display
でどうにかなるかも?
なければ、
# yum -y install system-config-display


微調整
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
HorizSync 48.4
VertRefresh 60
EndSection


Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection


Section "InputDevice"
Identifier "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "jp106"
Option "XkbLayout" "jp"
EndSection


参考
http://www.gentoo.org/doc/ja/xorg-config.xml
http://www.freebsd.org/doc/ja_JP.eucJP/books/handbook/x-config.html