From 3ea1d5161d2b9df5b7b8441500f3730d32dd0660 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Fri, 19 Jan 2024 09:58:22 -0500 Subject: [PATCH] Minimal touch ups to ipfs instructions. --- ipfs.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/ipfs.md b/ipfs.md index 55ce151..291db63 100644 --- a/ipfs.md +++ b/ipfs.md @@ -2,7 +2,7 @@ ## 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 @@ -24,7 +24,7 @@ Arch Linux Void Linux : Available as go-ipfs. Slint/Slackware and Other Distros I Hadn't Thought of -: Consult the instructions [here.](https://github.com/ipfs/kubo) +: Consult the instructions at: ### Initializing your Daemon @@ -59,3 +59,11 @@ To ensure you have the latest archive, run the pin on a periodic interval. Addit ```bash 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 +```