Non Raid - Symbolic links

1

I have 3x 3TB drives and 2x 1TB drives.

I want to use all drives without RAID, but to be shown as a single volume. So that if a drive fails only the information on that failed drive will be lost. Then in turn that drive can be replace with either a smaller or larger drive expanding or contracting the volume. I do not care about redundancy.

Linux.

What can I do?

Lucas

Posted 2013-10-29T02:15:32.087

Reputation: 11

why not use RAID? – Keltari – 2013-10-29T02:22:35.727

Answers

0

Mount each drive separately, and use these mount points for writes in order to send files to particular drives. Then, use aufs to union mount all of your mount points together:

mount -t aufs -o dirs=/mnt1:/mnt2 none /union_mnt

/union_mnt gives you read access to all drives.

wingedsubmariner

Posted 2013-10-29T02:15:32.087

Reputation: 1 432