Go to the official website to download VMware-Workstation-Full-14.1.0-7370693.x86_64.bundle
fc@ubuntu:~/download$ chmod +x VMware-Workstation-Full-14.1.0-7370693.x86_64.bundle
fc@ubuntu:~/download$ ./VMware-Workstation-Full-14.1.0-7370693.x86_64.bundle
problem appear:
Extracting VMware Installer...done.
Gtk-Message: Failed to load module "atk-bridge":/usr/lib/x86_64-linux-gnu/libatspi.so.0: undefined symbol: g_type_class_adjust_private_offset
Gtk-Message: Failed to load module "unity-gtk-module": libunity-gtk-module.so:Cannot open shared object file:No such file or directory(vmware-installer.py:2501): Gtk-WARNING **:Unable to find the theme engine: "murrine" in the module path,
Gtk-Message: Failed to load module "canberra-gtk-module": libcanberra-gtk-module.so:Cannot open shared object file:No such file or directory
Fontconfig error:"/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 72: non-double matrix element
Fontconfig error:"/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 72: non-double matrix element
Fontconfig warning:"/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 80: saw unknown, expected number
Enter /etc/ld.so.conf.d and create the following two files gtk-2.0.conf and gtk-3.0.conf respectively
$ cd /etc/ld.so.conf.d
$ sudo vim gtk-2.0.conf
$ sudo vim gtk-3.0.conf
Add the following contents to the two files gtk-2.0.conf and gtk-3.0.conf respectively
/usr/lib/x86_64-linux-gnu/gtk-2.0/modules
/usr/lib/x86_64-linux-gnu/gtk-3.0/modules
Reload it:
$ sudo ldconfig
Reinstall
$ sudo ./VMware-Workstation-Full-14.1.0-7370693.x86_64.bundle
$ cd /usr/bin
$ sudo vmware-installer -u vmware-workstation
VMware Workstation needs to store user preferences and other information in the directory "~/.vmware".......
Picture.png
That's because the owner of the .vmware file is root
drwxr-xr-x 2 root root 40961/313:42.vmware/
Enter the following command
sudo chown -R username ~/.vmware
Among them, username is the current username
Recommended Posts