Problems and Solutions - marco1475/linux-htpc GitHub Wiki

#Errors

Error: mdmonitor.service: Failed at step EXEC spawning /usr/lib/systemd/scripts/mdadm_env.sh: No such file or directory.
Explanation: This error happens because of an Arch packaging error, where /usr/lib/systemd/scripts/mdadm_env.sh is not part of the Arch installer.
Solution: Create a dummy /usr/lib/systemd/scripts/mdadm_env.sh file containing only #!/bin/bash and make it executable (chmod +x).

Error: HSW/BDW HD-audio HDMO/DP requires binding with gfx driver
Explanation: This error is due to either disabled iGPU Multi-Monitor setting in BIOS or the nomodesetting kernel boot flag.
Solution: In progress.

#Problems

##Changing RAID Array Label

mdadm --stop /dev/md0
mdadm --assemble --name=raid1_data /dev/md0 /dev/sdb1 /dev/sdc1

ARRAY /dev/md0 metadata=1.2 name=babylon5:raid1_data UUID=e0c4f855:ecd99159:bb5eef15:87b57366
  • Also re-create the initramfs image.