LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-04-2009, 06:57 AM   #1
paperbag
Member
 
Registered: Dec 2007
Location: London
Distribution: Slackware
Posts: 53

Rep: Reputation: Disabled
wrong resolution in X


I cannot get this resolution working: 2048x1152 on slackware 12.2.

card: nvidia 8600GT
monitor: samsung 2343nw

So i tried re-installing nvidia drivers, didn't work, tried re-installing X, didn't work either, then i didn't even knew what to do, so decided to install ubuntu and see if it works there, after installation i installed the same card drivers and i had the same problem on ubuntu as well. So installed slack again and i had the same problem as well.

I tried
Code:
nvidia-settings
but it just limits the resolution to: 1600x1025

Then i tried nvidia-xconfig to re-create the xorg.conf file and it didn't work as well and of course i tried editing xorg.conf by hand but it doesn't do anything either :|

this is my xorg.conf
pastebin

as you can i see i added my wanted resolution 2048x1152, but it just ignores it or something like that. :|

then i went through the Xorg.0.log and saw this:

Code:
(WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
(WW) NVIDIA(0): Unable to get display device CRT-0's EDID; cannot compute DPI
(WW) NVIDIA(0):     from CRT-0's EDID.
(WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0

and also this

Code:
(WW) NVIDIA(0): No valid modes for "2048x1152"; removing.
this is full Xorg.0.log
Xorg log

I tried googling about edid but found info for only mostly ubuntu, tried re-generating edid with some Phoenix app but it said Invalid EDID.

i have no idea what to do now, can anyone help me ?
 
Old 07-04-2009, 07:31 AM   #2
Simon Bridge
LQ Guru
 
Registered: Oct 2003
Location: Waiheke NZ
Distribution: Ubuntu
Posts: 9,211

Rep: Reputation: 198Reputation: 198
If the monitor and card support the resolution at the refresh rate, then you may need to generate a full modeline for it.

You certainly need a proper monitor and device section - currently missing.
You've edited xorg.conf by hand before, but I don't know what you did so cannot comment.
 
Old 07-04-2009, 07:58 AM   #3
paperbag
Member
 
Registered: Dec 2007
Location: London
Distribution: Slackware
Posts: 53

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Simon Bridge View Post
You've edited xorg.conf by hand before, but I don't know what you did so cannot comment.
I just replaced generated resolution with 2048x1152.
 
Old 07-04-2009, 08:42 AM   #4
Simon Bridge
LQ Guru
 
Registered: Oct 2003
Location: Waiheke NZ
Distribution: Ubuntu
Posts: 9,211

Rep: Reputation: 198Reputation: 198
Right - you need full monitor and device entries.
You may need a full modeline.

Presumably you are running Ubuntu 9.04 now?
Have you installed the proprietary driver?
If yes - skip. If no then
........... system > administration > hardware drivers

Have you installed the nvidia settings tool?
If yes then skip, if no then
........... sudo apt-get install nvidia-settings

sudo nvidia-settings

Try to adjust the settings there.
(Lets rule out this method for ubuntu before fiddling with xorg.conf manually.)

Note: if the nvidia conf is restricting resolution, then double-check that the card supports the resolution and at what refresh rates and color depths.


I have:

Code:
Section "Device"
        Identifier      "Configured Video Device"
        Driver          "nvidia"
        Option          "NoLogo"        "True"
EndSection

Section "Monitor"
        Identifier      "Configured Monitor"
        HorizSync       50-80
        Option          "DPMS"	        "on"	
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Monitor         "Configured Monitor"
        Device          "Configured Video Device"
        Defaultdepth    24
        SubSection      "Display"
                Depth         24
                Modes         "2048x1152" "1600x1024"
        EndSubSection

EndSection
And if that don't work, yet the HW is supposed to do this, then we'll look at generating a valid modeline for you.
 
Old 07-04-2009, 08:54 AM   #5
XGizzmo
Member
 
Registered: Mar 2007
Distribution: Slackware
Posts: 264

Rep: Reputation: 69
Quote:
Originally Posted by Simon Bridge View Post
Presumably you are running Ubuntu 9.04 now?
NO he presumably is running Slackware. Since this is a Slackware forum area and all.
 
Old 07-04-2009, 08:56 AM   #6
paperbag
Member
 
Registered: Dec 2007
Location: London
Distribution: Slackware
Posts: 53

Original Poster
Rep: Reputation: Disabled
Yes, i am running Slackware 12.2.
 
Old 07-04-2009, 09:14 AM   #7
XGizzmo
Member
 
Registered: Mar 2007
Distribution: Slackware
Posts: 264

Rep: Reputation: 69
Code:
(WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
(WW) NVIDIA(0): Unable to get display device CRT-0's EDID; cannot compute DPI
(WW) NVIDIA(0):     from CRT-0's EDID.
(WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
Theses errors seem a bit odd. Are you running through some kind of kvm switch?
In any case you may need to tell the nvidia drivers to not use the EDID data.

Option "UseEDID" "False"
In your screen section, but as started you will have to add complete modelines.
 
Old 07-05-2009, 11:57 AM   #8
paperbag
Member
 
Registered: Dec 2007
Location: London
Distribution: Slackware
Posts: 53

Original Poster
Rep: Reputation: Disabled
Thanks!

Option "UseEDID" "False"



worked like a dream =D
 
Old 07-06-2009, 06:12 AM   #9
Simon Bridge
LQ Guru
 
Registered: Oct 2003
Location: Waiheke NZ
Distribution: Ubuntu
Posts: 9,211

Rep: Reputation: 198Reputation: 198
Quote:
Originally Posted by XGizzmo View Post
NO he presumably is running Slackware. Since this is a Slackware forum area and all.
I refer you to post #1 where it was said:
Quote:
so decided to install ubuntu and see if it works there
... as that was the last thing an the subject of OS before posting here, this needed confirmation. It wouldn't be the first time someone missposted.

Glad to see that the issues is solved. Well done folks. I can go back to sleep now
 
Old 07-08-2009, 05:03 AM   #10
paperbag
Member
 
Registered: Dec 2007
Location: London
Distribution: Slackware
Posts: 53

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Simon Bridge View Post
I refer you to post #1 where it was said: ... as that was the last thing an the subject of OS before posting here, this needed confirmation. It wouldn't be the first time someone missposted.

Glad to see that the issues is solved. Well done folks. I can go back to sleep now
I'm afraid you can't sleep yet ;P


after last restart it got back to using lame resolution again. So i used nvidia-xconfig remade the config and im using 1400x1050 now, but not 2048x1152 ;-/


How do i make "proper" modelines?

or any other ideas what might be wrong?
 
  


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
X runs the wrong resolution AP81 Linux - Desktop 3 03-17-2008 07:04 AM
Screen Resolution is wrong dalmat Linux - Software 3 10-27-2007 01:34 PM
Resolution is wrong i think ash506 Linux - Software 5 08-15-2003 11:27 PM
HELP - wrong resolution alex34 Linux - General 8 04-15-2003 12:07 AM
No Mouse and Resolution wrong. kr4yd Linux - Newbie 8 01-23-2002 02:12 PM

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

All times are GMT -5. The time now is 03:30 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