Let's say you have chosen openSUSE 10.2 as your default Linux distribution and now you need to install your video card's driver, be it either Nvidia or ATI. This guide will teach you the easiest ways to achieve that.Nvidia InstallationWe first need to install the official openSUSE Nvidia repository. Open up a console and type the following:
rpm --import ftp://download.nvidia.com/novell/repodata/repomd.xml.key
Now let's add the YUM repository, by opening YaST and clicking on "Software" and then on the "Installation Source". In the new window which will appear, click the Add button, then select the "Specify URL..." option, hit Next and paste there the following line:
ftp://download.nvidia.com/opensuse/10.2/Click finish and wait for it to load the repository. Now close this window and you are back on the main YaST window. Click on "Software Management" and in the search box type nvidia. From the results, choose:
nvidia-gfx-kmp-default
x11-video-nvidiaHit "Accept" button and you'll be asked to agree with the license terms and then the installation will begin.
Restart your computer and you'll have Nvidia video driver installed.
ATI InstallationThe ATI driver is a bit harder to install, so please follow the instructions carefully.
Download the latest ATI driver from
here.
Get the .run file!You need now to generate distribution specific driver package. Open a console and type the following:
sh ati*.run --listpkgand from the listing, please select your distribution. I've chosen openSUSE 10.2 32 bit:
sh ati*.run --buildpkg SuSE/SUSE102-IA32The installer made a driver package, which is located in
/usr/src/packages/RPMS/i386Exit the graphical environment by typing the following command in the console:
sudo init 3Go to the folder created by the ATI installer:
cd /usr/src/packages/RPMS/i386and install the driver with the following command:
rpm -Uvh fgl*.rpmAfter the install is finished, run the ATI configuration utility:
ldconfig
aticonfig --initial --input=/etc/X11/xorg.confAt this moment, the driver is installed, but we still need to do some settings in order to work properly. Type the following command:
sax2 -r -m 0=fglrxChoose your desired resolution, save and exit.
You also need to disable Composite Extension as well. Edit the
/etc/X11/xorg.conf and add the following lines at the end of the file:
Section "Extensions"
Option "Composite" "false"
EndSectionReboot your computer and you should have the ATI driver installed.