Show disk space - Only see ext4 file system:
df -h -t ext4
Find all files larger than 10 Megabytes:
find / -size +10M -ls
Delete Cardano pool logs older than 1 day
find /opt/cardano/cnode/logs/archive/ -mtime +1 -name "*.json" -print -exec /bin/rm {} \;
https://cardano-community.github.io/guild-operators/
https://github.com/input-output-hk/cardano-node/releases
https://linuxize.com/post/how-to-add-swap-space-on-ubuntu-18-04/