Friday, December 27, 2024
Google search engine
HomeGuest BlogsInstall VMware Workstation 17 on Debian 12/11/10

Install VMware Workstation 17 on Debian 12/11/10

.tdi_3.td-a-rec{text-align:center}.tdi_3 .td-element-style{z-index:-1}.tdi_3.td-a-rec-img{text-align:left}.tdi_3.td-a-rec-img img{margin:0 auto 0 0}@media(max-width:767px){.tdi_3.td-a-rec-img{text-align:center}}

VMware is one of the best Type-II hypervisor technology and cloud computing software provider. It allows one to run another operating system inside your current operating system i.e Windows, Linux e.t.c. Normally, it bases its virtualization technology on bare-metal hypervisor ESX/ESXI in x86 architecture.

Vmware was founded in 1998 as a subsidiary of Dell Technologies. It has the following features:

  • Increased efficiency and stability of data center systems
  • Better provisioning of applications and resources
  • Virtual desktop infrastructure
  • Cloud management platform
  • Has SDDC platform, a software stuck with vSphere, VMware vSAN and VMware NSX
  • Improved networking and security i.e VMWaer NSX
  • Simplified data center and cloud infrastructure

Vmware has two major versions, namely;

.tdi_2.td-a-rec{text-align:center}.tdi_2 .td-element-style{z-index:-1}.tdi_2.td-a-rec-img{text-align:left}.tdi_2.td-a-rec-img img{margin:0 auto 0 0}@media(max-width:767px){.tdi_2.td-a-rec-img{text-align:center}}

  • VMware Workstation player – This is a basic VMware verison andn is non-commercial
  • VMware Workstation Pro – Normally, this is a paid version that is more advanced and professional as well.

The VMware Workstation Pro has the following additional features:

  • Allows snapshots
  • Ability to create Linked Clones and full clones
  • Remote vSphere Host Power Control
  • Virtual Network Customization (NAT, network rename)
  • Virtual Network Simulation (Packet Loss, Latency, Bandwidth)
  • Allows creating and managing Encrypted VMs

By the end of this guide, you should be able to install VMware Player Workstation on Debian. Further, I will demonstrate how to make an installation with VMware.

System Requirements.

The minimum requirements for a host system to be able to install VMware are:

  • CPU – above 2GHz and 64-bit processor
  • Memory – above 2GB RAM
  • Disk Space – Depends on the host operating system, but you should have some space about 30GB free for Virtual Machine installation

Also remember, to get better performance, you should have a hardware virtualization (AMD-v/VT-d/VT-x) extension enabled from the BIOS of your host system.

Then install the required packages.

sudo apt update
sudo apt install build-essential gcc perl bzip2 dkms make
sudo apt install linux-headers-$(uname -r)

Update your system to the latest stable packages:

sudo apt update && sudo apt upgrade

Install VMWare Player | Workstation Pro 17 on Debian

In this guide, we will install both the VMWare Player 17 and the Workstation Pro 17 on our Debian system.

Step 1 – Download VMware Player | Workstation

Download VMware workstation pro and player using the provided links below

  • VMware Workstation Player 17

Download VMware workstation Player from the official VMware Workstation downloads page

Install VMware Player Workstation 16 on Debian 1110 1

Alternatively, obtain the download link and pull it with Wget as below.

wget https://download3.vmware.com/software/WKST-PLAYER-1702/VMware-Player-Full-17.0.2-21581411.x86_64.bundle
  • Vmware Workstation Pro 17

This version of VMware can be downloaded by visiting the official VMware Workstation Pro downloads page.

Install VMware Player Workstation 16 on Debian 1110 1 1

While on the above page, select Workstation Pro for Linux and proceed with your download.

Another way to download the bundle is by using Wget as below:

wget https://download3.vmware.com/software/WKST-1702-LX/VMware-Workstation-Full-17.0.2-21581411.x86_64.bundle

Step 2 – Install VMware Player | Workstation Pro

Now with the bundle downloaded successfully, proceed and install it. If you downloaded it from a browser, then you need to navigate to your downloads directory cd ~/Downloads Then make the downloaded file executable as below.

# For VMware Player
chmod +x VMware-Player-Full-*.x86_64.bundle

#For VMware Workstation Pro
chmod +x VMware-Workstation-Full-*.x86_64.bundle

Now with the file executable, install it on Debian as below.

#For VMware Player
sudo ./VMware-Player-Full-*.x86_64.bundle

#For Workstation pro
sudo ./VMware-Workstation-Full-*.x86_64.bundle

The installation will commence as below.

Extracting VMware Installer...done.
Installing VMware Installer 3.1.0
Installing VMware Workstation 17.0.2
    Copying files...
[################                                                      [################                                                        [################                                                      [################....
..........
    Configuring...
[######################################################################] 100%
Installation was successful. 

As seen from the output above, the installation is successful now we need to install the required VMware modules i.e VMnet and VMmon.

Git clone the modules as below.

git clone https://github.com/mkubecek/vmware-host-modules.git
cd vmware-host-modules
git checkout workstation-17.0.2
make
sudo make install
sudo /etc/init.d/vmware start

Use VMware Player | VMware Workstation Pro on Debian

Now that we have installed VMware successfully, we will proceed and use it. I will demonstrate this by installing Alpine Linux. Launch Vmware from the App Menu as below.

Install VMware Player Workstation 16 on Debian 1110 2

Accept the License Terms.

Install VMware Player Workstation 16 on Debian 1110 3

Accept updates for VMware.

Install VMware Player Workstation 16 on Debian 1110 4

Join the Customer Experience program.

Install VMware Player Workstation 16 on Debian 1110 5

If you want to license the Workstation Pro, enter your License here, otherwise proceed with the second option.

Install VMware Player Workstation 16 on Debian 1110 6

You will see the pop-up below.

Install VMware Player Workstation 16 on Debian 1110 7

That is it, proceed and create a virtual machine and install your required Operating system.

Install VMware Player Workstation 16 on Debian 1110 8

Creating a new VM will require you to make configurations. Select the type of configuration to use.

Install VMware Player Workstation 16 on Debian 1110 9

Select the ISO file of the Operating system you want to install.

Install VMware Player Workstation 16 on Debian 1110 10

Proceed and select the type of operating system you want to install on the VM.

Install VMware Player Workstation 16 on Debian 1110 11

Assign a name to the VM.

Install VMware Player Workstation 16 on Debian 1110 12

Set the disk size of the VM.

Install VMware Player Workstation 16 on Debian 1110 13

That is it! You have created a VM with the configurations given, you can alter the settings made by clicking on Customize Hardware.

Install VMware Player Workstation 16 on Debian 1110 14

Click Finish then proceed and install the OS of choice. For this guide, I installed Alpine Linux.

Install VMware Player Workstation 16 on Debian 1110 15

You can manage your VM, shutdown, start and pause using the panel shown.

Install VMware Player Workstation 16 on Debian 1110 16

Fix the “VMWare Kernel Module Updater” error on Debian

In day-to-day use, you may encounter the error “VMWare Kernel Module Updater“. Fix it by cloning the patch code from GitHub as below.

sudo apt -y install git 
git clone https://github.com/mkubecek/vmware-host-modules.git

Rebuild and install the VMware modules.

cd vmware-host-modules
make
sudo make install

Then reboot your system for the changes made to apply.

sudo reboot

You can install VMware Guest additions/Tools to enable full integration between your host system and the Virtual machine. Install VMware Tools on Debian with the aid of the guide below.

VMware Learning Materials:

Voila!

Conclusion.

We have come to the end of this guide on how to install VMware Player | Workstation Pro on Debian. I hope you learned a lot from this guide.

See more:

.tdi_4.td-a-rec{text-align:center}.tdi_4 .td-element-style{z-index:-1}.tdi_4.td-a-rec-img{text-align:left}.tdi_4.td-a-rec-img img{margin:0 auto 0 0}@media(max-width:767px){.tdi_4.td-a-rec-img{text-align:center}}

RELATED ARTICLES

Most Popular

Recent Comments