Page 1 of 2 12 LastLast
Results 1 to 10 of 20

Thread: Stuck in low res after Nvidia driver install (Ubuntu 10.10)

  1. #1
    Join Date
    Jan 2011
    Beans
    29

    Stuck in low res after Nvidia driver install (Ubuntu 10.10)

    Running Ubuntu 10.10
    Card is an Nvidia Quadro FX 1500
    Monitor is a Dell E172FP

    Well, after installing the drivers for my Nvidia Quadro FX 1500, I am stuck in 800x600. The options in the Nvidia X-server Settings (under System > Administration) show only "Auto / 640x480 / 320x240"

    I've edited the xorg.conf (backed up before every attempt, of course,) to add modes, etc. but to no avail.

    I just installed read-edid via Synaptic and in Terminal ran this:
    Code:
    $ sudo get-edid | sudo parse-edid
    I received this back (apparently, no EDID is being read - I have my monitor connected with an DVI adaptor)
    Code:
        Performing real mode VBE call
        Interrupt 0x10 ax=0x4f00 bx=0x0 cx=0x0
        Function supported
        Call successful
    
        VBE version 300
        VBE string at 0x2110 "NVIDIA"
    
    VBE/DDC service about to be called
        Report DDC capabilities
    
        Performing real mode VBE call
        Interrupt 0x10 ax=0x4f15 bx=0x0 cx=0x0
        Function supported
        Call successful
    
        Monitor and video card combination does not support DDC1 transfers
        Monitor and video card combination does not support DDC2 transfers
        0 seconds per 128 byte EDID block transfer
        Screen is not blanked during DDC transfer
    
    Reading next EDID block
    
    VBE/DDC service about to be called
        Read EDID
    
        Performing real mode VBE call
        Interrupt 0x10 ax=0x4f15 bx=0x1 cx=0x0
        Function supported
        Call failed
    
    The EDID data should not be trusted as the VBE call failed
    Error: output block unchanged
    Any ideas on how to force or fake the EDID info? (I only need 1024x768 on this living room PC.)

    -Anthony

  2. #2
    Join Date
    Jan 2011
    Beans
    29

    Re: Stuck in low res after Nvidia driver install (Ubuntu 10.10)

    Just bumping this up.

    I've since uninstalled the manual .run driver/package from Nvidia and have reinstalled the nvidia drivers via ubuntu. Still only gives me the 640x480 resolution as the max option (but looks like it's in "auto" w/ 800x600.)

    -Anthony

  3. #3
    Join Date
    Jan 2011
    Beans
    29

    Re: Stuck in low res after Nvidia driver install (Ubuntu 10.10) [SOLVED]

    Celebration! I'm posting what worked for me in case anyone else can benefit from it:

    I edited my xorg.conf (after backing it up, of course) and changed this:
    Code:
    Section "Monitor"
        Identifier     "Monitor0"
        VendorName     "Unknown"
        ModelName      "Unknown"
        HorizSync       28.0 - 33.0
        VertRefresh     43.0 - 72.0
        Option         "DPMS"
    EndSection
    to this:
    Code:
    Section "Monitor"
        Identifier     "Monitor0"
        VendorName     "Unknown"
        ModelName      "Unknown"
        HorizSync       28.0 - 72.0
        VertRefresh     43.0 - 60.0
    EndSection
    Now I have my Nvidia Quadro FX 1500 in 1024x768 "glory."

    -Anthony

  4. #4
    Join Date
    Nov 2010
    Location
    Berlin, Germany
    Beans
    4,534
    Distro
    Xubuntu 12.04 Precise Pangolin

    Re: Stuck in low res after Nvidia driver install (Ubuntu 10.10)

    Congratulations! Did disabling the "DPMS"-option make it work or is just setting the correct specs enough, in your case?

    For anyone else who wants to set the correct specs of the used monitor:
    Code:
    sudo apt-get install hwinfo
    sudo hwinfo --monitor

  5. #5
    Join Date
    Nov 2006
    Beans
    75

    Re: Stuck in low res after Nvidia driver install (Ubuntu 10.10)

    I'm getting the same problem. I got the latest NVIDIA driver through Synaptic and still have the LowRes issue.

    I have an NVIDIA FX5700 card, could someone please suggest what setting in xorg.conf I need?

  6. #6
    Join Date
    Apr 2009
    Location
    Aotearoha
    Beans
    2,692
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Stuck in low res after Nvidia driver install (Ubuntu 10.10)

    Any clues in the /var/log/Xorg.0.log file ?

    Any EDID warnings errors..

    What is the native res of the monitor ?
    And connected how ?

    Below xorg.conf snippet could be useful. You need to replace the "CRT-0" with something appropriate.

    Section "Screen"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "ModeValidation" "AllowInterlacedModes"
    Option "UseEDID" "FALSE"
    Option "UseDisplayDevice" "CRT-0"
    SubSection "Display"
    Depth 24
    # Modes "1920x1080i60" "1280x720p60" "1024x576p50" "848x480p60"
    EndSubSection
    EndSection


    The "AllowInterlaceModes" is most likely not necessary for you..


    Does that read-EDID package actually work for anyone ?
    I think it is i386 or powerPC only...
    Last edited by BicyclerBoy; January 5th, 2011 at 04:26 AM. Reason: question

  7. #7
    Join Date
    Nov 2010
    Location
    Berlin, Germany
    Beans
    4,534
    Distro
    Xubuntu 12.04 Precise Pangolin

    Re: Stuck in low res after Nvidia driver install (Ubuntu 10.10)

    Quote Originally Posted by Shlomir View Post
    I'm getting the same problem. I got the latest NVIDIA driver through Synaptic and still have the LowRes issue.

    I have an NVIDIA FX5700 card, could someone please suggest what setting in xorg.conf I need?
    Did you try anthonyvo's solution, with your own monitor specs of course?

  8. #8
    Join Date
    Jan 2011
    Beans
    29

    Re: Stuck in low res after Nvidia driver install (Ubuntu 10.10)

    Quote Originally Posted by Krytarik View Post
    Congratulations! Did disabling the "DPMS"-option make it work or is just setting the correct specs enough, in your case?
    I think it had to do with the sync. I can't see how enabling Energy Star functions would have helped (isn't that what DPMS is?) The monitor seems to go to sleep after some time anyway.

    Later today, I'll experiment with it and find out.

    -Anthony

  9. #9
    Join Date
    Nov 2010
    Location
    Berlin, Germany
    Beans
    4,534
    Distro
    Xubuntu 12.04 Precise Pangolin

    Re: Stuck in low res after Nvidia driver install (Ubuntu 10.10)

    Quote Originally Posted by anthonyvo View Post
    I think it had to do with the sync. I can't see how enabling Energy Star functions would have helped (isn't that what DPMS is?) The monitor seems to go to sleep after some time anyway.

    Later today, I'll experiment with it and find out.

    -Anthony
    Exactly, it's about power management. But apparently it is able to interfere sometimes however. Looking forward to get your test result, thanks.

  10. #10
    Join Date
    Jan 2011
    Beans
    29

    Re: Stuck in low res after Nvidia driver install (Ubuntu 10.10)

    Well, you were right. After adding the DPMS option, it would hang at the splash screen on boot. I was under the impression that the sync range was the solution. Perhaps it's a combo of the two. I might be tempted to play with the sync range to see if it too caused it... Or just leave well enough alone.

Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •