0

I ran this hoping to find out a bit about my array (I now know I should have used --detail). But I'm not clear what the --manage option does. It gave no output, and just put me back to the bash prompt.

Do I need to run some command to undo whatever that did?

Codemonkey
  • 1,086
  • 4
  • 19
  • 41

1 Answers1

3

mdadm --manage /dev/md1 does nothing.

The --manage option selects Manage mode (which is the default mode anyway), and the argument /dev/md1 selects the RAID device to manage. The action to perform would come next, but you gave none, so none is performed.

Tilman Schmidt
  • 4,101
  • 12
  • 27