12 lines
254 B
Bash
12 lines
254 B
Bash
|
#!/usr/bin/sh
|
||
|
|
||
|
export OS_IMAGE_PATH="/mnt/extramedia3/mbess/os_images/arch/2024-05-01/archlinux-2024.05.01-x86_64.iso"
|
||
|
export RUN_VM_EXTRA_ARGS="-cdrom $OS_IMAGE_PATH"
|
||
|
|
||
|
base="$(realpath $(dirname "$0"))"
|
||
|
|
||
|
echo "Installing OS"
|
||
|
|
||
|
$base/run_vm.sh main.qcow
|
||
|
|