The solution below applies to versions of VMWare prior to 12.1.0. The 12.1.0 version of VMWare does not require this fix.
VMWare and VMPlayer are in fact looking for a specific library string. You can execute VMWare/VMPlayer from the terminal by executing
export LD_LIBRARY_PATH=/usr/lib/vmware/lib/libglibmm-2.4.so.1/:$LD_LIBRARY_PATH
then vmware
or vmplayer
I made this a permanent change on my system by executing instead
executing sudo nano /usr/bin/vmware
and adding the line
export LD_LIBRARY_PATH=/usr/lib/vmware/lib/libglibmm-2.4.so.1
after the line export PRODUCT_NAME...
Press ctrl+o to save and ctrl+x to exit: VMWare will now work.
To perform the same function for VMPlayer, execute the same changes to /usr/bin/vmplayer
vmplayer
instead ofvmware
– Charles Green Oct 26 '15 at 21:12sudo ldconfig
- now I can start gparted. I assume that if you do the same, you can run sqlworkbench. We may have to choose what we want to run... – Charles Green Oct 26 '15 at 23:44sudo ldconfig
and modiy your/usr/bin/vmplayer
as noted in the answer – Charles Green Oct 27 '15 at 00:17export
command in windows (I am on windows 10)?! – McLan Feb 23 '16 at 11:42