Cannot delete ZFS snapshot
While Deleting to delete a snapshot, i typed:
zpool destroy zfsdiskpool@Sat
and got:
cannot open 'zfsdiskpool@Sat': invalid character '@' in pool name
This is because to delete snapshots in ZFS, you should use ‘zfs destroy’ instead of ‘zpool destroy’. DOH!
zfs destroy zfsdiskpool@Sat
Thanks. I was getting the error and was about to jump into IRC for it but decided to give google a try and found your post.