> ## Content Index
> Fetch the complete content index at: https://ostreff.info/llms.txt
> Use this file to discover other available public pages before exploring further.

# ZFS snapshots
- URL: https://ostreff.info/zfs-snapshots/
- Published: 2023-07-24T10:00:24.000Z
- Updated: 2024-05-06T05:49:17.000Z
- Author: Jordan Ostreff
- Tags: ZFS

After long usage of zfs file system, probably you will finish like me with too much space ocupied by snapshots. Quick way to free this space is to use commands like this:

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

```