3

I've been trying to install Ubuntu 12.04 LTS on my desktop most of the day. The desktop uses a NVIDIA GEFORCE 9800 (GT I think) graphics card. I am unable to set the correct resolution (1680 x 1050) for the display.

The first problem I had was that of the "Black Screen" during install. I overcame this by utilising the "nomodeset" switch on the install options (once I'd found how to do that). The second problem of course was the "Black screen" following the first reboot. Once again this was overcome by using "nomodeset", this time by "editing" the GRUB.

This gave me a resolution of 1280x768 which, the Displays GUI allowed me to change to 1280x720 (appears to fit on screen).

I then tried to install the NVIDIA drivers. 1) using additional drivers 2) manually by downloading driver and installing in root

As soon as NVIDIA drivers are installed - resolution become restricted to 640x480 (max). At this resolution Ubuntu GUI is not usable as most screens are larger than the display. Removing the NVIDIA driver and removing the XORG.CONF file does not lift this restriction.

I have tried most things that I have found and that were vaguely intelligible, but nothing appears to get me closer to a resolution of 1680x1050.

UPDATE: reinstalled Ubuntu 12-04 and used the "NoModeSet" in the Grub to restore the resolution to 1280x720, which is at least usable. Will live with this for now.

6 Answers6

1

I have been having resolution problems with my brand new Ubuntu 12.04 LTS installation and I couldn' t even see the choice of the 1680x1050 resolution. But then it was so easily and user-friendly solved: Just went to Additional Drivers in the System Settings tab and activated the NVIDIA accelerated graphics driver(post-release updates)(version current-updates) and it worked for me. Good luck!

1

A few weeks ago, my system suddenly dropped down to 800x600, but there was no any problem the day before, it just happened! Then I started reinstalling Ubuntu, and what you describe started coming out. And jockey ("Additional Drivers" in the setting panel) even fail to activate nvidia-current.

Now I believe that it's the monitor that causes the problems. My monitor is of an unknown manufacturer and now some quality problems have been showing up. I think hardware issues is the only explanation to all these strange things. Try reinstalling Ubuntu after changing your monitor and see if the NVIDIA driver can be install. I haven't try this yet.

jokerdino
  • 41,732
seamlik
  • 11
0

nomodeset helped during install. After then the screen went all wacko so I remember a youtube video I was watching which it stated to run a fix during boot by running fix all problems. If that did not help try running it in the safe graphics mode and update the card. It worked for me.

Eliah Kagan
  • 119,640
mrkrol
  • 1
0

There are a lot of issues with the 295.40 driver. You can revert to the old nvidia driver 295.33 by following this guide:

http://www.noobslab.com/2011/09/nvidia-drivers-for-ubuntu-1110-oneiric.html

I have to manually load the nvidia_current kernel module by adding nvidia_current to /etc/modules -- works after reboot, executing "modprobe nvidia_current" and "/etc/init.d/lightdm restart" works immediately

0

http://ubuntuforums.org/showthread.php?t=1628678 I had a very similar issue and this link resolved it for me. Give it a shot!

-1

UPDATE: Ubuntu 12.04 upgrade: Use Nvidia X server config app to adjust resolution, picking one ** close resolves issue after upgrade. Actual didn't work.


nVidia GeForce 6150 GPU onboard chipset

Purpose of this post is to assist in activating proprietary driver for onboard 6150 DVI connection to LCD with HDMI connect.

Maverick 10.10

Linux version 2.6.35-28-generic, NVIDIA GLX Module 260.19.06

The nouveau driver installed by default recognizes LCD monitors connected by DVI/HDMI. This default driver cannot fully utilize the 3D potential of NVIDIA graphics chips or provide 2D acceleration for newer cards. The default resolution choices tend to be below the capabilities of monitor/tv and chipset.

If you are considering the installation of the proprietary drivers found under System, Administration, Additional Drivers some preliminary work will ease the process.

Without some changes to the xorg.conf file many people have experienced over-scan issues and blank or black screen on reboot post driver install.

Before choosing install look in Log File Viewer under System Administration for Xorg log. The Nouveau driver logs some useful information about your graphics system. Look for chipset info: "NVIDIA NV4e" and the lines after "Supported standard timings".

Example:

17.661] (II) NOUVEAU(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 17.661] (II) NOUVEAU(0): #1: hsize: 1360 vsize 765 refresh: 60 vid: 49291

You can read more about EDID.

The hsize and vsize should be close to resolutions supported by your monitor. Verify these by looking in the manual for the monitor or online at manufacturers website. The supported resolutions have to be manually added to xorg.conf.

Look for the xorg.conf file under /etc/X11/xorg.conf. You can add, if not there or edit, by opening the terminal application found under accessories and typing

$ sudo gedit /etc/X11/xorg.conf

Add or edit the Screen section of xorg.conf. This example applies to 720p 32" widescreen lcd tv.

Section "Screen"
Identifier  "Default Screen"
DefaultDepth    24
Option  "UseDisplayDevice" "DFP"
Subsection  "Display"
   Modes    "1360x768" "1280x720" "720x480"
EndSubSection
EndSection

Substitute the display Modes shown above for the resolutions supported by your LCD monitor. The first mode "1360x768" will be the default read by nVidia driver upon installation.

The option "UseDisplayDevice" "DFP" will select the dvi connected LCD. This should prevent the black screen upon reboot.

After you've saved the file, activate the driver.

Additional information for nVidia with XOrg commands.

con-f-use
  • 19,041
Bob
  • 11