Build a DIY network attached storage with ZFS and Debian
A do it yourself NAS is a lot more resilient than the prebuilt ones you can buy. It will never stop receiving updates or fail in some un-googleable way. These notes describe setting up a NAS from scratch. I decided on a RaidZ2 array (equivelent to old-school RAID6) because I have 5 SSDs and wanted some extra resiliency. I’ll also configure the NFS protocol to make the files accessible over the network....
Deploy a static website with Hugo
This site is generated using Hugo. Configuration is done using yaml and posts are markdown files. Very simple and easy to track in git. Create a blank site Install hugo # snaps are the easiest way to get an updated version of hugo sudo snap install hugo Create a site (this creates a new folder with the site’s name) hugo new site hugo-demo cd hugo-demo Add a theme, I picked PaperMod...