We have a relatively large disk on our Linux machine, 2.5TB in size.
We want to completely format (zero-out) this disk; say the disk is /dev/sdX.
We would like to achieve this with dd, for example:
dd if=/dev/zero of=/dev/sdX bs=1M count=1
My question is: Does dd also support such a formatting (cleaning) of disks with large sizes?
Additionally, what could be the verification method after such dd operation, in order to see if the disk has really been zeroed?