Manual backup: 2023-03-25 12:12:07
This commit is contained in:
parent
352acf2836
commit
f27cc1c017
3 changed files with 24 additions and 5 deletions
1
.obsidian/plugins/obsidian-git/data.json
vendored
1
.obsidian/plugins/obsidian-git/data.json
vendored
|
@ -25,5 +25,6 @@
|
||||||
"setLastSaveToLastCommit": false,
|
"setLastSaveToLastCommit": false,
|
||||||
"submoduleRecurseCheckout": false,
|
"submoduleRecurseCheckout": false,
|
||||||
"gitDir": "",
|
"gitDir": "",
|
||||||
|
"showFileMenu": true,
|
||||||
"autoCommitMessage": "Automatic backup: {{date}}"
|
"autoCommitMessage": "Automatic backup: {{date}}"
|
||||||
}
|
}
|
8
.obsidian/workspace.json
vendored
8
.obsidian/workspace.json
vendored
|
@ -4,11 +4,11 @@
|
||||||
"type": "split",
|
"type": "split",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "a882aceafb514a08",
|
"id": "021e344303bcc5ab",
|
||||||
"type": "tabs",
|
"type": "tabs",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "9422fc078f985474",
|
"id": "cd2f7f5f4235c327",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "empty",
|
"type": "empty",
|
||||||
|
@ -120,8 +120,10 @@
|
||||||
"templater-obsidian:Templater": false
|
"templater-obsidian:Templater": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "0889e053c850e925",
|
"active": "cd2f7f5f4235c327",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"KB/Linux/Server/Hetzner/Storagebox.md",
|
||||||
|
"README.md",
|
||||||
"KB/Linux/Disk Speed.md",
|
"KB/Linux/Disk Speed.md",
|
||||||
"KB/Linux/AMD.md",
|
"KB/Linux/AMD.md",
|
||||||
"KB/Linux/Desktop/Audio/EQ.md",
|
"KB/Linux/Desktop/Audio/EQ.md",
|
||||||
|
|
|
@ -3,9 +3,25 @@ creation date: 2022-01-08
|
||||||
tags: [note,linux,archlinux,hetzner,storage,disk]
|
tags: [note,linux,archlinux,hetzner,storage,disk]
|
||||||
---
|
---
|
||||||
|
|
||||||
# Storagebox
|
See https://docs.hetzner.com/robot/storage-box/backup-space-ssh-keys.
|
||||||
|
|
||||||
Create a compatible ssh key and transfer to the user
|
## Add existing keys or convert format to RFC
|
||||||
|
|
||||||
|
**Use both mechanisms (RFC and standard) for maximum compatibility.**
|
||||||
|
|
||||||
|
Example how `.ssh/authorized_keys` might look:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
ssh-rsa AA.... user@host
|
||||||
|
---- BEGIN SSH2 PUBLIC KEY ----
|
||||||
|
Comment: "2048-bit RSA, converted by user@host from OpenSSH"
|
||||||
|
AA.....
|
||||||
|
---- END SSH2 PUBLIC KEY ----
|
||||||
|
```
|
||||||
|
|
||||||
|
**Use https://docs.hetzner.com/robot/storage-box/backup-space-ssh-keys#converting-your-key-to-rfc4716-format!**
|
||||||
|
|
||||||
|
## Create a compatible ssh key and transfer to the user
|
||||||
|
|
||||||
```
|
```
|
||||||
ssh-keygen-rsa id_rsa
|
ssh-keygen-rsa id_rsa
|
||||||
|
|
Loading…
Reference in a new issue