LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 01-28-2006, 05:17 PM   #1
Dregnan
LQ Newbie
 
Registered: May 2005
Location: Ogdensburg, NJ USA
Distribution: Suse 10.1
Posts: 17

Rep: Reputation: 0
Unhappy Resolution Problem in Ubuntu 5.10


Good Evening!

I recently installed Ubuntu and I'm having some issues with my resolution. I cannot raise the resolution to a higher level, my only options in the screen resolution menu are for 640 x 480 at 60 hz. It looks like the ATI drivers are installed correctly (radeon 9600Pro) per the xorg.conf file. I have attached the contents for any help anyone can give me...I basically want to have a duel boot system, Linux for everything, and WinXP for games. Here is the file:

# /etc/X11/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 /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/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"
FontPath "/usr/share/X11/fonts/misc"
FontPath "/usr/share/X11/fonts/cyrillic"
FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/X11/fonts/Type1"
FontPath "/usr/share/X11/fonts/CID"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection

Section "Module"
Load "GLcore"
Load "i2c"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "vbe"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection

Section "Device"
Identifier "ATI Technologies, Inc. Radeon 9600 (R300 AP)"
Driver "ati"
BusID "PCI:2:0:0"
EndSection

Section "Monitor"
Identifier "Eˆˆ"
Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies, Inc. Radeon 9600 (R300 AP)"
Monitor "Eˆˆ"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection


Please let me know if you see anything or have any further suggestions. My system specs in case you also need them:

AMD Athlon XP 2500+ (1.83 GHZ)
1 GB Crucial 2700 DDR Memory
ATI Radeon 9600PRO 256 MB
60 GB Maxtor 7200 RPM (WinXP)
20 GB Maxtor 5400 RPM (Ubuntu)
20 GB Western Digital 7200 RPM (Downloads, music, etc)
 
Old 01-28-2006, 05:45 PM   #2
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
A couple of things in the Device section should the driver not be either radeon or fireglx whatever they call it and in the Monitor section you may want to put in some proper refresh rates for the monitor not all report the correct settings an example from my file.

Code:
# NEC P1250 +
Section "Monitor"
       DisplaySize      384   288     # mm
       Identifier   "Monitor0"
       VendorName   "NEC"
       ModelName    "P1250 +"
       HorizSync    31-110 # DDC-probed
       VertRefresh  55-160 # DDC-probed
       Option       "DPMS"  "true"
       Option       "BackingStore" "On"
EndSection
So you may want to edit the xorg.conf and make some changes.
 
Old 01-28-2006, 06:42 PM   #3
Dregnan
LQ Newbie
 
Registered: May 2005
Location: Ogdensburg, NJ USA
Distribution: Suse 10.1
Posts: 17

Original Poster
Rep: Reputation: 0
Question How Do I save changes to Xorg.conf?

Ok sounds good, I found some Vsyc and Hsync settings to try... but how do i edit the xorg.conf file? Its copy protected for root only, I'm still a newbie so I dont know how to set the priveledges in Ubuntu to allow me to edit, i know one of the other distros i tried let me add users to file types for editing etc...
 
Old 01-28-2006, 07:50 PM   #4
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by Dregnan
Ok sounds good, I found some Vsyc and Hsync settings to try... but how do i edit the xorg.conf file? Its copy protected for root only, I'm still a newbie so I dont know how to set the priveledges in Ubuntu to allow me to edit, i know one of the other distros i tried let me add users to file types for editing etc...

Ubuntu uses sudo to give you root access so try in a console window sudo export XAUTHORITY=/home/user_name/.Xauthority changing the user_name to your name then sudo gedit /etc/x11/xorg.conf hopefully gedit is installed and the export command works for sudo. Make certain that the refresh rate settings you are trying are for your monitor setting them too high may damage it.
 
Old 01-29-2006, 07:57 AM   #5
Gezzer
Member
 
Registered: Jan 2006
Distribution: kubuntu
Posts: 36

Rep: Reputation: 15
in a terminal write
sudo gedit
enter password

this will enable you to browse to the xorg file and edit it ...
 
Old 02-06-2006, 10:23 AM   #6
abhishekp
LQ Newbie
 
Registered: Jan 2006
Posts: 12

Rep: Reputation: 0
Even I am facing the same problem can someone help me. My xorg.conf looks like this.

# /etc/X11/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 /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/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"
FontPath "/usr/share/X11/fonts/misc"
FontPath "/usr/share/X11/fonts/cyrillic"
FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/X11/fonts/Type1"
FontPath "/usr/share/X11/fonts/CID"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection

Section "Module"
Load "GLcore"
Load "i2c"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "vbe"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection

Section "Device"
Identifier "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
Driver "i810"
BusID "PCI:0:2:0"
EndSection

Section "Monitor"
Identifier "505E"
Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
Monitor "505E"
DefaultDepth 16
SubSection "Display"
Depth 1
Modes "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "720x400" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection
 
Old 02-06-2006, 02:55 PM   #7
sarah_b
LQ Newbie
 
Registered: Jan 2006
Location: Northern WI USA
Distribution: ubuntu breeze
Posts: 8

Rep: Reputation: 0
Quote:
Originally Posted by abhishekp
Even I am facing the same problem can someone help me.
From a terminal, enter:
sudo gedit /ect/X11/xorg.conf

open the "xorg.conf" file
Try with higher refresh rates like this:

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 28-70
VertRefresh 43-90
EndSection


Save file and exit,
I can't remember if I had to reboot or not.

sarah
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Screen Resolution Problem In Ubuntu xLunatiK Linux - Newbie 9 01-16-2009 01:32 PM
Ubuntu 5.10 screen resolution problem tylerjroach Linux - Hardware 1 12-30-2005 01:45 AM
Ubuntu 5.10 screen resolution problem tylerjroach Linux - Newbie 2 12-28-2005 03:08 PM
Screen Resolution Problem in Ubuntu 5.04 crash_override_me Ubuntu 2 09-03-2005 03:22 AM
Ubuntu - resolution wiraone Ubuntu 2 05-16-2005 01:03 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 09:00 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration