LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Virtualization and Cloud
User Name
Password
Linux - Virtualization and Cloud This forum is for the discussion of all topics relating to Linux Virtualization and Linux Cloud platforms. Xen, KVM, OpenVZ, VirtualBox, VMware, Linux-VServer and all other Linux Virtualization platforms are welcome. OpenStack, CloudStack, ownCloud, Cloud Foundry, Eucalyptus, Nimbus, OpenNebula and all other Linux Cloud platforms are welcome. Note that questions relating solely to non-Linux OS's should be asked in the General forum.

Notices


Reply
  Search this Thread
Old 01-06-2011, 04:33 PM   #1
android-eve
Member
 
Registered: Dec 2010
Posts: 36

Rep: Reputation: 1
Question VMWare Workstation 6.5.5 on Ubuntu 10.04 Install Freezes


I am trying to install VMWare Workstation 6.5.5 (64-bit) on Ubuntu 10.04 (64-bit), but at about 2/3 of the progress bar, it freezes where it says:
Quote:
Installing VMWare Player 2.5.5
Configuring...
Interestingly, it is so frozen, that even after I hit cancel, it is still stuck.

CPU consumption is at 0% and the command with which I launched the installer is:
Code:
sudo sh VMware-Workstation-6.5.5-328052.x86_64.bundle
Anyone has seen this before?

Any idea why this is happening and how to solve this?
 
Old 01-07-2011, 08:58 AM   #2
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Try again with 'sudo sh VMware-Workstation-6.5.5-328052.x86_64.bundle --ignore-errors'?
 
Old 01-07-2011, 10:35 AM   #3
android-eve
Member
 
Registered: Dec 2010
Posts: 36

Original Poster
Rep: Reputation: 1
Lightbulb

Quote:
Originally Posted by unSpawn View Post
Try again with 'sudo sh VMware-Workstation-6.5.5-328052.x86_64.bundle --ignore-errors'?
I just tried it and received the same exact behavior as described above.

But thanks to your post I managed to discover that the VMWare installer creates a log file named /var/log/vmware-installer. I don't really understand what's going on there, so I am posting it here, perhaps someone more knowledgeable can find a hint to as why this is.

Note the line where it gets stuck ("Opening database file /etc/vmware/database").
Attached Files
File Type: txt vmware-installer.txt (1.6 KB, 29 views)
 
Old 01-07-2011, 12:26 PM   #4
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Posting the log is helpful but I can't read anything from it. I'd say download the VMware Workstation command line tarball (they're at version 7.1.3 BTW) and try that instead as it might have more verbose output and debug possibilities. Note VMware Workstation is a commercially licensed product so you may be entitled to their support (LQ is not the help desk for commercially licensed products). If you have a valid license that is. If you don't then either contact VMware or your representative or choose a differently licensed VMware or other virtualization product. Just to make this perfectly clear (and I'm not saying you do) but please notice LQ does not condone illegal software practices and does not want to be associated or involved with that in any way.
 
Old 01-07-2011, 03:54 PM   #5
android-eve
Member
 
Registered: Dec 2010
Posts: 36

Original Poster
Rep: Reputation: 1
Lightbulb

Quote:
Originally Posted by unSpawn View Post
If you have a valid license that is.
Sadly, I paid $199 (USD) for the license but their support is useless. I would say that this forum is way much more useful than their forums. So far, the answers I received from you are much better than the answers I received on their forums (I didn't receive any answers there, as if they are clueless).

Quote:
Originally Posted by unSpawn View Post
I'd say download the VMware Workstation command line tarball (they're at version 7.1.3 BTW) and try that instead as it might have more verbose output and debug possibilities.
That's a good tip, I'll try that. I don't have a license for 7.x, only for 6.x and I am not interested in paying for an upgrade to 7.x.
 
Old 01-09-2011, 10:13 PM   #6
android-eve
Member
 
Registered: Dec 2010
Posts: 36

Original Poster
Rep: Reputation: 1
Thumbs down

Quote:
Originally Posted by unSpawn View Post
I'd say download the VMware Workstation command line tarball (they're at version 7.1.3 BTW)
What tarball? I logged into my http://www.vmware.com/downloads/eula.do account and it has only 4 options:
  1. Linux 32-bit .rpm
  2. Linux 32-bit . bundle
  3. Linux 64-bit .rpm
  4. Linux 64-bit .bundle
There is no .tar, .tar.gz or .tgz option.
 
Old 01-09-2011, 11:42 PM   #7
android-eve
Member
 
Registered: Dec 2010
Posts: 36

Original Poster
Rep: Reputation: 1
Lightbulb

Success!

Here is how:

In one xterm, do:
Code:
chmod u+x VMware-Workstation-6.5.5-328052.x86_64.bundle
while true; do sudo killall -9 vmware-modconfig-console; sleep 1; done
In a seprate xterm, do:
Code:
sudo ./VMware-Workstation-6.5.5-328052.x86_64.bundle --ignore-errors
When installer has finished, terminate the previous command (while true…) with a CTRL+C or simply close the terminal window.

Then, do:
Code:
tar xvf /usr/lib/vmware/modules/source/vmnet.tar -C /tmp
tar xvf /usr/lib/vmware/modules/source/vmci.tar -C /tmp

cd /tmp

perl -pi -e 's,("vnetInt.h"),\1\n#include "compat_sched.h",' vmnet-only/vnetUserListener.c
perl -pi -e 's,("compat_page.h"),\1\n#include "compat_sched.h",' vmci-only/include/pgtbl.h

tar cvf /usr/lib/vmware/modules/source/vmnet.tar vmnet-only
tar cvf /usr/lib/vmware/modules/source/vmci.tar vmci-only
And now run:
Code:
sudo vmware-modconfig --console --install-all
Bingo! Works like a charm.

Thanks to:
  1. http://linux.aldeby.org/vmware-works...rmic-9-10.html
  2. http://ubuntuforums.org/showpost.php...04&postcount=3
 
Old 01-10-2011, 05:17 PM   #8
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Awesome. Thanks for posting back the fix! Please mark this thread solved. I'll have a look at those links now as I have no idea what's causing all the trouble... I see: http://communities.vmware.com/thread/228949 ...

Last edited by unSpawn; 01-10-2011 at 05:35 PM.
 
Old 08-25-2011, 10:57 AM   #9
android-eve
Member
 
Registered: Dec 2010
Posts: 36

Original Poster
Rep: Reputation: 1
Thumbs up

Update: Despite the successful install I had a problem that prevented me from using it:

When the guest VM is Microsoft Windows (2K, XP), the mouse cursor turns from an arrow to a hand when it hovers over the Task Bar (or close to it -- The problem is not limited to the Task Bar area but rather to an arbitrary margin on the outer side of the desktop. This margin can be as wide as 1/8 of the guest's desktop.). When the mouse moves, this hand cursor blinks and the system doesn't respond to mouse clicks. When the hand cursor blinks, the Num Lock LED on my keyboard blinks as well.

When I move the mouse cursor back to "the desktop area" (as defined in the highlighted text above), it functions normally.

That is, the problem exists only outside that "desktop area". Obviously, the same exact VMWare Workstation 6.5.5 (64-bit) on Ubuntu 8.04 (64-bit) doesn't exhibit this problem.

After many months of not touching this, the solution finally found: Simply append
Code:
 export VMWARE_USE_SHIPPED_GTK=yes
to /etc/vmware/bootstrap.

Works perfectly and there is no need to spend money on the newer version of VMWare.
 
  


Reply

Tags
ubuntu, vmware



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] VMWare Workstation 7.1.1 on Ubuntu 10.04 crashing vtoal Linux - Virtualization and Cloud 7 09-05-2010 08:48 PM
Running VMware Workstation 7.0 as a service on Ubuntu.. thewhitelion Linux - Virtualization and Cloud 4 11-03-2009 12:24 AM
networking ubuntu 8 10 running in vmware workstation 6 kamau Linux - Newbie 1 03-04-2009 05:51 PM
VMware tools install for Ubuntu 7.10 Workstation 5.5 - detected x.org execution abort optimizer Linux - Software 1 02-20-2008 12:25 AM
VMWare Workstation on Ubuntu - how much hardware required? taylorkh Linux - Software 2 01-02-2008 05:50 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Virtualization and Cloud

All times are GMT -5. The time now is 02:06 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration