Glam Prestige Journal

Bright entertainment trends with youth appeal.

Reading this link, it describes how to make a RAID array out of USB sticks, however it describes the process using Gentoo now I don't know about gentoo and have never used it, but I'm supposing this is possible in Ubuntu if so how?.

2 Answers

Ubuntu uses udev so you don't need to execute the mknod command in those instructions.

As mentioned, mdadm is well documented as doesn't care whether the devices are hard disks, usb drives, or even LVM partitions. Examples:

Create a mirrored partition:

mdadm /dev/md0 --create --level=1 -n 2 /dev/sdb1 /dev/sdc1

4 disk RAID 5:

mdadm /dev/md5 --create --level=5 -n 4 /dev/sdb2 /dev/sdc2 /dev/sdd2 /dev/sde2
2

The guide that you linked will be the same with ubuntu. The raid utility "mdadm" is fairly common and well documented.

You will need to apt-get install mdadm to have this tool available.

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy