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
@alexjj
Copy link
Author

alexjj commented Jun 26, 2017

add -r poolname after snapshot to pick a particular dataset.

@TheMayhem6328
Copy link

Doesn't work on Ubuntu 20.04
cannot destroy snapshots: permission denied

@alexjj
Copy link
Author

alexjj commented May 1, 2020

Are you root?

@TheMayhem6328
Copy link

TheMayhem6328 commented May 1, 2020

I tried with sudo and even sudo -s but it didn't work
I tried on Ubuntu 20.04 but still it doesn't work

@alexjj
Copy link
Author

alexjj commented May 1, 2020

Switch to root first. sudo doesn't travel down pipes without tees or something.

sudo -i
zfs list -H -o name -t snapshot | xargs -n1 zfs destroy

@dr3mro
Copy link

dr3mro commented Jun 12, 2020

zfs list -H -o name -t snapshot | xargs -n1 sudo zfs destroy

works for me on 20.04

@TheMayhem6328
Copy link

TheMayhem6328 commented Jun 12, 2020 via email

@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