Skip to content

Commit 12144db

Browse files
committed
chore: update links in markdown
1 parent ee9a76f commit 12144db

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

README.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,15 @@ From there:
168168
- Open/extract the archive.
169169
- Move kubo (`ipfs`) to your path (`install.sh` can do it for you).
170170

171-
If you are unable to access [dist.ipfs.tech](https://dist.ipfs.tech#kubo), you can also download kubo (go-ipfs) from:
171+
If you are unable to access [dist.ipfs.tech](https://dist.ipfs.tech#kubo), you can also download kubo from:
172172
- this project's GitHub [releases](https://github.com/ipfs/kubo/releases/latest) page
173173
- `/ipns/dist.ipfs.tech` at [dweb.link](https://dweb.link/ipns/dist.ipfs.tech#kubo) gateway
174174

175175
#### Updating
176176

177177
##### Downloading builds using IPFS
178178

179-
List the available versions of Kubo (go-ipfs) implementation:
179+
List the available versions of Kubo implementation:
180180

181181
```console
182182
$ ipfs cat /ipns/dist.ipfs.tech/kubo/versions
@@ -238,7 +238,7 @@ https://packages.gentoo.org/packages/net-p2p/kubo
238238

239239
#### <a name="nix-linux">Nix</a>
240240

241-
With the purely functional package manager [Nix](https://nixos.org/nix/) you can install kubo (go-ipfs) like this:
241+
With the purely functional package manager [Nix](https://nixos.org/nix/) you can install kubo like this:
242242

243243
```
244244
$ nix-env -i kubo
@@ -258,11 +258,11 @@ You can also install it through the Solus software center.
258258

259259
#### openSUSE
260260

261-
[Community Package for go-ipfs](https://software.opensuse.org/package/go-ipfs)
261+
[Community Package for kubo](https://software.opensuse.org/package/kubo)
262262

263263
#### Guix
264264

265-
[Community Package for go-ipfs](https://packages.guix.gnu.org/packages/go-ipfs/0.11.0/) is now out-of-date.
265+
[Community Package for kubo](https://packages.guix.gnu.org/search/?query=kubo) is available.
266266

267267
#### Snap
268268

@@ -323,7 +323,7 @@ PS> scoop install kubo
323323

324324
#### MacPorts
325325

326-
The package [ipfs](https://ports.macports.org/port/ipfs) currently points to kubo (go-ipfs) and is being maintained.
326+
The package [ipfs](https://ports.macports.org/port/ipfs) currently points to kubo and is being maintained.
327327

328328
```
329329
$ sudo port install ipfs
@@ -383,7 +383,7 @@ $ cd kubo
383383
$ make install
384384
```
385385

386-
Alternatively, you can run `make build` to build the go-ipfs binary (storing it in `cmd/ipfs/ipfs`) without installing it.
386+
Alternatively, you can run `make build` to build the kubo binary (storing it in `cmd/ipfs/ipfs`) without installing it.
387387

388388
**NOTE:** If you get an error along the lines of "fatal error: stdlib.h: No such file or directory", you're missing a C compiler. Either re-run `make` with `CGO_ENABLED=0` or install GCC.
389389

@@ -400,7 +400,7 @@ make build GOOS=myTargetOS GOARCH=myTargetArchitecture
400400
- Separate [instructions are available for building on Windows](docs/windows.md).
401401
- `git` is required in order for `go get` to fetch all dependencies.
402402
- Package managers often contain out-of-date `golang` packages.
403-
Ensure that `go version` reports at least 1.10. See above for how to install go.
403+
Ensure that `go version` reports the minimum version required (see go.mod). See above for how to install go.
404404
- If you are interested in development, please install the development
405405
dependencies as well.
406406
- Shell command completions can be generated with one of the `ipfs commands completion` subcommands. Read [docs/command-completion.md](docs/command-completion.md) to learn more.
@@ -418,6 +418,8 @@ system, this is done with `ipfs init`. See `ipfs init --help` for information on
418418
the optional arguments it takes. After initialization is complete, you can use
419419
`ipfs mount`, `ipfs add` and any of the other commands to explore!
420420

421+
For detailed configuration options, see [docs/config.md](https://github.com/ipfs/kubo/blob/master/docs/config.md).
422+
421423
### Some things to try
422424

423425
Basic proof of 'ipfs working' locally:
@@ -436,6 +438,8 @@ For programmatic interaction with Kubo, see our [list of HTTP/RPC clients](docs/
436438

437439
If you have previously installed IPFS before and you are running into problems getting a newer version to work, try deleting (or backing up somewhere else) your IPFS config directory (~/.ipfs by default) and rerunning `ipfs init`. This will reinitialize the config file to its defaults and clear out the local datastore of any bad entries.
438440

441+
For more information about configuration options, see [docs/config.md](https://github.com/ipfs/kubo/blob/master/docs/config.md).
442+
439443
Please direct general questions and help requests to our [forums](https://discuss.ipfs.tech).
440444

441445
If you believe you've found a bug, check the [issues list](https://github.com/ipfs/kubo/issues) and, if you don't see your problem there, either come talk to us on [Matrix chat](https://docs.ipfs.tech/community/chat/), or file an issue of your own!

docs/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The Kubo config file
22

3-
The Kubo (go-ipfs) config file is a JSON document located at `$IPFS_PATH/config`. It
3+
The Kubo config file is a JSON document located at `$IPFS_PATH/config`. It
44
is read once at node instantiation, either for an offline command, or when
55
starting the daemon. Commands that execute on a running daemon do not read the
66
config file at runtime.

0 commit comments

Comments
 (0)