Here is how I installed it.
Before the Install of the Vmware Player 14 package, let’s install/update newer version of packages and their dependencies by using the command below:
sudo apt-get update
Now we need to Install some dependencies which is required for Vmware Player 14 Installation.
Note: By default these packages and dependencies should already be installed in Ubuntu 18.04, If not then you can install them by following these steps:
First Install build-essential and gcc as shown:
sudo apt install build-essential gcc
Then install libcanberra-gtk-module as shown:
sudo apt install libcanberra-gtk-module
Now run the following commands in the terminal to install VMware Workstation Player 14 on Ubuntu 18.04, and other Ubuntu Derivatives:
mkdir ~/vmware
cd ~/vmware
wget -c https://download3.vmware.com/software/player/file/VMware-Player-14.1.3-9474260.x86_64.bundle
OR
Download the bundle here:
VMWare Player 14
Give the package permissions:
sudo chmod u+x VMware-Player-14.1.3-9474260.x86_64.bundle
Finally, install:
sudo ./VMware-Player-14.1.3-9474260.x86_64.bundle
As soon as the installer starts, please follow on screen instructions to complete the installation.
Select to accept the terms in the license agreement and then click on Next.
Update on startup; select yes (if you want).
Feedback; select yes or no.
License Key is optional (can be left blank).
Click Install on next screen.
Close when finished.
FOR WINDOWS 10 GUEST
If 3D acceleration cannot be enabled, or you get a warning saying:
Hardware graphics acceleration is not available - As a result, this virtual machine may experience very low graphics performance. Follow the instructions provided by your graphics card vendor or Linux distribution in order to update your computer's OpenGL drivers.
and
No 3D support is available from the host - The 3D features of the virtual machine will be disabled.
Edit hidden file [YOUR HOME FOLDER]/.vmware/preferences and look for a line that starts with:
mks.gl.allowBlacklistedDrivers
If it is not present then you can add it into the file,
BUT
change it to:
mks.gl.allowBlacklistedDrivers = "TRUE"
ALSO THESE LINES ARE NEEDED AND NEED TO BE ADDED:
mks.enableDX11Renderer = "FALSE"
mks.enableGLRenderer = "TRUE"
This switches the 3D acceleration from the default DX11 to OpenGL.
Now go to [YOUR HOME FOLDER]/vmware/ [name of guest]/ [the] .vmx (file)
open it with gedit (or whatever editor) and add the three lines:
mks.gl.allowBlacklistedDrivers = "TRUE"
mks.enableDX11Renderer = "FALSE"
mks.enableGLRenderer = "TRUE"
Hope this helps,
I have checked a huge number of potential solutions
, well you might have missed one unless we see some list of some kind, else it's a dup – George Udosen Aug 09 '18 at 18:09