Files
bobbie-pkm/_Inbox/OpenZFS.md
T

55 lines
848 B
Markdown

---
category:
- "[[Note]]"
- "[[Software]]"
type:
title: OpenZFS
created: 2026-05-14T14:17:36
tags:
- project
---
## resources
- [forum](https://discourse.practicalzfs.com/)
## zfs commands
### zfs snapshot management
list dataset snapshots
```
zfs list -t snapshot pool-name/dataset-name
```
list holds on snapshots
```
zfs holds <pool/dataset>@<snapshot>
```
create hold on snapshot
```
zfs hold <tag> <pool/dataset>@<snapshot>
```
delete hold on snapshot
```
zfs release <tag> <pool/dataset>@<snapshot>
```
delete snapshot
```
zfs destroy <pool/dataset>@<snapshot>
```
### zfs replication (send/receive)
clear partial download on dataset
```
zfs something -A <pool/dataset>
```
## openZFS delegation
[[2026-05-16 0701 Improve Replication Security With OpenZFS Delegation|Improve Replication Security With OpenZFS Delegation]]