转自:http://www.linuxinsight.com/vmware-workstation-7.1.3-runs-great-on-linux-kernel-2.6.37.html
Of course, only after you patch the installation. :) I can't rememberwhen was the last time Workstation run without patching, that was really long long time ago. Maybe it's Linus' fault, he moves too fast, who can tell... :)
Also, you won't be able to compile and run the 2.6.37 kernel with thelegacy BKL (Big Kernel Lock) disabled, Workstation still depends on lock_kernel() and unlock_kernel() primitives. Let's hope VMware fixes that in their next revision.
Anyway... the patch is relatively small this time, but many files hadto be patched for the modules to compile properly, so I propose a slightly different methodology for patching.
Go to the module source directory and untar all archives:
cd /usr/lib/vmware/modules/source
for file in *
do
tar xvf $file
done