commit 9cf9888d5a60ba61ab3730fb9f18fc88d007bacf parent e49ef63acd7e7accd2f416f267ba693379755ccc Author: pyratebeard <root@pyratebeard.net> Date: Tue, 8 Nov 2022 14:05:57 +0000 updates Diffstat:
M | linux/mdadm.md | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/linux/mdadm.md b/linux/mdadm.md @@ -11,3 +11,9 @@ sudo mdadm --examine /dev/sdb1 sudo mdadm --manage /dev/md127 --re-add /dev/sdb1 # if using same disk sudo mdadm --manage /dev/md127 --add /dev/sdb1 # if using new disk ``` + +* had to run this when one of the disks was offline on boot and the system dropped into maintenance mode +``` +mdadm --stop /dev/md127 +mdadm --assemble --scan +```