LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-01-2010, 03:56 PM   #1
jacatone
Member
 
Registered: Mar 2004
Posts: 292

Rep: Reputation: 30
How do I fix Nvidia accelerated driver in Ubuntu 10.04?


After installing Ubuntu 10.04, kept getting this popup advising me of an Nvidia accelerated graphics driver 96. After installing it my highest resolution is 640x480 and I get the following error:

"It appears that your graphics driver does not support the necessary extensions to use this tool. Do you want to use your graphics driver vendor's tool instead? Yes/No"

How do I get this thing to a 1024x768 resolution? Thanks.
 
Old 05-01-2010, 06:44 PM   #2
jstephens84
Senior Member
 
Registered: Sep 2004
Location: Nashville
Distribution: Manjaro, RHEL, CentOS
Posts: 2,098

Rep: Reputation: 102Reputation: 102
Quote:
Originally Posted by jacatone View Post
After installing Ubuntu 10.04, kept getting this popup advising me of an Nvidia accelerated graphics driver 96. After installing it my highest resolution is 640x480 and I get the following error:

"It appears that your graphics driver does not support the necessary extensions to use this tool. Do you want to use your graphics driver vendor's tool instead? Yes/No"

How do I get this thing to a 1024x768 resolution? Thanks.
try editing your /etc/X11/xorg.conf file and where you see
Code:
Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection
try adding underneath Depth
Code:
Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
then save and logout or you alt+ctrl+backspace should restart your X server.
 
Old 05-02-2010, 05:12 PM   #3
jacatone
Member
 
Registered: Mar 2004
Posts: 292

Original Poster
Rep: Reputation: 30
Actually, I don't see that in my xorg.conf file. I have the following:

Section "Screen"
Identifier "Default Screen"
DefaultDepth 24
Option "AddARGBGLXVisuals" "True"
EndSection

Section "Module"
Load "glx"
EndSection

Section "Device"
Identifier "Default Device"
Driver "nvidia"
Option "NoLogo" "True"
EndSection

How would I fix this instead?
 
Old 05-02-2010, 05:19 PM   #4
mark_alfred
Senior Member
 
Registered: Jul 2003
Location: Toronto, Ontario, Canada
Distribution: Ubuntu Linux 16.04, Debian 10, LineageOS 14.1
Posts: 1,572

Rep: Reputation: 210Reputation: 210Reputation: 210
Try "sudo dpkg-reconfigure xserver-xorg". Sometimes this will give you the option to adjust your screen resolution.
 
Old 05-02-2010, 06:35 PM   #5
jacatone
Member
 
Registered: Mar 2004
Posts: 292

Original Poster
Rep: Reputation: 30
Nope, didn't work. Just gave me the 640x480 max.
 
Old 05-02-2010, 06:45 PM   #6
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
how did you install the 96 driver ?
apt-get? or the " NVIDIA-Linux-x86-96.43.16-pkg1.run " ?
also is that the correct driver for your card ( a VERY OLD card ) -- so what is the card ?
 
Old 05-02-2010, 07:24 PM   #7
jacatone
Member
 
Registered: Mar 2004
Posts: 292

Original Poster
Rep: Reputation: 30
It's an nVidia-GeForce2 MX/MX 400 card. I used the Administration>Hardware Drivers tool to install the driver.
 
Old 05-02-2010, 07:53 PM   #8
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
what version of the driver is it
to see
Code:
nvidia-settings
the nvidia tool will give it version
-- screen shot --
http://www.imagebam.com/image/32f61178928552
and this is a copy of my working xorg.conf
Code:
Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"

 
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "DELL P792"
    HorizSync       30.0 - 96.0
    VertRefresh     48.0 - 170.0
    Gamma           1
EndSection

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

Section "Screen"
    Identifier     "Screen0"
    Device         "Videocard0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "RenderAccel" "True"
    Option         "AllowGLXWithComposite" "True"
    Option         "AddARGBGLXVisuals" "true"
    Option         "NVAGP" "3"
    Option         "metamodes" "1024x768 +0+0; 1600x1200 +0+0; 1280x1024 +0+0; 800x600 +0+0; 640x480 +0+0"
    SubSection     "Display"
        Depth       24
        Modes      "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
 
Old 05-02-2010, 08:40 PM   #9
brucehinrichs
Member
 
Registered: Mar 2008
Location: US
Distribution: Debian Sid; Sabayon, UbuntuStudio, Slackware-multilib 13.1, Peppermint Ice, CentOS
Posts: 575

Rep: Reputation: 69
I believe this well help.
 
Old 05-02-2010, 11:22 PM   #10
jacatone
Member
 
Registered: Mar 2004
Posts: 292

Original Poster
Rep: Reputation: 30
Thanks brucehinrichs, I'll give it a try after I do another reinstall of ubuntu.
 
  


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
Compiz XGL with NVIDIA 7300GT not accelerated rhdemis SUSE / openSUSE 0 12-18-2006 05:48 PM
Problem with nVidia 3D Accelerated Driver (all versions) OxygenOne Linux - Hardware 6 12-25-2005 06:26 PM
Widescreen mode not available with accelerated nvidia driver somedude Linux - Software 8 10-24-2005 12:06 PM
Need a little help with my NVIDIA driver should be and easy fix buckwheat12 Mandriva 1 02-06-2005 09:46 PM
Accelerated NVidia Drivers (2.6.1) arrruken Slackware 3 01-28-2004 09:53 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:07 PM.

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
Open Source Consulting | Domain Registration