ubuntuusers.de

EFI-Systempartition (ESP) ist nicht in /boot/efi eingehängt

Status: Gelöst | Ubuntu-Version: Ubuntu 24.10 (Oracular Oriole)
Antworten |

Fassungsloser

Anmeldungsdatum:
20. Februar 2025

Beiträge: Zähle...

Hallo,

bei einem Aktualisierungsversuch mittels sudo do-release-upgrade erhalte ich die Meldung:

1
2
3
4
5
6
7
...
EFI Systempartition (ESP) nicht verwendbar 

Ihre EFI-Systempartition (ESP) ist nicht in /boot/efi eingehängt. 
Bitte stellen Sie sicher, dass es sauber konfiguriert ist und 
versuchen Sie es noch einmal.
...

Eine Suche brachte mir hier die Erkenntnis, dass ich etwas in der fstab für die EFI-Partition ergänzen muss. Mir ist aber nicht klar, was genau und ich möchte nicht an der Boot-Partition fummeln ohne zu wissen, was ich tue. Ich betreibe noch ein Windows 11 im Dual-Boot.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
ich@linux:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda1 during curtin installation
/dev/disk/by-uuid/72617fa4-e76b-4d1e-9cf0-56543ad783b7 / ext4 defaults 0 1
# /boot/efi was on /dev/nvme0n1p1 during curtin installation
#/dev/disk/by-uuid/3E6B-D462 /boot/efi vfat defaults 0 1
#Daten
/dev/disk/by-uuid/AC38A07F38A049E2 /media/maik/Daten ntfs defaults,nls=utf8,umask=000,dmask=027,fmask=137,uid=1000,gid=1000,windows_names 0 0
/swap.img	none	swap	sw	0	0
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
ich@linux:~$ sudo parted -l
Modell: ATA Samsung SSD 750 (scsi)
Festplatte  /dev/sda:  500GB
Sektorgröße (logisch/physisch): 512B/512B
Partitionstabelle: gpt
Disk-Flags: 

Nummer  Anfang  Ende   Größe  Dateisystem  Name  Flags
 1      1049kB  500GB  500GB  ext4


Modell: ATA Samsung SSD 860 (scsi)
Festplatte  /dev/sdb:  1000GB
Sektorgröße (logisch/physisch): 512B/512B
Partitionstabelle: gpt
Disk-Flags: 

Nummer  Anfang  Ende    Größe   Dateisystem  Name                          Flags
 1      17,4kB  1066kB  1049kB               LDM metadata partition
 2      1066kB  16,8MB  15,7MB               Microsoft reserved partition  msftres
 3      16,8MB  1000GB  1000GB  ntfs         LDM data partition


Modell: Samsung SSD 970 EVO 500GB (nvme)
Festplatte  /dev/nvme0n1:  500GB
Sektorgröße (logisch/physisch): 512B/512B
Partitionstabelle: gpt
Disk-Flags: 

Nummer  Anfang  Ende   Größe  Dateisystem  Name  Flags
 1      1049kB  577MB  576MB  fat32              boot, esp, no_automount
 2      577MB   499GB  499GB                     msftdata
 3      499GB   500GB  798MB  ntfs               versteckt, diag, no_automount

Was genau muss ich in der fstab ergänzen?

schwarzheit Team-Icon

Supporter
Avatar von schwarzheit

Anmeldungsdatum:
31. Dezember 2007

Beiträge: 4126

Das Bootflag no_automount gehört meiner Meinung nach nicht dahin.

Fassungsloser schrieb:

Modell: Samsung SSD 970 EVO 500GB (nvme)
Festplatte  /dev/nvme0n1:  500GB
Sektorgröße (logisch/physisch): 512B/512B
Partitionstabelle: gpt
Disk-Flags: 

Nummer  Anfang  Ende   Größe  Dateisystem  Name  Flags
 1      1049kB  577MB  576MB  fat32              boot, esp, no_automount
 2      577MB   499GB  499GB                     msftdata
 3      499GB   500GB  798MB  ntfs               versteckt, diag, no_automount

Ausserdem haste den EFI Eintrag in der fstab auskommentiert.

Fassungsloser schrieb:

ich@linux:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda1 during curtin installation
/dev/disk/by-uuid/72617fa4-e76b-4d1e-9cf0-56543ad783b7 / ext4 defaults 0 1
# /boot/efi was on /dev/nvme0n1p1 during curtin installation
#/dev/disk/by-uuid/3E6B-D462 /boot/efi vfat defaults 0 1
#Daten
/dev/disk/by-uuid/AC38A07F38A049E2 /media/maik/Daten ntfs defaults,nls=utf8,umask=000,dmask=027,fmask=137,uid=1000,gid=1000,windows_names 0 0
/swap.img	none	swap	sw	0	0
Antworten |