Advertisement
yuch4n

How to make swap file

Jun 17th, 2015
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.10 KB | None | 0 0
  1. sudo fallocate -l 256M /swapfile
  2. sudo chmod 600 /swapfile
  3. sudo mkswap /swapfile
  4. sudo swapon /swapfile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement