Partition 2TB drives and add to raid6 array
for d in g h i j k ; do echo "/dev/sd${d}" ; sgdisk -n 0:0:3907029134 -t 0:0xfd00 /dev/sd$d ; done
mdadm --create --verbose /dev/md6 --level=6 --chunk=1M --raid-devices=5 /dev/sdg1 /dev/sdh1 /dev/sdi1 /dev/sdj1 /dev/sdk1
Debian/Ubuntu systems: Run the command /usr/share/mdadm/checkarray -x --all
as root. This will cancel all running sync checks.