2023-10-01 08:43:11 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Graphical runner for desktop
|
|
|
|
|
|
|
|
DRIVENAME=nixhost
|
|
|
|
MEM_GB=1
|
|
|
|
|
2024-06-18 14:14:43 -07:00
|
|
|
qemu-system-x86_64 -accel kvm \
|
2023-10-01 08:43:11 -07:00
|
|
|
-m $(expr 1024 \* $MEM_GB) -drive file=./$DRIVENAME.qcow2,format=qcow2
|
|
|
|
|