Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Apr 1st, 2010 | Syntax: None | Size: 0.85 KB | Hits: 269 | Expires: Never
Copy text to clipboard
  1. I'm running Fedora 12 with VMware Worksation 7 installed. Since the last kernel update I can't start vmware, it always shows a vmnet errors.
  2.  
  3. After trying to google so many times, I have found a solution from fedoraforum :D
  4.  
  5.  
  6. First, I must install "kernel-devel".
  7.  
  8. Then, I run these commands with sudo (my account is in sudoer group)
  9.  
  10.  
  11.  
  12. # cd /tmp
  13.  
  14. # tar xf /usr/lib/vmware/modules/source/vmnet.tar
  15.  
  16. # nano vmnet-only/vnetUserListener.c (near line 37 add #include "compat_sched.h")
  17.  
  18. # tar cf /usr/lib/vmware/modules/source/vmnet.tar vmnet-only
  19.  
  20. # tar xf /usr/lib/vmware/modules/source/vmci.tar
  21.  
  22. # nano vmci-only/linux/vmciKernelIf.c vmci-only/include/pgtbl.h (add #include "compat_sched.h" around 30 line)
  23.  
  24. # tar cf /usr/lib/vmware/modules/source/vmci.tar vmci-only
  25.  
  26. # vmware-modconfig --console --install-all
  27.  
  28.  
  29. Cheer, now vmware can work fine.