11 lines
254 B
Bash
Executable file
11 lines
254 B
Bash
Executable file
#!/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
|
|
|