How To Install Linux Mint 17.2 on mdadm RAID with a separate boot partition

I was surprised to see that Linux Mint at the latest 17.2 version still has NO mdadm installer option, and worse the installer will not be able to create a proper booting environment even when you do install it.

How to setup mdadm in Linux mint LiveCD

sudo su

apt-get install mdadm

# partition as you need and then create your mdadm devices

# create your SWAP md0

mdadm --create /dev/md0 --level=1 --raid-devices=2 /dev/sda1 /dev/sdb1

# create your boot md1 (remember to use the --metadata=0.90 or it will not be bootable and it must be RAID 1 as RAID 10 cannot be booted

mdadm --create /dev/md1 --level=1 --metadata=0.90 --raid-devices=2 /dev/sda2 /dev/sdb2

# create root mdadm md2

mdadm -create /dev/md2 --level=10 --layout=f2 --raid-devices=2 /dev/sdb3 /dev/sdb3

Run the installer

Double click each mdadm array to create the appropriate partition (eg. md0 is swap, md1 is /boot and md2 is /)

Choose to install the boot loader on sda (it doesn't really matter because it will not succeed or work even if Linux Mint says it did).

 

The Most Crucial Part, to chroot and install the necessary utilities

I admit I spent a few days sorting this out because I have never had a problem in the past normally installing grub 0.97 by using the old manual way.  Linux mint uses the newer grub2 and is more complex/picky but also does it all for you as long as you do it as below.

mount /dev/md2p1 /mnt

# do not forget to mount your /boot or grub-install will NEVER work

mount /dev/md1p1 /mnt/boot

mount=/mnt

for bind in dev sys proc; do

mount -o bind /$bind /$mount/$bind

chroot /mnt

apt-get -y install mdadm grub2

grub-install /dev/sda

grub-install /dev/sdb

#change the grub-install portion to match the physical devices that make up your boot partition and make sure you just point to the raw disk and not a specific partition

#the above last command should do it and get you booting

 

 


Tags:

install, linux, mint, mdadm, raid, partitioni, installer, booting, livecd, sudo, su, apt, partition, devices, swap, md, dev, sda, sdb, metadata, bootable, booted, layout, array, eg, loader, doesn, succeed, crucial, chroot, utilities, sorting, installing, grub, manual, newer, picky, mount, mnt, bind, sys, proc, portion, disk,

Latest Articles

  • How high can a Xeon CPU get?
  • bash fix PATH environment variable "command not found" solution
  • Ubuntu Linux Mint Debian Redhat Youtube Cannot Play HD or 4K videos, dropped frames or high CPU usage with Nvidia or AMD Driver
  • hostapd example configuration for high speed AC on 5GHz using WPA2
  • hostapd how to enable and use WPS to connect wireless devices like printers
  • Dell Server Workstation iDRAC Dead after Firmware Update Solution R720, R320, R730
  • Cloned VM/Server/Computer in Linux won't boot and goes to initramfs busybox Solution
  • How To Add Windows 7 8 10 11 to GRUB Boot List Dual Booting
  • How to configure OpenDKIM on Linux with Postfix and setup bind zonefile
  • Debian Ubuntu 10/11/12 Linux how to get tftpd-hpa server setup tutorial
  • efibootmgr: option requires an argument -- 'd' efibootmgr version 15 grub-install.real: error: efibootmgr failed to register the boot entry: Operation not permitted.
  • Apache Error Won't start SSL Cert Issue Solution Unable to configure verify locations for client authentication SSL Library Error: 151441510 error:0906D066:PEM routines:PEM_read_bio:bad end line SSL Library Error: 185090057 error:0B084009:x509 certif
  • Linux Debian Mint Ubuntu Bridge br0 gets random IP
  • redis requirements
  • How to kill a docker swarm
  • docker swarm silly issues
  • isc-dhcp-server dhcpd how to get longer lease
  • nvidia cannot resume from sleep Comm: nvidia-sleep.sh Tainted: Linux Ubuntu Mint Debian
  • zfs and LUKS how to recover in Linux
  • [error] (28)No space left on device: Cannot create SSLMutex Apache Solution Linux CentOS Ubuntu Debian Mint