Last active
June 2, 2024 19:49
-
-
Save HichamBenjelloun/65428602765322ca41a42032585201ab to your computer and use it in GitHub Desktop.
How to install VMware Workstation Pro 16.2.3 on Fedora 36
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install VMware Workstation Pro 16.2.3 on Fedora 36 | |
# Install packages to build kernel modules | |
sudo dnf install @development-tools | |
sudo dnf install kernel-headers-$(uname -r) kernel-devel-$(uname -r) dkms elfutils-libelf-devel qt5-qtx11extras | |
# Download VMware Workstation Pro here: https://www.vmware.com/go/getworkstation-linux | |
# Install VMware Workstation Pro | |
chmod +x VMware-Workstation-Full-16.2.3-19376536.x86_64.bundle | |
sudo ./VMware-Workstation-Full-16.2.3-19376536.x86_64.bundle | |
# Clone the vmware-host-modules repo | |
git clone https://github.com/mkubecek/vmware-host-modules.git | |
cd vmware-host-modules | |
# Build and install the patched modules | |
wget https://github.com/mkubecek/vmware-host-modules/archive/workstation-16.2.3.tar.gz | |
tar -xzf workstation-16.2.3.tar.gz | |
cd vmware-host-modules-workstation-16.2.3 | |
make | |
sudo make install | |
# Reboot | |
sudo reboot | |
# Open VMWare Workstation Pro via the launch menu or via the following command | |
vmware |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment