現在のステータスを見たい

# mdadm --detail /dev/md127 
/dev/md127:
           Version : 1.2
     Creation Time : Thu Jun  8 03:00:15 2023
        Raid Level : raid1
        Array Size : 244066432 (232.76 GiB 249.92 GB)
     Used Dev Size : 244066432 (232.76 GiB 249.92 GB)
      Raid Devices : 2
     Total Devices : 2
       Persistence : Superblock is persistent

     Intent Bitmap : Internal

       Update Time : Thu Jun  8 04:56:13 2023
             State : clean 
    Active Devices : 2
   Working Devices : 2
    Failed Devices : 0
     Spare Devices : 0

Consistency Policy : bitmap

              Name : ubuntu-template:0  (local to host ubuntu-template)
              UUID : 38a5bb6c:fab528f0:52791e65:e87a857a
            Events : 3198

    Number   Major   Minor   RaidDevice State
       0       8       16        0      active sync   /dev/sdb
       1       8       32        1      active sync   /dev/sdc

設定を消したいのだけれど …

正解は???

もう、よくわからないので、とりあえずmdadmの状況モニタだけは止めて、 こわしてみましょう

systemdの設定のなかでmdadm関係は、これらだけらしい。

# grep -lR mdadm /etc/systemd/
/etc/systemd/system/mdmonitor.service.wants/mdcheck_start.timer
/etc/systemd/system/mdmonitor.service.wants/mdmonitor-oneshot.timer
/etc/systemd/system/mdmonitor.service.wants/mdcheck_continue.timer

とりあえず

# systemd stop mdmonitor

で止められたみたい。

だいたい、 こういう情報はHDDの先頭にあると相場が決まっているので、 頭の4GBくらいを消してしまおうじゃないか

# dd if=/dev/zero of=/dev/sdb bs=1M count=4096
# dd if=/dev/zero of=/dev/sdc bs=1M count=4096

リファレンス