Boot ISO By USB

Arch Wiki

操作步驟

下載 ISO

先參考「Download ISO」這篇提到的下載方式,下載「Fedora 官方提供最新的ISO檔案」。

舉例執行下面指令

wget -c https://download.fedoraproject.org/pub/fedora/linux/releases/40/Spins/x86_64/iso/Fedora-Xfce-Live-x86_64-40-1.14.iso

就會下載一個檔案「Fedora-Xfce-Live-x86_64-40-1.14.iso」。

尋找 Device 代號

先執行下面指令,找到「目標USB隨身碟」的「Device代號」

lsblk

假設找到的「目標USB隨身碟」是「/dev/sdc」。

寫入隨身碟

接著執行下面指令,就會寫入「USB隨身碟」。

sudo dd if=./Fedora-Xfce-Live-x86_64-40-1.14.iso of=/dev/sdc bs=4M status=progress && sync

或是執行下面指令,就會寫入「USB隨身碟」。

sudo dd if=./Fedora-Xfce-Live-x86_64-40-1.14.iso of=/dev/sdc bs=4M status=progress conv=fsync oflag=direct

接著重新開機,在「BIOS」選擇使用「該USB隨身碟」開機。