mirror of https://github.com/pikami/sysadmin.git
6 lines
90 B
Bash
6 lines
90 B
Bash
|
#!/bin/sh
|
||
|
fallocate -l 2G /swapfile
|
||
|
chmod 600 /swapfile
|
||
|
mkswap /swapfile
|
||
|
swapon /swapfile
|