From b43123c57839b8ab00b377f35119924049aff76f Mon Sep 17 00:00:00 2001 From: fred Date: Wed, 19 Jul 2023 23:07:06 +0200 Subject: [PATCH] Step to go 100% installable from IPFS --- README.md | 10 +++++++--- kubo_v0.20.0_linux.install.sh | 3 +++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6408d85c..a240cc15 100644 --- a/README.md +++ b/README.md @@ -359,12 +359,16 @@ In a well formed IPFS swarm, we could even send video... Check code in ```/tools NaCl keys can be initiated with GPS Geoloc and receive shared informations. Using the same A/B swapping method, any A place have also a communication channel with B place ;) +**(COUNTRY / ZIP) keys** +For a town key, we could use country code + ZIP code, ... etc +Many public application can be easily addressed like that -ASTROBOT while applying ScuttleButt replications will check for protocol respect. - - +As these keys are discoverable, the channel can be hijacked by anyone. +So ASTROBOT while applying ScuttleButt replications will ".chain.ts" data and check for protocol respect. +Data can't be lost, but protocol chain can be break ! +In case of some annoyance, we can monitor IPFS protocol to identify which IPFSNODEID key is acting badly and apply reaction based on DEFCON level (look into astrXbian code) ### LOW RESSOURCE STATION CAN ACTIVATE LOW MODE (disable ipfs daemon) diff --git a/kubo_v0.20.0_linux.install.sh b/kubo_v0.20.0_linux.install.sh index 69669823..9e16cef8 100755 --- a/kubo_v0.20.0_linux.install.sh +++ b/kubo_v0.20.0_linux.install.sh @@ -10,10 +10,13 @@ architecture=$(uname -m) # Download appropriate version of kubo if [ "$architecture" == "x86_64" ]; then wget -O kubo.tar.gz https://dist.ipfs.tech/kubo/v0.20.0/kubo_v0.20.0_linux-amd64.tar.gz + # /ipfs/QmPA3PLy3pCFssr9vFn9SY2amegWT3GyFYS1g4T5hJwW4d elif [ "$architecture" == "aarch64" ]; then wget -O kubo.tar.gz https://dist.ipfs.tech/kubo/v0.20.0/kubo_v0.20.0_linux-arm64.tar.gz + # /ipfs/QmaLDWNLLUpTSZUE9YaZq3id6bNDcZsEmaW7xQFrzhD7Yy elif [ "$architecture" == "armv7l" ]; then wget -O kubo.tar.gz https://dist.ipfs.tech/kubo/v0.20.0/kubo_v0.20.0_linux-arm.tar.gz + # /ipfs/QmWA5L51H7ALodxWv3nT1XhWbRLdFVjC1SPENCFMH9nQAc else echo "Error: Unknown architecture" exit 1