LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 07-02-2007, 01:50 PM   #1
n1gnichol
LQ Newbie
 
Registered: Jun 2007
Posts: 3

Rep: Reputation: 0
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

------------------------
 
Old 07-02-2007, 03:25 PM   #2
Volhv
Member
 
Registered: Sep 2006
Distribution: Debian 4.0 and Ubuntu 7.04
Posts: 50

Rep: Reputation: 15
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.
 
Old 07-02-2007, 03:58 PM   #3
farslayer
LQ Guru
 
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Blog Entries: 5

Rep: Reputation: 191Reputation: 191
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
 
Old 07-02-2007, 04:47 PM   #4
jlinkels
LQ Guru
 
Registered: Oct 2003
Location: Bonaire, Leeuwarden
Distribution: Debian /Jessie/Stretch/Sid, Linux Mint DE
Posts: 5,195

Rep: Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043
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
 
Old 07-02-2007, 05:16 PM   #5
n1gnichol
LQ Newbie
 
Registered: Jun 2007
Posts: 3

Original Poster
Rep: Reputation: 0
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
 
Old 07-02-2007, 05:17 PM   #6
n1gnichol
LQ Newbie
 
Registered: Jun 2007
Posts: 3

Original Poster
Rep: Reputation: 0
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.
 
Old 07-03-2007, 10:17 AM   #7
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
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).
 
  


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
Need to adjust screen res but can not see anything on the the screen MurX Linux - Hardware 2 08-08-2006 05:51 AM
blank screen after installation (Etch) rangalo Debian 6 04-24-2006 03:03 AM
screen over res?? jollyjoice Linux - Newbie 4 01-23-2006 10:33 AM
screen res without X class_struggle Linux - Newbie 1 08-27-2004 05:33 AM
TV-Out Screen Res Mikel Sevrel Linux - Software 1 06-11-2004 03:07 PM

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

All times are GMT -5. The time now is 05:10 PM.

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