Cannot find efi directory: issue with grub-install
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
I was facing grub rescue issue in linux. However i was able to login in the OS with below tutorial https://www.lisenet.com/2014/grub2-rescue-mode-error-unknown-filesystem/.
I have to upgrade grub to fix the problem.
I am getting error grub-install: error: cannot find EFI directory
I have filesystem as below
`sda4, sda5, sda6 for EFI system, linux swap, linux file system respectively.
I am not much experienced using mount or other commands.
grub-install /dev/sda
grub-install: error: cannot find EFI directory.
Thanks
linux grub
add a comment |Â
up vote
2
down vote
favorite
I was facing grub rescue issue in linux. However i was able to login in the OS with below tutorial https://www.lisenet.com/2014/grub2-rescue-mode-error-unknown-filesystem/.
I have to upgrade grub to fix the problem.
I am getting error grub-install: error: cannot find EFI directory
I have filesystem as below
`sda4, sda5, sda6 for EFI system, linux swap, linux file system respectively.
I am not much experienced using mount or other commands.
grub-install /dev/sda
grub-install: error: cannot find EFI directory.
Thanks
linux grub
add to your answer what command you ran exactly that resulted in the error.
â jdwolf
Nov 19 '17 at 2:35
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I was facing grub rescue issue in linux. However i was able to login in the OS with below tutorial https://www.lisenet.com/2014/grub2-rescue-mode-error-unknown-filesystem/.
I have to upgrade grub to fix the problem.
I am getting error grub-install: error: cannot find EFI directory
I have filesystem as below
`sda4, sda5, sda6 for EFI system, linux swap, linux file system respectively.
I am not much experienced using mount or other commands.
grub-install /dev/sda
grub-install: error: cannot find EFI directory.
Thanks
linux grub
I was facing grub rescue issue in linux. However i was able to login in the OS with below tutorial https://www.lisenet.com/2014/grub2-rescue-mode-error-unknown-filesystem/.
I have to upgrade grub to fix the problem.
I am getting error grub-install: error: cannot find EFI directory
I have filesystem as below
`sda4, sda5, sda6 for EFI system, linux swap, linux file system respectively.
I am not much experienced using mount or other commands.
grub-install /dev/sda
grub-install: error: cannot find EFI directory.
Thanks
linux grub
edited Nov 19 '17 at 17:06
asked Nov 18 '17 at 18:51
krishnakant
421110
421110
add to your answer what command you ran exactly that resulted in the error.
â jdwolf
Nov 19 '17 at 2:35
add a comment |Â
add to your answer what command you ran exactly that resulted in the error.
â jdwolf
Nov 19 '17 at 2:35
add to your answer what command you ran exactly that resulted in the error.
â jdwolf
Nov 19 '17 at 2:35
add to your answer what command you ran exactly that resulted in the error.
â jdwolf
Nov 19 '17 at 2:35
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
2
down vote
When you run grub-install by default it assumes the EFI system is mounted as /boot/efi
It depends on your distribution where EFI system is mounted and on some distributions it isn't mounted after boot.
First check if /boot/efi is mounted with
mount | grep /boot/efi
If that doesn't work try
mount | grep /dev/sda6
To see if its amounted elsewhere. If neither do:
mount /dev/sda6 /mnt
Now run:
grub-install --efi-directory=/mnt/efi
grub-mkconfig -o /boot/grub/grub.cfg
Thanks, In thegrub-install --efi-directory=/boot/EFI
as i chroot into/mnt
.
â krishnakant
Nov 26 '17 at 19:20
add a comment |Â
up vote
0
down vote
Grub rescue mode can be treated as
set root=(hd0,gpt6)
set prefix=(hd0,gpt6)/boot/grub
insmod normal
normal
Once you login, enter sudo update-grub && sudo grub-install /dev/sda
.
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
When you run grub-install by default it assumes the EFI system is mounted as /boot/efi
It depends on your distribution where EFI system is mounted and on some distributions it isn't mounted after boot.
First check if /boot/efi is mounted with
mount | grep /boot/efi
If that doesn't work try
mount | grep /dev/sda6
To see if its amounted elsewhere. If neither do:
mount /dev/sda6 /mnt
Now run:
grub-install --efi-directory=/mnt/efi
grub-mkconfig -o /boot/grub/grub.cfg
Thanks, In thegrub-install --efi-directory=/boot/EFI
as i chroot into/mnt
.
â krishnakant
Nov 26 '17 at 19:20
add a comment |Â
up vote
2
down vote
When you run grub-install by default it assumes the EFI system is mounted as /boot/efi
It depends on your distribution where EFI system is mounted and on some distributions it isn't mounted after boot.
First check if /boot/efi is mounted with
mount | grep /boot/efi
If that doesn't work try
mount | grep /dev/sda6
To see if its amounted elsewhere. If neither do:
mount /dev/sda6 /mnt
Now run:
grub-install --efi-directory=/mnt/efi
grub-mkconfig -o /boot/grub/grub.cfg
Thanks, In thegrub-install --efi-directory=/boot/EFI
as i chroot into/mnt
.
â krishnakant
Nov 26 '17 at 19:20
add a comment |Â
up vote
2
down vote
up vote
2
down vote
When you run grub-install by default it assumes the EFI system is mounted as /boot/efi
It depends on your distribution where EFI system is mounted and on some distributions it isn't mounted after boot.
First check if /boot/efi is mounted with
mount | grep /boot/efi
If that doesn't work try
mount | grep /dev/sda6
To see if its amounted elsewhere. If neither do:
mount /dev/sda6 /mnt
Now run:
grub-install --efi-directory=/mnt/efi
grub-mkconfig -o /boot/grub/grub.cfg
When you run grub-install by default it assumes the EFI system is mounted as /boot/efi
It depends on your distribution where EFI system is mounted and on some distributions it isn't mounted after boot.
First check if /boot/efi is mounted with
mount | grep /boot/efi
If that doesn't work try
mount | grep /dev/sda6
To see if its amounted elsewhere. If neither do:
mount /dev/sda6 /mnt
Now run:
grub-install --efi-directory=/mnt/efi
grub-mkconfig -o /boot/grub/grub.cfg
answered Nov 19 '17 at 2:44
jdwolf
2,392116
2,392116
Thanks, In thegrub-install --efi-directory=/boot/EFI
as i chroot into/mnt
.
â krishnakant
Nov 26 '17 at 19:20
add a comment |Â
Thanks, In thegrub-install --efi-directory=/boot/EFI
as i chroot into/mnt
.
â krishnakant
Nov 26 '17 at 19:20
Thanks, In the
grub-install --efi-directory=/boot/EFI
as i chroot into /mnt
.â krishnakant
Nov 26 '17 at 19:20
Thanks, In the
grub-install --efi-directory=/boot/EFI
as i chroot into /mnt
.â krishnakant
Nov 26 '17 at 19:20
add a comment |Â
up vote
0
down vote
Grub rescue mode can be treated as
set root=(hd0,gpt6)
set prefix=(hd0,gpt6)/boot/grub
insmod normal
normal
Once you login, enter sudo update-grub && sudo grub-install /dev/sda
.
add a comment |Â
up vote
0
down vote
Grub rescue mode can be treated as
set root=(hd0,gpt6)
set prefix=(hd0,gpt6)/boot/grub
insmod normal
normal
Once you login, enter sudo update-grub && sudo grub-install /dev/sda
.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Grub rescue mode can be treated as
set root=(hd0,gpt6)
set prefix=(hd0,gpt6)/boot/grub
insmod normal
normal
Once you login, enter sudo update-grub && sudo grub-install /dev/sda
.
Grub rescue mode can be treated as
set root=(hd0,gpt6)
set prefix=(hd0,gpt6)/boot/grub
insmod normal
normal
Once you login, enter sudo update-grub && sudo grub-install /dev/sda
.
answered Nov 19 '17 at 17:46
defalt
2091413
2091413
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f405472%2fcannot-find-efi-directory-issue-with-grub-install%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
add to your answer what command you ran exactly that resulted in the error.
â jdwolf
Nov 19 '17 at 2:35