krlaboratories

how speedly make swapfile on VPS linux

Feb 6th, 2022 (edited)
574
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.16 KB | None | 0 0
  1. dd if=/dev/zero of=/swapfile count=2048 bs=1M
  2. chmod 600 /swapfile
  3. mkswap /swapfile
  4. swapon /swapfile
  5. sudo echo "/swapfile none swap sw 0 0" >> /etc/fstab
  6.  
  7. profit.
Add Comment
Please, Sign In to add comment