Creatin RAID and mounting it
Is [[Formatting - Drives]] needed? Do that first, then come back.
See if mdadm is installed or notmdadm
If not, install it
apt install mdadm
Check for all storage drives in systemlsblk
Create the RAID with the drive you are going to usemdadm --create /dev/md999((create your own file name)) --level=5 --raid-devices=4 /dev/sda1 /dev/sdb1 /dev/sdc1 /dev/sdd1
Check to see if the array is in progresscat /proc/mdstat
Check the block ID for the new virtual drive/sblkid