vmware workstation 10 installation on centos 7 (kernel 3.10, 3.13, etc)

来源:互联网 发布:看外汇行情的软件 编辑:程序博客网 时间:2024/06/12 23:48

Solution to the vmware workstation installation failure on centos 7


1, install the vmware workstation bundle

2, go to /usr/lib/vmware/modules/source

3, tar -xvf vmnet.tar

4, vi vmnet-only/filter.c

5, add in include section

#include <linux/netdevice.h>
+ #include <linux/version.h>
#if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)

6, search KERNEL_VERSION, and change minor version 13 - > 9

-#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 13, 0)

+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0)

-#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 13, 0)

+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0)

7, vmware-modconfig --console --install-all


0 0
原创粉丝点击