标签:dea bak only modules blank install elk console ref
# rm -rf /etc/vmware*
#rm -rf /usr/bin/vm*
测试过的朋友可能都已经发现,在 CentOS 7 中安装 VMware 10.0.3之后无法正常工作,其实这主要是因为 CentOS 7 中的kernel为较低版本的kernel 3.10。
要想在 CentOS 7 中正常安装和运行 VMware 10.0.3必需执行如下个步骤:
1.进行到/usr/lib/vmware/modules/source目录
cd /usr/lib/vmware/modules/source
2.解压vmnet.tar
tar -xvf vmnet.tar
3.进入到vmnet-only目录
cd vmnet-only
4.编辑filter.c文件
vi filter.c
将206行和259行的
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0)
替换为
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 0, 0)
5.回到上级目录
cd ../
6.重新压缩文件夹
tar -uvf vmnet.tar vmnet-only
7.移除旧目录
rm -fr vmnet-only
8.重新打开 VMware 即可
补丁文件vmnet-3.19.patch
方法/步骤
1
获取补丁文件
curl http://pastie.org/pastes/9934018/download -o /tmp/vmnet-3.19.path
如果无法下载,我的云盘上有备份,网址为:http://pan.baidu.com/s/1sj4uWFF 提取码:a7wq
2
cd /usr/lib/vmware/modules/source
3
sudo tar -xf vmnet.tar
4
sudo patch -p0 -i /tmp/vmnet-3.19.path
5
sudo tar -cf vmnet.tar vmnet-only
6
sudo rm -rf vmnet-only
7
sudo vmware-modconfig --console --install-all
vmnet-3.19.patch
#cd /usr/lib/vmware/modules/source
#tar -xf vmnet.tar
#patch -p0 -i /tmp/vmnet-3.19.patch
#tar -cf vmnet.tar vmnet-only
#rm -r *-only
#vmware-modconfig --console --install-all
标签:dea bak only modules blank install elk console ref
原文地址:http://www.cnblogs.com/timdes1/p/7618245.html