vault backup: 2026-05-16 07:24:14

This commit is contained in:
2026-05-16 07:24:14 +01:00
parent a1c5fbac46
commit ff9d78ea31
26 changed files with 2424 additions and 2089 deletions
+6 -3
View File
@@ -2,6 +2,7 @@
"copyLinkToElemenetAnchorTo100": false, "copyLinkToElemenetAnchorTo100": false,
"copyFrameLinkByName": false, "copyFrameLinkByName": false,
"disableDoubleClickTextEditing": false, "disableDoubleClickTextEditing": false,
"phoneFooterSafeAreaPadding": false,
"folder": "Excalidraw", "folder": "Excalidraw",
"cropFolder": "", "cropFolder": "",
"annotateFolder": "", "annotateFolder": "",
@@ -29,6 +30,7 @@
"annotateSuffix": "", "annotateSuffix": "",
"annotatePrefix": "annotated_", "annotatePrefix": "annotated_",
"annotatePreserveSize": false, "annotatePreserveSize": false,
"displaySVGInPreview": false,
"previewImageType": "SVGIMG", "previewImageType": "SVGIMG",
"renderingConcurrency": 3, "renderingConcurrency": 3,
"allowImageCache": true, "allowImageCache": true,
@@ -42,6 +44,7 @@
"isLeftHanded": false, "isLeftHanded": false,
"desktopUIMode": "full", "desktopUIMode": "full",
"tabletUIMode": "compact", "tabletUIMode": "compact",
"phoneUIMode": "mobile",
"iframeMatchExcalidrawTheme": true, "iframeMatchExcalidrawTheme": true,
"matchTheme": true, "matchTheme": true,
"matchThemeAlways": false, "matchThemeAlways": false,
@@ -123,8 +126,9 @@
"mdBorderColor": "Black", "mdBorderColor": "Black",
"mdCSS": "", "mdCSS": "",
"scriptEngineSettings": {}, "scriptEngineSettings": {},
"previousRelease": "2.19.0", "previousRelease": "2.22.3",
"showReleaseNotes": true, "showReleaseNotes": true,
"excalidrawMasteryPromoCollapsed": false,
"compareManifestToPluginVersion": true, "compareManifestToPluginVersion": true,
"showNewVersionNotification": true, "showNewVersionNotification": true,
"latexBoilerplate": "\\color{blue}", "latexBoilerplate": "\\color{blue}",
@@ -813,6 +817,5 @@
"alignment": "center", "alignment": "center",
"margin": "normal" "margin": "normal"
}, },
"disableContextMenu": false, "disableContextMenu": false
"phoneUIMode": "mobile"
} }
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"id": "obsidian-excalidraw-plugin", "id": "obsidian-excalidraw-plugin",
"name": "Excalidraw", "name": "Excalidraw",
"version": "2.20.6", "version": "2.22.3",
"minAppVersion": "1.5.7", "minAppVersion": "1.5.7",
"description": "Sketch Your Mind. An Obsidian plugin to edit and view Excalidraw drawings. Enter the world of 4D Visual PKM.", "description": "Sketch Your Mind. An Obsidian plugin to edit and view Excalidraw drawings. Enter the world of 4D Visual PKM.",
"author": "Zsolt Viczian", "author": "Zsolt Viczian",
File diff suppressed because one or more lines are too long
+258 -295
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -6,5 +6,5 @@
"description": "Integrate Git version control with automatic backup and other advanced features.", "description": "Integrate Git version control with automatic backup and other advanced features.",
"isDesktopOnly": false, "isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent", "fundingUrl": "https://ko-fi.com/vinzent",
"version": "2.38.2" "version": "2.38.3"
} }
+20 -25
View File
@@ -8,15 +8,6 @@
} }
} }
.git-signs-gutter {
.cm-gutterElement {
/* Needed to align the sign properly for different line heigts. Such as
* when having a heading or list item.
*/
padding-top: 0 !important;
}
}
.workspace-leaf-content[data-type="git-view"] .button-border { .workspace-leaf-content[data-type="git-view"] .button-border {
border: 2px solid var(--interactive-accent); border: 2px solid var(--interactive-accent);
border-radius: var(--radius-s); border-radius: var(--radius-s);
@@ -108,7 +99,7 @@
display: flex; display: flex;
} }
.git-tools .buttons > * { .git-tools .buttons > * {
padding: 0 0; padding: 0;
height: auto; height: auto;
} }
@@ -175,7 +166,7 @@ which itself is adapted from the diff2html library with the following original l
--git-change-bg: #ffd55840; --git-change-bg: #ffd55840;
--git-selected: #3572b0; --git-selected: #3572b0;
--git-delete: #c33; --git-delete: #cc3333;
--git-insert: #399839; --git-insert: #399839;
--git-change: #d0b44c; --git-change: #d0b44c;
--git-move: #3572b0; --git-move: #3572b0;
@@ -538,13 +529,24 @@ which itself is adapted from the diff2html library with the following original l
.d2h-diff-tbody { .d2h-diff-tbody {
position: relative; position: relative;
} }
/* My additions */
.cm-merge-revert {
width: 4em;
}
/* Ensure that merge revert markers are positioned correctly */
.cm-merge-revert > * {
position: absolute;
background-color: var(--background-secondary);
display: flex;
}
} }
/* ====================== Line Authoring Information ====================== */ /* ====================== Line Authoring Information ====================== */
.cm-gutterElement.obs-git-blame-gutter { .cm-gutterElement.obs-git-blame-gutter {
/* Add background color to spacing inbetween and around the gutter for better aesthetics */ /* Add background color to spacing inbetween and around the gutter for better aesthetics */
border-width: 0px 2px 0.2px 2px; border-width: 0px 2px 0.2px;
border-style: solid; border-style: solid;
border-color: var(--background-secondary); border-color: var(--background-secondary);
background-color: var(--background-secondary); background-color: var(--background-secondary);
@@ -557,7 +559,7 @@ which itself is adapted from the diff2html library with the following original l
font-family: monospace; font-family: monospace;
height: 100%; /* ensure, that age-based background color occupies entire parent */ height: 100%; /* ensure, that age-based background color occupies entire parent */
text-align: right; text-align: right;
padding: 0px 6px 0px 6px; padding: 0px 6px;
white-space: pre; /* Keep spaces and do not collapse them. */ white-space: pre; /* Keep spaces and do not collapse them. */
} }
@@ -602,6 +604,11 @@ which itself is adapted from the diff2html library with the following original l
.git-signs-gutter { .git-signs-gutter {
.cm-gutterElement { .cm-gutterElement {
display: grid; display: grid;
/* Needed to align the sign properly for different line heigts. Such as
* when having a heading or list item.
*/
padding-top: 0 !important;
} }
} }
@@ -669,18 +676,6 @@ div:hover > .git-gutter-marker.git-changedelete {
opacity: 0.5; opacity: 0.5;
} }
.git-diff {
.cm-merge-revert {
width: 4em;
}
/* Ensure that merge revert markers are positioned correctly */
.cm-merge-revert > * {
position: absolute;
background-color: var(--background-secondary);
display: flex;
}
}
/* Prevent shifting of the editor when git signs gutter is the only gutter present */ /* Prevent shifting of the editor when git signs gutter is the only gutter present */
.cm-gutters.cm-gutters-before:has(> .git-signs-gutter:only-child) { .cm-gutters.cm-gutters-before:has(> .git-signs-gutter:only-child) {
margin-inline-end: 0; margin-inline-end: 0;
+1 -1
View File
@@ -237,7 +237,7 @@
"devMode": false, "devMode": false,
"templateFolderPath": "Templates", "templateFolderPath": "Templates",
"announceUpdates": "all", "announceUpdates": "all",
"version": "2.11.0", "version": "2.12.0",
"globalVariables": {}, "globalVariables": {},
"onePageInputEnabled": false, "onePageInputEnabled": false,
"disableOnlineFeatures": true, "disableOnlineFeatures": true,
+63 -59
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"id": "quickadd", "id": "quickadd",
"name": "QuickAdd", "name": "QuickAdd",
"version": "2.11.0", "version": "2.12.0",
"minAppVersion": "1.11.4", "minAppVersion": "1.11.4",
"description": "Quickly add new pages or content to your vault.", "description": "Quickly add new pages or content to your vault.",
"author": "Christian B. B. Houmann", "author": "Christian B. B. Houmann",
File diff suppressed because one or more lines are too long
+9 -6
View File
@@ -48,6 +48,7 @@
"enableTimeblocking": true, "enableTimeblocking": true,
"defaultShowTimeblocks": true, "defaultShowTimeblocks": true,
"defaultTimeblockColor": "#6366f1", "defaultTimeblockColor": "#6366f1",
"timeblockAttachmentSearchOrder": "name-asc",
"nowIndicator": true, "nowIndicator": true,
"selectMirror": true, "selectMirror": true,
"weekNumbers": false, "weekNumbers": false,
@@ -146,7 +147,8 @@
"icsEventId": "ics-event-id", "icsEventId": "ics-event-id",
"icsEventTag": "ics-event", "icsEventTag": "ics-event",
"googleCalendarEventId": "googleCalendarEventId", "googleCalendarEventId": "googleCalendarEventId",
"reminders": "reminders" "reminders": "reminders",
"sortOrder": "tasknotes_manual_order"
}, },
"customStatuses": [ "customStatuses": [
{ {
@@ -312,7 +314,7 @@
"googleCalendarSyncTokens": {}, "googleCalendarSyncTokens": {},
"enabledMicrosoftCalendars": [], "enabledMicrosoftCalendars": [],
"microsoftCalendarSyncTokens": {}, "microsoftCalendarSyncTokens": {},
"lastSeenVersion": "4.4.0", "lastSeenVersion": "4.7.2",
"modalFieldsConfig": { "modalFieldsConfig": {
"version": 1, "version": 1,
"fields": [ "fields": [
@@ -458,10 +460,9 @@
}, },
"pomodoroState": { "pomodoroState": {
"isRunning": false, "isRunning": false,
"timeRemaining": 5400, "timeRemaining": 5400
"nextSessionType": "work"
}, },
"lastPomodoroDate": "2026-03-01", "lastPomodoroDate": "2026-05-15",
"oauthConnections": {}, "oauthConnections": {},
"lastSelectedTaskPath": "Notes/Access to HE Diploma Applied Biochemistry.md", "lastSelectedTaskPath": "Notes/Access to HE Diploma Applied Biochemistry.md",
"pomodoroMobileSidebar": "tab", "pomodoroMobileSidebar": "tab",
@@ -485,5 +486,7 @@
"defaultEventDuration": 60, "defaultEventDuration": 60,
"includeObsidianLink": true, "includeObsidianLink": true,
"defaultReminderMinutes": null "defaultReminderMinutes": null
} },
"taskModalTabMovesFocus": true,
"enableDebugLogging": false
} }
+735 -999
View File
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -1,8 +1,8 @@
{ {
"id": "tasknotes", "id": "tasknotes",
"name": "TaskNotes", "name": "TaskNotes",
"version": "4.4.0", "version": "4.7.2",
"minAppVersion": "1.10.1", "minAppVersion": "1.12.2",
"description": "Note-based task management with calendar, pomodoro and time-tracking integration.", "description": "Note-based task management with calendar, pomodoro and time-tracking integration.",
"author": "Callum Alpass", "author": "Callum Alpass",
"authorUrl": "https://github.com/callumalpass", "authorUrl": "https://github.com/callumalpass",
+1194 -585
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
+9 -3
View File
@@ -1,11 +1,17 @@
{ {
"id": "templater-obsidian", "id": "templater-obsidian",
"name": "Templater", "name": "Templater",
"version": "2.18.1", "version": "2.20.4",
"description": "Create and use templates", "description": "Advanced templating and automation using handlebars-like syntax.",
"minAppVersion": "1.5.0", "minAppVersion": "1.12.2",
"author": "SilentVoid", "author": "SilentVoid",
"authorUrl": "https://github.com/SilentVoid13", "authorUrl": "https://github.com/SilentVoid13",
"fundingUrl": {
"GitHub Sponser (Zachatoo, maintainer)": "https://github.com/sponsors/Zachatoo",
"Ko-fi (Zachatoo, maintainer)": "https://ko-fi.com/zachatoo",
"GitHub Sponser (SilentVoid13, creator)": "https://github.com/sponsors/SilentVoid13",
"Paypal (SilentVoid13, creator)": "https://www.paypal.com/donate?hosted_button_id=U2SRGAFYXT32Q"
},
"helpUrl": "https://silentvoid13.github.io/Templater/", "helpUrl": "https://silentvoid13.github.io/Templater/",
"isDesktopOnly": false "isDesktopOnly": false
} }
+1 -1
View File
@@ -221,6 +221,6 @@ textarea.templater-prompt-input:focus {
} }
li.CodeMirror-hint-active { li.CodeMirror-hint-active {
background: #08f; background: #0088ff;
color: white; color: white;
} }
+33 -69
View File
@@ -27,12 +27,12 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "_Inbox/HGST Ultrastar 7K6000 Series 4TB SAS HDD (x10).md", "file": "Categories/Products.md",
"mode": "source", "mode": "source",
"source": false "source": false
}, },
"icon": "lucide-file", "icon": "lucide-file",
"title": "HGST Ultrastar 7K6000 Series 4TB SAS HDD (x10)" "title": "Products"
} }
}, },
{ {
@@ -77,34 +77,6 @@
"title": "OpenZFS" "title": "OpenZFS"
} }
}, },
{
"id": "1d04d001d23741ea",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "_Inbox/2026-03-31 1416 powering off the hyper-v machine for the last time.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "2026-03-31 1416 powering off the hyper-v machine for the last time"
}
},
{
"id": "53c932e292eba1ed",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "_Inbox/2026-05-14 2122 thinkstation zfs pool resilvering.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "2026-05-14 2122 thinkstation zfs pool resilvering"
}
},
{ {
"id": "c87f785f64257ab9", "id": "c87f785f64257ab9",
"type": "leaf", "type": "leaf",
@@ -119,32 +91,18 @@
"title": "Seagate IronWolf 4TB HDD ST4000VNZ06" "title": "Seagate IronWolf 4TB HDD ST4000VNZ06"
} }
}, },
{
"id": "e0a6beb03c60d388",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "_Inbox/2026-05-15 0538 failing drive testing.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "2026-05-15 0538 failing drive testing"
}
},
{ {
"id": "ac09197d72c8a3b5", "id": "ac09197d72c8a3b5",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "_Inbox/2026-05-15 0719 on docker compose, volumes, and bind mounts.md", "file": "_Inbox/Docker.md",
"mode": "source", "mode": "source",
"source": false "source": false
}, },
"icon": "lucide-file", "icon": "lucide-file",
"title": "2026-05-15 0719 on docker compose, volumes, and bind mounts" "title": "Docker"
} }
}, },
{ {
@@ -162,7 +120,7 @@
} }
} }
], ],
"currentTab": 4 "currentTab": 1
} }
], ],
"direction": "vertical" "direction": "vertical"
@@ -236,7 +194,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "_Inbox/OpenZFS.md", "file": "Categories/Products.md",
"collapseAll": true, "collapseAll": true,
"extraContext": false, "extraContext": false,
"sortOrder": "byCreatedTime", "sortOrder": "byCreatedTime",
@@ -246,7 +204,7 @@
"unlinkedCollapsed": true "unlinkedCollapsed": true
}, },
"icon": "links-coming-in", "icon": "links-coming-in",
"title": "Backlinks for OpenZFS" "title": "Backlinks for Products"
} }
}, },
{ {
@@ -338,8 +296,7 @@
"title": "Source Control" "title": "Source Control"
} }
} }
], ]
"currentTab": 7
} }
], ],
"direction": "horizontal", "direction": "horizontal",
@@ -367,25 +324,40 @@
"random-note:Open random note": false, "random-note:Open random note": false,
"audio-recorder:Start/stop recording": false, "audio-recorder:Start/stop recording": false,
"command-palette:Open command palette": false, "command-palette:Open command palette": false,
"obsidian-git:Open Git source control": false "obsidian-git:Open Git source control": false,
"tasknotes:Open mini calendar view": false,
"tasknotes:Open calendar view": false,
"tasknotes:Open tasks view": false,
"tasknotes:Open agenda view": false,
"tasknotes:Open Kanban board": false,
"tasknotes:Open Pomodoro timer": false,
"tasknotes:Open Pomodoro statistics": false
} }
}, },
"active": "dbeb63838b672f45", "active": "59d07d4f61e1f53d",
"lastOpenFiles": [ "lastOpenFiles": [
"_Inbox/Sanoid and Syncoid Setup.md", "_Inbox/HGST Ultrastar 7K6000 Series 4TB SAS HDD (x10).md",
"_Inbox/Linux CLI Config and Commands.md", "Categories/Products.md",
"Daily Notes/2026-05-15.md", "_Inbox/Seagate IronWolf 4TB HDD ST4000VNZ06.md",
"_Inbox/2026-05-15 0719 on docker compose, volumes, and bind mounts.md",
"_Inbox/OpenZFS.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", "_Inbox/Docker.md",
"_Inbox/2026-05-15 0538 failing drive testing.md", "_Inbox/2026-05-15 0538 failing drive testing.md",
"_Inbox/2026-05-14 2122 thinkstation zfs pool resilvering.md", "_Inbox/2026-05-14 2122 thinkstation zfs pool resilvering.md",
"_Inbox/Seagate IronWolf 4TB HDD ST4000VNZ06.md", "_Inbox/[[docker.md",
"_Inbox/Linux CLI Config and Commands.md",
"Templates/03 Note Template.md",
"Templates/04 Library Template.md",
"Templates/02 Topic Template.md",
"Templates/01 Category Template.md",
"_Inbox/OpenZFS.md",
"_Inbox/2026-05-16 0701 Improve Replication Security With OpenZFS Delegation.md",
"Categories/Note.md",
"_Inbox/Sanoid and Syncoid Setup.md",
"Daily Notes/2026-05-15.md",
"References/Toshiba 3TB HDD High-Performance P300.md",
"Attachments/Pasted image 20260515052243.png", "Attachments/Pasted image 20260515052243.png",
"Attachments/Pasted image 20260515052130.png", "Attachments/Pasted image 20260515052130.png",
"Attachments/Pasted image 20260515050434.png", "Attachments/Pasted image 20260515050434.png",
"Categories/Products.md",
"References/Toshiba 3TB HDD Low-Energy E300.md", "References/Toshiba 3TB HDD Low-Energy E300.md",
"_Inbox/2026-05-14 0946 HDD SMART report.md", "_Inbox/2026-05-14 0946 HDD SMART report.md",
"_Inbox/Lenovo ThinkStation P520.md", "_Inbox/Lenovo ThinkStation P520.md",
@@ -393,14 +365,6 @@
"_Inbox/2026-05-12 1456 faulty drive or laptop.md", "_Inbox/2026-05-12 1456 faulty drive or laptop.md",
"Daily Notes/2026-05-14.md", "Daily Notes/2026-05-14.md",
"_Inbox/2026-05-14 0949 hdd smart report.md", "_Inbox/2026-05-14 0949 hdd smart report.md",
"Notes/My Computer Storage Devices hdd ssd.md",
"_Inbox/HGST Ultrastar 7K6000 Series 4TB SAS HDD (x10).md",
"_Inbox/2026-05-14 1311 pve-shug9 hdd smart tests.md",
"References/Western Digital 2.0 TB HDD WD20EARX 889.md",
"References/Western Digital 2.0 TB HDD WD20EARX 879.md",
"References/Western Digital 2.0 TB HDD WD20EARX 863.md",
"References/Western Digital 2.0 TB HDD WD20EZRZ.md",
"References/Toshiba 2TB HDD DT01ACA200.md",
"Attachments/ThinkCentre_M720_Tiny_Spec.pdf", "Attachments/ThinkCentre_M720_Tiny_Spec.pdf",
"Attachments/PXL_20260512_135458828.jpg", "Attachments/PXL_20260512_135458828.jpg",
"Attachments/PXL_20260512_130415266.jpg", "Attachments/PXL_20260512_130415266.jpg",
+2
View File
@@ -1,6 +1,8 @@
--- ---
created: <% tp.frontmatter.created || tp.date.now("YYYY-MM-DD[T]HH:mm:ss") %> created: <% tp.frontmatter.created || tp.date.now("YYYY-MM-DD[T]HH:mm:ss") %>
category: category:
- "[[Note]]"
type:
title: title:
tags: tags:
--- ---
@@ -0,0 +1,16 @@
---
created: 2026-05-16T07:01:39
category:
- "[[Tasks]]"
- "[[Journal]]"
title: Improve Replication Security With OpenZFS Delegation
status: open
priority: normal
type:
- "[[Log]]"
date: 2026-05-16
tags:
---
see the following link for a future implementation that i need to do
[Improving Replication Security With OpenZFS Delegation](https://klarasystems.com/articles/improving-replication-security-with-openzfs-delegation/)
@@ -1,14 +1,15 @@
--- ---
category: category:
- "[[Journal]]" - "[[Note]]"
type: type:
- "[[Log]]" - "[[Linux]]"
title: on docker compose, volumes, and bind mounts title: Docker
created: 2026-05-15T07:19:07 created: 2026-05-15T07:19:07
date: 2026-05-15
tags: tags:
--- ---
[[[[docker|docker]]|docker]] storage is split into two main groups ## on docker storage; volumes vs bind mounts
docker storage is split into two main groups
- volumes - volumes
- bind mounts - bind mounts
+6 -3
View File
@@ -2,8 +2,9 @@
created: 2026-05-15T10:23:05 created: 2026-05-15T10:23:05
category: category:
- "[[Note]]" - "[[Note]]"
title: Linux CLI Commands title: Linux CLI Config and Commands
tags: tags:
- project
--- ---
### Network config ### Network config
@@ -37,7 +38,7 @@ or apply
sudo netplan apply sudo netplan apply
``` ```
## drive partitions ## disk
create gpt partition table (for new drives without any partitions) create gpt partition table (for new drives without any partitions)
``` ```
@@ -63,7 +64,9 @@ add drive/partition to fstab, get disk UUID first
``` ```
sudo blkid /dev/sdxx sudo blkid /dev/sdxx
``` ```
Then add this to `/etc/fstab` Then add this to `/etc/fstab`
``` ```
/dev/disk/by-uuid/your-uuid-here /var/lib/docker ext4 defaults 0 2 /dev/disk/by-uuid/your-uuid-here /var/lib/docker ext4 defaults 0 2
``` ```
+23 -2
View File
@@ -2,6 +2,8 @@
category: category:
- "[[Note]]" - "[[Note]]"
type: type:
- "[[Linux]]"
- "[[CLI]]"
title: OpenZFS title: OpenZFS
created: 2026-05-14T14:17:36 created: 2026-05-14T14:17:36
tags: tags:
@@ -9,6 +11,8 @@ tags:
--- ---
## zfs commands ## zfs commands
### zfs snapshot management
list dataset snapshots list dataset snapshots
``` ```
zfs list -t snapshot pool-name/dataset-name zfs list -t snapshot pool-name/dataset-name
@@ -19,7 +23,12 @@ list holds on snapshots
zfs holds <pool/dataset>@<snapshot> 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> zfs release <tag> <pool/dataset>@<snapshot>
``` ```
@@ -27,4 +36,16 @@ zfs release <tag> <pool/dataset>@<snapshot>
delete snapshot delete snapshot
``` ```
zfs destroy <pool/dataset>@<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]]
+1
View File
@@ -5,6 +5,7 @@ type:
title: " Sanoid and Syncoid Setup" title: " Sanoid and Syncoid Setup"
created: 2026-05-12T21:09:25 created: 2026-05-12T21:09:25
tags: tags:
- project
--- ---
I've set this up on on a [[Proxmox]] backup machine, it creates the [[OpenZFS|zfs]] snapshots on the remote machine and them pulls them into it's own zfs pool. I've set this up on on a [[Proxmox]] backup machine, it creates the [[OpenZFS|zfs]] snapshots on the remote machine and them pulls them into it's own zfs pool.
View File