centos7升级kernel之后,vmware无法打开

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7升级kernel之后,vmware无法打开相关的知识,希望对你有一定的参考价值。


# 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

 

以上是关于centos7升级kernel之后,vmware无法打开的主要内容,如果未能解决你的问题,请参考以下文章

vmware+centos7+启动在登录界面鼠标键盘都不可用

centos7.4系统升级kernel内核

CentOS7升级内核kernel5.0

VM安装Centos7下安装vmware-tools /mnt/hgfs没有文件的解决方法

使用VMware安装Centos7

CentOS7或CentOS8 安装VirtualBox Guest Addon缺少kernel-headers的解决办法