vault backup: 2026-05-15 20:44:14

This commit is contained in:
2026-05-15 20:44:15 +01:00
parent d8c22e8c1f
commit fcc7666a7c
2 changed files with 20 additions and 6 deletions
+6 -6
View File
@@ -162,7 +162,7 @@
} }
} }
], ],
"currentTab": 10 "currentTab": 4
} }
], ],
"direction": "vertical" "direction": "vertical"
@@ -236,7 +236,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "_Inbox/Linux CLI Config and Commands.md", "file": "_Inbox/OpenZFS.md",
"collapseAll": true, "collapseAll": true,
"extraContext": false, "extraContext": false,
"sortOrder": "byCreatedTime", "sortOrder": "byCreatedTime",
@@ -246,7 +246,7 @@
"unlinkedCollapsed": true "unlinkedCollapsed": true
}, },
"icon": "links-coming-in", "icon": "links-coming-in",
"title": "Backlinks for Linux CLI Config and Commands" "title": "Backlinks for OpenZFS"
} }
}, },
{ {
@@ -369,13 +369,13 @@
"obsidian-git:Open Git source control": false "obsidian-git:Open Git source control": false
} }
}, },
"active": "e69ab0bcda1898c4", "active": "eac10c8aff866288",
"lastOpenFiles": [ "lastOpenFiles": [
"Daily Notes/2026-05-15.md", "_Inbox/Sanoid and Syncoid Setup.md",
"_Inbox/Linux CLI Config and Commands.md", "_Inbox/Linux CLI Config and Commands.md",
"Daily Notes/2026-05-15.md",
"_Inbox/2026-05-15 0719 on docker compose, volumes, and bind mounts.md", "_Inbox/2026-05-15 0719 on docker compose, volumes, and bind mounts.md",
"_Inbox/OpenZFS.md", "_Inbox/OpenZFS.md",
"_Inbox/Sanoid and Syncoid Setup.md",
"_Inbox/2026-03-31 1416 powering off the hyper-v machine for the last time.md", "_Inbox/2026-03-31 1416 powering off the hyper-v machine for the last time.md",
"References/Toshiba 3TB HDD High-Performance P300.md", "References/Toshiba 3TB HDD High-Performance P300.md",
"_Inbox/2026-05-15 0538 failing drive testing.md", "_Inbox/2026-05-15 0538 failing drive testing.md",
+14
View File
@@ -14,3 +14,17 @@ list dataset snapshots
zfs list -t snapshot pool-name/dataset-name zfs list -t snapshot pool-name/dataset-name
``` ```
list holds on snapshots
```
zfs holds <pool/dataset>@<snapshot>
```
release hold on snapshot
```
zfs release <tag> <pool/dataset>@<snapshot>
```
delete snapshot
```
zfs destroy <pool/dataset>@<snapshot>
```