Skip to content

Commit 60c0c0b

Browse files
author
galargh@users.noreply.github.com
committed
Bumped documentation & installation docs.
1 parent 891cf76 commit 60c0c0b

File tree

6 files changed

+516
-454
lines changed

6 files changed

+516
-454
lines changed

docs/install/command-line.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Kubo
33
description: Using IPFS Kubo through the command-line allows you to do everything that IPFS Desktop can do, but at a more granular level, since you can specify which commands to run. Learn how to install it here.
4-
current-ipfs-version: v0.18.1
4+
current-ipfs-version: v0.19.0
55
---
66

77
# Install IPFS Kubo
@@ -31,7 +31,7 @@ Kubo runs on most Windows, MacOS, Linux, FreeBSD and OpenBSD systems that meet t
3131

3232
Note the following:
3333
- The amount of disk space your IPFS installation uses depends on how much data you're sharing. A base installation uses around 12MB of disk space.
34-
- You can enable automatic garbage collection via [--enable-gc](../reference/kubo/cli.md#ipfs-daemon) and adjust using [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.18.1/docs/config.md#datastorestoragemax) for data retrieved from other peers.
34+
- You can enable automatic garbage collection via [--enable-gc](../reference/kubo/cli.md#ipfs-daemon) and adjust using [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.19.0/docs/config.md#datastorestoragemax) for data retrieved from other peers.
3535

3636
### Kubo on resource-constrained systems
3737

@@ -72,27 +72,27 @@ For installation instructions for your operating system, select the appropriate
7272
1. Download the Windows binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
7373

7474
```powershell
75-
wget https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_windows-amd64.zip -Outfile kubo_v0.18.1.zip
75+
wget https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_windows-amd64.zip -Outfile kubo_v0.19.0.zip
7676
```
7777

78-
1. Unzip the file to a sensible location, such as `~\Apps\kubo_v0.18.1`.
78+
1. Unzip the file to a sensible location, such as `~\Apps\kubo_v0.19.0`.
7979

8080
```powershell
81-
Expand-Archive -Path kubo_v0.18.1.zip -DestinationPath ~\Apps\kubo_v0.18.1
81+
Expand-Archive -Path kubo_v0.19.0.zip -DestinationPath ~\Apps\kubo_v0.19.0
8282
```
8383

84-
1. Move into the `kubo_v0.18.1` folder
84+
1. Move into the `kubo_v0.19.0` folder
8585

8686
```powershell
87-
cd ~\Apps\kubo_v0.18.1\kubo
87+
cd ~\Apps\kubo_v0.19.0\kubo
8888
```
8989

9090
1. Check that the `ipfs.exe` works:
9191

9292
```powershell
9393
.\ipfs.exe --version
9494
95-
> ipfs version 0.18.1
95+
> ipfs version 0.19.0
9696
```
9797

9898
At this point, Kubo is usable. However, it's strongly recommended that you first add `ipfs.exe` to your `PATH` using the following steps:
@@ -138,7 +138,7 @@ For installation instructions for your operating system, select the appropriate
138138
```powershell
139139
ipfs --version
140140
141-
> ipfs version 0.18.1
141+
> ipfs version 0.19.0
142142
```
143143

144144
:::
@@ -159,28 +159,28 @@ For installation instructions for your operating system, select the appropriate
159159
1. Download the appropriate macOS binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo) based on your hardware. For example:
160160

161161
```bash
162-
curl -O https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_darwin-amd64.tar.gz
162+
curl -O https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_darwin-amd64.tar.gz
163163
```
164164

165165
> :warning:
166166
> Ensure that you download and install the appropriate binary, as the binary for an Intel-based system won't work on a system with Apple Silicon, and vice-versa.
167167
168-
- _If you are using hardware with Apple Silicon, download the `darwin-arm64` binary._ For example, to download the IPFS binary for `Kubo v0.18.1` for an Apple-based system, run the following command:
168+
- _If you are using hardware with Apple Silicon, download the `darwin-arm64` binary._ For example, to download the IPFS binary for `Kubo v0.19.0` for an Apple-based system, run the following command:
169169

170170
```bash
171-
curl -O https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_darwin-arm64.tar.gz
171+
curl -O https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_darwin-arm64.tar.gz
172172
```
173173

174-
- _If you are using hardware with an Intel Processor, download the `darwin-amd64` binary._ For example, to download the IPFS binary for `Kubo v0.18.1` for an Intel-based system, run the following command:
174+
- _If you are using hardware with an Intel Processor, download the `darwin-amd64` binary._ For example, to download the IPFS binary for `Kubo v0.19.0` for an Intel-based system, run the following command:
175175

176176
```bash
177-
curl -O https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_darwin-amd64.tar.gz
177+
curl -O https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_darwin-amd64.tar.gz
178178
```
179179

180-
1. Unzip the file. For example, to unzip `Kubo v0.18.1` for an Intel-based system:
180+
1. Unzip the file. For example, to unzip `Kubo v0.19.0` for an Intel-based system:
181181

182182
```bash
183-
tar -xvzf kubo_v0.18.1_darwin-amd64.tar.gz
183+
tar -xvzf kubo_v0.19.0_darwin-amd64.tar.gz
184184
```
185185

186186
The following output displays:
@@ -218,7 +218,7 @@ For installation instructions for your operating system, select the appropriate
218218
If Kubo is installed, the version number displays. For example:
219219

220220
```bash
221-
> ipfs version 0.18.1
221+
> ipfs version 0.19.0
222222
```
223223

224224
:::
@@ -230,13 +230,13 @@ For installation instructions for your operating system, select the appropriate
230230
1. Download the Linux binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
231231

232232
```bash
233-
wget https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_linux-amd64.tar.gz
233+
wget https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_linux-amd64.tar.gz
234234
```
235235

236236
1. Unzip the file:
237237

238238
```bash
239-
tar -xvzf kubo_v0.18.1_linux-amd64.tar.gz
239+
tar -xvzf kubo_v0.19.0_linux-amd64.tar.gz
240240
241241
> x kubo/install.sh
242242
> x kubo/ipfs
@@ -265,7 +265,7 @@ For installation instructions for your operating system, select the appropriate
265265
```bash
266266
ipfs --version
267267
268-
> ipfs version 0.18.1
268+
> ipfs version 0.19.0
269269
```
270270

271271
:::
@@ -277,13 +277,13 @@ For installation instructions for your operating system, select the appropriate
277277
1. Download the FreeBSD binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
278278

279279
```bash
280-
wget https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_freebsd-amd64.tar.gz
280+
wget https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_freebsd-amd64.tar.gz
281281
```
282282

283283
1. Unzip the file:
284284

285285
```bash
286-
tar -xvzf kubo_v0.18.1_freebsd-amd64.tar.gz
286+
tar -xvzf kubo_v0.19.0_freebsd-amd64.tar.gz
287287
288288
> x kubo/install.sh
289289
> x kubo/ipfs
@@ -312,7 +312,7 @@ For installation instructions for your operating system, select the appropriate
312312
```bash
313313
ipfs --version
314314
315-
> ipfs version 0.18.1
315+
> ipfs version 0.19.0
316316
```
317317

318318
:::
@@ -324,13 +324,13 @@ For installation instructions for your operating system, select the appropriate
324324
1. Download the OpenBSD binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
325325

326326
```bash
327-
wget https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_openbsd-amd64.tar.gz
327+
wget https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_openbsd-amd64.tar.gz
328328
```
329329

330330
1. Unzip the file:
331331

332332
```bash
333-
tar -xvzf kubo_v0.18.1_openbsd-amd64.tar.gz
333+
tar -xvzf kubo_v0.19.0_openbsd-amd64.tar.gz
334334
335335
> x kubo/install.sh
336336
> x kubo/ipfs
@@ -359,7 +359,7 @@ For installation instructions for your operating system, select the appropriate
359359
```bash
360360
ipfs --version
361361
362-
> ipfs version 0.18.1
362+
> ipfs version 0.19.0
363363
```
364364

365365
:::
@@ -371,7 +371,7 @@ For installation instructions for your operating system, select the appropriate
371371

372372
## Build Kubo from source
373373

374-
For the current instructions on how to manually download, compile and build Kubo from source, see the [Build from Source](https://github.com/ipfs/kubo/blob/v0.18.1/README.md#build-from-source) section in the Kubo repository.
374+
For the current instructions on how to manually download, compile and build Kubo from source, see the [Build from Source](https://github.com/ipfs/kubo/blob/v0.19.0/README.md#build-from-source) section in the Kubo repository.
375375

376376
## Determining which node to use with the command line
377377

docs/install/server-infrastructure.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: IPFS Cluster
33
description: IPFS Cluster provides data orchestration across a swarm of IPFS daemons by allocating, replicating, and tracking a global pin-set distributed among multiple peers. Learn how to install it here.
4-
current-ipfs-cluster-version: v1.0.5
4+
current-ipfs-cluster-version: v1.0.6
55
---
66

77
# Set up server infrastructure with IPFS Cluster
@@ -73,13 +73,13 @@ If you're having issues installing or using Docker or Docker-Compose, see the [o
7373
1. Download the latest `ipfs-cluster-ctl` package from [dist.ipfs.tech](https://dist.ipfs.tech/#ipfs-cluster-ctl):
7474

7575
```shell
76-
wget https://dist.ipfs.tech/ipfs-cluster-ctl/v1.0.5/ipfs-cluster-ctl_v1.0.5_linux-amd64.tar.gz
76+
wget https://dist.ipfs.tech/ipfs-cluster-ctl/v1.0.6/ipfs-cluster-ctl_v1.0.6_linux-amd64.tar.gz
7777
```
7878

7979
1. Unzip the package:
8080

8181
```shell
82-
tar xvzf ipfs-cluster-ctl_v1.0.5_linux-amd64.tar.gz
82+
tar xvzf ipfs-cluster-ctl_v1.0.6_linux-amd64.tar.gz
8383
8484
> ipfs-cluster-ctl/ipfs-cluster-ctl
8585
> ipfs-cluster-ctl/LICENSE
@@ -88,10 +88,10 @@ If you're having issues installing or using Docker or Docker-Compose, see the [o
8888
> ipfs-cluster-ctl/README.md
8989
```
9090

91-
1. Download the [`docker-compose.yml` file](https://raw.githubusercontent.com/ipfs/ipfs-cluster/v1.0.5/docker-compose.yml) and place it into the `ipfs-cluster-ctl` directory:
91+
1. Download the [`docker-compose.yml` file](https://raw.githubusercontent.com/ipfs/ipfs-cluster/v1.0.6/docker-compose.yml) and place it into the `ipfs-cluster-ctl` directory:
9292

9393
```shell
94-
wget https://raw.githubusercontent.com/ipfs/ipfs-cluster/v1.0.5/docker-compose.yml
94+
wget https://raw.githubusercontent.com/ipfs/ipfs-cluster/v1.0.6/docker-compose.yml
9595
```
9696

9797
1. Start the cluster using `docker-compose`:

0 commit comments

Comments
 (0)