1

In the article it is not clear where the partitions "live" ?
There are 6 partitions: from boot-fs (md0) to bulk-data-fs (md6).
It looks like all the partitions are on the HDD ?? Shouldn't some of the partitions be on the SSD (like /) and other on the HDD (like /swap, /home and /work-data) ?

Dor
  • 546

1 Answers1

0
  • /boot (md0) is on SSD and iHDD and eHDD (via RAID 1)
  • / (md1) is on SSD and iHDD and eHDD (via RAID 1)
  • /var (md2) is on iHDD and eHDD (via RAID 1)
  • /swap (md3) is on iHDD and eHDD (via RAID 1)
  • /home (md4) is on SSD and iHDD and eHDD (via RAID 1)
  • /mnt/work-data (md5) is on SSD and iHDD and eHDD (via RAID 1)
  • /mnt/bulk-data (md6) is on iHDD and eHDD (via RAID 1)

So:

  1. internal SSD as SSD = /boot (md0) + / (md1) + /home (md4) + /mnt/work-data (md5)
  2. internal HDD as iHDD = /var (md2) + /swap (md3) + /mnt/bulk-data (md6) + RAID 1 of [/boot, /, /home] (md10) + RAID 1 of [/mnt/work-data] (md50)
  3. external HDD as eHDD = RAID 1 of [/var, /swap, /mnt/bulk-data] + RAID 1 of [/boot, /, /home] + RAID 1 of [/mnt/work-data]
StephR
  • 1
  • 1