1

I was attempting to uninstall VM Ware software and the process wasn't entirely successful. See screenshot. enter image description here

The application no longer works. When I click on launch nothing happens. It just left behind some left over I suppose. When I go to dash the software is still listed. Any suggestion how to remove it completely. Perhaps using terminal ?

Thomas Ward
  • 74,764
  • 1
    What method did you use to install it in the first place? – user535733 Jan 11 '18 at 16:14
  • I built it from source. I downloaded it as .sh script. – Mark Alexa Jan 11 '18 at 16:44
  • Look at your script and your README and your makefile for what got installed where. Sometimes you can do make uninstall, sometimes not. If not, then it's poring through the script and makefile, and manual rm-ing stuff all over your system. – user535733 Jan 11 '18 at 16:59

1 Answers1

4

VMware Workstation isn't installed by the package manager, it's installed by VMware installation binaries.

The installer bundle installs vmware-installer alongside all the other components. You use this to uninstall VMware components installed by their bundle.

Specifically, you would use this, and address any prompts it shows according to whatever those prompts are:

sudo vmware-installer -u vmware-workstation

That should uninstall VMware Workstation. I suggest restarting the computer after it uninstalls, though, to clean out some last remaining bits.

Thomas Ward
  • 74,764
  • 1
    Mate, you must be some Ubuntu Guru or something. Magician perhaps. When I ran command you shared a prompt popped up asking me if I wanna uninstall it and I just went on. Just like that. You blew my mind. (I don't know who voted down your answer) Problem solved. Beautiful ! – Mark Alexa Jan 11 '18 at 17:12
  • 1
    @MarkAlexa I'm just an expert in VMware Workstation on the computer since I use it frequently :) Glad it helped solve your problem, though! – Thomas Ward Jan 11 '18 at 17:30