I am trying to fix a specific problem (this problem) and a solution that somebody else has suggested involves me re-naming a particular file under a live session of Ubuntu... But I cannot seem to make /boot/efi
writable.
I have tried various suggestions I found online, but they all relate to an installed session and when I try the same with a live session, Ubuntu just whinges at me that it's "not allowed".
Another thing I tried, which someone suggested elsewhere is this, from root (/)...
Input:
fdisk -l
Output:
/dev/sdb1 (type is "empty")
/dev/sdb2 (type is "EFI")
/dev/sdb3 (type is Linux)
Input:
mkdir efi
Output:
mkdir: cannot create directory 'efi': Permission denied
Input:
sudo mount /dev/sdb2
Output:
mount: /dev/sdb2: can't find in /etc/fstab
What I want is to delete mmx64.efi and rename grubx64.efi as mmx64.efi (I figure if I am going to rename grubx64.efi as mmx64.efi, I might as well delete mmx64.efi first), like is discussed over here (my problem is different, but very, very similar and it has been suggested that this solution might fix my problem as well).
/boot/efi
and remounting it with therw
option? – Jos Apr 29 '20 at 10:36/boot/efi
is not the root partition. It is a separate partition. – Jos Apr 29 '20 at 11:21sudo -H nautilus
, Nautilus will open and if mounted /boot/efi will be writable. You could also install nautilus-admin. – C.S.Cameron Apr 29 '20 at 13:34