Skip to content

Instantly share code, notes, and snippets.

@pawelrubin
Created October 24, 2020 13:15
Show Gist options
  • Save pawelrubin/843ae28c49fefbd391c06205a76ffb80 to your computer and use it in GitHub Desktop.
Save pawelrubin/843ae28c49fefbd391c06205a76ffb80 to your computer and use it in GitHub Desktop.
Resize swap memory, Ubuntu
sudo swapoff -a
sudo dd if=/dev/zero of=/swapfile bs=1G count=8
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
# add the new swapfile if it isn’t already there
echo "/swapfile none swap sw 0 0" >> /etc/fstab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment