[Share Experiences] vmware-workstation安装之后启动报错Before you can run VMware...
Tofloor
poster avatar
蔡EEPIN
deepin
2022-07-25 07:19
Author

1,安装好之后启动报错缺少vmnet及其模块,本人系统内核 5.15.0-41-generic 测试正常

vm00.png


2,以下脚本需要访问github,访问速度慢的自己百度下如何提速


3,保存以下内容到vmware.sh

#!/bin/bash
sudo apt install git -y
vm_version=$(vmware-installer -l |tee |sed -n 3p |awk '{print $2}' |awk -F'.' '{print $1"."$2"."$3}')
VMWARE_VERSION=workstation-${vm_version}
TMP_FOLDER=/tmp/patch-vmware
rm -fdr $TMP_FOLDER
mkdir -p $TMP_FOLDER
cd $TMP_FOLDER
git clone https://github.com/mkubecek/vmware-host-modules.git
cd $TMP_FOLDER/vmware-host-modules
git checkout $VMWARE_VERSION
git fetch
make
sudo make install
sudo rm /usr/lib/vmware/lib/libz.so.1/libz.so.1
sudo ln -s /lib/x86_64-linux-gnu/libz.so.1 /usr/lib/vmware/lib/libz.so.1/libz.so.1
sudo /etc/init.d/vmware restart

4,之后执行脚本,稍等片刻就满血复活了

sudo bash vmware.sh

2022-07-24_23-18.png

Reply Favorite View the author
All Replies
deepin_xiaoqian
deepin testing team
2022-07-26 00:43
#1

点赞👍 ,目前官方推出的5.15.45版本内核也是能比较好兼容VMWare

Reply View the author
lgwindows
deepin
2022-07-27 04:03
#2

之前我爬了两天才找到这个解决办法,非常好用

Reply View the author
蔡EEPIN
deepin
2022-07-27 05:53
#3
lgwindows

之前我爬了两天才找到这个解决办法,非常好用

我运气比较好,一搜就搜到了 哈哈哈

Reply View the author
xuqi
deepin testing team
2022-08-11 06:20
#4

kissing_heart

  • 感谢分享,暂时还没遇到这个问题,先收藏着~
Reply View the author
历山居士
deepin
2022-09-14 06:56
#5

感谢!完美解决

Reply View the author
Amber
deepin
2022-10-29 17:43
#6

"3,保存以下内容到vmware.sh"是什么意思,直接覆盖还是加在后面啊

Reply View the author
蔡EEPIN
deepin
2022-10-29 18:27
#7
Amber

"3,保存以下内容到vmware.sh"是什么意思,直接覆盖还是加在后面啊

就是你新建个文件 名字叫vmware.sh,把内容放到文件里

Reply View the author
Amber
deepin
2022-10-29 23:43
#8
蔡EEPIN

就是你新建个文件 名字叫vmware.sh,把内容放到文件里

运行之后就这样了
截图_deepin-terminal_20221029154258.png

Reply View the author
蔡EEPIN
deepin
2022-10-30 07:05
#9
Amber

运行之后就这样了
截图_deepin-terminal_20221029154258.png

你系统没安装git

需要先安装, sudo apt install git -y

Reply View the author
Amber
deepin
2022-10-30 17:29
#10
蔡EEPIN

你系统没安装git

需要先安装, sudo apt install git -y

还是不行啊,它好像说什么不再支持了,因为我是5.18内核,太新了不过我暂时也不需要虚拟机了,谢谢kissing_heart

Reply View the author
蔡EEPIN
deepin
2022-10-30 17:49
#11
Amber

还是不行啊,它好像说什么不再支持了,因为我是5.18内核,太新了不过我暂时也不需要虚拟机了,谢谢kissing_heart

那应该就是不行了,内核太新了。 可以试试virtualBox

Reply View the author