Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Absolute Beginner Talk
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Ubuntu 9.10 is out!!!

When downloading Ubuntu 9.10 please consider using bittorrent to get your copy of Ubuntu.

The Ubuntu Developers Summit for Lucid Lynx will be held the week of 16-Nov-2009 till 20-Nov-2009 in Dallas, TX USA. Visit the the Ubuntu wiki for more information about UDS and how to participate remotely.

Absolute Beginner Talk
The perfect starting place to find out more about computers, Linux and Ubuntu.

 
Thread Tools Display Modes
Old 2 Weeks Ago   #11
ukripper
Iced Blended Vanilla Crème Ubuntu
 
ukripper's Avatar
 
Join Date: Jan 2007
Location: London, UK
Beans: 2,921
Re: screen resolution problems still

Can you boot into your ubuntu livecd and see if you get resolution you want?
__________________
Unix is the best screwdriver ever built and Linux is the best engine ever built
ukripper is offline   Reply With Quote
Old 2 Weeks Ago   #12
scrimple101
Just Give Me the Beans!
 
Join Date: Apr 2007
Beans: 47
Re: screen resolution problems still

Quote:
Originally Posted by ukripper View Post
Can you boot into your ubuntu livecd and see if you get resolution you want?
No when i boot with the live CD the highest resolution i can get is 800 * 600
scrimple101 is offline   Reply With Quote
Old 2 Weeks Ago   #13
anujv73
5 Cups of Ubuntu
 
Join Date: Jul 2007
Beans: 23
Re: screen resolution problems still

hey hi i am even get the same problem with Ubuntu 9.04 i am just geting resolution 640x480 and 800x600 i am wetting for reply too
anujv73 is offline   Reply With Quote
Old 2 Weeks Ago   #14
scrimple101
Just Give Me the Beans!
 
Join Date: Apr 2007
Beans: 47
Re: screen resolution problems still

Quote:
Originally Posted by anujv73 View Post
hey hi i am even get the same problem with Ubuntu 9.04 i am just geting resolution 640x480 and 800x600 i am wetting for reply too
Hello Anujv73, i hope that things get sorted and the resolution problem gets resolved soon. Rob
scrimple101 is offline   Reply With Quote
Old 1 Week Ago   #15
8oluf7
Just Give Me the Beans!
 
Join Date: Dec 2004
Beans: 57
Re: screen resolution problems still

I've had this problem and found a solution. Basically, Ubuntu 9.10 doesn't use xorg.conf, so only a minimal file is created. OTOH, if information is put into xorg.conf, it can and will be used.

First problem:
Option of high resolutions not available. Have you enabled Visual Effects? (System > Preferences > Appearance and click the Visual Effects tab.) If you do this, I think that an extra line appears in your Section "Screen":
Code:
Option	"AddARGBGLXVisuals"	"True"
That's the only difference I can see between your xorg.conf and the one I had before I started playing with it. Enabling visual effects also sends the system off to hunt for the appropriate driver! I had a related problem with another machine with an Intel graphics chip - turning off Visual Effects also removed the high resolution options.

Second Problem:
In my case I could reset the screen resolution but my choice didn't survive a reboot. The system returned to its default which, with an MX400 card and a LaCie electron22blue monitor, was staggeringly high. If I tried to save the new configuration the nVidia software complained that it couldn't parse the xorg.conf file. There are several descriptions of ways to overcome this problem, but they tend to assume that you have access to the full specification of your monitor - I don't. However, another post in this forum revealed that the way to overcome this roadblock is to rename the xorg.conf file so that the software doesn't find anything and creates a new xorg.conf from scratch, thus doing the 'heavy lifting' for you. So:
Code:
sudo mv /etc/X11/xorg.conf /etc/X11/xorg.original
Then use the nVidia X Server Settings application (System > Administration > NVIDIA X Server Settings) to set the resolution you want. When you've finished, click the 'Save to X Configuration File' button.

Now you can examine the file that's just been created in a text editor, such as gedit.
Code:
sudo gedit /etc/X11/xorg.conf
I found a lot of repetition - maybe the previously unsuccessful attempts to modify xorg.conf were stored somewhere and all dumped together! The bits that are important are the "Monitor", "Device" and "Screen" sections. The "Screen" section should contain a line such as:
Code:
Option         "metamodes" "1280x960 +0+0"
which sets the resolution you selected (in my case 1280x960).

The final step is to combine the essential elements of xorg.conf and xorg.original so that you have an xorg.conf containing the "Monitor" and "Device" sections, followed by a combined "Screen" Section and then the rest of the original file. In my case it looks like this:
Code:
Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "LCA electr22b2"
    HorizSync       30.0 - 121.0
    VertRefresh     50.0 - 160.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce2 MX/MX 400"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "metamodes" "1280x960 +0+0"
    Option	"AddARGBGLXVisuals"	"True"
EndSection

Section "Module"
	Load	"glx"
EndSection

Section "Device"
	Identifier	"Default Device"
	Driver	"nvidia"
	Option	"NoLogo"	"True"
EndSection
The first three lines of the "Screen" section replace the default
Code:
Identifier    "Default Screen"
and the
Code:
Option         "metamodes" "1280x960 +0+0"
has been inserted.

I hope that helps.
8oluf7 is online now   Reply With Quote
Old 1 Week Ago   #16
scrimple101
Just Give Me the Beans!
 
Join Date: Apr 2007
Beans: 47
Re: screen resolution problems still

Quote:
Originally Posted by 8oluf7 View Post
I've had this problem and found a solution. Basically, Ubuntu 9.10 doesn't use xorg.conf, so only a minimal file is created. OTOH, if information is put into xorg.conf, it can and will be used.

First problem:
Option of high resolutions not available. Have you enabled Visual Effects? (System > Preferences > Appearance and click the Visual Effects tab.) If you do this, I think that an extra line appears in your Section "Screen":
Code:
Option	"AddARGBGLXVisuals"	"True"
That's the only difference I can see between your xorg.conf and the one I had before I started playing with it. Enabling visual effects also sends the system off to hunt for the appropriate driver! I had a related problem with another machine with an Intel graphics chip - turning off Visual Effects also removed the high resolution options.

Second Problem:
In my case I could reset the screen resolution but my choice didn't survive a reboot. The system returned to its default which, with an MX400 card and a LaCie electron22blue monitor, was staggeringly high. If I tried to save the new configuration the nVidia software complained that it couldn't parse the xorg.conf file. There are several descriptions of ways to overcome this problem, but they tend to assume that you have access to the full specification of your monitor - I don't. However, another post in this forum revealed that the way to overcome this roadblock is to rename the xorg.conf file so that the software doesn't find anything and creates a new xorg.conf from scratch, thus doing the 'heavy lifting' for you. So:
Code:
sudo mv /etc/X11/xorg.conf /etc/X11/xorg.original
Then use the nVidia X Server Settings application (System > Administration > NVIDIA X Server Settings) to set the resolution you want. When you've finished, click the 'Save to X Configuration File' button.

Now you can examine the file that's just been created in a text editor, such as gedit.
Code:
sudo gedit /etc/X11/xorg.conf
I found a lot of repetition - maybe the previously unsuccessful attempts to modify xorg.conf were stored somewhere and all dumped together! The bits that are important are the "Monitor", "Device" and "Screen" sections. The "Screen" section should contain a line such as:
Code:
Option         "metamodes" "1280x960 +0+0"
which sets the resolution you selected (in my case 1280x960).

The final step is to combine the essential elements of xorg.conf and xorg.original so that you have an xorg.conf containing the "Monitor" and "Device" sections, followed by a combined "Screen" Section and then the rest of the original file. In my case it looks like this:
Code:
Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "LCA electr22b2"
    HorizSync       30.0 - 121.0
    VertRefresh     50.0 - 160.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce2 MX/MX 400"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "metamodes" "1280x960 +0+0"
    Option	"AddARGBGLXVisuals"	"True"
EndSection

Section "Module"
	Load	"glx"
EndSection

Section "Device"
	Identifier	"Default Device"
	Driver	"nvidia"
	Option	"NoLogo"	"True"
EndSection
The first three lines of the "Screen" section replace the default
Code:
Identifier    "Default Screen"
and the
Code:
Option         "metamodes" "1280x960 +0+0"
has been inserted.

I hope that helps.
Thanks for you help but unfortunately i still couldn't get any different response from Nvidia Setting manager and have decided to use Hardy Heron 8.04 where it is easy to configure the screen with the screens and Graphics section of applications:/usr/share/applications/. I wish it was as easy as this in 9.10.
Regards, Rob.
scrimple101 is offline   Reply With Quote
Old 1 Week Ago   #17
ukripper
Iced Blended Vanilla Crème Ubuntu
 
ukripper's Avatar
 
Join Date: Jan 2007
Location: London, UK
Beans: 2,921
Re: screen resolution problems still

Quote:
Originally Posted by scrimple101 View Post
Thanks for you help but unfortunately i still couldn't get any different response from Nvidia Setting manager and have decided to use Hardy Heron 8.04 where it is easy to configure the screen with the screens and Graphics section of applications:/usr/share/applications/. I wish it was as easy as this in 9.10.
Regards, Rob.
Try 9.04 live cd if 9.04 works for you then stick to that. You can even use EXT4 filesystem in 9.04.
__________________
Unix is the best screwdriver ever built and Linux is the best engine ever built
ukripper is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

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 On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 12:46 PM.


vBulletin ©2000 - 2009, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. lingonberry