原文地址: https://blog.csdn.net/qq_43658650/article/details/86663326
1. 下载VMWare Workstation
下载地址:
https://www.vmware.com/products/workstation-pro/workstation-pro-evaluation.html
2. 将下载后的VMware-Workstation-Full-15.0.2-10952284.x86_64.bundle放在主目录下
3. 按 Ctrl+Alt+T 打开终端
4. 给下载下来的 .bundle 增加可执行权限:
在终端输入
sudo chmod +x VMware-Workstation-Full-15.0.2-10952284.x86_64.bundle
或
sudo chmod +x VMware-Workstation-Full*.bundle
5. 执行.bundle文件
sudo ./VMware-Workstation-Full-15.0.2-10952284.x86_64.bundle
或
sudo ./VMware-Workstation-Full*.bundle
接下来会跳出安装界面,跟着提示做就好。
如果安装过程出现 错误可执行以下命令
1.Failed to load module "canberra-gtk-module" 错误
sudo apt-get install libcanberra-gtk-module
2.GNU C Compiler(gcc) version was not found!错误
sudo apt install gcc
- Build environment error!
sudo apt-get install build-essential
密钥:
YG5H2-ANZ0H-M8ERY-TXZZZ-YKRV8
UG5J2-0ME12-M89WY-NPWXX-WQH88
UA5DR-2ZD4H-089FY-6YQ5T-YPRX6
GA590-86Y05-4806Y-X4PEE-ZV8E0
ZF582-0NW5N-H8D2P-0XZEE-Z22VA
YA18K-0WY8P-H85DY-L4NZG-X7RAD
密钥参考以下链接:
ps:
如果想卸载的话可执行以下步骤:
- 先查看当前版本
vmware-installer -l
- 再卸载
sudo vmware-installer --uninstall-product vmware-workstation
6. 安装虚拟机系统问题
“Cannot open /dev/vmmon: No such file or directory. Please make sure that the kernel module vmmon’ is loaded”
出错原因
我们在进入BIOS界面中的启动选项时,可能会注意到有一个 ”secure boot“ 选项,而这就是出现问题的原因。简单来讲,这个 “secure boot” 就是在计算机主板上设置的一个安全保护措施,任何在主板上加载的操作系统或者硬件驱动程序运行时,都必须经过一个安全验证,而开启虚拟机时,VMware驱动器(其中的vmmon和vmnet组件)无法通过这个安全验证,不能运行,这就导致了虚拟机无法启动。
解决措施
我们知道了导致错误的原因是开启了"secure boot",那么最简单粗暴的方法就是在BIOS中禁止“secure boot”选项(往往是在BIOS中的启动或者安全选项中),但是这种方法的弊端也显而易见,降低了电脑的安全性,如果不想破坏电脑的安全性,则可以采取另一种方法。
7. 真机与虚拟机文件不能拖拽
第一步: sudo apt-get autoremove open-vm-tools
第二步:sudo apt-get install open-vm-tools-desktop
网友评论