Boot ISO By run_archiso (QEMU)
下載 ISO
先參考「Download ISO」這篇提到的下載方式,下載「Archlinux 官方提供最新的ISO檔案」。
舉例執行下面指令
wget -c https://mirror.archlinux.tw/ArchLinux/iso/latest/archlinux-x86_64.iso
就會下載一個檔案「archlinux-x86_64.iso」。
測試操作步驟
Help
執行
run_archiso -h
顯示
Usage:
run_archiso [options]
Options:
-a set accessibility support using brltty
-b set boot type to 'BIOS' (default)
-d set image type to hard disk instead of optical disc
-h print help
-i [image] image to boot into
-s use Secure Boot (only relevant when using UEFI)
-u set boot type to 'UEFI'
-v use VNC display (instead of default SDL)
-c [image] attach an additional optical disc image (e.g. for cloud-init)
Example:
Run an image using UEFI:
$ run_archiso -u -i archiso-2020.05.23-x86_64.iso
BIOS
執行
run_archiso -i archlinux-x86_64.iso
或是執行
run_archiso -b -i archlinux-x86_64.iso
UEFI
Run an image using UEFI:
執行
run_archiso -u -i archlinux-x86_64.iso
Explore
執行
pacman -Qo run_archiso
顯示
/usr/bin/run_archiso is owned by archiso 71-1
執行
which run_archiso
顯示
/usr/bin/run_archiso
執行
less $(which run_archiso)
See Also
- 入門如何製作 Arch ISO / 測試 ISO
- Boot ISO By QEMU