Copying this over from "Configuring Pardus":
On a freshly installed 2007.1, I found that default resolution was set at 800x600, even though the monitor, a ViewSonic VP730, usually runs at 1280x1024.
Unfortunately, 800x600 was the highest resolution available within Tasma (the others were 640x480 and 720 x400). The xorg.conf file read as follows;
Section "Module"
Load "dbe" # Double buffer extension
Load "extmod"
SubSection "extmod"
Option "omit xfree86-dga" # don't initialise the DGA extension
EndSubSection
Load "type1"
Load "freetype"
Load "record"
Load "xtrap"
Load "glx"
Load "dri"
Load "v4l"
EndSection
Section "Extensions"
# Option "Composite" "enable"
EndSection
Section "dri"
Mode 0666
EndSection
Section "Files"
RgbPath "/usr/lib/X11/rgb"
FontPath "/usr/share/fonts/misc/"
FontPath "/usr/share/fonts/dejavu/"
FontPath "/usr/share/fonts/TTF/"
FontPath "/usr/share/fonts/freefont/"
FontPath "/usr/share/fonts/TrueType/"
FontPath "/usr/share/fonts/corefonts"
FontPath "/usr/share/fonts/Speedo/"
FontPath "/usr/share/fonts/Type1/"
FontPath "/usr/share/fonts/100dpi/"
FontPath "/usr/share/fonts/75dpi/"
FontPath "/usr/share/fonts/terminus/"
FontPath "/usr/share/fonts/encodings/"
EndSection
Section "ServerFlags"
Option "AllowMouseOpenFail" "True"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "AutoRepeat" "500 30"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
Option "Buttons" "5"
EndSection
Section "Device"
Screen 0
Identifier "VideoCard0"
Driver "nv"
VendorName "nVidia Corporation"
BoardName "NV34 [GeForce FX 5500]"
# BusID "PCI:01:00:0"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Unknown"
HorizSync 31.5-50
VertRefresh 50-70
# 1280x1024 @ 60Hz, 63.42 kHz hsync
Mode "1280x1024"
DotClock 100.96
HTimings 1280 1312 1416 1592
VTimings 1024 1027 1030 1057
EndMode
EndSection
Section "Screen"
Identifier "Screen0"
Device "VideoCard0"
Monitor "Monitor0"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1280x1024" "800x600" "640x480"
EndSubsection
EndSection
Section "ServerLayout"
Identifier "Simple Layout"
Screen "Screen0"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
# Multihead stuff
# Screen 0 "Screen0" 0 0
# Screen 1 "Screen1" RightOf "Screen0"
Option "Xinerama" "off"
Option "Clone" "off"
EndSection
On removing "800x600" and "640x480" from the "Modes" line and rebooting, the screen resolution changed to 1280x800 with a black band at the top and bottom of the screen. The resolutions available from Tasma are now;
1280x800
1280x768
1152x768
1024x768
800x600
640x480
720x400
Any help with getting the monitor back to running at 1280x1024 @60Hz gratefully accepted.