If you installed them through updates then yes you can.
sudo yum remove kernel*3.1.7*
The above should work while using kernel 3.1.6.
Ok. I guess there's a difference in procedure between installing the original nvidia drivers and the rpmfusion nvidia drivers.
Try following this guide(which you probably did) if you want to use the rpmfusion drivers.
forums.fedoraforum.org/showthread.php?
t=204752
Otherwise try this. I'll start from scratch. I can only use one kernel. The other kernel fails to load after this.
-Download the propriety drivers for linux from the nvidia website (
www.nvidia.com)
-Uninstall nouveau drivers
sudo yum remove *nouveau*
-Reboot the system just to be safe (ctrl+alt+backspace should be enough)
sudo shutdown -r now
-Log in and switch to tty3 or atleast kill x-server
sudo init 3
-Log in again and change directory(cd) to the drivers (probably in downloads)
cd <drivers directory>
-Run the nvidia drivers installer to blacklist the nouveau ones.
sudo sh NVIDIA*
-Choose 'Accept', 'yes', 'ok', etc until the installer unloads and then reboot
sudo shutdown -r now
-Backup the boot image
sudo mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img
-Rebuild the boot image
dracut /boot/initramfs-$(uname -r).img $(uname -r)
-Reboot
shutdown -r now
-Switch to tty3, cd and run the installer
sudo init 3
cd <drivers directory>
sudo sh NVi*
-Reboot
shutdown -r now
This works on my system, so it should work on yours. To make things shorter you can switch to root (su). But, again, I could only use one kernel.
-To uninstall them.
sudo nvidia-uninstall
sudo rm /etc/X11/xorg.conf
By the way, what's wrong with kernel 3.1.7?