Random useful tech stuffs I write to remind myself. Hopefully useful for you!
```# Check current swap size cat /proc/swapssudo swapoff -a# Create new swap filesudo fallocate -l 16G /swapfilesudo chmod 600 /swapfilesudo mkswap /swapfilesudo swapon /swapfile# Check againcat /proc/swaps
```
No comments:
Post a Comment