virtual-machines: add Arch and Alpine configs

master
an 2019-08-15 23:40:04 -04:00
parent 9053cc70bb
commit 45b81fdcbb
2 changed files with 24 additions and 0 deletions

12
virtual-machines/Alpine Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env fish
# vim: syntax=fish:
set _arch x86_64
set _install "$_vm_media/Linux/Alpine/standard-3.10.1-x86_64.iso"
set _args \
-m 2048 \
--usb \
--vga qxl
source $_vm_setup
## EOF

12
virtual-machines/Arch Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env fish
# vim: syntax=fish:
set _arch x86_64
set _install "$_vm_media/Linux/Arch/2018.08.01-x86_64.iso"
set _args \
-m 2048 \
--usb \
--vga qxl
source $_vm_setup
## EOF