vault backup: 2025-01-19 19:29:31

This commit is contained in:
Nathan Price 2025-01-19 19:29:31 -05:00
parent 7add0dbfd2
commit b1857110b6
Signed by: gravityfargo
SSH key fingerprint: SHA256:bjq+uA1U+9bFMd70q2wdNtwaYxGv84IBXalnYvZDKmg
2 changed files with 5 additions and 2 deletions

View file

@ -78,9 +78,11 @@ I do not run this, but it should be possible.
![[standalone]]
### Unraid
While I do not use Unraid, a [user on Reddit](https://www.reddit.com/r/selfhosted/comments/1i4r4yb/comment/m7y561x/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button) has added this project to the [Unraid App store](https://unraid.net/community/apps?q=bluesky#r). I won't be providing any meaningful support it.
Unraid does not include the `xxd` package. You'll need another Linux machine for that. I made [[Generate PDS_PLC_ROTATION_KEY|some instructions]] for using a temporary alpine container if that helps.
### Running Commands
Nothing has changed in this department, other than not needing `sudo`. The commands are the same as the upstream project. Such as

View file

@ -3,7 +3,8 @@ title: PDS_PLC_ROTATION_KEY in a container
draft: false
date: 2025-01-19
---
Unraid does not come with the `xxd` command installed. There used to be a package called NerdTools that I used to use but it looks like it was removed. I do not recall if you can use `docker run` in Unraid, but these commands can be used. A quick google indicates [windows users can use the docker cli](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce).
Unraid does not come with the `xxd` command installed. There used to be a package called NerdTools that I used to use but it looks like it was removed. I do not recall if you can use `docker run` in Unraid, but these commands can be used. A quick google indicates [windows users can use the docker cli](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce).
```bash
# on host
@ -14,4 +15,4 @@ apk add xxd openssl
# everything after this is one command
echo PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX: $(openssl ecparam --name secp256k1 --genkey --noout --outform DER | tail -c +8 | head -c 32 | xxd --plain --cols 32)
```
```