1. Go into your motherboard’s BIOS and turn on the RAID support
2. Go into your RAID’s BIOS and set-up your RAID partition
3. Boot the Live CD
4. Open Terminal and type the following:
- Code: Select all
sudo apt-get install dmraid
5. Once completed the above installation, type the following:
- Code: Select all
sudo modprobe dm-raid4-5
6. Now it’s time to install Linux Mint
7. Upon reaching the partition menu, select your RAID partition
8. Upon reaching the install confirmation menu, click on the Advanced button and uncheck install boot loader
9. Once the installation is completed, check your partitions by typing the following in Terminal:
- Code: Select all
cd /dev/mapper
and then:
- Code: Select all
dir
10. Copy the partition without a number; I will use dabdgddgLinuxFTW as an example
11. Now we have to see how the partitions are set-up, so type the following in Terminal:
- Code: Select all
sudo fdisk dabdgddgLinuxFTW
12. Type p in Terminal to see the actual partitions:
13. Note and copy which partition is the Linux partition (the other ones you will see is extended and swap); I will usedabdgddgLinuxFTW1 as an example
14. Type q in Terminal to exit fdisk
15. Now we have to mount the RAID partition in order to set-up grub by typing the following in Terminal:
- Code: Select all
sudo mount dabdgddgLinuxFTW1 /target
and
- Code: Select all
sudo mount --bind /dev /target/dev
and
- Code: Select all
sudo mount -t proc proc /target/proc
and
- Code: Select all
sudo mount -t sysfs sys /target/sys
16. Now we have to set-up grub by typing the following in Terminal:
- Code: Select all
sudo chroot /target
and
- Code: Select all
apt-get install dmraid
and
- Code: Select all
apt-get install grub
and
- Code: Select all
mkdir /boot/grub
and
- Code: Select all
cp /usr/lib/grub/i386-pc/* /boot/grub
and
- Code: Select all
grub --no-curses
and
- Code: Select all
device (hd0) /dev/mapper/dabdgddgLinuxFTW
and
- Code: Select all
root (hd0,0)
and
- Code: Select all
setup (hd0)
and
- Code: Select all
quit
and
- Code: Select all
update-grub
(press y when asked to confirm)
17. Finally reboot.





