Skip to content

Instantly share code, notes, and snippets.

@stepansib
Created September 30, 2019 11:19
#linux setup cache in ubuntu
sudo swapoff /swapfile
sudo rm /swapfile
sudo dd if=/dev/zero of=/swapfile bs=1M count=4096 #create 4 GB swap
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment