Over the past few days, I'd noticed that, whenever I started VMware Workstation, I was prompted to recompile it's underlying modules to fit with my kernel - 2.6.35-23-generic-pae #36-Ubuntu SMP
Normally, this occurs once after an update, and then it "sticks" until the next kernel upgrade.
However, this was repeating, which was a bit annoying.
By running the vmware command within a terminal window, rather than via the Gnome launcher, I also got to see more errors: -
Starting VMware services:
VMware USB Arbitrator done
Virtual machine monitor done
Virtual machine communication interface done
VM communication interface socket family failed
Blocking file system done
Virtual ethernet done
Shared Memory Available done
and: -
make: *** [vsock.ko] Error 2
Well, I'm happy to report that, after a spot of Googling, I found the solution on this rather useful little website: -
Debian/Ubuntu Tips & Tricks
and, more specifically, this article: -
How-To: WMware Workstation 7.1 on Ubuntu Maverick Meerkat 10.10
which pointed out the the vmci module is the guilty party.
In essence, I needed to download a patch and then extract and execute it: -
tar -xzvf vmware-7.1-ubuntu10.10-patch.tar.gz
cd vmware-7.1-ubuntu10.10-patch
sudo ./apply_patch.sh
Having done this, running the vmware command ran through the recompilation as normal, resulting in this: -
Starting VMware services:
VMware USB Arbitrator done
Virtual machine monitor done
Virtual machine communication interface done
VM communication interface socket family done
Blocking file system done
Virtual ethernet done
Shared Memory Available done
Excellent job :-)
Geeking in technology since 1985, with IBM Development, focused upon Docker and Kubernetes on the IBM Z LinuxONE platform In the words of Dr Cathy Ryan, "If you don't write it down, it never happened". To paraphrase one of my clients, "Every day is a school day". I do, I learn, I share. The postings on this site are my own and don’t necessarily represent IBM’s positions, strategies or opinions. Remember, YMMV https://infosec.exchange/@davehay
Subscribe to:
Post Comments (Atom)
Note to self - use kubectl to query images in a pod or deployment
In both cases, we use JSON ... For a deployment, we can do this: - kubectl get deployment foobar --namespace snafu --output jsonpath="{...
-
Why oh why do I forget this ? Running this command : - ldapsearch -h ad2012.uk.ibm.com -p 389 -D CN=bpmbind,CN=Users,DC=uk,DC=ibm,DC=com -w...
-
Error "ldap_sasl_interactive_bind_s: Unknown authentication method (-6)" on a LDAPSearch command ...Whilst building my mega Connections / Domino / Portal / Quickr / Sametime / WCM environment recently, I was using the LDAPSearch command tha...
-
Whilst building a new "vanilla" Kubernetes 1.25.4 cluster, I'd started the kubelet service via: - systemctl start kubelet.se...
2 comments:
Hi Dave! Found your post. I knew I should have looked here first. Doh! Nice to see you around.
:-)
Hey Ray, no worries, I often need to Google myself to find a blog post from weeks/months/years back :-)
Post a Comment