VirtualBox with UEFI Secure Boot
Source:: https://superuser.com/questions/1438279/how-to-sign-a-kernel-module-ubuntu-18-04
- Create a personal public/private RSA key pair to sign the kernel modules. As recommended in the link below, I chose to store the key/pair in the /root/module-signing/ directory.
- Use mokutil, a tool to import or delete the machine owner keys (MOK), to import the public key, and then enroll it when the machine is rebooted. The password in this step is a temporary use password youβll only need to remember for a few minutes.
-
Reboot the machine. When the bootloader starts, you should see a screen asking you to press a button to enter the MOK manager EFI utility. Note that any external external keyboards wonβt work in this step. Select Enroll MOK in the first menu, then continue, and then select Yes to enroll the keys, and re-enter the password established in step 2. Then select OK to continue the system boot.
-
Future kernel updates would require the updated kernels to be signed again, so it makes sense to put the signing commands in a script that can be run at a later date as necessary. A sample script /root/module-signing/sign-vbox-modules is given below.
- Add execution permission, and run the script above as root from the /root/module-signing/ directory.
- Load vboxdrv module and launch VirtualBox.