Skip to content

Instantly share code, notes, and snippets.

@bcfurtado
Last active September 8, 2021 20:09
Show Gist options
  • Save bcfurtado/b7c3e9d9778555aeecbc8e9d18ba6ed9 to your computer and use it in GitHub Desktop.
Save bcfurtado/b7c3e9d9778555aeecbc8e9d18ba6ed9 to your computer and use it in GitHub Desktop.
ubuntu 20 - clean up zfs snapshots

List available space

$ zpool list

Delete old snapshots

$ zfs list  | grep legacy | awk -F ' ' '{print $1}' | xargs -n 1 sudo zfs destroy -R
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment