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

  • 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
  • Save money on bandwidth by disabling reflective rpc queries in Linux CentOS RHEL Ubuntu Debian
  • How to access a disk with bad superblock Linux Ubuntu Debian Redhat CentOS ext3 ext4
  • ImageMagick error convert solution - convert-im6.q16: cache resources exhausted
  • PTY allocation request failed on channel 0 solution
  • docker error not supported as upperdir failed to start daemon: error initializing graphdriver: driver not supported
  • Migrated Linux Ubuntu Mint not starting services due to broken /var/run and dbus - Failed to connect to bus: No such file or directory solution