Page 4 of 6 FirstFirst ... 23456 LastLast
Results 31 to 40 of 52

Thread: Low Resolution with Ubuntu 9.10

  1. #31
    Join Date
    Nov 2009
    Beans
    15
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Low Resolution with Ubuntu 9.10

    I added the changes to wrote on Xorg, but it didnt work. That isn't my graphic card or drivers.

  2. #32
    Join Date
    Nov 2009
    Location
    Greece
    Beans
    1
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Low Resolution with Ubuntu 9.10

    Sebastian do what gabak said. I had exactly the same problem with you. I am trying to solve it for a month now... and finally I can change my resolution! Gabak I love you. . And may I ask you something else. How can I have one more choice of 1280x1024 ? Thank you.

  3. #33
    Join Date
    Nov 2009
    Beans
    1

    Re: Low Resolution with Ubuntu 9.10

    Quote Originally Posted by Sebastian Burch View Post
    I did every step, and its fine until the last command

    Code:


    xrandr --addmode lvcd1 1024x768_60.00

    Output:

    xrandr: cannot find output "lvcd1"


    Thank you.
    Hey Seb,
    Same problem here. Instead of LDVSs VGAs DVIs or whatever I used "default" and it recognized the output. Thing this happened afterwards:
    "Failed to change the screen configuration!"
    Hope u get better luck than mine...

  4. #34
    Join Date
    Jan 2009
    Beans
    10
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Low Resolution with Ubuntu 9.10

    I just Install Ubuntu 9.10 and got the same problem with my Screen Resolution to 800X600.

    It works fine now after create xorg.conf using the intruction by GABAK.

    Thank You GABAK . .

    but now I have another problem, I can't create root password as I did when using Ubuntu 9.04.

    Please advise.

  5. #35
    Join Date
    Jan 2009
    Beans
    10
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Low Resolution with Ubuntu 9.10

    Quote Originally Posted by gabak View Post
    make that new file
    then write copy and paste all i have wrote.
    plz let me know if it worked for you
    It Works fine now to get more than 800 X 600
    Bravo Gabak . . .

    But I still can't set the Root Password , even Generate Random Password . .
    Last edited by Yan_Suryana; November 7th, 2009 at 12:46 PM.

  6. #36
    Join Date
    Nov 2005
    Location
    Northern Ohio
    Beans
    89
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Low Resolution with Ubuntu 9.10

    Quote Originally Posted by Yan_Suryana View Post
    It Works fine now to get more than 800 X 600
    Bravo Gabak . . .

    But I still can't set the Root Password , even Generate Random Password . .
    Why do you want to set the root password? I never have needed to do that on any system. If you want to run as root, then use sudo. You should never need the root password or a root desktop. If you want a root shell then use:
    sudo bash
    Thanks,
    Ken
    Linux is really for everyone.

  7. #37
    Join Date
    Nov 2005
    Location
    Northern Ohio
    Beans
    89
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Low Resolution with Ubuntu 9.10

    I installed Ubuntu 9.10 on an older system with a multi-sync monitor--a Viewsonic "PF790". I had an older nvidia adapter on that system. For some reason the nvidia install did not give me a monitor section in the xorg.conf file. The resolution was very low and I could not bump it up to 1280x1024. As a solution I had to add a monitor section and display subsection into my xorg.conf. Now I have the desired 1280x1024 resolution. I included the xorg.conf from that system below.

    I added the Monitor line within the Section "Screen"
    I added the entire Subsection "Display" in Section "Screen"
    I added the entire Section "Monitor" to define the monitor.
    Edit as you need for you monitor and system.
    The HorizSync and VertRefresh settings came from the PF790 monitor specifications.
    This worked perfectly for me.

    Code:
    Section "Screen"
    	Identifier	"Default Screen"
    	DefaultDepth	24
    	Option	"AddARGBGLXVisuals"	"True"
    	Monitor "PF790"
    	SubSection "Display"
    		Depth		24
    		Modes		"1280x1024" "1024x768" "800x600" "640x480"
    	EndSubSection
    EndSection
    
    Section "Module"
    	Load	"glx"
    EndSection
    
    Section "Monitor"
    	Identifier "PF790"
    	Vendorname "Viewsonic"
    	Modelname "PF-790"
    	HorizSync 30-97
    	VertRefresh 50-160
    EndSection
    Thanks,
    Ken
    Linux is really for everyone.

  8. #38
    Join Date
    Jul 2007
    Beans
    23

    Re: Low Resolution with Ubuntu 9.10

    hi i have live CD for ubuntu and its resolution is 640x340 due to that i cant installation manual properly, i have change in live cd /etc/x11/xorg.conf file but i dont know how to restart xorg ,i try alt+ctrl+bkspace but it wont work, pls anyone how to restart from command prompt any else soultion

  9. #39
    Join Date
    Feb 2009
    Location
    Kentucky
    Beans
    34
    Distro
    Ubuntu 9.10 Karmic Koala

    Smile Re: Low Resolution SOLVED (for me)

    Well, this problem is solved, for me!

    I am really busy at the moment so I will post my solution's details later, but until then I can say:

    -the 'xrandr' fix works as listed in the first page of this thread. just make sure you have a space between your mode name and the --addmode and --newmode commands. BUT, these changes will not be present after to reboot.

    to fix it permanently, i used the Ctrl+Alt+F1 method to stop the gdm and use the xorg -configure command to create a Xorg.conf file.
    NOTE: this method creates a "Xorg.conf.new" in your home directory with 9.10 karmic. to make it work, open this file as sudo with gedit, paste in gabak's code over the default code to replace it. then, save and rename to Xorg.conf, and move the file to /etc/X11/ -after I did this and rebooted I have all resolutions I needed.

    the only thing I did different really was change the "1024x768" in gabak's code to "1366x768." now I have 648x480/800x600/1024x768/1368x768. all work perfect.
    ...Through the Fire and the flames we carry on.

  10. #40
    Join Date
    Jan 2009
    Beans
    10
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Low Resolution with Ubuntu 9.10

    Quote Originally Posted by zman58 View Post
    Why do you want to set the root password? I never have needed to do that on any system. If you want to run as root, then use sudo. You should never need the root password or a root desktop. If you want a root shell then use:
    sudo bash
    I can set my root password using: sudo passwd root.
    Thanks anyway . .

Page 4 of 6 FirstFirst ... 23456 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
  •