![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
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 |
|
|
#11 |
|
Iced Blended Vanilla Crème Ubuntu
![]() 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 |
|
|
|
|
|
#12 |
|
Just Give Me the Beans!
![]() Join Date: Apr 2007
Beans: 47
|
Re: screen resolution problems still
|
|
|
|
|
|
#13 |
|
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
|
|
|
|
|
|
#14 |
|
Just Give Me the Beans!
![]() Join Date: Apr 2007
Beans: 47
|
Re: screen resolution problems still
|
|
|
|
|
|
#15 |
|
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" 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 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 Code:
Option "metamodes" "1280x960 +0+0" 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
Code:
Identifier "Default Screen" Code:
Option "metamodes" "1280x960 +0+0" I hope that helps. |
|
|
|
|
|
#16 | |
|
Just Give Me the Beans!
![]() Join Date: Apr 2007
Beans: 47
|
Re: screen resolution problems still
Quote:
Regards, Rob. |
|
|
|
|
|
|
#17 | |
|
Iced Blended Vanilla Crème Ubuntu
![]() Join Date: Jan 2007
Location: London, UK
Beans: 2,921
|
Re: screen resolution problems still
Quote:
__________________
Unix is the best screwdriver ever built and Linux is the best engine ever built |
|
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|