How to Install VMware Workstation 16 Pro on Fedora 35 / Fedora 34
VMware Workstation is well known virtualization device that permits customers to run a couple of x86 and x86-64 digital machines concurrently in one gadget.
Each digital gadget owns an remoted running gadget setting, together with Windows, Linux, BSD variants, and makes use of a small portion of your gadget processor and reminiscence.
Here, we can see tips on how to set up VMware Workstation Pro 16 on Fedora 35 / Fedora 34.
Prerequisites
First, replace the entire applications to your gadget.
sudo dnf replace -y
Then, set up the specified applications for VMware Workstation set up.
sudo dnf set up -y kernel-devel-$(uname -r) kernel-headers
And then reboot the gadget.
sudo reboot
Install VMware Workstation Pro on Fedora 35
First, obtain VMware Workstation Pro the usage of the internet browser. Then, move to the Downloads listing and make the VMware installer executable.
cd ~/Downloads sudo chmod 700 VMware-Workstation-Full-*.package
Next, execute the VMware Workstation Pro installer the usage of the beneath command.
sudo ./VMware-Workstation-Full-*.package
The installer will get started extracting information after which set up the VMware Workstation.
Output:
Extracting VMware Installer...achieved. Installing VMware Workstation 16.2.1 Configuring... [######################################################################] 100% Installation used to be a success.
Sign VMware Modules (UEFI Systems)
On EFI safe boot programs, you wish to have to signal VMware modules (vmmon and vmnet) earlier than loading them within the kernel. So, to signal the modules, it is important to have a gadget proprietor key this is relied on by means of EFI firmware.
First, generate the MOK (Machine Owner Key).
sudo dnf set up -y openssl sudo mkdir -p /misc/sign-vmware-modules sudo chmod 777 /misc/sign-vmware-modules cd /misc/sign-vmware-modules openssl req -new -x509 -newkey rsa:2048 -keyout MOK.priv -outform DER -out MOK.der -nodes -days 36500 -subj "/CN=MSI/" chmod 600 MOK.priv
Then, import the generated key to the gadget. This command will recommended you to set the password, which you’ll later whilst enrolling the important thing.
sudo mokutil --import MOK.der
Create a script /misc/sign-vmware-modules/signingscript
to signal the entire VMware modules the usage of the generated MOK key.
#!/bin/bash for modfile in $(modinfo -n vmmon vmnet); do echo "Signing $modfile" /usr/src/kernels/$(uname -r)/scripts/sign-file sha256 /misc/sign-vmware-modules/MOK.priv /misc/sign-vmware-modules/MOK.der "$modfile" achieved
Then, trade the possession of the script and run it. You can run this script every time you replace the gadget.
chmod 700 /misc/sign-vmware-modules/signingscript sudo /misc/sign-vmware-modules/signingscript
Reboot the gadget after which press any key to start out the MOK control software
1. Choose Enroll MOK
2. Choose View Key 0 to test the Machine Owner Key. If the hot button is OK, press input after which choose Continue
3. Choose Yes to sign up the important thing(s) after which input the password you equipped all through the import
4. Finally, select Reboot to reboot the gadget
Launch VMware Workstation Pro
You can get started the VMware Workstation by means of going to Activities >> Search for VMware Workstation or the usage of the vmware
command.
1. Select I settle for the phrases within the license settlement and click on Next on VMware Workstation – End User License Agreement.
2. Select I settle for the phrases within the license settlement and click on Next on VMware OVF Tool element for Linux – End User License Agreement.
3. Choose whether or not VMware can test for product updates on startup and click on Next.
4. Decide whether or not to sign up for the VMware Customer Experience Improvement Program (CEIP) or now not and click on Next.
5. Enter the license key within the field beneath I’ve a license key for VMware Workstation, or take a look at VMware Workstation 16 for 30 days. Click Finish to continue.
6. You would possibly wish to input a password on your account to finish the setup.
You will now get the house of VMware Workstation Pro. Here you’ll create and set up Virtual Machines.
Conclusion
That’s All. I’m hoping you will have discovered tips on how to set up VMware Workstation Pro 16 on Fedora 35 / Fedora 34.