This guide works with the latest nvidia driver 7664 on FC3 2.6.11-1.27_FC3
procedure:
imdeemvp's tip
Quote:
You will need the kernel source code AKA kernel-devel you can install using the livna repo.
Code:
yum install kernel-devel
|
log off.
press ctrl+alt+f1 log on as root
Code:
telinit 3
sh ./Nvidia.......run
accept licence
ignore warnings
Code:
modprobe nvidia
cp -a /dev/nvidia* /etc/udev/devices/
startx
modify xorg.conf appropriately: remove load dri change
nv to
nvidia also change
Videocard0 to
nvidia. note that there are two Videocard0 in xorg.conf
These following options can be added to the Device Section
Quote:
Option "Coolbits" "1"
Option "RenderAccel" "true"
Option "AGPMode" "8"
Option "AGPFastWrite" "true"
|
log off type
you will see the nvidia logo for 3 seconds. installation achieved.
To enable 3D support for nVidia graphics card in FC3
There are now nVidia driver RPMs provided by livna.org that are designed especially for Fedora. If you're using yum, replace your yum.conf by this new one at
http://www.fedorafaq.org/samples/yum.conf
how to replace your yum.conf?
So, make a copy of your yum before switching it.
if you have downloaded the yum.conf to your home directory:
Code:
su -
cd /home/(name)/
cp yum.conf /etc/
You should be able to install the drivers easily now:
1. Open a Terminal.
2. Become root.
3. Type:
Code:
uname -r
yum install nvidia-glx kernel-module-nvidia-`(uname -r)`
That installs the nVidia driver for your current kernel.
use a 3D game such as TUX racer to test your installation. or try
CURRENT PROBLEM: The new udev included in FC3 seems to prevent the nvidia module from loading automatically.
There are 2 options:
1. Recommended Fix
Code:
su -
cp -a /dev/nvidia* /etc/udev/devices
chown root.root /etc/udev/devices/nvidia*
Only if above does NOT work
Code:
gedit /etc/rc.local
ADD the following to the END of the file:
Code:
/sbin/modprobe nvidia
If you update your kernel the NVidia driver must be re-installed to match the new kernel.