NEWS CATEGORIES:



NEWS ARCHIVE >>
SOFTPEDIA REVIEWS >>
MEET THE EDITORS >>
Home / News / Linux / Other Tips, Tricks and Tutorials

Other Tips, Tricks and Tutorials


How to Install Video Drivers on Fedora Core 6

ATi/nVIDIA installation guide for FC6.

By Mihai Marinof, Linux Editor

25th of October 2006, 14:57 GMT

Adjust text size:


The ATi and nVIDIA driver RPMs provided by livna.org are especially designed for Fedora. If you are using yum and already have it configured with the Livna repository for your Fedora version, you can skip this section. If not, add the Livna repository by executing the following command as root:

# rpm -Uhv http://rpm.livna.org/livna-release-6.rpm

Next, import the Livna GPG Key:

# rpm --import http://rpm.livna.org/RPM-LIVNA-GPG-KEY

To test it, try to get info about a release currently provided by Livna repository:

# yum info kmod-nvidia

If you got the file information correctly, it's safe to go on to the next step.

Unfortunately, Fedora Core 6 installs the i586 architecture kernel by default. Even worse, if you choose to have virtualization support during Fedora installation, you will end up with a kernel-xen which you need to get rid of as soon as possible. For video drivers to get installed correctly, you will need to have kernel for i686. In order to make this process a little bit easier, you need to install Yum Extender:

# yum install yumex

Fire it up from the Kmenu / System / Yum Extender (or type yumex in a terminal), check if Livna repository is in the repository list, go to Remove, select your current kernel and kernel-devel (only if its arch is i586 or has xen in its name), press add to queue, then go to Install, search for Kernel, select the kernel and kernel-devel for i686 arch, press add to queue, go to Queue, press Process Queue, wait until it's done and reboot your computer. Only then will it be safe to go to the next step.


How to install nVIDIA drivers

Assuming Yum has been correctly installed, you can obtain the latest Nvidia drivers by typing:

# yum install kmod-nvidia

This command will install the nVIDIA driver and kernel module. To verify the installation completed successfully, log out of your current session and log back in. Before the X server restarts, you should see the nVIDIA logo briefly. Open up a terminal and type:

# glxinfo | grep direct

If the output to this command is direct rendering: Yes, you are good to go. Also, a reboot might be required for the full effect of the kernel module to be realized on some machines.


How to install ATi drivers

Again, your Yum must be configured with the Livna repository, as it's one of the few repositories that provide video driver RPMs especially designed for Fedora Core. To install the ATi drivers' package, type this command as root:

# yum install xorg-x11-drv-fglrx kmod-fglrx glx-utils

This installs the ATi driver and kernel module. To test the installation, log off your current session, log back in and type this command:

# glxinfo | grep direct

If the output is direct rendering: Yes, you have installed your drivers correctly.

However, if you have an AMD64 processor, you will need to add iommu=off to the kernel line in your /etc/grub.conf file, like this:

kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet iommu=off

Moreover, if you have an Intel motherboard, you will need to add the following line to your /etc/X11/xorg.conf file, right below Driver "fglrx":

Option "UseInternalAGPGART" "no"

Good luck!
Read by 120,072 user(s) | Add comment | Link to this article TWEET THIS


Article rating:
Very Good (4.2/5) 31 vote(s)    

Subscribe to news | Print article | Send to friend

© Copyright 2001-2009 Softpedia
Contact:

 

 

SEARCH THE NEWS ARCHIVE :




Today's News
| Yesterday's News | News Archive


MORE RELATED ARTICLES:


How to Install XGL on Fedora Core

Fedora Desktop Customization

Debian Installation Guide

Installing A Linux Distro to An USB Drive

Flash Player for Linux

Configuring the Ethernet Interface from The Command Line

How-to Use Your Partitions in Linux

User opinions:


Comment #1 by: phoenix_wrath on 03 Nov 2006, 14:40 GMT reply to this comment

Finaly somebody who knows what he is talking about ! great article dude. It worked like a charm for me, I rate you excellant. Keep on writing, it will upgrade Fedora core's stock for me , that's for sure !
Good work !


Comment #2 by: viper8439 on 09 Nov 2006, 01:39 GMT reply to this comment

These directions are great and worked for the nvidia 9626 drivers. However, after one upgrade attempt and two clean installs, the 9629 drivers won't work. Every time I try to run glxgears, glxinfo, or enable desktop-effects, I get the message "name of display: :0.0
Segmentation fault". This only occurs with the 9629 drivers. Anyone have any ideas? I'd get the 9626 drivers back but i did this through yum and now livna only lists the 9629 driver there.


Comment #3 by: nknwd on 10 Nov 2006, 14:37 GMT reply to this comment

This bug is specific to graphics cards with NV2x GPUs. It will be fixed in a future driver release. The current recommended workaround is to downgrade to 1.0-9626 or 1.0-8776. (With this issue has been opened bug 266033)


Comment #4 by: moronic on 03 Dec 2006, 15:29 GMT reply to this comment

I am having problems with this tutorial... i fully downloaded everything for the ati drivers, but when i do:

glxinfo | grep direct ..

I get the following:

libGL warning: 3D driver claims to not support visual 0x4b
direct rendering: Yes

When i try to fix it it gets rid of direct rendering, and gives me mesa opengl ... plz, how do i fix this

Comment #4.1 by: nknwd on 13 Dec 2006, 18:22 GMT

Are you trying to run AIGLX/XGL? Because there's a confirmed bug about this, here: https://bugs.freedesktop.org/show_bug.cgi?id=6624 . Solution? No idea. Recommandation? Get a nVidia card.


Comment #5 by: Ugly_gaunt_Cow on 28 Jan 2007, 15:11 GMT reply to this comment

When I type in the following command,

# yum install xorg-x11-drv-fglrx kmod-fglrx glx-utils

It's does something, parsing files and/or locations I think? But ultimately I get a message bounced back "nothing to do".

Why?


Comment #6 by: pardis on 29 Mar 2007, 04:55 GMT reply to this comment

Thanks a lot for the tutorial --
I seem to have a problem...
with
glxinfo | grep direct
I get
Xlib: extension "XFree86-DRI" missing on display ":0.0".
direct rendering: No
OpenGL renderer string: Mesa GLX Indirect

when I checked in the services part, the status for fglrx is
fglrx.ko for kernel 2.6.20-1.2933.fc6 was not found.
fglrx DRI will not be enabled until one is found.

what can be going on?
thanx again


Comment #7 by: nknwd on 29 Mar 2007, 06:25 GMT reply to this comment

make sure your X config file has

load "DRI"

in the module section


Comment #8 by: lordamus on 04 Apr 2007, 12:47 GMT reply to this comment

Hey.. I installed yum kernel-PAE and Kernel-PAE-devel i686 then yum install xorg-x11-drv-fglrx kmod-fglrx glx-utils and now my fedora stops with black screen when system finishes services load..It seems I used wrong kernel ? what can I do to rollback ?

Comment #8.1 by: ihehner on 18 Aug 2007, 02:48 GMT

Did you ever get it working? Because I have the same issue. It's just black now.


Comment #9 by: Sello on 27 Oct 2009, 13:14 GMT reply to this comment

is it possible to get fedora sound driver using a windows computer because it the one that currently has internet

Share your opinion:

Your Name:
Your Email Address:
(will not be used for commercial purposes)
Solve this to prove you're not a bot: =
Your review/opinion:

 




Windows tabGames tabDrivers tabMac tabLinux tabScripts tabMobile tabHandheld tabGadgets tabNews tab

SUBMIT PROGRAM   |   ADVERTISE   |   GET HELP   |   SEND US FEEDBACK   |   RSS FEEDS   |   ENTER NEWS SITE   |   ENGLISH BOARD   |   ROMANIAN FORUM