workstation

How to install VMware Workstation 17 Player on Ubuntu 23.10



In this video I will show you how I installed VMware Workstation 17.0.2 Player on Ubuntu 23.10 (Mantic Minotaur)

This is my new channel and my first video so I apologise for the quality! Thanks for watching.

VMware Workstation 17.0.2 Player may not install correctly on Ubuntu 23.10 but a few simple fixes allowed me to fix the error “Unable to install all modules”

REMEMBER TO CHECK THE ANGLE BRACKETS IN THE ‘LINE 46’ COMMAND BELOW! THEY MAY GET MANGLED BY THIS DESCRIPTION

Specifically with errors like:
make: *** [Makefile: 117: vmmon.ko] Error 2
make: *** [Makefile: 117: vmnet.ko] Error 2

Commands used in the video:

# Install VMware Workstation Player
cd Downloads
sudo sh VMware-Player-Full-17.0.2-21581411.x86_64.bundle

# Install some dependencies
sudo apt install build-essential linux-headers-generic libaio1

# Change directory to the module folder
cd /usr/lib/vmware/modules/source/

# Patch vmmon
sudo tar -xf vmmon.tar
sudo sed -i ‘s/pte_offset_map/pte_offset_kernel/g’ vmmon-only/include/pgtbl.h
sudo mv vmmon.tar vmmon.tar.backup
sudo tar -cf vmmon.tar vmmon-only

# Patch vmnet – Make sure the angle brackets are in the ‘line 46′ command below!!!
sudo tar -xf vmnet.tar
echo “MAKE SURE THE ANGLE BRACKETS ARE IN THE COMMAND BELOW!”
sudo sed -i ’46 a#include <net/gso.h>’ vmnet-only/bridge.c
sudo mv vmnet.tar vmnet.tar.backup
sudo tar -cf vmnet.tar vmnet-only

# Clean up
sudo rm -rf vmmon-only vmnet-only

Original source of the fixes:

[ad_2]

source

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button