sysadmin/performance/swap.sh

6 lines
90 B
Bash

#!/bin/sh
fallocate -l 2G /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile