Boot ISO By GRUB
範例專案
下載 ISO
先參考「Download ISO」這篇提到的下載方式,下載「Archlinux 官方提供最新的ISO檔案」。
將「ISO檔案」放到「/opt/iso/archlinux/latest/archlinux-x86_64.iso」這個路徑。
舉例執行下面指令
sudo curl -fLo /opt/iso/archlinux/latest/archlinux-x86_64.iso --create-dirs \
https://mirror.archlinux.tw/ArchLinux/iso/latest/archlinux-x86_64.iso
設定範例
接著採用下面其中一種方式來設定。
GRUB Boot ISO 範例 | 設定檔路徑 | 是否需要執行 update-grub |
---|---|---|
demo_40_custom | /etc/grub.d/40_custom | 修改後,需要執行 sudo update-grub |
demo_41_custom | /boot/grub/custom.cfg | 修改後,不需要執行 sudo update-grub |
關於「
sudo update-grub
」指的是「sudo grub-mkconfig -o /boot/grub/grub.cfg
」
GRUB Menu Entry / Boot ISO 樣板 / Arch Linux
menuentry "Archlinux ISO / Latest" --class Arch {
set iso_file="/opt/iso/archlinux/latest/archlinux-x86_64.iso"
search --set=iso_partition --no-floppy --file $iso_file
probe --set=iso_partition_uuid --fs-uuid $iso_partition
set img_dev="/dev/disk/by-uuid/$iso_partition_uuid"
loopback loop ($iso_partition)$iso_file
set boot_option=""
#set boot_option="quiet splash"
linux (loop)/arch/boot/x86_64/vmlinuz-linux img_dev=$img_dev img_loop=$iso_file $boot_option
initrd (loop)/arch/boot/intel-ucode.img (loop)/arch/boot/amd-ucode.img (loop)/arch/boot/x86_64/initramfs-linux.img
}
See Also
- Grub 探索筆記 / GRUB Boot ISO 範例