This is a discussion topic for the following Common Issue:
You can discuss the problem and its solutions here, but please note that debugging and technical feedback should primarily go to the issue trackers (e.g. Bugzilla) linked in the Common Issue, because that’s the place that developers watch, not here.
If there are any updates/changes/amendments for the Common Issue description, which you believe should be performed, please post it here.
Is this necessary? We don’t have it included in the Common Issue description.
If akmods run the compile processes in background, is there a better way to ensure the processes have finished, rather than waiting some time and hoping it was enough? Grep the process list perhaps?
Possibly not. Once the akmods command ends (while running in the foreground) the kmod package has already been installed. I suggested that for additional insurance.
Note that on the initial install of akmod-nvidia the fact that akmods is still performing the background compile after the install is complete and a prompt reboot without waiting does interfere with the compile and install of the kmod-nvidia-$(uname -r) package.
The current understanding of the problem is that some (system upgrade) process kills the akmod task before it ends. The usual workaround is to run sudo depmod -a
(then modinfo nvidia will works).
09:48:20
NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running.
Secure boot prevents the drivers from loading while the key has not been imported into the bios, and a reload of the bios does wipe out keys that may have been previously loaded.
Simply redo the mokutil --import /etc/pki/akmods/certs/public_key.der process that is described in the README that is noted in that post and it should solve the problem with secure boot.
For what it’s worth, I haven’t seen in any other thread the specific solution order that Jeff V put together here:
Which, expanded out to include the commands from the README file, would read something like the Proposed Addition below, I think.
This complete set and order of instructions worked for me when the individual steps posted in the current Common Issues thread, and elsewhere online, never did work correctly. Should these be added to the Common Issues thread in order to help it address the broadest possible scope of folks’ issues?
–Proposed Addition–
IF you have installed the Nvidia drivers from RPMFusion (and nowhere else), and are getting the “NVIDIA kernel module missing. Falling back to nouveau” message during startup, run the following commands from a terminal:
sudo kmodgenca --auto --force - This creates the certificate for the Nvidia drivers that can then be enrolled in the UEFI, and ensures that they have been freshly created for the currently installed driver version
sudo mokutil --import /etc/pki/akmods/certs/public_key.der - This places the certificate for the Nvidia drivers in the UEFI, ready to be “enrolled” (accepted) by you later - use a password that you’ll enter in a few minutes at the MOK Management prompt
sudo dnf remove kmod-nvidia-$(uname -r) - This removes any Nvidia kernel modules that weren’t properly signed to match this new certificate
sudo akmods --force - This rebuilds Nvidia kernel modules with the proper signature to match the new certificate
Reboot the system
Respond to the MOK Management prompt - usually involves pressing Enter, then using the Up and Down arrows to select to enroll the new key, and using the password that you entered in Step 2
1 is not required. The key is automatically generated with the first boot after akmods is installed. Your method creates a new key and replaces what may already be there. Updating the driver later then gets signed with this new key and if the original key was already imported into the bios now the modules will not load. The instructions say to use kmodgenca -a which will create the key if not already there but does not overwrite an already existing key. (too many keys imported into the bios can be detrimental since bios has a limited space to store the keys and there have been threads on that specific problem)
2 is following the instructions in the readme and on rpmfusion how-to
the README.secureboot file covers steps 1 & 2 & 6
3 is for a completely new install that installs akmods at the same time as installing akmod-nvidia. The module will be compiled as soon as the install is complete and before the key has been created. It then has to be recompiled with the key after the key is created. With changes that have been done to the akmods package and command that step is no longer required.
3 & 4 are combined now with the use of akmods --rebuild --force which both removes the old kmod-nvidia-$(uname -r) package and compiles and installs the newly signed package.
The full process is
install the driver dnf install akmods-nvidia
create and import the key using the steps in the README.secureboot file
a. keygenca -a
b. mokutil --import /etc/pki/akmods/certs/public_key.der
recompile the driver with akmods --force --rebuild
reboot (and complete the mokutil import during the boot)
Do not use the keygenca -a --force since that is 1) not required & 2) may cause problem if the key had previously been created and imported into bios. Once the key has been created there is really no reason to create a new key.
Thanks, that is awesome info! It would be fantastic if that were embedded in, or linked to, somewhere in the RPMFusion guides, as I feel that those do a good job of separately explaining the concept of how akmods works for Secure Boot, and of explaining how to install the Nvidia drivers, but that the combination of the two is tricky to navigate (perhaps just my experience)
Experience has shown that if the user first installs akmods then does the above in a different order step 3 can be avoided, but all is still required.
The new order would be
install akmods sudo dnf install akmods
create and import the key using the steps in the README.secureboot file
a. sudo keygenca -a
b. sudo mokutil --import /etc/pki/akmods/certs/public_key.der
install the driver sudo dnf install akmod-nvidia
wait for the driver to be compiled & installed (in the background)
reboot (and complete the mokutil import during the boot)
Note that this actually adds a user enforced delay in step 4 that is hidden in the previous listing by doing step 3 which requires the delay before it completes. It does, however, eliminate the need to perform the akmods --force step
Also note that this process is relevant to a new installation only and that the failure to properly build the modules during a system upgrade (this topic) may only require the sudo akmods --force --rebuild command. It is assumed that the state of secure boot, creating the signing key, and the key import into the bios would have previously been completed and not altered. This is another case where using the --force option with the keygenca command would cause more headaches than cures.