Difference between revisions of "Swap"

From Wasya Wiki
Jump to: navigation, search
(Created page with " sudo fallocate -l 4G /swapfile sudo dd if=/dev/zero of=/swapfile bs=1024 count=2097152 sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile # /etc/fsta...")
 
Line 1: Line 1:
  
 
  sudo fallocate -l 4G /swapfile
 
  sudo fallocate -l 4G /swapfile
  sudo dd if=/dev/zero of=/swapfile bs=1024 count=2097152
+
  sudo dd if=/dev/zero of=/swapfile bs=1024 count=4194304
 
  sudo chmod 600 /swapfile
 
  sudo chmod 600 /swapfile
 
  sudo mkswap /swapfile
 
  sudo mkswap /swapfile

Revision as of 00:40, 21 March 2022

sudo fallocate -l 4G /swapfile
sudo dd if=/dev/zero of=/swapfile bs=1024 count=4194304
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
# /etc/fstab
/swapfile swap swap defaults 0 0
sudo swapon --show
sudo free -h
cat /proc/sys/vm/swappiness
sudo sysctl vm.swappiness=10
sudo swapoff -v /swapfile
# and remove the entry from /etc/fstab
sudo rm /swapfile