3

I just installed XUbuntu on my Vmware Workstation. After I saw, that I can't change display settings (resolution), I try to install VMware Tools. But - after I run vmware-install.pl, I get a message:

The following VMware kernel modules have been found on your system that were 
not installed by the VMware Installer. Please remove them then run this
installer again.

vmci
Execution aborted.

What can I do?

user.dz
  • 48,105
JanezKranjski
  • 831
  • 7
  • 18
  • 36

2 Answers2

4

This is what I did for Ubuntu 16.04:

sudo apt remove --auto-remove open-vm-tools
sudo apt purge open-vm-tools

It complained about not being able to delete a directory since it is not empty so I manually removed one file that resides in that directory using:

sudo rm /etc/vmware-tools/scripts/vmware/network.old.0

And now you can run vmware-install.pl again.

  • I had to completely get rid of the /etc/vmware-tools folder, then I could use vmware-install.sh ... – firepol May 02 '17 at 18:35
  • This procedure worked for 17.04 too. @firepol, I left that folder there and it seemed to work fine. – Mark Beckwith Sep 13 '17 at 15:02
  • Btw. is there an option to manually download the installation files? Because my option to deliver them from VMware is greyed out, and for Windows its easy to find a manual download – Hobbamok Mar 20 '20 at 14:34
0

You're almost there. You need to run the command with the ./, so just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo ./vmware-install.pl

Also see if open-vm-tools are installed. Remove with the below command

sudo apt-get remove open-vm-tools

As a last resort, delete the .vmware folder from your home folder, reboot your machine, and try installing vmware tools again.

Edit

Try the following command: sudo /usr/bin/vmware-config.pl

Mitch
  • 107,631
  • I did ... before (and now again). Now I even reinstall the system (with disk format), but the same problem again. – JanezKranjski Jul 22 '14 at 09:50
  • Try what I've added in my answer. Let me know if it works. – Mitch Jul 22 '14 at 09:54
  • Thans for help. I tried remove open-vm-tools, but it wasn't installed. The (hidden) .vmware folder also wasn't there. – JanezKranjski Jul 22 '14 at 10:04
  • What version vmware workstation are you trying to install, and Ubuntu release? – Mitch Jul 22 '14 at 10:15
  • XUbuntu 14.04 64-bit and VMware Server 2.0.2 – JanezKranjski Jul 23 '14 at 03:16
  • After my memory starts to work, I found my previous question from some months ago: http://askubuntu.com/questions/363601/lubuntu-13-10-cant-install-vmware-tools - it looks, that I have the same problem before with different version of Linux. So the problem is probably in Vmware Server. – JanezKranjski Jul 23 '14 at 04:33
  • Did you install linux-headers, and build-essential xinetd prior to installing vmware? And see the edit in my answer. – Mitch Jul 23 '14 at 07:26
  • Thanks. I didn't found /usr/bin/vmware-config.pl ... it isn't there. I didn't install linux-headers (and build-essential xinetd) - I simply don't know, how to do it. I installed a virtual machine and try to install Vmware Tools as usually. – JanezKranjski Jul 25 '14 at 03:16
  • Any idea? Or maybe Mitch - how can I install essentials ... – JanezKranjski Jul 28 '14 at 05:24
  • sudo apt-get install build-essential xinetd linux-headers-$(uname -r) – Mitch Jul 28 '14 at 08:10
  • Tnx for answer. But the same error occurred. Now I give my hands up. – JanezKranjski Jul 29 '14 at 04:12