6

When will VMware publish a version of VMware tools for Ubuntu 10.10?

The small screen is killing me.

2
  • I gather that VMWare themselves have a rough idea as to when it is ready. Just out of interest, have you actually ever though of not upgrading your OS until you're certain all your software works okay under it? I've only just gone to 10.04 and that was after exhaustive testing to ensure I wouldn't stuff up my wife's Windows VM. Of all my customers, she is the most demanding :-) And, was it really necessary to put that advert in your question?
    – paxdiablo
    Commented Oct 18, 2010 at 3:28
  • I think your question belongs to superuser.com
    – Searock
    Commented Oct 18, 2010 at 3:29

2 Answers 2

6

You can install the open version of the VMware tools through apt-get. From a fresh install of Ubuntu 10.10, just do this:

apt-get install --no-install-recommends open-vm-dkms
apt-get install open-vm-tools

That should get your screen resizing, clipboard, file drag-and-drop, etc. running.

1
  • Thanks for the pointer. This installed it for me but I can't get screen resizing. Do I need to run any configuration?
    – jammus
    Commented Nov 6, 2010 at 18:20
4

I installed VMware tools "manually" as described here. The guide is for 10.04 but it will also work in 10.10:

sudo apt-get update && sudo apt-get upgrade
sudo mount /dev/cdrom /media/cdrom
cp /media/cdrom/VMware*.tar.gz /tmp
sudo umount /media/cdrom
cd /tmp
tar xzvf VMware*.gz
cd vmware-tools-distrib/
sudo ./vmware-install.pl
3
  • I tried this on my install of Ubuntu 10.10, and it tells me that the modules won't work with my version of the kernel - so then it tries to build said modules against my kernel header files, but always detects the header files version as "@@VMWARE@@ UTS_VERSION". I think the script is broken (VMWare 6.4). Now upgrading to VMWare 6.5 to see what happens...
    – Johan
    Commented Feb 16, 2011 at 6:36
  • Sorry, that should have been VMWare version 6.5.4 and 6.5.5, not 6.4 and 6.5...
    – Johan
    Commented Feb 16, 2011 at 7:07
  • I had the same problem of not able to resize the screen (with resolution). This answer solves my problem.
    – KMC
    Commented Jan 11, 2012 at 6:30

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .