How to uninstall VMware Workstation 10.0.3 from Ubuntu 14.04

16,917

Solution 1

Open the terminal and run this command to uninstall VMware Workstation:

sudo vmware-installer -u vmware-workstation  

Reference: VMware Workstation 10 Documentation Center: Uninstall Workstation from a Linux Host

Solution 2

You can try manual uninstall:

Prepend all commands with sudo, or switch to root using this command:

sudo su

Shut down all VMware applications and services.

/etc/init.d/vmware stop 

Verify that all processes have stopped:

lsmod | grep vm

Note: A zero must be listed beside VMware related modules to indicate that they are no longer running.

Move the VMware libraries to the /tmp directory:

cd /lib/modules/kernel_version/misc
mv vm* /tmp

Note: If the kernel has ever been updated, you must check and move the files from multiple paths. Substitute the kernel version where indicated above.

Unload the kernel modules:

rmmod vmnet.o
rmmod vmmon.o
rmmod vmci.o
rmmod vmblock.o
rmmod vmppuser.o

Remove the VMware startup scripts:

rm /etc/rc2.d/*vmware*
rm /etc/rc3.d/*vmware*
rm /etc/rc5.d/*vmware*
rm /etc/rc6.d/*vmware*

Remove the remaining VMware files and directories:

rm -rf /etc/vmware*
rm /usr/bin/vmware-usbarbitrator
rm /usr/bin/vmnet*
rm -r /usr/lib/vmware*
rm -r /usr/share/doc/vmware*

Source: Manually uninstalling VMware Workstation from Linux hosts (38)

Solution 3

you can use the vmware-installer; already posted in here ->How to uninstall VMware Player?.

Share:
16,917

Related videos on Youtube

Yazz.idE
Author by

Yazz.idE

Updated on September 18, 2022

Comments

  • Yazz.idE
    Yazz.idE over 1 year

    I want to uninstall VMware Workstation 10.0.3 from my Ubuntu 14.04. I used the '.bundle' file to install VMware Workstation.

  • Yazz.idE
    Yazz.idE over 9 years
    I used to ' .bundle ' file to install vmworkstion.