Graphics Administration Guide (July 2008)

Table Of Contents
# (mouse) and the other for the keyboard. The Driver line is required. It
# specifies which driver is to be loaded at run time. See the GAG for more
# details on what input devices are supported and which options may be selected.
#
Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
EndSection
#
# There may be multiple Monitor sections. The purpose of this section is
# is to specify the range of operation of a monitor. For a Monitor to be
# in use the Identifier must match the Monitor line in an active Screen.
# HorizSync and VertRefresh are required fields. See the GAG for more
# options that may be set.
#
Section "Monitor"
Identifier "Monitor 0"
HorizSync 30.0 - 110.0
VertRefresh 50.0 - 75.0
# DPMS is not enabled by default. Uncomment the following line to
# enable it.
#Option "DPMS" "on"
EndSection
#
# There may be multiple Device sections. This section is used to specify
# parameters for the graphics device. The Identifier string must match
# the Device string in the active Screen section for this device to be
# in use. See GAG for more options that may be set for this particular device.
#
Section "Device"
Identifier "Console"
Devicefile "/dev/gvid"
EndSection
#
# There may be multiple Screen sections. The Identifier string must match
# the Device string in the active ServerLayout section for the Screen to
# be active.
#
Section "Screen"
Identifier "Screen 0"
Device "Console"
Monitor "Monitor 0"
#
# Set the default depth.
#
DefaultDepth 24
#
# The subsection associates a buffer depth with a screen size.
#
SubSection "Display"
Depth 24
Modes "1280x1024"
sample XF86Config file 25