Ich habe während der Installation keine Swap-Partition verwendet, also habe ich jetzt, da mein Ubuntu installiert ist, GParted Partition Editor verwendet, um eine nicht zugeordnete Partition zu erstellen, die ich als Linux-Swap formatiert habe. Es wurde nicht automatisch gemountet, also habe ich mit der rechten Maustaste darauf geklickt und Swapon ausgewählt. Wenn ich jetzt den Laptop starte, wird die Partition nicht automatisch gemountet. Swapon funktioniert immer noch, aber wenn die Partition beim Booten nicht gemountet wird, ist es so gut wie nutzlos.
Ich habe einige Antworten gesehen, die besagten, dass eine Datei namens Fstab bearbeitet werden soll, aber ich bin mir nicht sicher, welche Änderungen vorgenommen werden sollen ... Bitte Helfen Sie mir, indem Sie Schritt-für-Schritt-Anleitungen geben, da ich ein TOTAL bin Noob und kenne U von Ubuntu nicht, ich habe viele Probleme ... bitte hilf mir! :'( 🙁
Folgendes enthält meine fstab-Datei-
# /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/sda2 during installation
UUID=33a0fc77-06b0-406c-95fd-15bf7033b619 / ext4 errors=remount-ro 0 1
# a swapfile is not a swap partition, no line here
# use dphys-swapfile swap[on|off] for that
Akzeptierte Antwort:
Dies ist Ihre vorherige /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/sda2 during installation
UUID=33a0fc77-06b0-406c-95fd-15bf7033b619 / ext4 errors=remount-ro 0 1
# a swapfile is not a swap partition, no line here
# use dphys-swapfile swap[on|off] for that
Um nun Ihre Swap-Partition hinzuzufügen, gehen Sie wie folgt vor:
-
Öffnen Sie Gparted.
-
Klicken Sie mit der rechten Maustaste auf die Swap-Partition und klicken Sie auf Informationen .
-
Notieren Sie sich Ihre UUID.
-
Ändern Sie nun Ihre vorherige
/etc/fstab
, indem Sie Folgendes tun:-
Öffnen Sie die Datei, indem Sie den folgenden Befehl eingeben:
sudo -H gedit /etc/fstab
-
Fügen Sie dann diese Zeile hinzu,
UUID=THE UUID YOU OBTAINED FROM ABOVE none swap sw 0 0
nach der Zeile
# a swapfile is not a swap partition, no line here
-
Speichern Sie die Datei und starten Sie Ihren Computer neu. Alles sollte jetzt funktionieren.
-