Support
Forums

Re: Removing files from an EFI System Partition?

From what I read about EFI System Partition, that the OS does not automatically mount them.These are formatted FAT32 so they should be readable.List partitions (replace x with drive in question):Code: [Select]sudo fdisk -l /dev/sdxThe list of partitio...
From what I read about EFI System Partition, that the OS does not automatically mount them.
These are formatted FAT32 so they should be readable.

List partitions (replace x with drive in question):
Code: [Select]
sudo fdisk -l /dev/sdx

The list of partitions on the disk: Look for the EFI system partition in the list.

Mount it (replace x and 1 with the actual partition number:
Code: [Select]
sudo mkdir /mnt/EFI
sudo mount /dev/sdx1 /mnt/EFI

Change directory to:
Code: [Select]
cd /mnt/EFI
ls
This should list the...