Skip to content

Commit 593dbc5

Browse files
committed
docs: rpc and cli kubo 0.14
1 parent 859cbfb commit 593dbc5

File tree

4 files changed

+261
-59
lines changed

4 files changed

+261
-59
lines changed

docs/install/command-line.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Command-line
33
description: Using IPFS 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.13.1
4+
current-ipfs-version: v0.14.0
55
---
66

77
# Command-line
@@ -12,7 +12,7 @@ Installing IPFS through the command-line is handy if you plan on building applic
1212

1313
## System requirements
1414

15-
Kubo IPFS requires 512MiB of memory and can run an IPFS node on a Raspberry Pi. However, how much disk space your IPFS installation takes up depends on how much data you're sharing. A base installation takes up about 12MB of disk space. One can enable automatic garbage collection via [--enable-gc](/reference/kubo/cli/#ipfs-daemon) and adjust the [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.13.1/docs/config.md#datastorestoragemax) for data retrieved from other peers.
15+
Kubo IPFS requires 512MiB of memory and can run an IPFS node on a Raspberry Pi. However, how much disk space your IPFS installation takes up depends on how much data you're sharing. A base installation takes up about 12MB of disk space. One can enable automatic garbage collection via [--enable-gc](/reference/kubo/cli/#ipfs-daemon) and adjust the [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.14.0/docs/config.md#datastorestoragemax) for data retrieved from other peers.
1616

1717
## Official distributions
1818

@@ -28,22 +28,22 @@ The IPFS team manages the [dist.ipfs.io website](https://dist.ipfs.io/) to help
2828

2929
```powershell
3030
cd ~\
31-
wget https://dist.ipfs.io/kubo/v0.13.1/kubo_v0.13.1_windows-amd64.zip -Outfile kubo_v0.13.1.zip
31+
wget https://dist.ipfs.io/kubo/v0.14.0/kubo_v0.14.0_windows-amd64.zip -Outfile kubo_v0.14.0.zip
3232
```
3333

3434
1. Unzip the file and move it somewhere handy.
3535

3636
```powershell
37-
Expand-Archive -Path kubo_v0.13.1.zip -DestinationPath ~\Apps\kubo_v0.13.1
37+
Expand-Archive -Path kubo_v0.14.0.zip -DestinationPath ~\Apps\kubo_v0.14.0
3838
```
3939

40-
1. Move into the `kubo_v0.13.1` folder and check that the `ipfs.exe` works:
40+
1. Move into the `kubo_v0.14.0` folder and check that the `ipfs.exe` works:
4141

4242
```powershell
43-
cd ~\Apps\kubo_v0.13.1\kubo
43+
cd ~\Apps\kubo_v0.14.0\kubo
4444
.\ipfs.exe --version
4545
46-
> ipfs version 0.13.1
46+
> ipfs version 0.14.0
4747
```
4848

4949
While you can use IPFS right now, it's better to add `ipfs.exe` to your `PATH` by using the following steps.
@@ -84,7 +84,7 @@ The IPFS team manages the [dist.ipfs.io website](https://dist.ipfs.io/) to help
8484
cd ~
8585
ipfs --version
8686
87-
> ipfs version 0.13.1
87+
> ipfs version 0.14.0
8888
```
8989

9090
### macOS
@@ -96,13 +96,13 @@ You can install IPFS on M1-based Macs by using the `darwin-arm64` binary instead
9696
1. Download the macOS binary from [`dist.ipfs.io`](https://dist.ipfs.io/#kubo).
9797

9898
```bash
99-
curl -O https://dist.ipfs.io/kubo/v0.13.1/kubo_v0.13.1_darwin-amd64.tar.gz
99+
curl -O https://dist.ipfs.io/kubo/v0.14.0/kubo_v0.14.0_darwin-amd64.tar.gz
100100
```
101101

102102
1. Unzip the file:
103103

104104
```bash
105-
tar -xvzf kubo_v0.13.1_darwin-amd64.tar.gz
105+
tar -xvzf kubo_v0.14.0_darwin-amd64.tar.gz
106106

107107
> x kubo/install.sh
108108
> x kubo/ipfs
@@ -126,21 +126,21 @@ You can install IPFS on M1-based Macs by using the `darwin-arm64` binary instead
126126
```bash
127127
ipfs --version
128128

129-
> ipfs version 0.13.1
129+
> ipfs version 0.14.0
130130
```
131131

132132
### Linux
133133

134134
1. Download the Linux binary from [`dist.ipfs.io`](https://dist.ipfs.io/#kubo).
135135

136136
```bash
137-
wget https://dist.ipfs.io/kubo/v0.13.1/kubo_v0.13.1_linux-amd64.tar.gz
137+
wget https://dist.ipfs.io/kubo/v0.14.0/kubo_v0.14.0_linux-amd64.tar.gz
138138
```
139139

140140
1. Unzip the file:
141141

142142
```bash
143-
tar -xvzf kubo_v0.13.1_linux-amd64.tar.gz
143+
tar -xvzf kubo_v0.14.0_linux-amd64.tar.gz
144144

145145
> x kubo/install.sh
146146
> x kubo/ipfs
@@ -164,7 +164,7 @@ You can install IPFS on M1-based Macs by using the `darwin-arm64` binary instead
164164
```bash
165165
ipfs --version
166166

167-
> ipfs version 0.13.1
167+
> ipfs version 0.14.0
168168
```
169169

170170
## Compile manually

0 commit comments

Comments
 (0)