Removing RAID metadata
Версия от 17:21, 26 ноября 2017; Sol (обсуждение | вклад) (Новая страница: «Категория:Общее *nix Delete the metadata is to zero out the last 512 KB of data on the disk. <syntaxhighlight lang="bash"> dd if=/dev/zero of=$Y…»)
Delete the metadata is to zero out the last 512 KB of data on the disk.
dd if=/dev/zero of=$YOUR_DEV bs=512 seek=$(( $(blockdev --getsz $YOUR_DEV) - 1024 )) count=1024
# $YOUR_DEV your dev like /dev/sdb