Skip to content

Commit

Permalink
Kubo 0.30.0 documentation & installation docs (#1924)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Sep 11, 2024
1 parent 5bc60f7 commit 47d9007
Show file tree
Hide file tree
Showing 5 changed files with 501 additions and 270 deletions.
40 changes: 20 additions & 20 deletions docs/install/command-line.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Kubo
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.
current-ipfs-version: v0.29.0
current-ipfs-version: v0.30.0
---

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

Note the following:
- 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.
- 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.29.0/docs/config.md#datastorestoragemax) for data retrieved from other peers.
- 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.30.0/docs/config.md#datastorestoragemax) for data retrieved from other peers.

### Kubo on resource-constrained systems

Expand Down Expand Up @@ -72,27 +72,27 @@ For installation instructions for your operating system, select the appropriate
1. Download the Windows binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
```powershell
wget https://dist.ipfs.tech/kubo/v0.29.0/kubo_v0.29.0_windows-amd64.zip -Outfile kubo_v0.29.0.zip
wget https://dist.ipfs.tech/kubo/v0.30.0/kubo_v0.30.0_windows-amd64.zip -Outfile kubo_v0.30.0.zip
```
1. Unzip the file to a sensible location, such as `~\Apps\kubo_v0.29.0`.
1. Unzip the file to a sensible location, such as `~\Apps\kubo_v0.30.0`.
```powershell
Expand-Archive -Path kubo_v0.29.0.zip -DestinationPath ~\Apps\kubo_v0.29.0
Expand-Archive -Path kubo_v0.30.0.zip -DestinationPath ~\Apps\kubo_v0.30.0
```
1. Move into the `kubo_v0.29.0` folder
1. Move into the `kubo_v0.30.0` folder
```powershell
cd ~\Apps\kubo_v0.29.0\kubo
cd ~\Apps\kubo_v0.30.0\kubo
```
1. Check that the `ipfs.exe` works:
```powershell
.\ipfs.exe --version
> ipfs version 0.29.0
> ipfs version 0.30.0
```
At this point, Kubo is usable. However, it's strongly recommended that you first add `ipfs.exe` to your `PATH` using the following steps:
Expand Down Expand Up @@ -138,7 +138,7 @@ For installation instructions for your operating system, select the appropriate
```powershell
ipfs --version
> ipfs version 0.29.0
> ipfs version 0.30.0
```
:::
Expand Down Expand Up @@ -166,7 +166,7 @@ For installation instructions for your operating system, select the appropriate
If Kubo is installed, the version number displays. For example:
```bash
> ipfs version 0.29.0
> ipfs version 0.30.0
```
:::
Expand All @@ -177,13 +177,13 @@ For installation instructions for your operating system, select the appropriate
1. Download the Linux binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
```bash
wget https://dist.ipfs.tech/kubo/v0.29.0/kubo_v0.29.0_linux-amd64.tar.gz
wget https://dist.ipfs.tech/kubo/v0.30.0/kubo_v0.30.0_linux-amd64.tar.gz
```
1. Unzip the file:
```bash
tar -xvzf kubo_v0.29.0_linux-amd64.tar.gz
tar -xvzf kubo_v0.30.0_linux-amd64.tar.gz
> x kubo/install.sh
> x kubo/ipfs
Expand Down Expand Up @@ -212,7 +212,7 @@ For installation instructions for your operating system, select the appropriate
```bash
ipfs --version
> ipfs version 0.29.0
> ipfs version 0.30.0
```
:::
Expand All @@ -224,13 +224,13 @@ For installation instructions for your operating system, select the appropriate
1. Download the FreeBSD binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
```bash
wget https://dist.ipfs.tech/kubo/v0.29.0/kubo_v0.29.0_freebsd-amd64.tar.gz
wget https://dist.ipfs.tech/kubo/v0.30.0/kubo_v0.30.0_freebsd-amd64.tar.gz
```
1. Unzip the file:
```bash
tar -xvzf kubo_v0.29.0_freebsd-amd64.tar.gz
tar -xvzf kubo_v0.30.0_freebsd-amd64.tar.gz
> x kubo/install.sh
> x kubo/ipfs
Expand Down Expand Up @@ -259,7 +259,7 @@ For installation instructions for your operating system, select the appropriate
```bash
ipfs --version
> ipfs version 0.29.0
> ipfs version 0.30.0
```
:::
Expand All @@ -271,13 +271,13 @@ For installation instructions for your operating system, select the appropriate
1. Download the OpenBSD binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
```bash
wget https://dist.ipfs.tech/kubo/v0.29.0/kubo_v0.29.0_openbsd-amd64.tar.gz
wget https://dist.ipfs.tech/kubo/v0.30.0/kubo_v0.30.0_openbsd-amd64.tar.gz
```
1. Unzip the file:
```bash
tar -xvzf kubo_v0.29.0_openbsd-amd64.tar.gz
tar -xvzf kubo_v0.30.0_openbsd-amd64.tar.gz
> x kubo/install.sh
> x kubo/ipfs
Expand Down Expand Up @@ -306,7 +306,7 @@ For installation instructions for your operating system, select the appropriate
```bash
ipfs --version
> ipfs version 0.29.0
> ipfs version 0.30.0
```
:::
Expand All @@ -318,7 +318,7 @@ For installation instructions for your operating system, select the appropriate
## Build Kubo from source
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.29.0/README.md#build-from-source) section in the Kubo repository.
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.30.0/README.md#build-from-source) section in the Kubo repository.
## Determining which node to use with the command line
Expand Down
Loading

0 comments on commit 47d9007

Please sign in to comment.