Skip to content

Instantly share code, notes, and snippets.

@alexjj
Created April 15, 2015 17:09
Show Gist options
  • Star 23 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save alexjj/4de71ddfae05e974c829 to your computer and use it in GitHub Desktop.
Save alexjj/4de71ddfae05e974c829 to your computer and use it in GitHub Desktop.
Delete all ZFS Snapshots
zfs list -H -o name -t snapshot | xargs -n1 zfs destroy
@gcclinux
Copy link

Recommend to be aware that unless specified a dataset ALL snapshots gets deleted. here is a USER specific example on Ubuntu 20.04:

$ sudo zfs list -H -o name -t snapshot rpool/USERDATA/example | sudo xargs -n1 zfs destroy

@mas90
Copy link

mas90 commented Oct 23, 2020

You can also zfs destroy rpool@%.

foo%bar denotes a range of snapshots from foo to bar; omitting either uses the earliest or latest snapshot respectively.

@ergo3d
Copy link

ergo3d commented Dec 14, 2020

thanks! works after sudo su

@harry-stark
Copy link

So guys a little help here, I deleted all the snapshots cause they were taking up all the space, it worked fine for a while, but now Ubuntu will not boot up showing a sys error "Failed to MARK current zsys boot as successful".Any solutions

@alexjj
Copy link
Author

alexjj commented Dec 21, 2020

I suspect it's how ubuntu does things with zsys and you'd be better off asking on ubuntu forums.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment