Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 14th June 2009, 07:31 PM
boh Offline
Registered User
 
Join Date: Jun 2009
Location: Russia
Posts: 2
Question How to enable lower display modes?

I have notebook with 1280x800 default resolution. F11 detected this resolution only. I need lower modes like 1024x768 or 800x600 to play games. How to add such modes to the GUI tool for resolution selection?
Reply With Quote
  #2  
Old 14th June 2009, 08:14 PM
SlowJet Offline
Registered User
 
Join Date: Jan 2005
Posts: 5,002
In Gnome Menu - System, Perfs, Display - no Display Menu item then
yum install system-config-display

SJ

You may need to edit the /etc/X11/xorg.conf and complete it for monitor, screen, resolutions sections to make it work (if your monitor is not recognized by Fedora. i.e. generic vs. specifics)
__________________
Do the Math
Reply With Quote
  #3  
Old 14th June 2009, 09:14 PM
Robert2 Offline
Registered User
 
Join Date: Apr 2009
Posts: 134
This is a known problem with Intel graphics on F11 with KMS.

Basically it only gives you one mode unless you either
1) disable KMS by booting with nomodeset
2) add them manually with xrandr

https://bugzilla.redhat.com/show_bug.cgi?id=496813
Reply With Quote
  #4  
Old 14th June 2009, 09:47 PM
SlowJet Offline
Registered User
 
Join Date: Jan 2005
Posts: 5,002
Quote:
Originally Posted by Robert2 View Post
This is a known problem with Intel graphics on F11 with KMS.

Basically it only gives you one mode unless you either
1) disable KMS by booting with nomodeset
2) add them manually with xrandr

https://bugzilla.redhat.com/show_bug.cgi?id=496813
My intel graphic 865bgf works fine, I have multiple modes (without a xorg.conf), I don't use nomodeset and I have never used xrandr.
Maybe the bug was fixed or only applies to certain chips sets?

SJ
__________________
Do the Math
Reply With Quote
  #5  
Old 15th June 2009, 08:54 AM
Robert2 Offline
Registered User
 
Join Date: Apr 2009
Posts: 134
Interesting. So it might be that the issue is either limited to certain Intel chips or certain Laptops EDID data.

The latest driver xorg-x11-drv-intel-2.7.0-7.fc11 still has the issue here with 945GM graphics on a ThinkPad T60.
Reply With Quote
  #6  
Old 15th June 2009, 12:07 PM
SlowJet Offline
Registered User
 
Join Date: Jan 2005
Posts: 5,002
Quote:
Originally Posted by Robert2 View Post
Interesting. So it might be that the issue is either limited to certain Intel chips or certain Laptops EDID data.

The latest driver xorg-x11-drv-intel-2.7.0-7.fc11 still has the issue here with 945GM graphics on a ThinkPad T60.
Now that I see the intel 945 .. I think they made a 915 to cover like 845, 855, 865 .. 915 all in one?
So that's why mine works.

SJ
__________________
Do the Math
Reply With Quote
  #7  
Old 18th June 2009, 05:53 AM
ygordev Offline
Registered User
 
Join Date: Jun 2009
Location: Belém, Brazil
Posts: 3
Lower resolutions don't work here: Intel 965 Chipset.
I can't use S-Video or VGA out because of this.
I'm gonna test the nomodeset boot.
__________________
Science without religion is lame, religion without science is blind.
--Albert Einstein
Reply With Quote
  #8  
Old 18th June 2009, 07:23 AM
cnateb Offline
Registered User
 
Join Date: Jun 2009
Posts: 1
I had a similar problem with F10 and am now having it with 11. It was resolved by installing system-display-config, but when I try to install the package it says says the package isn't found. Maybe I'm remembering the package incorrectly. Any help would be appreciated.
Reply With Quote
  #9  
Old 18th June 2009, 08:39 AM
JEO Offline
Registered User
 
Join Date: Jan 2006
Posts: 2,769
The package name is system-config-display.

This package allows you to go to System, Administration, Display, and set a default resolution. Also it creates an /etc/X11/xorg.conf file for you.

My reason for reading this thread is that I noticed few display resolution settings available on the F11 radeon driver and no S-video out also. Adding the 'nomodeset' kernel parameter fixed these two issues for me.
Reply With Quote
  #10  
Old 18th June 2009, 06:26 PM
ygordev Offline
Registered User
 
Join Date: Jun 2009
Location: Belém, Brazil
Posts: 3
Problem solved here:
Added these kernel parameters:
nomodeset and vga=791.
Now I have nice S-Video out with correct resolution, graphical boot and shutdown and FPS in glxgears increased from ~400 to ~900.
Thanks for the nomodeset tip!

I have lower resolutions enabled too.
__________________
Science without religion is lame, religion without science is blind.
--Albert Einstein
Reply With Quote
  #11  
Old 18th June 2009, 06:41 PM
Robert2 Offline
Registered User
 
Join Date: Apr 2009
Posts: 134
no svideo with KMS is a known issue with the ATI driver
https://bugzilla.redhat.com/show_bug.cgi?id=497055

Regarding the lack of extra modes. This issue is for the most part resolved by upgrading to the latest ati driver (already in F11). If you still miss some modes add them with something like the following that I use with an Intel chipset which has only one mode

#!/bin/bash
#
# modelines created with "gtf 640 480 60"
#
xrandr --newmode "1280x1024_60.00" 108.88 1280 1360 1496 1712 1024 1025 1028 1060 -HSync +Vsync
xrandr --newmode "1024x768_60.00" 64.11 1024 1080 1184 1344 768 769 772 795 -HSync +Vsync
xrandr --newmode "800x600_60.00" 38.22 800 832 912 1024 600 601 604 622 -HSync +Vsync
xrandr --newmode "640x480_60.00" 23.86 640 656 720 800 480 481 484 497 -HSync +Vsync
xrandr --addmode LVDS1 "1280x1024_60.00"
xrandr --addmode LVDS1 "1024x768_60.00"
xrandr --addmode LVDS1 "800x600_60.00"
xrandr --addmode LVDS1 "640x480_60.00"
Reply With Quote
  #12  
Old 18th June 2009, 07:24 PM
ygordev Offline
Registered User
 
Join Date: Jun 2009
Location: Belém, Brazil
Posts: 3
Quote:
Originally Posted by Robert2 View Post
no svideo with KMS is a known issue with the ATI driver
https://bugzilla.redhat.com/show_bug.cgi?id=497055

Regarding the lack of extra modes. This issue is for the most part resolved by upgrading to the latest ati driver (already in F11). If you still miss some modes add them with something like the following that I use with an Intel chipset which has only one mode

(...)
Well, now it's a known issue with Intel drivers too..
__________________
Science without religion is lame, religion without science is blind.
--Albert Einstein
Reply With Quote
Reply

Tags
display, resolution

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
Suspend Modes in KDE Milena Using Fedora 4 3rd August 2009 11:56 AM
xrandr display preferences - monitor unknown and missing modes tonypmartin Hardware & Laptops 1 15th June 2009 08:49 PM
DMA Modes Nefarious Hardware & Laptops 5 20th May 2009 05:59 PM
FC6 "nvidia-config-display enable" error henterac3 Hardware & Laptops 11 11th March 2007 05:13 AM
howto enable nvidia tv-out or dual display on FC3 nelwa Using Fedora 3 2nd March 2005 02:43 PM


Current GMT-time: 06:53 (Tuesday, 21-05-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