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
@@ -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:
- "[[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
+6 -3
View File
@@ -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
View File
@@ -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]]
+1
View File
@@ -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.
View File