Este é seu /etc/fstab
anterior:
# /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
Agora, para adicionar sua partição de swap a ela, faça o seguinte:
-
Abra o Gparted.
-
Clique com o botão direito do mouse na partição virtual e clique em Informações .
-
Anote seu UUID.
-
Agora, modifique seu
/etc/fstab
anterior, fazendo o seguinte:-
Abra o arquivo digitando o comando:
sudo -H gedit /etc/fstab
-
Em seguida, adicione esta linha,
UUID=THE UUID YOU OBTAINED FROM ABOVE none swap sw 0 0
depois da linha
# a swapfile is not a swap partition, no line here
-
Salve o arquivo e reinicie o computador. Tudo deveria estar funcionando agora.
-