Skip to content

Instantly share code, notes, and snippets.

@Max95Cohen
Created February 14, 2023 08:35
Show Gist options
  • Save Max95Cohen/cdc5fd6dc60c9074cd2db383630e425c to your computer and use it in GitHub Desktop.
Save Max95Cohen/cdc5fd6dc60c9074cd2db383630e425c to your computer and use it in GitHub Desktop.
swap tips
Show swap
sudo swapon --show
sudo fallocate -l 1G /swapfile
sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo nano /etc/fstab
/swapfile swap swap defaults 0 0
Adjusting the Swappiness Value
sudo sysctl vm.swappiness=10
Removing a Swap File
sudo swapoff -v /swapfile
sudo rm /swapfile
sudo swapoff -a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment