Create a VM with the create
command:
miv create alpine myvm
Start the VM with the terminal attached to its serial console:
miv start myvm
Gracefully stop the VM by sending an ACPI poweroff:
miv stop myvm
Destroy the VM to remove its disk image and other resources:
miv destroy myvm
Inspect the VMs:
miv ps
miv ps -a # also shows stopped VMs
Start the VM in the background and connect a display to it:
miv create alpine myvm
miv start myvm --daemon --display
Log in as root
, and run:
setup-xorg-base
apk add xfce4 xfce4-terminal dbus
startx
To make the screen bigger, right-click on the desktop, hover on Applications, then Settings, and click Display. Select another resolution like "1440x900" and click "apply".