Files
2025-01-02 21:03:29 +01:00

12 lines
202 B
Bash
Executable File

#!/bin/bash
#
fallocate -l 8G /swap8file
chmod 600 /swap8file
mkswap /swap8file
swapon /swap8file
echo "/swap8file swap swap defaults 0 0" | tee -a /etc/fstab
mount -a
systemctl daemon-reload