Skip to content

Commit f18ac09

Browse files
committed
correct outdated content on quickstart cli
fixes #1735
1 parent 5d4be62 commit f18ac09

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

docs/how-to/command-line-quick-start.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -35,26 +35,23 @@ If you have not yet installed Kubo, follow the [Kubo install guide](../install/c
3535
Output similar to the following displays:
3636

3737
```bash
38-
> initializing ipfs node at /Users/jbenet/.ipfs
39-
> generating 2048-bit RSA keypair...done
40-
> peer identity: Qmcpo2iLBikrdf1d6QU6vXuNb6P7hwrbNPW9kLAH8eG67z
41-
> to get started, enter:
42-
>
43-
> ipfs cat /ipfs/QmYwAPJzv5CZsnA625s3Xf2nemtYgPpHdWEz79ojWnPbdG/readme
38+
> generating ED25519 keypair...done
39+
> peer identity: 12D3KooWMkNK8zgTQvtinDY8nuKmMAPBi3fBmvZj6W5huokJxekm
40+
> initializing IPFS node at /Users/jbenet/.ipfs
4441
```
4542

4643
:::tip
47-
The hash next to `peer identity` is your node’s ID and will be different from the one shown in the above output. Other nodes on the network use `peer identity` to find and connect to you.
44+
The `peer identity` is your node’s libp2p PeerID and will be different from the one shown in the above output. Other nodes on the network use `peer identity` to find and connect to you.
4845

49-
Run `ipfs id` to display the `peer identity` if you need it.
46+
Run `ipfs id` to display your node's PeerID.
5047
:::
5148
5249
5350
54-
2. Now, try running the command suggested to you in the output of `ipfs init` (i.e. `ipfs cat /ipfs/QmYwAPJzv5CZsnA625s3Xf2nemtYgPpHdWEz79ojWnPbdG/readme`):
51+
2. Now, try running the following command: `ipfs cat /ipfs/bafybeie5nqv6kd3qnfjupgvz34woh3oksc3iau6abmyajn7qvtf6d2ho34/readme`:
5552
5653
```bash
57-
ipfs cat /ipfs/QmYwAPJzv5CZsnA625s3Xf2nemtYgPpHdWEz79ojWnPbdG/readme
54+
ipfs cat /ipfs/bafybeie5nqv6kd3qnfjupgvz34woh3oksc3iau6abmyajn7qvtf6d2ho34/readme
5855
```
5956
6057
You should see something like this:
@@ -91,7 +88,7 @@ If you have not yet installed Kubo, follow the [Kubo install guide](../install/c
9188
1. The `quick-start` directory shows other example commands to try. To display the contents of `quick-start, run:
9289
9390
```bash
94-
ipfs cat /ipfs/QmYwAPJzv5CZsnA625s3Xf2nemtYgPpHdWEz79ojWnPbdG/quick-start
91+
ipfs cat /ipfs/bafybeie5nqv6kd3qnfjupgvz34woh3oksc3iau6abmyajn7qvtf6d2ho34/quick-start
9592
```
9693
9794
:::tip
@@ -249,12 +246,12 @@ For more information on IPFS companion, including how to install it, see the [IP
249246

250247
### Check your Go version
251248

252-
IPFS works with Go 1.12.0 or later. To check what go version you have installed, type `go version`:
249+
IPFS works with Go 1.24.0 or later. To check what go version you have installed, type `go version`:
253250

254251
```bash
255252
go version
256253
257-
> go version go1.12.2 linux/amd64
254+
> go version go1.24.0 linux/amd64
258255
```
259256

260257
If you need to update, we recommend you install from the [canonical Go packages](https://go.dev/doc/install). Package managers often contain out-of-date Go packages.

0 commit comments

Comments
 (0)