From 742e64cfec6c31e857ba7a530a0aac5baf8cc0d5 Mon Sep 17 00:00:00 2001 From: Matthew Pomes Date: Tue, 23 Sep 2025 21:04:38 -0500 Subject: [PATCH] Add notes for ZFS setup --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8075c2d --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# My personal homelab setup + +Currently running on a Debian host + +## Raw data + +Raw data is stored in `/data`, a ZFS data set + +```bash +# Install ZFS +apt update +apt install linux-headers-amd64 +apt install zfsutils-linux zfs-dkms + +zpool create hdd raidz2 +mkdir -p /data +zfs create -o mountpoint=/data hdd/data +zfs set compression=on hdd/data +``` +