Skip to content

Instantly share code, notes, and snippets.

@KozhevnikovM
Created May 4, 2023 08:28
Show Gist options
  • Save KozhevnikovM/cf42408b02fc74b7d8a2bdc93ecf5aab to your computer and use it in GitHub Desktop.
Save KozhevnikovM/cf42408b02fc74b7d8a2bdc93ecf5aab to your computer and use it in GitHub Desktop.
make swap file
sudo fallocate -l 8G /.swapfile; 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