How do I install the VMWare Player on Ubuntu 10.04 when it hangs?

35,794

Solution 1

You may have more luck with VirtualBox, since, unlike VMware, it is free, open, and well-supported on Ubuntu. You can download the .deb binary for your version here: http://www.virtualbox.org/wiki/Linux_Downloads

Solution 2

Actually, the installer goes ahead with the configuration stage only if finds gcc. So, before running the installer just:

sudo rm /usr/bin/gcc

(it's a symlink to /usr/bin/gcc-x.y). Run the installer and it will just stop after copying the files. Now re-create the symlink by

ln -s /usr/bin/gcc-x.y /usr/bin

Solution 3

You are likely to find that VMWare's products are not yet supported on Ubuntu 10.04 as it has only just been released. The release notes for the latest version of VMWare player only mention 9.10.

A quick search shows a number of people reporting problems with Player v3.0.1 on Ubuntu 10.04 - some report that the beta release of VMWare Player 3.1 has more luck. VMWare are probably working on it, as they tend to support Ubuntu's stable releases well as host environment, but unless you are happy running the beta you will need to wait for a future minor release.

Unless you particularly need to use VMWare, you could instead try one of the other available virtualisation solutions. For instance: a recent version of VirtualBox is available in the Universe repository for Ubuntu 10.04 (http://packages.ubuntu.com/lucid/virtualbox-ose) so install should be relatively easy via the GUI package installation/management tools or sudo aptitude install virtualbox-ose.

Share:
35,794
Mohit Jain
Author by

Mohit Jain

Updated on September 17, 2022

Comments

  • Mohit Jain
    Mohit Jain almost 2 years

    I need to install MINIX 3 in VMware. I'm using Ubuntu 10.04.

    I downloaded VMware, and now I am trying to install it using

     sudo apt-get install build-essential linux-headers-`uname -r`
     chmod +x VMware-Player*.bundle
     gksudo bash ./VMware-Player*.bundle
    

    The VM Player Installer window popped up, and I clicked on the ‘Install’ button.

    The progress bar started going. Above the bar, it says that the installer is ‘Configuring’. This was more than 15 minutes ago and is still going.

    Nothing else is running on the system (consuming CPU, memory, etc.)

    Is the ‘Configuring’ step supposed to take this long? It seems to me it might be hung.

    1. Did I do something wrong?

    2. Is there a log some place that can help me to debug this?

  • Baptiste Wicht
    Baptiste Wicht about 11 years
    It worked for me :) Should be the answer.