Skip to content

Instantly share code, notes, and snippets.

View vshmoylov's full-sized avatar
🤩
Building some great stuff

Victor Shmoilov vshmoylov

🤩
Building some great stuff
View GitHub Profile
@vshmoylov
vshmoylov / create_swap.sh
Created January 31, 2024 09:08
Create and enable swap
#!/bin/bash
# should be run as root
fallocate -l 1G /swapfile && chmod 600 /swapfile && mkswap /swapfile && swapon /swapfile