0
To powinno pomóc. https://kb.vmware.com/s/article/2146460
Cytat:To correct the issue with secure boot enabled:
Generate a key pair using the openssl to sign vmmon and vmnet modules:
Kod:openssl req -new -x509 -newkey rsa:2048 -keyout MOK.priv -outform DER -out MOK.der -nodes -days 36500 -subj "/CN=VMware/"
Replace MOK with the name of the file you want for the key.
Sign the modules using the generated key by running these commands:
Kod:sudo /usr/src/linux-headers-`uname -r`/scripts/sign-file sha256 ./MOK.priv ./MOK.der $(modinfo -n vmmon)
sudo /usr/src/linux-headers-`uname -r`/scripts/sign-file sha256 ./MOK.priv ./MOK.der $(modinfo -n vmnet)
Import the public key to the system's MOK list by running this command:
Kod:mokutil --import MOK.der
Confirm a password for this MOK enrollment request.
Reboot your machine. Follow the instructions to complete the enrollment from the UEFI consol.