I copied /etc/X11/xorg.conf from my ubuntu install to my CentOS install. X loads and works fine, except the monitor displays "Input Signal out of Range". This only happens while X is running under CentOS. One note - this problem began with a different monitor which would not load X at all. I swapped monitors (from a dell to a i-inc) and X would display, but it always gave the above error. So, copying the xorg.conf file netted no actual result (i.e. the display worked w/error before and after the file was copied).
Here is the model of my monitor:
I-Inc CY199D 19 Inch Active Matrix TFT Display Product Specifications:
General
Display Type TFT LCD
Viewable Screen Size 19 inches
Brightness 250 cd/m2
Contrast Ratio 700 : 1
Pixel Pitch 0.294mm x 0.294mm
Response Time 8 ms
Viewing Angle (H/V) 150 / 135 degrees
Maximum Resolution 1280 x 1024 SXGA
Color Black
MTBF 50,000 hours
Power Supply 100VAC - 240VAC 50/60Hz Autodetect
Power Consumption 42W Maximum
I've also appended the text of my xorg.conf file. Notice the screen section lists "default" and the monitor section lists the old CRT I used when I built this system originally.
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "Files"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "Device"
Identifier "ATI Technologies Inc Rage 128 PF/PRO AGP 4x TMDS"
Driver "ati"
BusID "PCI:2:0:0"
EndSection
Section "Monitor"
Identifier "Q95-2"
Option "DPMS"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies Inc Rage 128 PF/PRO AGP 4x TMDS"
Monitor "Q95-2"
DefaultDepth 24
SubSection "Display"
Modes "1600x1200" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
# Uncomment if you have a wacom tablet
# InputDevice "stylus" "SendCoreEvents"
# InputDevice "cursor" "SendCoreEvents"
# InputDevice "eraser" "SendCoreEvents"
EndSection