Linux : Gestion de la swap
De www.yakakliker.org
Identification de la swap
swapon --show
NAME TYPE SIZE USED PRIO
/swap.img file 8G 0B -2
ou ceci dans le cas d'une partition swap
NAME TYPE SIZE USED PRIO
/dev/dm-1 partition 980M 979,4M -2
Modification du fichier de swap
- Suppression du fichier swap existant
sudo swapoff /swap.img
sudo rm /swap.img
- Création d'un nouveau fichier à la taille souhaitée
sudo fallocate -l 32G /swap.img
sudo chmod 600 /swap.img
sudo mkswap /swap.img
sudo swapon /swap.img
Liens
https://geekonweb.fr/agrandir-le-fichier-de-swap-dubuntu-ici-en-version-20-04.html