12.04 and NVIDIA card problem with NVIDIA Geforce 7025

150

Solution 1

I also have a Geforce 7025 nvidia onboard card - and it has been pestering me since 11.04

What did the trick in 12.04 was installing the latest driver and, for some reason I ignore, lowering the shared memory for the graphic card in the BIOS from 256 to 128. The nvidia drivers work wonderfully now.

To update the drivers with x-swat ppa and to install Nvidia card latest drivers, open Terminal and copy the following commands in the terminal:

sudo apt-add-repository ppa:ubuntu-x-swat/x-updates
sudo apt-get update
sudo apt-get install nvidia-current

When the installation is complete restart your PC.

When rebooting enter BIOS. Go to Advanced in CPU Settings lower the shared memory from 256 to 128.

This has helped me. I hope it helps you as well. Thank You.

Solution 2

NOTE:

SRU Request:

Please accept nvidia-graphics-drivers-updates in precise-proposed. Driver 295.49 should fix both the problem reported in this bug report and the other one reported in bug #982485 https://bugs.launchpad.net/debian/+source/nvidia-graphics-drivers/+bug/982710

This will hopefully be resolved in the near future so manual driver installs are not necessary.

There is a known bug with several Nvidia cards.

We have been made aware of an interaction problem between the fix contained in the newest release any any card with a chip older than G80, inclusive. This includes the full GeForce 6 and 7 series as well as GeForce 8800GTX and first-gen 8800GTS. We are actively working on resolving this issue and will provide an update as soon as possible.

The symptoms can include graphical corruption, performance issues, crashes and temporary hangs.

The release should be perfectly safe to use with more recent cards than that; I'll update this thread ASAP.

Thanks, - Pierre-Loup

http://www.nvnews.net/vbulletin/showthread.php?t=178460&page=3

The newly-released 302.07 beta driver should include a fix for all the issues I mentioned above. Please open a new thread should you notice an issue with that driver.

http://www.nvidia.com/object/linux-display-amd64-302.07-driver.html

Solution 3

NOTE:

SRU Request:

Please accept nvidia-graphics-drivers-updates in precise-proposed. Driver 295.49 should fix both the problem reported in this bug report and the other one reported in bug #982485 https://bugs.launchpad.net/debian/+source/nvidia-graphics-drivers/+bug/982710

This will hopefully be resolved in the near future so manual driver installs are not necessary.

You can manually download and install the 295.20 driver from Nvidia or test the new 302.xx driver they put out.

32bit: http://www.geforce.com/drivers/results/41580

64bit: http://www.geforce.com/drivers/results/41581

You will need to drop to a terminal session to install...

ctrl+alt+F1

Then:

sudo service lightdm stop

Then follow the directions for installing the nvidia drivers.

http://us.download.nvidia.com/XFree86/Linux-x86_64/295.20/README/index.html

Solution 4

i know what i did wrong now!!! During the installation of the NVIDIA driver, this time i installed 295.49, 1 of the things they tell you to do is disable the NOUVEAU driver by creating a file /etc/modprobe.d/NVIDIA ....conf (can't remember the name), it's on my other PC.

Being a real NOOB, i thot this was something important. So when the installation was over, i moved it away & rebooted. lo & behold, 640x480 resolution! I moved the file back to /etc/modprobe.d, rebooted, & voila!!! it worked!

So i did some research on what exactly does Nouveau do. Here's watt i found out; https://help.ubuntu.com/community/BinaryDriverHowto/Nvidia

You have NVIDIA (proprietary - ubuntu-land ppl call it "closed source") or Nouveau - open source driver. In the words of the article; "This driver lacks support for 3D acceleration and may not work with the very latest video cards or technologies from NVIDIA."

Here's an older article describing what the Nouveau project http://www.omgubuntu.co.uk/2011/03/nouveau-open-source-3d-graphics-drivers-for-nvidia-in-ubuntu/

I don't know if this is out of context, but this is what it says; "Whilst they don’t (yet) provide anywhere near the same level of performance as the proprietary drivers most folks use they are a free and capable drop-in."

In summary, use either proprietary or Nouveau, not both!

Share:
150

Related videos on Youtube

sharataka
Author by

sharataka

Updated on September 18, 2022

Comments

  • sharataka
    sharataka almost 2 years

    edit

    I should say that I have multiple images I am trying to put in a row. The solution offered by mdk works but each image appears on a new row.

    I have a description and an image. I am overlaying the description on top of the image. Currently it is left aligned on the bottom of the image. I would like to make the description be center aligned both horizontally and vertically, but am having trouble doing so. The size of the image that is used is 320 x 240.

        <!-- image -->
            <div style="position: relative; left: 0; top: 0;">
        
        
        <a href="test.html"> <img src = "test.png" style="position: relative; top: 0; left: 0; width: 320px;"></a>
            
            <!-- description div -->
            <div class='description'>
                <!-- description content -->
                <p class='description_content'>This is the description of the image</p> 
                <!-- end description content -->
            </div>
            <!-- end description div -->
        
        </div>
        <!-- end image div -->
    
    </div>
    <!-- end wrapper div -->
    

    css

    div.wrapper{
        float:left; /* important */
        position:relative; /* important(so we can absolutely position the description div */ 
        padding: 5px;
    }
    div.description{
        position:absolute; /* absolute position (so we can position it where we want)*/
        bottom:0px; /* position will be on bottom */
        left:0px;
        /* styling bellow */
        background-color:black;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size:18px;
        font-weight:900;
        color:white;
        opacity:0.75; /* transparency */
        filter:alpha(opacity=70); /* IE transparency */
    }
    p.description_content{
        padding:10px;
        margin:0px;
    }
    
    • surgemcgee
      surgemcgee about 12 years
      Definitely try re-installing your drivers --> Search for drivers in the HUD by pressing the super key.
    • Lekensteyn
      Lekensteyn about 12 years
      What video card do you have? Adding /var/log/Xorg.0.log would be helpful.
    • Scott Selby
      Scott Selby over 11 years
      Is the image always the same size?
    • Matt Kieran
      Matt Kieran over 11 years
      I'm half a sleep right now so I don't want to make a proper answer but here: jsfiddle.net/EWzwy
    • sharataka
      sharataka over 11 years
      @ScottSelby yes the image is always the same size
    • sharataka
      sharataka over 11 years
      @mdk when I try your solution for multiple images consecutively, it puts each image in a new row. How do I stop this?
    • Matt Kieran
      Matt Kieran over 11 years
      @sharataka It wasn't working properly because you cannot absolutely position within a table cell, a wrapper must be used, I missed this. This should work though: jsfiddle.net/EWzwy/2 Keep in mind this isn't exactly the most semantic markup and also read here if you want to learn more about the problem: css-tricks.com/absolutely-position-element-within-a-table-ce‌​ll
    • Braiam
      Braiam over 10 years
  • Amith KK
    Amith KK about 12 years
    Upgrading to the 302.07 driver did not fix it :(
  • cprofitt
    cprofitt about 12 years
    I was using 295.20 before with my 8800 -- not sure, but you could try that version.
  • Mati
    Mati about 12 years
    Thanks for your answers. I tried first 295.20 and now I'm using 295.49. Both worked without errors, but the thing is that they are running really slow, for example when I use the HUD or when I watch a video on youtube... and 3D is not working good in a game (assault cube for ex, is unuseful) I can't find any option (with the "NVIDIA X-server setting") to make it run better... any ideas?
  • cprofitt
    cprofitt about 12 years
    The 295.20 driver worked for my 8800 GTS, so I did not have to do any other tweaks. I am not sure what else to try at this point.
  • Amith KK
    Amith KK about 12 years
    I've installed the .deb packages from the quantal repository. nvidia-settings and nvidia-sli however shows me that i'm using the 295.40 Driver