Debian This forum is for the discussion of Debian Linux.
|
| 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. |
|
 |
07-02-2007, 01:50 PM
|
#1
|
|
LQ Newbie
Registered: Jun 2007
Posts: 3
Rep:
|
Screen Res. with Etch Installation
Hello,
Not exactly a newbie, but I'm not that experienced with Linux (a demi-newbie?)
I had Sarge running on my old desktop pc and everything was fine but now I've installed Etch I cannot get my screen res above 640x480.
With Sarge, all I had to do was add the resolutions into the XFree86Config file and reboot.
On etch, the config file is different. I've made the changes to what I think it should be, but no joy.
The relevant parts of the xorg.conf is shown below. I've read that my monitor, a FPD1500, does not transmit its configuration correctly so you need to explicitly set it up.
If anyone has any ideas, then please let me know.
Thanks & Regards
Glenn
------------------------
Section "Device"
Identifier "ATI Technologies Inc 3D Rage LT Pro AGP-133"
Driver "ati"
BusID "PCI:1:0:0"
EndSection
Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 28-51
VertRefresh 43-60
EndSection
Section "Monitor"
Identifier "FPD1500"
VendorName "Gateway"
ModelName "FPD1500"
HorizSync 30-61
VertRefresh 56-76
Option "IgnoreEDID" "on"
ModeLine "1024x768/60Hz" 65 1024 1048 1184 1344 768 771 777 806 -HSync -VSync
EndSection
Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies Inc 3D Rage LT Pro AGP-133"
Monitor "FPD1500"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x1508" "704x704" "696x696" "640x480" "632x632" "544x544" "504x504" "328x328"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x1508" "704x704" "696x696" "640x480" "632x632" "544x544" "504x504" "328x328"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x1508" "704x704" "696x696" "640x480" "632x632" "544x544" "504x504" "328x328"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x1508" "704x704" "696x696" "640x480" "632x632" "544x544" "504x504" "328x328"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x1508" "704x704" "696x696" "640x480" "632x632" "544x544" "504x504" "328x328"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x1508" "1024x798" "704x704" "696x696" "640x480" "632x632" "544x544" "504x504" "328x328"
EndSubSection
EndSection
------------------------
|
|
|
|
07-02-2007, 03:25 PM
|
#2
|
|
Member
Registered: Sep 2006
Distribution: Debian 4.0 and Ubuntu 7.04
Posts: 50
Rep:
|
I think it should be
Modes "1024x768/60Hz"
to correspond to your modeline.
You may also want "fglrx" instead of "ati" if you have it.
|
|
|
|
07-02-2007, 03:58 PM
|
#3
|
|
Guru
Registered: Oct 2005
Location: Willoughby, Ohio
Distribution: linuxdebian
Posts: 7,231
Rep: 
|
I would just change it to this..
Code:
Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies Inc 3D Rage LT Pro AGP-133"
Monitor "FPD1500"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
or if you really need to use that modeline..
Code:
Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies Inc 3D Rage LT Pro AGP-133"
Monitor "FPD1500"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768/60Hz" "800x600" "640x480"
EndSubSection
|
|
|
|
07-02-2007, 04:47 PM
|
#4
|
|
Senior Member
Registered: Oct 2003
Location: Bonaire
Distribution: Debian Etch/Lenny/Squeeze
Posts: 3,789
|
The solutions given might be correct. If not, check /var/log/Xorg.0.log to see why a certain resolution is selected or not.
Secondly, you don't have to reboot! That is a waste of time if you are testing.
Either press crtl-alt-bksp, or open a tty window with ctrl-f1. Log in as root, and say:
/etc/init.d/kdm stop
and then:
/etc/init.d/kdm start
If you use gnome, substitute gdm for kdm.
jlinkels
|
|
|
|
07-02-2007, 05:16 PM
|
#5
|
|
LQ Newbie
Registered: Jun 2007
Posts: 3
Original Poster
Rep:
|
Quote:
|
Originally Posted by Volhv
I think it should be
Modes "1024x768/60Hz"
to correspond to your modeline.
You may also want "fglrx" instead of "ati" if you have it.
|
Aaargh!! Yes. 768 does it of course.
I will try the fglrx driver
Thank you Volhv
Regards
Glenn
|
|
|
|
07-02-2007, 05:17 PM
|
#6
|
|
LQ Newbie
Registered: Jun 2007
Posts: 3
Original Poster
Rep:
|
Quote:
|
Originally Posted by jlinkels
The solutions given might be correct. If not, check /var/log/Xorg.0.log to see why a certain resolution is selected or not.
Secondly, you don't have to reboot! That is a waste of time if you are testing.
Either press crtl-alt-bksp, or open a tty window with ctrl-f1. Log in as root, and say:
/etc/init.d/kdm stop
and then:
/etc/init.d/kdm start
If you use gnome, substitute gdm for kdm.
jlinkels
|
Thank you, jlinkels.
i didn't know either of those things.
Two very useful tips.
|
|
|
|
07-03-2007, 10:17 AM
|
#7
|
|
Senior Member
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian 4.0 Etch
Posts: 1,346
Rep:
|
Don't use the official ATI fglrx driver! Stick to the out-of-box open source driver. Ati's official drivers only support newer cards (radeon 9200 and above).
|
|
|
|
| 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 03:52 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
|
|