Linux – Access EFI partition files in Linux

efilinuxpartitioning

I am using Arch linux in dual boot with Windows 10 and I want to mount the efi partition in Arch and to delete some files from there, like old Ubuntu grub file and so on… How can I mount this partition?
Here is my HDD partitioned:

NAME    MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda       8:0    0 931.5G  0 disk 
├─sda1    8:1    0   300M  0 part 
├─sda2    8:2    0   100M  0 part /boot/efi
├─sda3    8:3    0   128M  0 part 
├─sda4    8:4    0 129.2G  0 part 
├─sda5    8:5    0   835M  0 part 
├─sda6    8:6    0   200G  0 part 
├─sda7    8:7    0   400G  0 part 
├─sda8    8:8    0    67G  0 part /
├─sda9    8:9    0   7.6G  0 part [SWAP]
└─sda10   8:10   0 126.4G  0 part /home

Best Answer

Try remounting the EFI partition as RW. sudo mount -o rw,remount /boot/efi.

Related Question