LinuxQuestions.org
Latest LQ Deal: Complete CCNA, CCNP & Red Hat Certification Training Bundle
Home Forums HCL Reviews Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 04-25-2009, 02:58 PM   #1
andy.rogers
LQ Newbie
 
Registered: Apr 2009
Posts: 2

Rep: Reputation: 0
I'm stuck in 800x600 in Ubuntu 9.04


Hey guys -

I just installed Ubuntu 9.04. I have an NVidia GeForce graphics card and an Olevia monitor.

I'm having a miserable time getting any resolution higher than 800x600. I tried to run
Quote:
sudo dpkg-reconfigure xserver-xorg
but it didn't give me any options to force or set any resolutions.

I tried to update my xorg.conf file and didn't have any luck there either. As you can see below, there isn't any lines for resolution either.

Please help. If I can't get this fixed, I've got to go to another distro. It feels like I'm reading my grandmothers crossword puzzle book with these unnecessarily large fonts and icons...

Here is the contents of that file:

Quote:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Device"
Identifier "Configured Video Device"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
 
Old 04-25-2009, 03:03 PM   #2
{BBI}Nexus{BBI}
Senior Member
 
Registered: Jan 2005
Location: Nottingham, UK
Distribution: Mageia 5, Linux Lite
Posts: 4,312

Rep: Reputation: 210Reputation: 210Reputation: 210
It might be worth downloading and installing the driver from the nvidia website.
 
Old 04-25-2009, 03:20 PM   #3
andy.rogers
LQ Newbie
 
Registered: Apr 2009
Posts: 2

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by {BBI}Nexus{BBI} View Post
It might be worth downloading and installing the driver from the nvidia website.
Sorry -

I should have mentioned that I'm using the nvidia driver (180.51). I used the Ubuntu hardware driver tool to find it.
 
Old 04-25-2009, 04:49 PM   #4
javaholic
LQ Newbie
 
Registered: Jun 2007
Posts: 25

Rep: Reputation: 15
the xserver config has changed in xorg there is no longer a xorg.conf file. don't know then exact instructions for ubuntu but in fedora you have to do a

Code:
yum install system-config-display
that creates a xorg.conf file and whatnot in fedora. I reckon the package name will be identical in ubuntu.
 
Old 04-25-2009, 06:05 PM   #5
PTrenholme
Senior Member
 
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,186

Rep: Reputation: 346Reputation: 346Reputation: 346Reputation: 346
Check to see if you have the nvidia-config application installed. (It should have been installed with the 180 driver.) and just run it. (IIRC it will be an item in the System menu, but you could run it from a terminal window.)

Here's what my /etc/X11/xorg.conf looks like:
Code:
$ cat /Jaunty/etc/X11/xorg.conf | grep -v "^[[:space:]]*#"
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0     
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection                                   

Section "Files"
    ModulePath      "/usr/lib64/xorg/modules/extensions/nvidia"
    ModulePath      "/usr/lib64/xorg/modules/extensions"       
    ModulePath      "/usr/lib64/xorg/modules"                  
    FontPath        "/usr/share/fonts/X11/misc"                
    FontPath        "/usr/share/fonts/X11/100dpi/:unscaled"    
    FontPath        "/usr/share/fonts/X11/75dpi/:unscaled"     
    FontPath        "/usr/share/fonts/X11/Type1"               
    FontPath        "/usr/share/fonts/X11/100dpi"              
    FontPath        "/usr/share/fonts/X11/75dpi"               
    FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection                                                            

Section "Module"
    Load           "dbe"
    Load           "glx"
    Load           "extmod"
    Load           "dri2"  
    Load           "record"
EndSection                 

Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "kbd"      
EndSection                    

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse" 
    Option         "Protocol" "auto"
    Option         "Device" "/dev/input/mice"
    Option         "ZAxisMapping" "4 5 6 7"  
EndSection                                   

Section "InputDevice"
    Identifier     "Mouse1"
    Driver         "synaptics"
    Option         "Device" "/dev/input/mouse1"
    Option         "SHMConfig" "yes"
    Option         "Emulate3Buttons" "yes"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "HP"
    ModelName      "Seiko"
    HorizSync       30.0 - 75.0
    VertRefresh     60.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Card0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce 7150M / nForce 630M"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Card0"
    Monitor        "Monitor0"
    Option         "AddARGBGLXVisuals" "True"
    SubSection     "Display"
        Viewport    0 0
        Modes      "1440x900" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
The Screen section is where the display modes are specified. The first specified mode is the default.
 
Old 04-25-2009, 06:25 PM   #6
tommcd
Senior Member
 
Registered: Jun 2006
Location: Philadelphia PA USA
Distribution: Lubuntu, Slackware
Posts: 2,230

Rep: Reputation: 291Reputation: 291Reputation: 291
The command to configure the nvidia driver in Ubuntu is sudo nvidia-xconfig. After running that command you should either reboot or restart X. Then try running sudo nvidia-settings and see if it will offer you the proper resolution.

Last edited by tommcd; 04-25-2009 at 06:27 PM.
 
Old 04-26-2009, 07:03 AM   #7
michaeltweak
LQ Newbie
 
Registered: Jul 2003
Posts: 24

Rep: Reputation: 16
the nvidia driver should solve your problem

You can even install it by graphic tools
go to

System > Administration > hardware drivers

If it does not offer you the nVidia drivers, then you probably need to go to
System > Administration > software sources and select "proprietary drivers for devices (restricted)"

Once you have activated the nVidia driver all resolutions will be available..
 
Old 04-26-2009, 07:47 AM   #8
j. van helden
LQ Newbie
 
Registered: Sep 2007
Location: The Netherlands
Distribution: Fedora and Ubuntu
Posts: 16

Rep: Reputation: 0
Quote:
Originally Posted by tommcd View Post
The command to configure the nvidia driver in Ubuntu is sudo nvidia-xconfig. After running that command you should either reboot or restart X. Then try running sudo nvidia-settings and see if it will offer you the proper resolution.
I have just installed Ubuntu 9.04 on my Packard Bell EasyNote and am experiencing the same trouble. My laptop has a Sis Mirage video card built in and I get nothing more than 800x600. It's making me miserable as I have also installed Fedora 10 on the same machine and get a much better resolution, this being 1074x768. Any help will be appreciated. Thank you very much beforehand.
 
Old 04-26-2009, 11:49 AM   #9
PTrenholme
Senior Member
 
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,186

Rep: Reputation: 346Reputation: 346Reputation: 346Reputation: 346
Try copying the /etc/X11/xorg.conf file from your Fedora installation into the /etc/X11/ directory of your Jaunty installation.

If you've set up your laptop with a dual-boot, you should be able to access your Jaunty file system from Fedora to do the copying. (I prefer to install krusader on Fedora, and use the "Root mode Krusader" entry in the system menu for such things, but a simple sudo cp /etc/X11/xorg.conf /Jaunty/etc/X11/ should work -- assuming that you've mounted the Jaunty file system as /Jaunty.)

Notes:
  1. You can reboot the X-server with the <ctrl>-<alt>-<backspace> key combination without rebooting your laptop.
  2. On Fedora you will not be in the sudoers file by default. You can use su -c in place of sudo (and enter the "root" password) or edit /etc/sudoers (as "root") to add yourself.
  3. To access your Fedora file system from Jaunty (assuming that you did a default Fedora installation), you'll need to install the LVM package (sudo apt-get install lvm) and add the appropriate information to your /etc/fstab file.
 
Old 04-26-2009, 08:03 PM   #10
tommcd
Senior Member
 
Registered: Jun 2006
Location: Philadelphia PA USA
Distribution: Lubuntu, Slackware
Posts: 2,230

Rep: Reputation: 291Reputation: 291Reputation: 291
Quote:
Originally Posted by j. van helden View Post
I have just installed Ubuntu 9.04 on my Packard Bell EasyNote and am experiencing the same trouble. My laptop has a Sis Mirage video card built in and I get nothing more than 800x600. I have also installed Fedora 10 on the same machine and get a much better resolution, this being 1074x768.
If replacing the xorg.conf with the one from Fedora does not help, then boot to recovery mode in Ubuntu and choose the option "xfix fix the video" or whatever it says exactly. Then reboot the system and see if the resolution improves.
 
Old 04-27-2009, 08:13 AM   #11
j. van helden
LQ Newbie
 
Registered: Sep 2007
Location: The Netherlands
Distribution: Fedora and Ubuntu
Posts: 16

Rep: Reputation: 0
I'm stuck in 800x600 in Ubuntu 9.04

Quote:
Originally Posted by tommcd View Post
If replacing the xorg.conf with the one from Fedora does not help, then boot to recovery mode in Ubuntu and choose the option "xfix fix the video" or whatever it says exactly. Then reboot the system and see if the resolution improves.
First of all I like to thank PTrenholme and tommcd for their help in the above matter. I started off with backing up the Ubuntu xorg.conf file and then replaced same by my Fedora 10 xorg.conf file as suggested. And I am more than pleased to say that this worked fine for me. I can even go one resolution higher than 1074x768, but this one is good enough for me.
Once again thank you very much.
 
  


Reply



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



Similar Threads
Thread Thread Starter Forum Replies Last Post
HP w2207 monitor stuck at 800x600 archlyn Linux - Hardware 3 07-21-2008 02:44 PM
I'm stuck in 800x600 / Nvdia card randyriver10 Linux - General 5 01-07-2008 01:41 PM
Gnome stuck in 800x600 but other Window Managers work Pho Linux - Software 3 01-06-2006 07:50 AM
NEWBIE: Resolution still stuck at 800x600 sabkaraja MEPIS 3 11-22-2005 10:56 PM
installed jamd, stuck at 800x600 Trinity22 Linux - General 2 08-07-2003 01:54 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 05:17 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Facebook: linuxquestions Google+: linuxquestions
Open Source Consulting | Domain Registration