RAID Layer


Provides a reliable, high‑capacity RAID5 array with an ext4 filesystem aligned for strong performance and clean rebuilds. The setup uses five drives (~36 TiB usable) with a 512K chunk size, proper RAID alignment, and an internal bitmap to speed up recovery. The ext4 filesystem is tuned for sequential workloads and mounted with lightweight options to keep performance high on small‑board hardware.


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