vault backup: 2026-05-16 07:24:14
This commit is contained in:
+23
-2
@@ -2,6 +2,8 @@
|
||||
category:
|
||||
- "[[Note]]"
|
||||
type:
|
||||
- "[[Linux]]"
|
||||
- "[[CLI]]"
|
||||
title: OpenZFS
|
||||
created: 2026-05-14T14:17:36
|
||||
tags:
|
||||
@@ -9,6 +11,8 @@ tags:
|
||||
---
|
||||
## zfs commands
|
||||
|
||||
### zfs snapshot management
|
||||
|
||||
list dataset snapshots
|
||||
```
|
||||
zfs list -t snapshot pool-name/dataset-name
|
||||
@@ -19,7 +23,12 @@ list holds on snapshots
|
||||
zfs holds <pool/dataset>@<snapshot>
|
||||
```
|
||||
|
||||
release hold on snapshot
|
||||
create hold on snapshot
|
||||
```
|
||||
zfs hold <tag> <pool/dataset>@<snapshot>
|
||||
```
|
||||
|
||||
delete hold on snapshot
|
||||
```
|
||||
zfs release <tag> <pool/dataset>@<snapshot>
|
||||
```
|
||||
@@ -27,4 +36,16 @@ 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]]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user