PiKVM/create-swap.sh

10 lines
164 B
Bash
Raw Normal View History

2024-07-26 23:10:14 -04:00
#!/bin/bash
2024-07-26 23:11:35 -04:00
SIZE="1024"
if [ -n "$1" ]; then SIZE="$1"; fi
dd if=/dev/zero of=/swapfile bs=1m count="$SIZE"
2024-07-26 23:10:14 -04:00
chown 600 /swapfile
mkswap /swapfile
swapon /swapfile