grub-install: 错误: 找不到 EFI 目录 -- 用于实时 USB

grub-install: 错误: 找不到 EFI 目录 -- 用于实时 USB

我正在尝试按照以下步骤使我的 USB 笔式驱动器可启动: https://www.pcsuggest.com/create-a-multiboot-usb-drive-with-grub-in-linux/, 我做了什么:

# fdisk /dev/sdb#新建分区/dev/sdb1 4GB

# mkfs.vfat -F 32 /dev/sdb1 #vfat 文件系统

# mount /dev/sdb1 /mnt; cd /mnt; mkdir boot boot_iso#mount,创建2个目录

# grub-install /dev/sdb --target=x86_64-efi --boot-directory=boot/ --force-extra-removable --force#安装GRUB

这触发了错误:

Installing for x86_64-efi platform.
grub-install: error: cannot find EFI directory.

我应该怎么办?我没有任何 EFI 目录,我想创建一个

相关内容