vault backup: 2026-05-16 07:24:14
This commit is contained in:
+6
-3
@@ -2,6 +2,7 @@
|
||||
"copyLinkToElemenetAnchorTo100": false,
|
||||
"copyFrameLinkByName": false,
|
||||
"disableDoubleClickTextEditing": false,
|
||||
"phoneFooterSafeAreaPadding": false,
|
||||
"folder": "Excalidraw",
|
||||
"cropFolder": "",
|
||||
"annotateFolder": "",
|
||||
@@ -29,6 +30,7 @@
|
||||
"annotateSuffix": "",
|
||||
"annotatePrefix": "annotated_",
|
||||
"annotatePreserveSize": false,
|
||||
"displaySVGInPreview": false,
|
||||
"previewImageType": "SVGIMG",
|
||||
"renderingConcurrency": 3,
|
||||
"allowImageCache": true,
|
||||
@@ -42,6 +44,7 @@
|
||||
"isLeftHanded": false,
|
||||
"desktopUIMode": "full",
|
||||
"tabletUIMode": "compact",
|
||||
"phoneUIMode": "mobile",
|
||||
"iframeMatchExcalidrawTheme": true,
|
||||
"matchTheme": true,
|
||||
"matchThemeAlways": false,
|
||||
@@ -123,8 +126,9 @@
|
||||
"mdBorderColor": "Black",
|
||||
"mdCSS": "",
|
||||
"scriptEngineSettings": {},
|
||||
"previousRelease": "2.19.0",
|
||||
"previousRelease": "2.22.3",
|
||||
"showReleaseNotes": true,
|
||||
"excalidrawMasteryPromoCollapsed": false,
|
||||
"compareManifestToPluginVersion": true,
|
||||
"showNewVersionNotification": true,
|
||||
"latexBoilerplate": "\\color{blue}",
|
||||
@@ -813,6 +817,5 @@
|
||||
"alignment": "center",
|
||||
"margin": "normal"
|
||||
},
|
||||
"disableContextMenu": false,
|
||||
"phoneUIMode": "mobile"
|
||||
"disableContextMenu": false
|
||||
}
|
||||
+4
-4
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-excalidraw-plugin",
|
||||
"name": "Excalidraw",
|
||||
"version": "2.20.6",
|
||||
"version": "2.22.3",
|
||||
"minAppVersion": "1.5.7",
|
||||
"description": "Sketch Your Mind. An Obsidian plugin to edit and view Excalidraw drawings. Enter the world of 4D Visual PKM.",
|
||||
"author": "Zsolt Viczian",
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+258
-295
File diff suppressed because one or more lines are too long
+1
-1
@@ -6,5 +6,5 @@
|
||||
"description": "Integrate Git version control with automatic backup and other advanced features.",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": "https://ko-fi.com/vinzent",
|
||||
"version": "2.38.2"
|
||||
"version": "2.38.3"
|
||||
}
|
||||
|
||||
+20
-25
@@ -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 {
|
||||
border: 2px solid var(--interactive-accent);
|
||||
border-radius: var(--radius-s);
|
||||
@@ -108,7 +99,7 @@
|
||||
display: flex;
|
||||
}
|
||||
.git-tools .buttons > * {
|
||||
padding: 0 0;
|
||||
padding: 0;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
@@ -175,7 +166,7 @@ which itself is adapted from the diff2html library with the following original l
|
||||
--git-change-bg: #ffd55840;
|
||||
--git-selected: #3572b0;
|
||||
|
||||
--git-delete: #c33;
|
||||
--git-delete: #cc3333;
|
||||
--git-insert: #399839;
|
||||
--git-change: #d0b44c;
|
||||
--git-move: #3572b0;
|
||||
@@ -538,13 +529,24 @@ which itself is adapted from the diff2html library with the following original l
|
||||
.d2h-diff-tbody {
|
||||
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 ====================== */
|
||||
|
||||
.cm-gutterElement.obs-git-blame-gutter {
|
||||
/* 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-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;
|
||||
height: 100%; /* ensure, that age-based background color occupies entire parent */
|
||||
text-align: right;
|
||||
padding: 0px 6px 0px 6px;
|
||||
padding: 0px 6px;
|
||||
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 {
|
||||
.cm-gutterElement {
|
||||
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;
|
||||
}
|
||||
|
||||
.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 */
|
||||
.cm-gutters.cm-gutters-before:has(> .git-signs-gutter:only-child) {
|
||||
margin-inline-end: 0;
|
||||
|
||||
Vendored
+1
-1
@@ -237,7 +237,7 @@
|
||||
"devMode": false,
|
||||
"templateFolderPath": "Templates",
|
||||
"announceUpdates": "all",
|
||||
"version": "2.11.0",
|
||||
"version": "2.12.0",
|
||||
"globalVariables": {},
|
||||
"onePageInputEnabled": false,
|
||||
"disableOnlineFeatures": true,
|
||||
|
||||
Vendored
+63
-59
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "quickadd",
|
||||
"name": "QuickAdd",
|
||||
"version": "2.11.0",
|
||||
"version": "2.12.0",
|
||||
"minAppVersion": "1.11.4",
|
||||
"description": "Quickly add new pages or content to your vault.",
|
||||
"author": "Christian B. B. Houmann",
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+9
-6
@@ -48,6 +48,7 @@
|
||||
"enableTimeblocking": true,
|
||||
"defaultShowTimeblocks": true,
|
||||
"defaultTimeblockColor": "#6366f1",
|
||||
"timeblockAttachmentSearchOrder": "name-asc",
|
||||
"nowIndicator": true,
|
||||
"selectMirror": true,
|
||||
"weekNumbers": false,
|
||||
@@ -146,7 +147,8 @@
|
||||
"icsEventId": "ics-event-id",
|
||||
"icsEventTag": "ics-event",
|
||||
"googleCalendarEventId": "googleCalendarEventId",
|
||||
"reminders": "reminders"
|
||||
"reminders": "reminders",
|
||||
"sortOrder": "tasknotes_manual_order"
|
||||
},
|
||||
"customStatuses": [
|
||||
{
|
||||
@@ -312,7 +314,7 @@
|
||||
"googleCalendarSyncTokens": {},
|
||||
"enabledMicrosoftCalendars": [],
|
||||
"microsoftCalendarSyncTokens": {},
|
||||
"lastSeenVersion": "4.4.0",
|
||||
"lastSeenVersion": "4.7.2",
|
||||
"modalFieldsConfig": {
|
||||
"version": 1,
|
||||
"fields": [
|
||||
@@ -458,10 +460,9 @@
|
||||
},
|
||||
"pomodoroState": {
|
||||
"isRunning": false,
|
||||
"timeRemaining": 5400,
|
||||
"nextSessionType": "work"
|
||||
"timeRemaining": 5400
|
||||
},
|
||||
"lastPomodoroDate": "2026-03-01",
|
||||
"lastPomodoroDate": "2026-05-15",
|
||||
"oauthConnections": {},
|
||||
"lastSelectedTaskPath": "Notes/Access to HE Diploma Applied Biochemistry.md",
|
||||
"pomodoroMobileSidebar": "tab",
|
||||
@@ -485,5 +486,7 @@
|
||||
"defaultEventDuration": 60,
|
||||
"includeObsidianLink": true,
|
||||
"defaultReminderMinutes": null
|
||||
}
|
||||
},
|
||||
"taskModalTabMovesFocus": true,
|
||||
"enableDebugLogging": false
|
||||
}
|
||||
Vendored
+735
-999
File diff suppressed because one or more lines are too long
+2
-2
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"id": "tasknotes",
|
||||
"name": "TaskNotes",
|
||||
"version": "4.4.0",
|
||||
"minAppVersion": "1.10.1",
|
||||
"version": "4.7.2",
|
||||
"minAppVersion": "1.12.2",
|
||||
"description": "Note-based task management with calendar, pomodoro and time-tracking integration.",
|
||||
"author": "Callum Alpass",
|
||||
"authorUrl": "https://github.com/callumalpass",
|
||||
|
||||
+1194
-585
File diff suppressed because it is too large
Load Diff
+30
-22
File diff suppressed because one or more lines are too long
+9
-3
@@ -1,11 +1,17 @@
|
||||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "2.18.1",
|
||||
"description": "Create and use templates",
|
||||
"minAppVersion": "1.5.0",
|
||||
"version": "2.20.4",
|
||||
"description": "Advanced templating and automation using handlebars-like syntax.",
|
||||
"minAppVersion": "1.12.2",
|
||||
"author": "SilentVoid",
|
||||
"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/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
|
||||
+1
-1
@@ -221,6 +221,6 @@ textarea.templater-prompt-input:focus {
|
||||
}
|
||||
|
||||
li.CodeMirror-hint-active {
|
||||
background: #08f;
|
||||
background: #0088ff;
|
||||
color: white;
|
||||
}
|
||||
|
||||
Vendored
+33
-69
@@ -27,12 +27,12 @@
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "_Inbox/HGST Ultrastar 7K6000 Series 4TB SAS HDD (x10).md",
|
||||
"file": "Categories/Products.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "HGST Ultrastar 7K6000 Series 4TB SAS HDD (x10)"
|
||||
"title": "Products"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -77,34 +77,6 @@
|
||||
"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",
|
||||
"type": "leaf",
|
||||
@@ -119,32 +91,18 @@
|
||||
"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",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "_Inbox/2026-05-15 0719 on docker compose, volumes, and bind mounts.md",
|
||||
"file": "_Inbox/Docker.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"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"
|
||||
@@ -236,7 +194,7 @@
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "_Inbox/OpenZFS.md",
|
||||
"file": "Categories/Products.md",
|
||||
"collapseAll": true,
|
||||
"extraContext": false,
|
||||
"sortOrder": "byCreatedTime",
|
||||
@@ -246,7 +204,7 @@
|
||||
"unlinkedCollapsed": true
|
||||
},
|
||||
"icon": "links-coming-in",
|
||||
"title": "Backlinks for OpenZFS"
|
||||
"title": "Backlinks for Products"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -338,8 +296,7 @@
|
||||
"title": "Source Control"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 7
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
@@ -367,25 +324,40 @@
|
||||
"random-note:Open random note": false,
|
||||
"audio-recorder:Start/stop recording": 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": [
|
||||
"_Inbox/Sanoid and Syncoid Setup.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/OpenZFS.md",
|
||||
"_Inbox/HGST Ultrastar 7K6000 Series 4TB SAS HDD (x10).md",
|
||||
"Categories/Products.md",
|
||||
"_Inbox/Seagate IronWolf 4TB HDD ST4000VNZ06.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-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 20260515052130.png",
|
||||
"Attachments/Pasted image 20260515050434.png",
|
||||
"Categories/Products.md",
|
||||
"References/Toshiba 3TB HDD Low-Energy E300.md",
|
||||
"_Inbox/2026-05-14 0946 HDD SMART report.md",
|
||||
"_Inbox/Lenovo ThinkStation P520.md",
|
||||
@@ -393,14 +365,6 @@
|
||||
"_Inbox/2026-05-12 1456 faulty drive or laptop.md",
|
||||
"Daily Notes/2026-05-14.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/PXL_20260512_135458828.jpg",
|
||||
"Attachments/PXL_20260512_130415266.jpg",
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
---
|
||||
created: <% tp.frontmatter.created || tp.date.now("YYYY-MM-DD[T]HH:mm:ss") %>
|
||||
category:
|
||||
- "[[Note]]"
|
||||
type:
|
||||
title:
|
||||
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/)
|
||||
+6
-5
@@ -1,14 +1,15 @@
|
||||
---
|
||||
category:
|
||||
- "[[Journal]]"
|
||||
- "[[Note]]"
|
||||
type:
|
||||
- "[[Log]]"
|
||||
title: on docker compose, volumes, and bind mounts
|
||||
- "[[Linux]]"
|
||||
title: Docker
|
||||
created: 2026-05-15T07:19:07
|
||||
date: 2026-05-15
|
||||
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
|
||||
- bind mounts
|
||||
|
||||
@@ -2,8 +2,9 @@
|
||||
created: 2026-05-15T10:23:05
|
||||
category:
|
||||
- "[[Note]]"
|
||||
title: Linux CLI Commands
|
||||
title: Linux CLI Config and Commands
|
||||
tags:
|
||||
- project
|
||||
---
|
||||
### Network config
|
||||
|
||||
@@ -37,7 +38,7 @@ or apply
|
||||
sudo netplan apply
|
||||
```
|
||||
|
||||
## drive partitions
|
||||
## disk
|
||||
|
||||
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
|
||||
```
|
||||
|
||||
Then add this to `/etc/fstab`
|
||||
```
|
||||
/dev/disk/by-uuid/your-uuid-here /var/lib/docker ext4 defaults 0 2
|
||||
```
|
||||
```
|
||||
|
||||
|
||||
+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]]
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@ type:
|
||||
title: " Sanoid and Syncoid Setup"
|
||||
created: 2026-05-12T21:09:25
|
||||
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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user