Fedora Linux Support Community & Resources Center
  #1  
Old 22nd November 2006, 08:04 PM
mlager Offline
Registered User
 
Join Date: Aug 2006
Location: Netherlands
Posts: 90
Unable setting resolution

Goodday to all of you,

Currently I'm experiencing something rather annoying on my laptop. At the moment I got it installed as a dual-boot system with FC6 on one partition and Ubuntu on the other. For some dark, obscure, and I'm sure evil as well reason I can't set the resolution.

I'm trying to set it to 1024x768, which is its highest resolution. In the GUI I select the generic LCD monitor, set the right resolution. To be sure I take a look at the xorg.conf, and I think: "Victory!"
All is set as it should be, so I reboot.

When it start up again, it's still set at 800x600. So once logged in I go to Preferences / Screenresolution.
Only options are 800x600 or 640x480.
So I check the xorg.conf, and everything is as it was last time I checked:
Code:
Section "Monitor"
	Identifier   "Generic LCD Monitor"
	Option	    "DPMS"
EndSection

Section "Device"
	Identifier  "ATI Technologies, Inc. Radeon Mobility M6 LY [Radeon Mobility 9000]"
	Driver      "radeon"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "Default Screen"
	Device     "ATI Technologies, Inc. Radeon Mobility M6 LY [Radeon Mobility 9000]"
	Monitor    "Generic LCD Monitor"
	DefaultDepth     24
	SubSection "Display"
		Depth     24
		Modes    "1024x768" "800x600" "640x480"
	EndSubSection
EndSection
So why don't I get my precious 1024x768 resolution? Does some have an idea on what I am missing? Clearly, unless you are as visually challenged as three blind mice you don't really want 800x600 resolution.
Any help would be welcome.

Mark

btw. If I boot with Ubuntu it starts just fine in the right resolution.
__________________
Desktop F8: AMD64 X2 3800+ cpu, Asrock 939Dual-Sata2 motherboard
nVidia 9700, 512mb PCIE, 1 GB Kingston DDR400 memory, single module
Sweex wireless/Broadcom BCM4306 chipset
Maxtor 80 GB IDE HDD, Samsung 400 GB SATA

Laptop F8: Acer Aspire 9413ZWSMi

Last edited by mlager; 22nd November 2006 at 08:08 PM.
Reply With Quote
  #2  
Old 22nd November 2006, 08:21 PM
stevea's Avatar
stevea Online
Registered User
 
Join Date: Apr 2006
Location: Ohio, USA
Posts: 8,346
I had a similar problem with a mobility radeon M10 in laptop. When I looked in the X11 log files
(/var/log/Xorg.0.log) is seems that the Xorg radeon driver attempted to read the horizontal (and vertical?) sync frequency range from the interface and decided that I would not be allowed to use the "correct" resolution but would have to settle for 800x600 (my display is 1400x1050).

I used an old (FC5) xorg.conf file as a pattern and manually edited my /etc/X11/xorg to include the HorizSync & VertRefresh as ....
Quote:
Section "Monitor"
Identifier "Monitor1"
VendorName "Monitor Vendor"
ModelName "LCD Panel 1400x1050"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 31.5 - 90.0
VertRefresh 59.0 - 75.0
Option "dpms"
EndSection
Also I added the correct "Modes" at that time.
Quote:
Modes "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "800x600"
===
Many paths were searched to solve this one, so I hope I have characterized the solution correctly.
Reply With Quote
  #3  
Old 22nd November 2006, 09:00 PM
mlager Offline
Registered User
 
Join Date: Aug 2006
Location: Netherlands
Posts: 90
That might work. Only one little problem though, I wouldn't have a clue what the horizontal sync and the vertical refresh rates are. It's an oldish laptop, and I wouldn't know what the specs on the LCD are. Is there a way to determine that? Tried googling for the specs, but no succes
__________________
Desktop F8: AMD64 X2 3800+ cpu, Asrock 939Dual-Sata2 motherboard
nVidia 9700, 512mb PCIE, 1 GB Kingston DDR400 memory, single module
Sweex wireless/Broadcom BCM4306 chipset
Maxtor 80 GB IDE HDD, Samsung 400 GB SATA

Laptop F8: Acer Aspire 9413ZWSMi
Reply With Quote
  #4  
Old 24th November 2006, 01:04 AM
stevea's Avatar
stevea Online
Registered User
 
Join Date: Apr 2006
Location: Ohio, USA
Posts: 8,346
I believe the HorizSync & VertRefresh rates are hardware design dependent and that *perhaps* the recent xorg driver is not getting the correct values. You are probably safe with the Vertsync listed, but ... the horiz is a bit of a guess. I'd personally try with a lower low end like:
HorizSync 20.0 - 90.0
You should see lines in /var/log/Xorg.0.org like ...
Quote:
(II) RADEON(0): Panel ID string: SXGA+ Single (85MHz)
(II) RADEON(0): Panel Size from BIOS: 1400x1050
(II) RADEON(0): BIOS provided dividers will be used.
(II) RADEON(0): Total number of valid DDC mode(s) found: 0
(II) RADEON(0): Valid mode using on-chip RMX: 1400x1050
(II) RADEON(0): Valid mode using on-chip RMX: 1280x1024
(II) RADEON(0): Valid mode using on-chip RMX: 1280x960
(II) RADEON(0): Valid mode using on-chip RMX: 1152x864
(II) RADEON(0): Valid mode using on-chip RMX: 1024x768
(II) RADEON(0): Valid mode using on-chip RMX: 800x600
(II) RADEON(0): Total number of valid FP mode(s) found: 6
(--) RADEON(0): Virtual size is 1400x1050 (pitch 1408)
(**) RADEON(0): *Mode "1400x1050": 85.0 MHz (scaled from 0.0 MHz), 53.1 kHz, 50.0 Hz
(II) RADEON(0): Modeline "1400x1050" 84.96 1400 1472 1512 1600 1050 1052 1053 1062
(**) RADEON(0): *Mode "1280x1024": 85.0 MHz (scaled from 0.0 MHz), 53.1 kHz, 50.0 Hz
(II) RADEON(0): Modeline "1280x1024" 84.96 1280 1472 1512 1600 1024 1052 1053 1062
Which describe the accepted mode, or else you'll see the screen sized rejected.

==
Actually this is a mess. Perhaps you should select the VESA driver, and reboot, than update everything (yum update) and then see of the radeon driver works any better for you.

Last edited by stevea; 24th November 2006 at 01:16 AM.
Reply With Quote
  #5  
Old 24th November 2006, 12:40 PM
mlager Offline
Registered User
 
Join Date: Aug 2006
Location: Netherlands
Posts: 90
I'm pretty sure the computer is up to date, I usually make sure of that. With vesa I pretty much run into the same thing, with one difference; I can set the resolution to 1024x768 with display-resolution GUI. But it doesn't hold it's setting. After a reboot I have to reconfigure again.
__________________
Desktop F8: AMD64 X2 3800+ cpu, Asrock 939Dual-Sata2 motherboard
nVidia 9700, 512mb PCIE, 1 GB Kingston DDR400 memory, single module
Sweex wireless/Broadcom BCM4306 chipset
Maxtor 80 GB IDE HDD, Samsung 400 GB SATA

Laptop F8: Acer Aspire 9413ZWSMi
Reply With Quote
  #6  
Old 24th November 2006, 01:10 PM
jim's Avatar
jim Offline
Retired Community Manager & Avid Drinker Of Suds
 
Join Date: Feb 2005
Location: Rochester NY
Age: 38
Posts: 4,176
I have 3 pc's running fc6 and all of them I cannot change the display settings

notebook 1024X768 <--- fine

Desktop1 1280X1024 <--- too small for my wifes eyes

Desktop2 800X600 <--- too big rather see 1024X768

i can change it in system config display log out and back in no change
__________________
Registered Linux User: #376813
Western NY
My linux site
Smolt Profile

please remember to say if you problem was solved

Did you get your id10t award today?
Reply With Quote
Reply

Tags
resolution, setting, unable

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Fed 10 Install Setting The Resolution? EHCanadian Installation and Live Media 0 26th November 2008 11:56 PM
Setting Screen Resolution PhillyGuy Using Fedora 1 2nd February 2007 04:16 AM
setting resolution on my ibook unixstudent Mac Chat 4 27th April 2006 04:20 AM
setting wxga resolution? kamina Hardware & Laptops 20 18th November 2004 07:35 AM
Resolution is not setting workdesk03 Hardware & Laptops 1 13th July 2004 10:00 PM


Current GMT-time: 23:25 (Tuesday, 18-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat