126

I want to uninstall VMware Player on my Ubuntu 12.04 LTS system. How should I uninstall it?

Fanoy
  • 1,715

8 Answers8

211
sudo vmware-installer -u vmware-player

This issue has been discussed previously over here: http://ubuntuforums.org/showthread.php?t=1364485

ish
  • 141,990
upapilot
  • 2,996
37
sudo vmware-installer -l
sudo vmware-installer -u PRODUCT-NAME

With the first command, you can see what products you have. With the second, you can choose which product to uninstall. For instance, to uninstall VMware Player, please enter this in a terminal window:

sudo vmware-installer -u vmware-player
K7AAY
  • 17,705
31
sudo  vmware-installer -u vmware-workstation

Used to uninstall complete vmware-workstation package including vmware-player.

4

I had to change the command line Lorenzo Lerate provided to make it work for me for version 12.5.6:

sudo vmware-installer -u vmware-player
David Foerster
  • 36,890
  • 56
  • 97
  • 151
3

The official documentation states you have to run this:

sudo vmware-installer -u vmware-workstation
2

Uninstalling VMware in linux machine

Use command with root permission to uninstall

sudo vmware-installer -u vmware-player

if you removed some files before using above command the command will not work properly

For this issue: Reinstall VMware workstation again

sudo ./VMware-Player-Full-16.2.4-20089737.x86_64.bundle

and use this command again :)

sudo vmware-installer -u vmware-player
Jagadeesh
  • 21
  • 1
2

I was also confused in uninstalling but these commands work for me:

  1. sudo vmware-installer -l(it gives the product name)
  2. sudo vmware-installer -u product name(in my case it was 'vmware-player')

I hope it will help.

0
sudo vmware-installer -u vmware-workstation

According to official documentation which mentions "Uninstall Workstation Pro from a Linux Host"

You might also have to want to uninstall a package named open-vm-tool separately.

Pranav
  • 1,250