6 lines
320 B
Bash
6 lines
320 B
Bash
|
# Virtualbox allows you to run VMs for other flavors of Linux or even Windows
|
||
|
# See https://ubuntu.com/tutorials/how-to-run-ubuntu-desktop-on-a-virtual-machine-using-virtualbox#1-overview
|
||
|
# for a guide on how to run Ubuntu inside it.
|
||
|
sudo apt install -y virtualbox virtualbox-ext-pack
|
||
|
sudo usermod -aG vboxusers ${USER}
|