mirror of
https://github.com/CopterExpress/clover_vm.git
synced 2026-05-27 07:29:33 +00:00
As of v6.1.2, Virtualbox still could not get its act together and provide working GPU virtualization. Thankfully, OVF/OVA images are easily importable for VMware Workstation/Player, and GPU works much better there. Thus, there is no reason to install Virtualbox guest additions, and having open-vm-tools preinstalled will result in a better VMware player user experience.
7 lines
169 B
Bash
7 lines
169 B
Bash
#!/usr/bin/env bash
|
|
|
|
sudo apt update
|
|
sudo apt install -y build-essential make perl
|
|
# virtualbox is still terrible, let's target vmware
|
|
sudo apt install -y open-vm-tools
|