I have a pool on a system that can only be imported as read-only (it has a feature flag enabled that FreeBSD doesn't support). However, I'd ultimately like to destroy it and recreate it under FreeBSD, but whenever you
Is the best way to work around this just to
zpool destroy
a read-only pool it acts like you've exported it, not destroyed it.Is the best way to work around this just to
dd count=10 bs=1m if=/dev/zero of=/dev/adaX
? As I recall the pool information is stored at the end of the disk, so I assume a seek is necessary first?