Differences between revisions 92 and 93
Revision 92 as of 2020-11-12 19:52:22
Size: 8530
Editor: ?JorkanoFaln
Comment: added vmware.service restart failed apt upgrade fix and correct title for adding guest additions
Revision 93 as of 2020-11-14 01:29:34
Size: 8507
Editor: PaulWise
Comment: make instructions init system agnostic
Deletions are marked like this. Additions are marked like this.
Line 156: Line 156:
    systemctl restart vmware.service     service vmware restart
Line 177: Line 177:
    systemctl restart vmware.service     service vmware restart

Translation(s): none

(!) /Discussion


VMware is a commercial PC virtualization solution running on amd64 compatible cpus, since version 11. It allows you to run any x86 compatible OS in a kind of 'sandbox' - inside the VMware virtual machine you can run other operating systems like Windows, FreeBSD or some other version of Linux. Both Windows and a Linux versions are available.

VMware is not a true emulator, it doesn't emulate a CPU like Bochs does, it wraps CPU commands around... It does emulate various hardware devices like network-, graphic- and sound cards.

  • VMware Workstation player can easily be installed by downloading the relevant bundle and then running as root eg sudo sh VMware-Player-15.5.6-16341506.x86_64.bundle on a an vmplayer is useful for running a single VM guest, more info here: https://www.vmware.com/products/workstation-player.html

Installing VMware on Debian

VMware Workstation Pro/Player 16

VMware Workstation can be easily installed on Debian by downloading the required bundle and executing the following commands:

chmod +x VMware-Workstation-Full-16.0.0-16894299.x86_64.bundle
sudo ./VMware-Workstation-Full-16.0.0-16894299.x86_64.bundle

In order to run VMware Workstation 16 properly, you must install the required packages to build the VMware kernel modules:

sudo apt install build-essential linux-headers-$(uname -r)

VMware Workstation Pro/Player 15/15.5

VMware Workstation can be easily installed on Debian Buster and Debian Stretch by downloading the required bundle and executing the following commands:

chmod +x VMware-Workstation-Full-15.5.5-16285975.x86_64.bundle
sudo ./VMware-Workstation-Full-15.5.5-16285975.x86_64.bundle

In order to run VMware Workstation 15 properly, you must install the required packages to build the VMware kernel modules:

sudo apt install build-essential linux-headers-$(uname -r)

VMware Workstation Pro/Player 14

VMware Workstation can be easily installed on Debian Stretch, since VMware Workstation requires a kernel version <= 4.18, without any kernel patches kernel_patches, by downloading the required bundle and executing the following commands:

chmod +x VMware-Workstation-Full-14.1.7-12989993.x86_64.bundle
sudo ./VMware-Workstation-Full-14.1.7-12989993.x86_64.bundle

In order to run VMware Workstation 14 properly, you must install the required packages to build the VMware kernel modules:

sudo apt install build-essential linux-headers-$(uname -r)

Installing VMware Horizon Client on Jessie

VMware Horizon Client is a software do display virtual desktops running on VMware Servers. It provides among others PCoverIP access to VMware VDI infrastructure.

From the Horizon Client page you can download a free for use version of VMware Horizon Client. The downloaded "bundle" package needs to be made executable:

chmod +x ...bundle

and then executed as root.

The only additional thing that needs to be done on Debian jessie to have it running is to create a symlink to libudev:

ln -s /lib/x86_64-linux-gnu/libudev.so.1 /lib/x86_64-linux-gnu/libudev.so.0

(The above will need to be adapted to your platform depending on the CPU architecture your system has).

With Horizon client 4.4.0 on up to date Jessie i386 a symlink to libffi6 is also needed:

ln -s /usr/lib/i386-linux-gnu/libffi.so.6 /usr/lib/i386-linux-gnu/libffi.so.5

(This is likely to change with future releases, however the installer will complain about any missing libraries).

If the VDI infrastructure uses certificate authorities that are not contained in your CA collection, then you will need to add those as well in order to be able to connect:

cp VDI_CA.crt VDI_Intermediate_CA.crt /usr/local/share/ca-certificates/
update-certificates

Converting existing machines to VMware

Physical Machines to VMware/Hyper-V to VMware using VMware Converter

You are able to convert any existing operating system to a virtual environment as a guest on Debian host using VMwareConverter.

!! VMware converter requires to be run on a Windows machine, since it has no Linux version !!

Windows

When you are converting existing windows you might need to activate you installation again. Windows will detect different hardware and will prompt you for a new/current activation key.

VirtualBox to VMware

Here is a tutorial on how to convert existing VirtualBox machines to VMware: VBox to VMware

Using VMware

License Keys

  • To enter Serial Number you can click on Help->Enter Serial Number or you can run:

/usr/lib/vmware/bin/vmware-vmx --new-sn 123-123-123-123...123

Running vmware-netcfg (Virtual Network Editor) with VMware Player

VMware player by default does not give you the greater control over your network that vmware-netcfg used in VMware Workstation can provide.

The following commands will allow you to run vmware-netcfg

 cd /usr/lib/vmware/bin

ln -s /usr/lib/vmware/bin/appLoader vmware-netcfg

ln -s /usr/lib/vmware/bin/vmware-netcfg /usr/bin/vmware-netcfg

Credit to Michael Gr.

VMware guest additions install on a Debian guest

It is no longer required to install kernel-headers and run the vmware-guest-additions installer script, since the debian repos already include a version of the vmware-guest-addition openvm-tools. To install the guest additions execute the following command:

sudo apt install open-vm-tools

VMware, Debian Kernel Upgrade

  • On an apt-get upgrade when your kernel has been updated, you no longer need to download the kernel headers and reconfigure vmware. Since the guest additions are now provided by this package: openvm-tools

Troubleshooting

GCC version is not found null after VMware Player 16 successful install on Debian Bullseye/Sid

In order to enable the VMware Workstation kernel you must compile them manually as root, using the following commands

    cd /usr/lib/vmware/modules/source  
    tar xvf vmnet.tar  
    cd vmnet-only  
    make  
    cd ..  
    tar xvf vmmon.tar  
    cd vmmon-only  
    make  
    cd ..  
    cp vmmon.o /lib/modules/`uname -r`/kernel/drivers/misc/vmmon.ko  
    cp vmnet.o /lib/modules/`uname -r`/kernel/drivers/misc/vmnet.ko  
    depmod -a  
    service vmware restart 

source: https://communities.vmware.com/thread/643016

vmware.service restart fail after running apt upgrade on Debian Bullseye/Sid

You must run the following commands as root to rebuild the kernel modules:

    cd /usr/lib/vmware/modules/source  
    tar xvf vmnet.tar  
    cd vmnet-only  
    make  
    cd ..  
    tar xvf vmmon.tar  
    cd vmmon-only  
    make  
    cd ..  
    cp vmmon.o /lib/modules/`uname -r`/kernel/drivers/misc/vmmon.ko  
    cp vmnet.o /lib/modules/`uname -r`/kernel/drivers/misc/vmnet.ko  
    depmod -a  
    service vmware restart


CategoryVirtualization | CategorySoftware | CategoryProprietarySoftware