web-dev-qa-db-fra.com

Comment puis-je augmenter le fichier d'échange dans Ubuntu 18.04?

J'ai un ordinateur portable avec 8 Go RAM et 1 To HDD. J'ai swapfile qui est 2 Go (Ubuntu 18.04 utilise un swapfile au lieu d'une partition de swap séparée par défaut) et je veux l'augmenter pour utiliser l'hibernation.

Je souhaite l'augmenter de 2 Go à 16 Go. Voici une capture d'écran de GParted:

GParted screenshot

J'ai essayé de l'augmenter avec fallocate -l 16G mais cela n'a pas fonctionné.

Il y a aussi l'image de free -m:

<code>free</code> output

23
Predator1112

À partir d'Ubuntu 18.04, un fichier d'échange plutôt qu'une partition d'échange dédiée est utilisé. Le fichier d'échange s'appelle "fichier d'échange". Pour changer la taille de ce fichier d'échange:

  1. Désactivez le fichier d'échange et supprimez-le (ce n'est pas vraiment nécessaire car vous allez l'écraser)

    Sudo swapoff /swapfile
    Sudo rm  /swapfile
    
  2. Créez un nouveau fichier d'échange de la taille souhaitée.
    Déterminez la taille de votre fichier d'échange. Si vous voulez créer un fichier d'échange de 4 Go, vous devrez écrire 4 * 1024 blocs de 10242 octets (= 1 Mio). Cela fera en sorte que votre compte soit égal à 4 * 1024 = 4096. Créez le fichier de cette taille avec la commande

    Sudo dd if=/dev/zero of=/swapfile bs=1M count=4096
    
  3. Attribuez-lui des autorisations de lecture/écriture pour root uniquement (pas strictement nécessaire, mais cela renforce la sécurité)

    Sudo chmod 600 /swapfile
    
  4. Formatez le fichier comme swap:

    Sudo mkswap /swapfile
    
  5. Le fichier sera activé au prochain redémarrage. Si vous souhaitez l'activer pour la session en cours:

    Sudo swapon /swapfile
    

Vous pouvez vérifier le swap disponible avec la commande swapon -s (aucune autorisation racine requise).

40
vanadium

A partir du man mkswap, il est recommandé d'utiliser la commande ddcomme indiqué dans @ vanadium post .

If  you  don't  know  the  page  size  that  your  machine uses, 
you may be able to look it up with 
"cat /proc/cpuinfo" 
(or you may not – the contents of this file depend on architecture and kernel version).

   To set up a swap file, it is necessary to create that file before   
   initializing  it  with  mkswap,  e.g. using a command like

          # fallocate --length 8GiB swapfile

   Note  that  a  swap  file must not contain any holes.  Using cp(1) to  
   create the file is not acceptable.
   Neither is use of fallocate(1) on file systems that support preallocated 
   files, such as XFS or ext4,  or on  copy-on-write  filesystems like btrfs.  

   It is recommended to use dd(1) and /dev/zero in these cases.
   Please read notes from swapon(8) before adding a swap file to copy-on- 
   write filesystems.

Et voici les notes de man swapon

NOTES
       You should not use swapon on a file with holes.  This can be seen in
       the system log as

              swapon: swapfile has holes.

       The swap file implementation in the kernel expects to be able to write  
       to the file directly, without the assistance  of the filesystem.  This 
       is a problem on preallocated files (e.g.  fallocate(1)) on filesys‐
       tems like XFS or ext4, and on copy-on-write filesystems like btrfs.

       It is recommended to use dd(1) and /dev/zero to avoid holes on XFS
       and ext4.

       swapon may not work correctly when using a swap file with some  
       versions of btrfs.  This is due to  btrfs being  a copy-on-write 
       filesystem: the file location may not be static and corruption can 
       result.  
       Btrfs actively disallows the use of swap files on its filesystems
       by refusing to map the file.

       One possible workaround is to map the swap file to a loopback device.  
       This will allow the filesystem to determine the mapping properly but  
       may come with a performance impact.

       Swap over NFS may not work.
2
abu_bua