Quote:
Originally Posted by thomthom
download from nvidia and install it manually
|
Yes, did that. Unfortunately, things were less than straightforward.
Steps I followed:
1. Downloading was of course fairly trivial.
2. Next, following
Leigh's guide, I updated the kernel and se-linux policy. Next, I disabled Nouveau.
Code:
mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img
dracut /boot/initramfs-$(uname -r).img $(uname -r)
Followed by a reboot.
3. Next, as root, I run the installer (gcc, make and the kernel-headers were already present). However, the installer stops at 63% and then aborts. In /var/log/nvndia-installer.log I find that it can not find a file called asm/system.h among the kernel headers.
4. Googling that message, led me to this blog post:
http://weltall.heliohost.org/wordpre...vidia-drivers/. I then extracted the installer package and manually edited the files mentioned, then attempted to install the driver again. This time, it compiles and installed correctly.
Here are the edits which are necessary:
Code:
nv-linux.h
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0)
#include <asm/system.h>
#endif
conftest.sh
#include <linux/version.h>
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0)
#include <asm/system.h>
#endif
5. After a reboot, the system comes back with the Nvidia driver running. So far the good news. The bad news: the stability issues are also present with this driver version. After running KDE 4.8.3. for about 30 minutes, I am logged out spontaneously.
Conclusion: I need to go further back with Nvidia drivers...possibly to the 285 family...