所以我第一次尝试安装 Arch Linux
我对 Linux 的经验很少(涉足 Ubuntu 和 Kali)
在安装过程中,我编写了命令
grub-install /dev/sda
这给了我以下几行
Installing for x86_64-efi platform.
grub-install: error: cannot find EFI directory.
我在互联网上搜索答案,最终找到了关于同一问题的线程,回答该问题的人回答了以下解决方案
mount | grep /boot/efi
我从这个命令中没有收到任何信息并输入
grub-install /dev/sda
希望它能起作用,遗憾的是我得到了同样的错误,然后输入
mount | grep /dev/[efi device]
这给了我错误
grep: Unmatched [, [^, [:, or [=
然后我输入
mount /dev/[efi device] /mnt
这导致
mount: bad usage
Try 'mount --help' for more information
最后,我输入
grub-install --efi-directory=[efi dir]
这给了我
grub-install: error: failed to get canonical path of '[efi'
有人可以帮助我吗?