取得USB隨身碟的 Disk Number #
diskmgmt.msc
執行磁碟分割程式
diskpart
選擇隨身碟
select disk #
清除隨身碟內容
clean
conver mbr
建立第一個 exFAT 分區
create part pri
shrink minimum=50
format fs=exfat label=USB-EXFAT quick
建立第二個分區 Fat32
create part pri
format fs=fat32 label=USB-BOOT quick
assign
記錄下那個 FAT32 的磁碟機代碼
list vol
離開 diskpat
exit
下載 grub2, 解壓縮, 並進入其 grub 的目錄內 https://github.com/a1ive/grub/releases/download/latest/grub2-latest.tar.gz
安裝 grub2 到你的 USB
grub-install.exe --force --no-floppy --target=i386-pc --boot-directory=X:\boot //./PHYSICALDRIVE#
grub-install.exe --force --removable --no-floppy --target=x86_64-efi --boot-directory=X:\boot --efi-directory=X:\
grub-install.exe --force --removable --no-floppy --target=i386-efi --boot-directory=X:\boot --efi-directory=X:\
這是一個 exFAT 的範例 https://pendrivelinux.com/downloads/exfat/grub.cfg