Skip to content

Commit 0427b6e

Browse files
Bumped documentation & installation docs. (#1783)
Co-authored-by: [email protected] <hacdias>
1 parent 7d604a2 commit 0427b6e

File tree

5 files changed

+466
-867
lines changed

5 files changed

+466
-867
lines changed

docs/install/command-line.md

Lines changed: 20 additions & 20 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.24.0
4+
current-ipfs-version: v0.26.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.24.0/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.26.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.24.0/kubo_v0.24.0_windows-amd64.zip -Outfile kubo_v0.24.0.zip
75+
wget https://dist.ipfs.tech/kubo/v0.26.0/kubo_v0.26.0_windows-amd64.zip -Outfile kubo_v0.26.0.zip
7676
```
7777

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

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

84-
1. Move into the `kubo_v0.24.0` folder
84+
1. Move into the `kubo_v0.26.0` folder
8585

8686
```powershell
87-
cd ~\Apps\kubo_v0.24.0\kubo
87+
cd ~\Apps\kubo_v0.26.0\kubo
8888
```
8989

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

9292
```powershell
9393
.\ipfs.exe --version
9494
95-
> ipfs version 0.24.0
95+
> ipfs version 0.26.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.24.0
141+
> ipfs version 0.26.0
142142
```
143143

144144
:::
@@ -166,7 +166,7 @@ For installation instructions for your operating system, select the appropriate
166166
If Kubo is installed, the version number displays. For example:
167167

168168
```bash
169-
> ipfs version 0.24.0
169+
> ipfs version 0.26.0
170170
```
171171
:::
172172

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

179179
```bash
180-
wget https://dist.ipfs.tech/kubo/v0.24.0/kubo_v0.24.0_linux-amd64.tar.gz
180+
wget https://dist.ipfs.tech/kubo/v0.26.0/kubo_v0.26.0_linux-amd64.tar.gz
181181
```
182182

183183
1. Unzip the file:
184184

185185
```bash
186-
tar -xvzf kubo_v0.24.0_linux-amd64.tar.gz
186+
tar -xvzf kubo_v0.26.0_linux-amd64.tar.gz
187187

188188
> x kubo/install.sh
189189
> x kubo/ipfs
@@ -212,7 +212,7 @@ For installation instructions for your operating system, select the appropriate
212212
```bash
213213
ipfs --version
214214

215-
> ipfs version 0.24.0
215+
> ipfs version 0.26.0
216216
```
217217

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

226226
```bash
227-
wget https://dist.ipfs.tech/kubo/v0.24.0/kubo_v0.24.0_freebsd-amd64.tar.gz
227+
wget https://dist.ipfs.tech/kubo/v0.26.0/kubo_v0.26.0_freebsd-amd64.tar.gz
228228
```
229229

230230
1. Unzip the file:
231231

232232
```bash
233-
tar -xvzf kubo_v0.24.0_freebsd-amd64.tar.gz
233+
tar -xvzf kubo_v0.26.0_freebsd-amd64.tar.gz
234234

235235
> x kubo/install.sh
236236
> x kubo/ipfs
@@ -259,7 +259,7 @@ For installation instructions for your operating system, select the appropriate
259259
```bash
260260
ipfs --version
261261

262-
> ipfs version 0.24.0
262+
> ipfs version 0.26.0
263263
```
264264

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

273273
```bash
274-
wget https://dist.ipfs.tech/kubo/v0.24.0/kubo_v0.24.0_openbsd-amd64.tar.gz
274+
wget https://dist.ipfs.tech/kubo/v0.26.0/kubo_v0.26.0_openbsd-amd64.tar.gz
275275
```
276276

277277
1. Unzip the file:
278278

279279
```bash
280-
tar -xvzf kubo_v0.24.0_openbsd-amd64.tar.gz
280+
tar -xvzf kubo_v0.26.0_openbsd-amd64.tar.gz
281281

282282
> x kubo/install.sh
283283
> x kubo/ipfs
@@ -306,7 +306,7 @@ For installation instructions for your operating system, select the appropriate
306306
```bash
307307
ipfs --version
308308

309-
> ipfs version 0.24.0
309+
> ipfs version 0.26.0
310310
```
311311

312312
:::
@@ -318,7 +318,7 @@ For installation instructions for your operating system, select the appropriate
318318

319319
## Build Kubo from source
320320

321-
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.24.0/README.md#build-from-source) section in the Kubo repository.
321+
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.26.0/README.md#build-from-source) section in the Kubo repository.
322322

323323
## Determining which node to use with the command line
324324

0 commit comments

Comments
 (0)