osd issue after adding node to ceph

Re: osd issue after adding node to ceph ** Start over **

To remove partition table and boot sector the following should be sufficient:
dd if=/dev/zero of=/dev/$DISK bs=1024 count=1
Hi,
but not for gpt-tables - there are an copy on the last blocks.

to overwrite (in this case sdb)
Code:
# echo `cat /sys/block/sdb/size`-34 | bc
625142414
# dd if=/dev/zero of=/dev/sdb bs=512 count=34 skip=625142414
Udo
 
Re: osd issue after adding node to ceph ** Start over **

Hi,
but not for gpt-tables - there are an copy on the last blocks.

to overwrite (in this case sdb)
Code:
# echo `cat /sys/block/sdb/size`-34 | bc
625142414
# dd if=/dev/zero of=/dev/sdb bs=512 count=34 skip=625142414
Udo

does 'ceph-disk zap' do the above?