Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
06-11-2007, 09:16 AM
|
#1
|
|
LQ Newbie
Registered: Jun 2007
Posts: 4
Rep:
|
Limited Screen Resolution Options
Hi everybody I just recently installed Fedora 7 (i386 on an AMD X2) and I have been unable to properly configure my display. Fedora properly recognizes my display in the control panel:
Monitor Type: Dell 2007FP (Digital)
and I think it is recognizing my graphics card:
Video Card: ATI Technologies Inc [Radeon X1300/X1550 Serries]
(Secondary)
but when I try to change the screen resolution in the pull down menu I am limited to 1280x1024 when I know I should be able to display 1600x1200. As a result everything seems comically large!
I am relatively new to linux and could really use a hand!
Thanks for the help!
--Josh
Here is my xorg.conf
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Monitor"
Identifier "Monitor0"
ModelName "Dell 2007FP (Digital)"
HorizSync 30.0 - 83.0
VertRefresh 56.0 - 76.0
Option "dpms"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "vesa"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
|
|
|
|
06-11-2007, 04:02 PM
|
#2
|
|
Guru
Registered: Oct 2005
Location: Willoughby, Ohio
Distribution: linuxdebian
Posts: 7,231
Rep: 
|
My Dell 17" LCD has a Max resolution of 1280x1024.. are you SURE yours supports a higher resolution ?
the refresh rate settings for my screen is pretty much identical to yous.. you might want to check the specs again..
Code:
Section "Device"
Identifier "ATI Technologies Inc RC410 [Radeon Xpress 200]"
Driver "ati"
BusID "PCI:1:5:0"
EndSection
Section "Monitor"
Identifier "Minicom LTD"
Option "DPMS"
HorizSync 31-81
VertRefresh 56-76
EndSection
Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies Inc RC410 [Radeon Xpress 200]"
Monitor "Minicom LTD"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600"
EndSubSection
EndSection
|
|
|
|
06-11-2007, 04:08 PM
|
#3
|
|
LQ Newbie
Registered: Jun 2007
Posts: 4
Original Poster
Rep:
|
Thanks for the quick reply!
Yeah I am positive it is capable of higher resolutions. It is natively 1600x1200 @ 60 Hz and it was operating like that using xp. Any other ideas?
|
|
|
|
06-11-2007, 04:14 PM
|
#4
|
|
Guru
Registered: Oct 2005
Location: Willoughby, Ohio
Distribution: linuxdebian
Posts: 7,231
Rep: 
|
I just checked the specs and you are right 1600x1200 @ 60 with the refresh rates you have entered..
how very odd..
Might want to try one of the 'modeline' generator tools..
|
|
|
|
06-11-2007, 11:09 PM
|
#5
|
|
Member
Registered: Feb 2005
Distribution: Slack/Debian
Posts: 159
Rep:
|
Try adding the line
Code:
Modes "1600x1200" "1280x1024" "1024x768" "800x600"
to your Screen->Display subsection.
|
|
|
|
06-11-2007, 11:49 PM
|
#6
|
|
Senior Member
Registered: Jan 2005
Location: Roodepoort, South Africa
Distribution: Slackware 10.1/10.2/12, Ubuntu 12.04, Crunchbang Statler
Posts: 3,780
|
If above (camh) is not enough, you can add option "UseEdid" "false" to the device section as well.
|
|
|
|
06-12-2007, 08:53 AM
|
#7
|
|
LQ Newbie
Registered: Jun 2007
Posts: 4
Original Poster
Rep:
|
Well I added the the resolution to the modes section but that didn't change the available resolutions on the gui pull down menu. Here is my modification with the UseEdid althought that didnt seem to fix things either:
Section "Device"
Identifier "Videocard0"
Driver "vesa"
Option "UseEDID" "False"
EndSection
I am wondering if it not specifically recognizing my video card in the xorg.conf has anything to do with it. Thanks for all the help!
Last edited by jfried23; 06-12-2007 at 09:06 AM.
|
|
|
|
06-12-2007, 12:14 PM
|
#8
|
|
Senior Member
Registered: Jan 2005
Location: Roodepoort, South Africa
Distribution: Slackware 10.1/10.2/12, Ubuntu 12.04, Crunchbang Statler
Posts: 3,780
|
Oops, overlooked that  Forget all other remarks and install the driver first.
|
|
|
|
06-12-2007, 12:30 PM
|
#9
|
|
LQ Newbie
Registered: Jun 2007
Posts: 4
Original Poster
Rep:
|
I didn't realize there was a driver. I was of the understanding ati drivers for Fedora 7 did not exist. Is there an open source driver I could use thats not part of the fedora 7 install that would work? I am totally lost on this one.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 06:01 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|