⬅️ **[[$-Linux|Linux]]**
***
# Swap Size erhöhen
[Increase Available Swap Space swap file](https://www.linux.com/learn/increase-your-available-swap-space-swap-file)
Increase the swap file by adding another file
```
swapon -s # shows active swap
free -m # shows memory and swap space
sudo dd if=/dev/zero of=/opt/mount1/extraswap bs=1M count=8096
sudo mkswap /extraswap
sudo swapon /extraswap
swapon -s
Add it to /etc/fstab:
/extraswap none swap sw 0 0
```