Fedora 16 nVidia Drivers Install Guide (disable nouveau driver) - Comment Page: 3
Looking Fedora 22/21 nVidia Drivers Install Guide?
[inttf_post_ad1]
This is guide, howto install nVidia proprietary drivers on Fedora 16 and disable Nouveau driver. This guide works with GeForce 6/7/8/9/200/300 series cards.
Fedora 16 nVidia driver installation is not much different from previous Fedora versions. I have tested this guide with a couple computers, so let me know, if you have some problems.
Before nVidia drivers installation
Check is your nVidia card supported
lspci |grep -i VGA
## Example output ##
01:00.0 VGA compatible controller: nVidia Corporation GT215 [GeForce GT 240] (rev a2)
List of Supported NVIDIA GPU Products, your card should...
audit.log
xsession errors:
ContextMenuFactory::showContextMenu: “/usr/local/share/applications/google-chrome.desktop”
Failed to find service for KUrl(“file:///usr/local/share/applications/google-chrome.desktop”)
ContextMenuFactory::showContextMenu: “/usr/local/share/applications/google-chrome.desktop”
dmesg:
glibc:
glibc-devel-2.14.90-19.i686
glibc-common-2.14.90-19.i686
glibc-headers-2.14.90-19.i686
glibc-2.14.90-19.i686
One more note:
Nov 29 18:34:40 JanekFedora setroubleshoot: SELinux is preventing /opt/google/chrome/chrome from execmod access on the file /opt/google/chrome/libffmpegsumo.so. For complete SELinux messages. run sealert -l bcd08908-bbc5-4522-a776-d1635b92f64c
also appears everytime i have a fresh installation of Linux. Then all i have to do is open selinux and copy in commands that they give to prevent the “error”. I am not sure what it does.
Hi Janek,
And thanks for your logs. :)
Looks like that the NVIDIA libGL (/usr/lib/nvidia/libGL.so.1) cause an instant crash. Try to start Google Chrome with mesa libGL using following command on command line:
Is it working then? :)
And for SELinux problem you can try create and install SELinux local policy module, with following commands (as root):
Or alternatively you can try to run restrecon command whole /opt directory (as root):
WOW! Yes it does! That is very impressive bug-tracking :) Thank You! Also could you show me which line pointed you to the solution? That would be a very good lesson as i like to program for linux too :)
And the selinux wasn’t a problem – it just used to pop up when the google chrome was started but it pointed me to a solution. Thank You again I will surely follow your upcoming tutorials :)
Avesome! :) Thanks! :) You are welcome! :)
Things which pointed to the solution:
1. You did know exactly that the problem exists just with the nVidia drivers and not the nouveau drivers
2. Process killed by signal 11 (SIGSEGV) refers normally some glibc problems
3. Your dmesg output rows revealed reason finally
Red Hat Bugzilla is also good tool to find some reusable information… :)
Btw. if you want make this way to start Google Chrome more permanent, then you could do custom launcher for Google Chrome…
First create example gchrome file under /usr/bin (as root):
Open /usr/bin/gchrome file with your favorite editor and paste following content to file (as root):
Then when you run gchrome instead of google-chrome your browser should start normally…
Then you could also create gchrome.desktop launcher to get graphical launcher also.
Create /usr/share/applications/gchrome.desktop file with your favorite editor and paste following content to it (as root):
This should also work after Google Chrome updates. I have not tested these, but I guess these might work… :D Please let me know, if these not work?
Yeah the script you sent works and it creates a working shortcut in my menu but everytime I run google chrome, it asks if I want to set it as default. I click default but after closing the browser it still does that. Do you know how to force it to be the default. Thanks for all your help by the way :)
Cool! :)
Try following
Open Activities -> Write syst… -> open “System Info” -> select “Default Applications” -> select Google Chrome from “Web” menu
Sorry i think i forgot to write that i use KDE therefore i can’t even locate activities. I went to Launcher > System settings > Default Applications > Web Browser > and chose google chrome but that still doesn’t achieve the goal.
Ok, then try following:
1. Set chrome to be Default browser in “Default applications” (as you did)
2. Ignore Google Chrome question for setting default browser (click “Don’t ask again” if this comes up).
3. Go to System settings -> Select Advanced tab -> Select File associations, find HTML and move Google Chrome to top of the list.
Yes! It didn’t work at first but after a reboot it stays as a default browser. Thank You for your help – very much appreciated!
You are welcome! :) Nice to hear that everything is working now… ;)
My Asus N53SV-XV1 boots with nouveau driver. Resolution is okay at 1920×1080 LVSD1. However, I’d prefer if nvidia drivers worked. They don’t. First I tried “yum install kmod-nvidia”. It installed along with the other three dependencies. On reboot, the balloon appeared, the fedora symbol appeared in the balloon, and then I was dumped into text mode where I could start a terminal session. I checked /etc/modprobe.d to make sure nouveau was blacklisted. It was. “lsmod | grep nouveau” yielded nothing. I verified that the revision level of the kernel matched that of the newly-installed kmod-nvidia.
lsmod | grep nvidia yielded two lines:
nvidia 12112133 0
i2c_core 25728 7
nvidia,videodev,i2c_i801,i915,drm_kms_helper,drm,i2c_algo_bit
Looking in /var/log/Xorg.0.log, one sees that no screens are found.
I tried installing akmod-nvidia on top of the kmod-nvidia install, and it failed. Then I tried removing both (10 files total), and installing just akmod-nvidia. It failed as well.
It looks like my Asus machine does not like the nVidia drivers. What else should I try?
Hi Greta,
Could you post output of following commands:
With old version of bumblebee, optimus in fedora 16 64 bit is ok.
My notebook is asus N53SV with nvidia 540M
1) Download old version bumblebee from https://github.com/MrMEEE/bumblebee/commits/master
2)install VirtualGl 2.2.90 rpm from:
http://www.virtualgl.org/Downloads/VirtualGL
3) blacklist nouveau in /etc/blacklist.conf
4) move old initramfs
mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img
5) recreate initramfs without nouveau
dracut /boot/initramfs-$(uname -r).img $(uname -r)
6) restart pc
7) install bumblebee
Now optimus is ok
$ glxgears
301 frames in 5.0 seconds = 60.058 FPS
$ optirun64 glxgears
Hi Viger,
Excellent to hear that bumblebee is working with Fedora 16! And thank you very much nice guide, I really appreciate it! :)
Hi JR, for suspend/hibernate with bumblebee in Fedora 16 a quick workaround to this issue I used to do, is to add a pm-utils file that kills the daemon at suspend/hibernate and reenables it at wakeup with nvidia module:
For example /etc/pm/sleep.d/10_bumblebee
And don’t forget to give execution permission to that file.
Thanks again Viger, looks awesome! :D
~ $ lspci | grep -i VGA
00:02.0 VGA compatible controller: Intel Corporation 2n Generation Core Processor Family Integrated Graphics Controller (rev 09)
01:00.0 VGA compatible controller: nVidia Corporation GF106 [GeForce GT 555M SDDR3] (rev a1)
~ $ lsmod | grep i915
i2c_core 25728 7 nvidia,videodev,i2c_i801,i915,drm_kms_helper,drm,i2c_algo_bit
When I saw two VGA lines, I modified nvidia-xorg.conf and xorg.conf to add a line in the device section:
BusID “PCI:01:00:0”
When that didn’t work, I changed the final colon to dot. That did not work, either.
If your computer uses NVIDIA Optimus Technology and Intel Card cannot be totally disabled, then nVidia drivers it might be very hard to get working.
On this page you can find some discussion about NVIDIA Optimus here and same discussion continues here. I’m not sure did Antoine get this working, but I can recommend you too to try VGA Switcheroo or Bumblebee Project. I have heard some success stories with those.
More info about VGA Switcheroo found here:
Fedora – VGA Switcheroo
Gentoo Wiki – VGA Switcheroo
Ubuntu – VGA Switcheroo
More info about Bumblebee Project found from here. Bumblebee Project try to achieve something similar, as the nVidia hybrid drivers for Windows.
Please, let me know if you could get it working? :)
Thanks. I’ll let you know. For the next month or so, I have things that take priority. When I can, I will get back to it.
Nice guide! Thanks!
290.10 drivers is slow in firefox, maximize, minimize,
173.xx works very well, hwo can I install 173.xx version on F16?
(GPU – Geforce 7300GT)
Hi R,
Currently only way to install 173.xx is use nVidia on package from their website. For more info check this discussion and this comment.
Thanks!
So any older version of the driver can be used with Kernel 3.1.x ?
And I had already tried that method, but setup fails, it tells me to check /var/log/nvidia-installer.log,
Can I get a rpm for 173 version anywhere?
I think that older nVidia 173.xx version can be used with kernel 3.1.x, just checked that ATRpms have nvidia 173.xx kernel 3.1.xx RPM builds. I don’t have any idea is those working, but you can of course try.
Thanks, so this is what I should do:-
1. No need to update kernel, rpmfusion repo is already added in my list.
2. Execute the rpm file.
3. Disable nouveau drivers from kernel initramfs (like you mentioned here).
4. Reboot.
Correct?
I just checked that rpm and it also needs f16 nvidia-graphics-devices rpm and your kernel of course should be 3.1.1-2.fc16 (not the latest 3.1.2-1.fc16). But yes with these additions it should be correct. :)
So what should I install first? devices-rpm or 173.xx rpm? And kmdl means kmod right?
Nvidia-graphics-devices rpm is dependency of 173.xx rpm, so that’s why it should be installed first, but I think that if you install just both successfully it’s enough. :)
Kmdl works same way as kmod yes, it’s compiled for a specific kernel.
Thanks JR, but the file nvidia-graphics173.14.31-kmdl-3.1.1-2.fc16.i686.PAE is not available anywhere,
See what it says in this site:-
nvidia-graphics173.14.31-kmdl-3.1.1-2.fc16.i686.PAE-173.14.31-112.fc16.i686.rpm.html
Try this one:
nvidia-graphics173.14.31-kmdl-3.1.2-1.fc16.i686.PAE-173.14.31-112.fc16.i686.rpm
It is actually for 3.1.2-1 kernel…but I don’t have any idea is it working or not…
Dell E6520 has Optimus enabled by default, you must turn it off in the BIOS under video before installing (a)kmod-nvidia packages.
Hi j0hnL,
Excellent to hear that it’s possible to turn NVIDIA Optimus off on Dell laptops! :) Here is some discussion about Asus laptops and those have not option in the BIOS to turn NVIDIA Optimus off…if the information is true, what I have heard.
Broke my FC 16 – using PAE with a 9600 GeForce
Kernel doesn’t work now, back on original.
Will restore it
Thanks.
Hi Dave,
So did you get it restored? Could you tell more specific about your problem?
3.1.4-1.fc16.i686.PAE
Results of uname -r
rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
Retrieving http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
warning: /var/tmp/rpm-tmp.VtNxI9: Header V3 RSA/SHA256 Signature, key ID 865cc9ea: NOKEY
error: Failed dependencies:
rpmfusion-free-release >= 16 is needed by (installed) rpmfusion-nonfree-release-16-1.1.noarch
rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
Retrieving http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
warning: /var/tmp/rpm-tmp.wPI55p: Header V3 RSA/SHA256 Signature, key ID f09d8368: NOKEY
Preparing… ########################################### [100%]
package rpmfusion-nonfree-release-16-1.1.noarch (which is newer than rpmfusion-nonfree-release-14-2.noarch) is already installed
Thats the start missing GPG Key? Not sure
Could you post output of following commands:
Hi there, i have a Quadro 4 980 XGL and am rather new to this.
Following the PAE steps, all looked to be successful until i reboot.
What was the graphical fedora teardrop on boot are now bars (fine)
but following that my boot hangs at the line:
Started LSB: Mount and unmount network filesystems..
_
thankfully there were directions here on how to revert back to neuveau,
but i need to get an nvidia driver working for a 3d package im using.
Running the NVidia installation shell script for 96.43.2? resulted in the same problem.
any help would be appreciated. thanks.
Hi Steve,
I don’t know is nVidia legacy drivers (96.43.xx) really compatible with 3.1 kernel and can’t find any RPM builds for PAE-kernel. Some builds for i386 and x86_64 kernels found here, but I don’t have any idea is those working at all.
Hey JR, Thanks for the lead. Im willing to give this a shot before reverting to an older os. But I could use a bit of a walk through if you don’t mind.
The instructions there suggest:
nvidia-graphics-legacy-96xx Install Howto
1. Download the latest atrpms-repo rpm from
http://dl.atrpms.net/f16-i386/atrpms/stable/
– This one looks about right? Are there others there i need?
nvidia-graphics96.43.20-kmdl-3.1.4-1.fc16.i686.PAE-96.43.20-106.fc16.i686.rpm
– what do i do with it when i download it?
2. Install atrpms-repo rpm:
# rpm -Uvh atrpms-repo*rpm
3. Install nvidia-graphics-legacy-96xx rpm package:
# yum install nvidia-graphics-legacy-96xx
– do i just need to run the above two commands as is?
Hello again Steve,
Yes your method looks good.
Also ATrpm’s nvidia-graphics96.43.20-kmdl-3.1.4-1.fc16.i686.PAE-96.43.20-106.fc16.i686.rpm looks good for currently latest Fedora 16 kernel (3.1.4-1)…
Please let me know do you get it working or if you have some problems?
I tried to follow your guild and I was able to install the driver on my computer (Lenovo Y470, GeForce 550M) on the latest Fedora16. However, once I reboot the machine, I’ve got error with the XServer and since then, I can’t start the Xserver anymore.
I have try other methods:
e.g. install kernel-devel and then point the path /usr/src/kernel/xxxxx.fc16 to the official driver installer
still, the same result appear. Will you have any idea? Thank you very much, I have been working on it for days now and it’s kinda frustrating…
Hi Sam,
Could you tell something about that Xserver / Xorg error?
So, have you tried install drivers with nVidia installer?
Hi Jr,
Thank you for your reply. I did tried installing the drivers with the nVidia installer, providing the kernel source pathway to the installer. It helped me to install the latest nVidia driver, however, I can’t start the X server after the installation. Reboot doesn’t help either. Below is the log that I’ve got from the command startx
[ 22.620]
X.Org X Server 1.11.2
Release Date: 2011-11-04
[ 22.621] X Protocol Version 11, Revision 0
[ 22.621] Build Operating System: x86-12 2.6.32-131.17.1.el6.x86_64
[ 22.621] Current Operating System: Linux choi 3.1.4-1.fc16.x86_64 #1 SMP Tue Nov 29 11:37:53 UTC 2011 x86_64
[ 22.621] Kernel command line: BOOT_IMAGE=/vmlinuz-3.1.4-1.fc16.x86_64 root=/dev/mapper/vg_choi-lv_root ro rd.md=0 rd.dm=0 rd.lvm.lv=vg_choi/lv_root KEYTABLE=us quiet SYSFONT=latarcyrheb-sun16 rhgb rd.luks=0 rd.lvm.lv=vg_choi/lv_swap LANG=en_US.UTF-8
[ 22.621] Build Date: 10 November 2011 07:40:04PM
[ 22.621] Build ID: xorg-x11-server 1.11.2-3.fc16
[ 22.621] Current version of pixman: 0.22.2
[ 22.621] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 22.621] Markers: (–) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 22.622] (==) Log file: “/var/log/Xorg.0.log”, Time: Sat Dec 10 14:54:05 2011
[ 22.623] (==) Using config file: “/etc/X11/xorg.conf”
[ 22.623] (==) Using config directory: “/etc/X11/xorg.conf.d”
[ 22.623] (==) Using system config directory “/usr/share/X11/xorg.conf.d”
[ 22.624] (==) ServerLayout “Layout0”
[ 22.624] (**) |–>Screen “Screen0” (0)
[ 22.624] (**) | |–>Monitor “Monitor0”
[ 22.624] (**) | |–>Device “Device0”
[ 22.624] (**) |–>Input Device “Keyboard0”
[ 22.624] (**) |–>Input Device “Mouse0”
[ 22.624] (==) Automatically adding devices
[ 22.624] (==) Automatically enabling devices
[ 22.644] (**) FontPath set to:
/usr/share/fonts/default/Type1,
catalogue:/etc/X11/fontpath.d,
built-ins
[ 22.644] (==) ModulePath set to “/usr/lib64/xorg/modules”
[ 22.644] (WW) Hotplugging is on, devices using drivers ‘kbd’, ‘mouse’ or ‘vmmouse’ will be disabled.
[ 22.644] (WW) Disabling Keyboard0
[ 22.644] (WW) Disabling Mouse0
[ 22.644] (II) Loader magic: 0x7caac0
[ 22.644] (II) Module ABI versions:
[ 22.644] X.Org ANSI C Emulation: 0.4
[ 22.644] X.Org Video Driver: 11.0
[ 22.644] X.Org XInput driver : 13.0
[ 22.644] X.Org Server Extension : 6.0
[ 22.645] (–) PCI:*(0:0:2:0) 8086:0116:17aa:3981 rev 9, Mem @ 0xf1400000/4194304, 0xe0000000/268435456, I/O @ 0x00003000/64, BIOS @ 0x????????/131072
[ 22.645] (–) PCI: (0:1:0:0) 10de:0df6:17aa:3981 rev 161, Mem @ 0xf0000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00002000/128, BIOS @ 0x????????/524288
[ 22.645] (II) LoadModule: “extmod”
[ 22.646] (II) Loading /usr/lib64/xorg/modules/extensions/libextmod.so
[ 22.646] (II) Module extmod: vendor=”X.Org Foundation”
[ 22.646] compiled for 1.11.2, module version = 1.0.0
[ 22.646] Module class: X.Org Server Extension
[ 22.646] ABI class: X.Org Server Extension, version 6.0
[ 22.646] (II) Loading extension SELinux
[ 22.646] (II) Loading extension MIT-SCREEN-SAVER
[ 22.646] (II) Loading extension XFree86-VidModeExtension
[ 22.646] (II) Loading extension XFree86-DGA
[ 22.646] (II) Loading extension DPMS
[ 22.646] (II) Loading extension XVideo
[ 22.646] (II) Loading extension XVideo-MotionCompensation
[ 22.646] (II) Loading extension X-Resource
[ 22.646] (II) LoadModule: “dbe”
[ 22.646] (II) Loading /usr/lib64/xorg/modules/extensions/libdbe.so
[ 22.646] (II) Module dbe: vendor=”X.Org Foundation”
[ 22.646] compiled for 1.11.2, module version = 1.0.0
[ 22.646] Module class: X.Org Server Extension
[ 22.646] ABI class: X.Org Server Extension, version 6.0
[ 22.646] (II) Loading extension DOUBLE-BUFFER
[ 22.646] (II) LoadModule: “glx”
[ 22.647] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[ 23.209] (II) Module glx: vendor=”NVIDIA Corporation”
[ 23.209] compiled for 4.0.2, module version = 1.0.0
[ 23.209] Module class: X.Org Server Extension
[ 23.209] (II) NVIDIA GLX Module 290.10 Wed Nov 16 18:01:24 PST 2011
[ 23.209] (II) Loading extension GLX
[ 23.209] (II) LoadModule: “record”
[ 23.209] (II) Loading /usr/lib64/xorg/modules/extensions/librecord.so
[ 23.209] (II) Module record: vendor=”X.Org Foundation”
[ 23.209] compiled for 1.11.2, module version = 1.13.0
[ 23.209] Module class: X.Org Server Extension
[ 23.209] ABI class: X.Org Server Extension, version 6.0
[ 23.209] (II) Loading extension RECORD
[ 23.209] (II) LoadModule: “dri”
[ 23.209] (II) Loading /usr/lib64/xorg/modules/extensions/libdri.so
[ 23.210] (II) Module dri: vendor=”X.Org Foundation”
[ 23.210] compiled for 1.11.2, module version = 1.0.0
[ 23.210] ABI class: X.Org Server Extension, version 6.0
[ 23.210] (II) Loading extension XFree86-DRI
[ 23.210] (II) LoadModule: “dri2″
[ 23.210] (II) Loading /usr/lib64/xorg/modules/extensions/libdri2.so
[ 23.210] (II) Module dri2: vendor=”X.Org Foundation”
[ 23.210] compiled for 1.11.2, module version = 1.2.0
[ 23.210] ABI class: X.Org Server Extension, version 6.0
[ 23.210] (II) Loading extension DRI2
[ 23.210] (II) LoadModule: “nvidia”
[ 23.210] (II) Loading /usr/lib64/xorg/modules/drivers/nvidia_drv.so
[ 23.210] (II) Module nvidia: vendor=”NVIDIA Corporation”
[ 23.210] compiled for 4.0.2, module version = 1.0.0
[ 23.210] Module class: X.Org Video Driver
[ 23.211] (II) NVIDIA dlloader X Driver 290.10 Wed Nov 16 17:41:10 PST 2011
[ 23.211] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 23.211] (++) using VT number 1
[ 23.211] (EE) No devices detected.
[ 23.211]
Fatal server error:
[ 23.211] no screens found
[ 23.211]
Please consult the Fedora Project support
at http://wiki.x.org
for help.
[ 23.211] Please also check the log file at “/var/log/Xorg.0.log” for additional information.
[ 23.211]
Thanks Sam,
Could you post output of following command:
Hi Jr,
The output of that command is
VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
VGA compatible controller: nVidia Corporation Device 0df6
You could also check that is it possible to turn Intel Graphics / Optimus off in the BIOS under video on your Lenovo Y470?
If not (or if you want use both cards) then use Viger guides, for Bumblebee. :)
> 23.210] Module class: X.Org Video Driver
>[ 23.211] (II) NVIDIA dlloader X Driver 290.10 Wed Nov 16 >17:41:10 PST 2011
>[ 23.211] (II) NVIDIA Unified Driver for all Supported NVIDIA >GPUs
>[ 23.211] (++) using VT number 1
>[ 23.211] (EE) No devices detected.
>[ 23.211]
>Fatal server error:
>[ 23.211] no screens found
Hi Sam, the problem is Xorg . This reload intel video driver. Delete xorg.conf in /etc/X11 and Xserver return ok (but no acceleration with nvidia driver). I had this error “no screen found”, but the solution,
for fedora 16 with optimus tecnology and geforce 540M, was bumblebee (old version, not bumblebee-project). View above procedure that I wrote maybe you can help.
Hi, Viger,
By deleting the xorg.conf file, I can start up the Xserver again. Thank you very much. I will see what will happen after I install the bumblebee.
Thanks again Viger, you have very valuable knowledge! :)
If you have time, could you post your Bumblebee guide to If Not True Then False forums? Best place is under Fedora / CentOS / Red Hat (RHEL) board. I instruct all of the NVIDIA Optimus users to use your guide and add link to this post of course. :)
On forums you could easily modify your guide later, format your command line commands with tags, like [code=bash]yum install something[/code], add links and so on. :)
Hi,JR my Bumblebee guide is here:
http://forums.if-not-true-then-false.com/index.php/topic,31.0.html
I hope goes well and help fedora 16 user’s
Excellent Viger! I really appreciate your work! I add NVIDIA Optimus part to this guide soon… ;) Thank you so much! :)
Dear Viger,
By doing what you posted above, with that bumblebee I was able to install the driver without any problems. A big thanks to you!!
Sam
I have an old pci FX5500, and can’t get this, or any of the other instructions I’ve found on the web to work. It continues to load the vesa driver. If I change xorg-conf file, it hangs on bootup.
Hello Dennis,
290.xx is not compatible with your GeForce FX 5500 card, that’s why this guide is not working. Only way to get it work is use older 173.14.xx nVidia drivers.
For more info about 173.14.xx nVidia drivers on Fedora 16 check this discussion, this comment and .
Thanks JR. I have successfully installed the nVidia driver for my 9600mgs with this guide. The method to uninstall it is also effective. By the way, do you mind if I translate it into a Chinese version ?
Hi Arthur,
You’re welcome! Nice to hear that you got it working! :)
Feel free to translate this into Chinese…and if you want, you could of course link back to this post. :)
Now the Chinese version has been published, you can see it here. :)
Thanks Arthur! Looks very good! :D
[…] 本文翻译自《Fedora 16 nVidia Drivers Install Guide (disable nouveau driver)》,作者为 JR。E 文一般,如有错误,欢迎指æ£ã€‚ […]