README.replace-device-in-array: some minor changes in comments.

This commit is contained in:
2026-04-08 18:02:57 +02:00
parent 0fd038326b
commit 2089eb0428

View File

@@ -8,10 +8,16 @@
## - falls nicht schon vom system suspendiert und als fehlerhaft ## - falls nicht schon vom system suspendiert und als fehlerhaft
## - gekennzeichnet muss das nun passieren. ## - gekennzeichnet muss das nun passieren.
## ##
## mdadm --manage <md-device> --fail <partition-device>
## or
## mdadm -f <md-device> <partition-device>
mdadm -f <md-device> <partition-device> mdadm -f <md-device> <partition-device>
## - remove device fom raid-array ## - remove device fom raid-array
## - ## -
## - mdadm --manage <md-device> --remove <partition-device>
## - or
## - mdadm -r <md-device> <partition-device>
mdadm -r <md-device> <partition-device> mdadm -r <md-device> <partition-device>
2.) Platte tauschen 2.) Platte tauschen
@@ -61,6 +67,9 @@
4.) Partionen dem Raid-Array wieder zufügen 4.) Partionen dem Raid-Array wieder zufügen
# mdadm -a <md-device> <partition-device>
# or
# mdadm --manage <md-device> -a <partition-device>
mdadm -a <md-device> <partition-device> mdadm -a <md-device> <partition-device>
## - ## -