Notes to Self

Alex Sokolsky's Notes on Computers and Programming

ZFS Snapshots

To list the snapshots:

zfs list -t snapshot -o name,used,referenced,creation

To list the snapshots of in a specific pool:

zfs list -t snapshot -r boot-pool -o name,used,referenced,creation

Dry-run the snapshot destruction:

zfs destroy -n -v tank/home@aapltm-1659945511

See also zfs-prune-snapshots.