Results 1 to 9 of 9

Thread: setting undetected screen resolution ubuntu 10.04

  1. #1
    Join Date
    Aug 2007
    Beans
    113
    Distro
    Ubuntu

    setting undetected screen resolution ubuntu 10.04

    hi, when i try to set undetected screen resolution, i get following error: cannot find output "LVDS".

    i'm typing in following code:

    Code:
    xrandr --output LVDS --mode 1024x768
    i was following the guide here: https://wiki.ubuntu.com/X/Config/Res...%20resolutions


    here is the output when i type in the command "xrandr"
    Code:
    Screen 0: minimum 640 x 480, current 800 x 600, maximum 800 x 600
    default connected 800x600+0+0 0mm x 0mm
       800x600        60.0*    56.0  
       640x480        60.0

    any ideas?? thanks.
    Last edited by seamustry; May 6th, 2010 at 07:21 PM.

  2. #2
    Join Date
    Jan 2008
    Beans
    10

    Re: setting undetected screen resolution ubuntu 10.04

    Try this (the $ just means terminal; don't type it):

    Code:
    $ cvt 1024 768
    You will see some output, which will look something like this:
    Code:
    800x600 59.86 Hz (CVT 0.48M3) hsync: 37.35 kHz; pclk: 38.25 MHz
      Modeline "800x600_60.00"   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync
    Copy *everything* after "Modeline" on your output.

    THEN CHANGE THE SCREEN REFRESH RATE (thanks Moozillaaa for fix):

    Do NOT copy the screen refresh rate info into the '--newmode' command. Delete it, and the underscore as well.
    i. e.:
    "800x600_60.00" 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync
    to
    "800x600" 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync

    Paste it in like below (with the words "xrandr --newmode" before it):
    Code:
    $ xrandr --newmode "800x600"   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync
    Next command: instead of "800x600" at the end, put whatever was in the output that you copied.
    (NOTE: the user tucm posted below that you may have to change the word "default" to "VGA1" in the next two commands.)
    Code:
    $ xrandr --addmode default 800x600
    Finally, (changing the "800x600" again)
    Code:
    $ xrandr --output default --mode 800x600
    That should do it. If you want it to stay for the next boot (you probably do...), type this...
    Code:
    $ cd ~
    $ gedit .xprofile
    In the window that pops up, paste all the lines that you just ran (except the cvt) (Remember the NOTE: the user tucm posted below that you may have to change the word "default" to "VGA1"):
    Code:
    xrandr --newmode "800x600"   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync
    xrandr --addmode default 800x600
    xrandr --output default --mode 800x600
    Save the document.

    If you need any help, reply, by all means!
    James
    Last edited by James1293; July 5th, 2011 at 11:31 PM. Reason: Incorporated fix, thanks Moozillaaa and tucm!

  3. #3
    Join Date
    Dec 2009
    Beans
    527

    Re: setting undetected screen resolution ubuntu 10.04

    Quote Originally Posted by James1293 View Post
    Try this (the $ just means terminal; don't type it):

    Code:
    $ cvt 1024 768
    You will see some output, which will look something like this:
    Code:
    800x600 59.86 Hz (CVT 0.48M3) hsync: 37.35 kHz; pclk: 38.25 MHz
      Modeline "800x600_60.00"   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync
    Copy *everything* after "Modeline" on your output. Paste it in like below (with the words "xrandr --newmode" before it):
    Code:
    $ xrandr --newmode "800x600_60.00"   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync
    Next command: instead of "800x600_60.00" at the end, put whatever was in the output that you copied.
    Code:
    $ xrandr --addmode default 800x600_60.00
    Finally, (changing the "800x600_60.00" again)
    Code:
    $ xrandr --output default --mode 800x600_60.00
    That should do it. If you want it to stay for the next boot (you probably do...), type this...
    Code:
    $ cd ~
    $ gedit .xprofile
    In the window that pops up, paste all the lines that you just ran (except the cvt):
    Code:
    xrandr --newmode "800x600_60.00"   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync
    xrandr --addmode default 800x600_60.00
    xrandr --output default --mode 1024x768_60.00
    Save the document.

    If you need any help, reply, by all means!
    James

    P.S.: I can help you more if you tell me the output of the "$ cvt 1024 768" command. You may be able to get it, though.

    Do NOT copy the screen refresh rate info into the '--newmode' command.
    Delete it, and the underscore as well.

    i. e.:
    "800x600_60.00" 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync

    to
    "800x600" 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync


    The Wiki page information is incorrect.


  4. #4
    Join Date
    Dec 2010
    Beans
    1

    Thumbs down Re: setting undetected screen resolution ubuntu 10.04

    Hi,

    I successfully changed my display resolution to 1280x1024 in ubuntu 10.04, follow the guide by James1293, but there were some tweaks:

    Every time I enter the command:
    Code:
    $ xrandr --addmode default 1280x1024_60.00
    The system will reply:

    Code:
    xrandr: cannot find output "default"
    Finally I had to replace "default" with "VGA1" in the following commands:

    Code:
    $ xrandr --addmode default 1280x1024_60.00
    $ xrandr --output default --mode 1280x1024_60.00
    And it works.

    Sorry for my bad English,
    I hope this might be useful for someone.
    Last edited by tucm; December 14th, 2010 at 11:19 AM.

  5. #5
    Join Date
    Jan 2011
    Location
    Texas
    Beans
    5
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: setting undetected screen resolution ubuntu 10.04

    Big thank you to James1293 and tucm!!

    Ubuntu only gave me a refresh rate of 60hz with my crt monitor which normally uses 85hz the resolution was already set right just the refresh rate was too low. I've been trying to read articles for days to figure out how to change this I always ran into a problem following all the other articles but your explanation of how to change it was easy to follow no problems encountered and actually worked.

    So again thank you very,very much

  6. #6
    Join Date
    Jan 2008
    Beans
    10

    Re: setting undetected screen resolution ubuntu 10.04

    Hey Z1-900,
    Great. I wish it worked for me. XD

  7. #7
    Join Date
    Sep 2009
    Beans
    46

    Question Re: setting undetected screen resolution ubuntu 10.04

    Followed all the steps ( I included the refresh rate output from the cvt command )
    and I get,
    Code:
    xrandr: screen cannot be larger than 840x624 (desired size 1680x1050) :confused:
    840x624!? You have got to be kidding me!?

  8. #8
    Join Date
    May 2006
    Location
    Boston
    Beans
    1,918
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: setting undetected screen resolution ubuntu 10.04

    Quote Originally Posted by SheaMan View Post
    Followed all the steps ( I included the refresh rate output from the cvt command )
    and I get,
    Code:
    xrandr: screen cannot be larger than 840x624 (desired size 1680x1050) :confused:
    840x624!? You have got to be kidding me!?
    whats your xorg.conf?
    Code:
    less /usr/share/xresprobe/xorg.conf

    blog
    Donations BTC : 12FwoB7uAM5FnweykpR1AEEDVFaTLTYFkS
    DOUBLEPLUSGOOD!!

  9. #9
    Join Date
    Sep 2009
    Beans
    46

    Red face Re: setting undetected screen resolution ubuntu 10.04

    urr.. there is more to the less man than I thought.. :neat:

    I ran the command at the /$ and the ~$ and received the same,

    Quote Originally Posted by error 10.04
    /usr/share/xresprobe/xorg.conf: No such file or directory
    I have a Xorg.0.log - but tis loooong.

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
  •