Minimal touch ups to ipfs instructions.

Storm Dragon 2024-01-19 09:58:22 -05:00
parent e9b68b1563
commit 3ea1d5161d

12
ipfs.md

@ -2,7 +2,7 @@
## Introduction ## Introduction
This article will show you how you can sync our archive of audiogames on IPFS to your node, to ensure high availability should a hosting site go down. This article will show you how you can sync our archive of audiogames on IPFS to your node, to ensure high availability should a hosting site go down. Be sure you have enough space for the files, and are willing to dedicate the space to mirroring the files.
## Procedure in Brief ## Procedure in Brief
@ -24,7 +24,7 @@ Arch Linux
Void Linux Void Linux
: Available as go-ipfs. : Available as go-ipfs.
Slint/Slackware and Other Distros I Hadn't Thought of Slint/Slackware and Other Distros I Hadn't Thought of
: Consult the instructions [here.](https://github.com/ipfs/kubo) : Consult the instructions at: <https://github.com/ipfs/kubo>
### Initializing your Daemon ### Initializing your Daemon
@ -59,3 +59,11 @@ To ensure you have the latest archive, run the pin on a periodic interval. Addit
```bash ```bash
ipfs name resolve --nocache /ipns/k51qzi5uqu5dg7ndb48x1v9hzp98vg6wncrbhps16a8yn3eh4nqis7v384jh20 | ipfs pin add ipfs name resolve --nocache /ipns/k51qzi5uqu5dg7ndb48x1v9hzp98vg6wncrbhps16a8yn3eh4nqis7v384jh20 | ipfs pin add
``` ```
To automate this process, you can add it to your crontab:
```bash
crontab -e
# ipns update for audiogame-manager once a week
0 12 * * 1 ipfs name resolve --nocache /ipns/k51qzi5uqu5dg7ndb48x1v9hzp98vg6wncrbhps16a8yn3eh4nqis7v384jh20 | ipfs pin add
```