Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Add swap to extend RAM before installing PostgreSQL
# Check for existing swap sudo swapon --show # Create a 2 GB swap file sudo fallocate -l 2G /swapfile # Secure and enable it sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile
/etc/fstab
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
sudo swapon --show free -h