Storage Architecture


Builds a reliable RAID5 storage array with an ext4 filesystem tuned for high throughput. It uses five drives (~36 TiB usable) with a 512K chunk size, proper stripe alignment, and an internal bitmap to speed up rebuilds. The filesystem is mounted with low‑overhead options to keep performance strong on small‑board hardware while ensuring consistent, predictable behavior.


RAID layer (mdadm)

bash

sudo mdadm --create /dev/md0 \
  --level=5 \
  --raid-devices=5 \
  --chunk=512 \
  --bitmap=internal \
  /dev/sda /dev/sdb /dev/sdc /dev/sdd /dev/sde

Filesystem and mount

Code

UUID=9ce92a73-c4d2-4693-bbc1-68bc21c5d184 /media/plutus ext4 defaults,noatime,nofail 0 2

Rationale