다음 단계에 따라 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 디렉터리가 없습니다. 새로 만들고 싶습니다.