How-to install legacy driver Nvidia driver on your old PC.
My PC is 8 years old has a AMD dual core processor and Nvidia graphics chipset.
I still remember during 1999, i used to go and get a Nvidia card to get the Xserver working in many PC's at that time as it was supported out of the box.
15 years later things have changed Nvidia drivers are not part of the disto :-).
You will be able to install Linux but soon you may encounter issues related to display similar to one i got
"nouveau E[ PBUS][0000:01:00.0] MMIO read of 0x00000000 FAULT at 0x610260 [ IBUS ]"
There is a solution, you don't have buy new graphics card or throw away your old PC.
1) find out what Nvidia VGA card you have and what is the recommended driver.
ramya rammi # nvidia-detect
Detected NVIDIA GPUs:
00:0d.0 VGA compatible controller [0300]: NVIDIA Corporation C61 [GeForce 6150SE nForce 430] [10de:03d0] (rev a2)
Your card is only supported up to the 304 legacy drivers series.
It is recommended to install the
nvidia-legacy-304xx-driver
package.
If you don't have nvidia-detect, you can install it using apt-get install nvidia-detect
2) Since Nvidia chose to release only binaries instead of source, many Linux distributions don't include the drivers provided by Nvidia any more.
Most Distro's comes with
nouveau driver for Nvidia, but in my PC this driver used to cause freeze and kernel panic.
3) Now you know you need to install nvidia 304xx drivers to get the xserver running on your old PC.
Remove all the NVidia drivers you have in the PC
# dpkg -l|grep -i nvidia
# apt-get remove --purge nvidia-*
Make sure no drivers left to be removed , i wasn't able to remove glx-alternative package
but it did not cause any issue.
4) Install following packages
# apt install nvidia-legacy-304xx-kernel-dkms
nvidia-legacy-304xx-driver build-essential nvidia-settings-legacy-304xx
nvidia-xconfig
You may see messages on console like nvidia is the driver currently used but a reboot will fix it!!
Now after all package installation , configure xorg.conf under /etx/X11/xorg.conf
Easiest way to do it is to ...
# nvidia-xconfig
# reboot
Enjoy panic free Linux Mint :-)