PDA

View Full Version : [other] Xorg.conf problem... can't make the screen go 1024x768



the8thstar
August 3rd, 2009, 11:38 AM
Hello all,

I just installed gOS 3.0 (based on Ubuntu 8.04) on an old computer with an ATI Rage Pro card onboard.

The native resolution is 1024x768 bit I can't make it go beyond 800x600 for some reason.

Here is my xorg.conf :


# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by failsafeDexconf, using
# values from the debconf database and some overrides to use vesa mode.
#
# You should use dexconf or another such tool for creating a "real" xorg.conf
# For example:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

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


Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
EndSection
Section "Device"
Identifier "Configured Video Device"
Boardname "vesa"
Busid "PCI:1:0:0"
Driver "vesa"
Screen 0
EndSection

Section "Monitor"
Identifier "Configured Monitor"
Vendorname "Plug 'n' Play"
Modelname "Plug 'n' Play"
modeline "640x480@60" 25.2 640 656 752 800 480 490 492 525 -vsync -hsync
Gamma 1.0
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Configured Video Device"
Monitor "Configured Monitor"
Defaultdepth 24
SubSection "Display"
Depth 24
Virtual 640 480
Modes "640x480@60"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
screen 0 "Default Screen" 0 0
Inputdevice "Synaptics Touchpad"
EndSection
Section "Module"
Load "glx"
Load "GLcore"
Load "v4l"
EndSection
Section "device" #
Identifier "device1"
Boardname "vesa"
Busid "PCI:1:0:0"
Driver "vesa"
Screen 1
EndSection
Section "screen" #
Identifier "screen1"
Device "device1"
Defaultdepth 24
Monitor "monitor1"
EndSection
Section "monitor" #
Identifier "monitor1"
Gamma 1.0
EndSection
Section "ServerFlags"
EndSection

I replaced 800 with 1024 and 600 with 768 and now the screen is screwed up. Any great ideas?

atomizer
August 3rd, 2009, 01:27 PM
1)make backup from your xorg.conf


2)change the "Modline" in your "Monitor" section following the guide on this page (http://www.x.org/wiki/FAQVideoModes) (this will set the settings for your monitor !!CAN BREAK YOUR MONITOR WHEN SET WRONG!!))

3) Remove the "Virtual" option in the "Screen" section (put a "#" in front of it) (not limited by a virtual screen of 640x480)
4)change "Modes" in the "Screen" section to 1024x768@60 (set resolution to 1024x768 )

This should do the trick.