Solution:
open /usr/lib/vmware/lib/wrapper-gtk24.sh as root.
search for the lines
Code:
vm_run() {
local exitCode;
add:
Code:
# Fix for vmplayer pulling in libdbus-1.so.2 instead of .3
export LD_PRELOAD=/usr/lib/libdbus-1.so.3:$LD_PRELOAD
so your new /usr/lib/vmware/lib/wrapper-gtk24.sh looks like this:
Code:
# Run "$binary" while watching its progress on its stderr.
vm_run() {
local exitCode;
# Fix for vmplayer pulling in libdbus-1.so.2 instead of .3
export LD_PRELOAD=/usr/lib/libdbus-1.so.3:$LD_PRELOAD
# Append any libraries that are still missing.
if [ "$VMWARE_USE_SHIPPED_GTK" = 'force' ]; then
now you can have installed libdbus-1-2/3 at the same time and vmware will run, too. |