Skip to content

Instantly share code, notes, and snippets.

@adamz01h
Created April 28, 2023 14:31
Show Gist options
  • Select an option

  • Save adamz01h/d5ef14f53315afa7ee139c10adc988cc to your computer and use it in GitHub Desktop.

Select an option

Save adamz01h/d5ef14f53315afa7ee139c10adc988cc to your computer and use it in GitHub Desktop.
swapon
sudo swapon --show
free -h
df -h
sudo fallocate -l 1G /swapfile
ls -lh /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
sudo cp /etc/fstab /etc/fstab.bak
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment