Skip to content

Instantly share code, notes, and snippets.

@alexjj
Created April 15, 2015 17:09
Show Gist options
  • Select an option

  • Save alexjj/4de71ddfae05e974c829 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

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

mas90 commented Oct 23, 2020

Copy link
Copy Markdown

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

ergo3d commented Dec 14, 2020

Copy link
Copy Markdown

thanks! works after sudo su

@harry-stark

Copy link
Copy Markdown

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

alexjj commented Dec 21, 2020

Copy link
Copy Markdown
Author

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