현재 내 컴퓨터에 UEFI이고 GPT 파티션 테이블로 포맷된 아치 리눅스와 Windows 10을 설치하려고 합니다. 그러나 다음 명령을 사용하여 grub을 설치할 때:
grub-install --target=x86_64-efi --efi-directory=esp --bootloader-id=grub
이 반환
Installing for x86_64-efi platform.
grub-install: error: esp doesn't look like an EFI partition.
.
이전에는 하드 드라이브에 3개의 파티션과 2개의 Windows 파티션을 만들었습니다. 저는 cgdisk를 사용하여 2GB EFI 시스템 파티션, 4GB Linux 스왑 파티션 및 91GB Linux 파일 시스템 파티션을 만들었습니다.
명령어를 입력했어요
mkfs.fat -F32 /dev/sda3 (the efi partition)
mount /dev/sda5 /mnt (the linux filesystem)
mount /dev/sda3 /boot (to mount the efi partition in /boot as reccomended)
그런 다음 grub과 efibootmgr을 설치하면 위에 나열된 오류가 발생합니다.
어떤 도움이라도 대단히 감사하겠습니다!
답변1
문제는 이 부분에 있습니다: --efi-directory=esp
.
esp
" "는 EFI가 저장된 디렉터리에 대한 자리 표시자일 뿐이므로 입력하면 안 됩니다 .
EFI가 포함되어 있다고 가정합니다 /boot
. 이 경우 줄의 이 부분은 다음과 같습니다.
--efi-directory=/boot