chore: update links in markdown
Marcin Rataj committed
Jul 14, 2025 at 17:56 UTC
12144dbeed03d42b21b60b13d61d8def2013fc38
2 files changed
+13
-9
README.md
+12
-8
@@ -168,7 +168,7 @@ From there:
168
- Open/extract the archive.
169
- Move kubo (`ipfs`) to your path (`install.sh` can do it for you).
170
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:
172
- this project's GitHub [releases](https://github.com/ipfs/kubo/releases/latest) page
173
- `/ipns/dist.ipfs.tech` at [dweb.link](https://dweb.link/ipns/dist.ipfs.tech#kubo) gateway
174
@@ -176,7 +176,7 @@ If you are unable to access [dist.ipfs.tech](https://dist.ipfs.tech#kubo), you c
176
177
##### Downloading builds using IPFS
178
179
-List the available versions of Kubo (go-ipfs) implementation:
179
+List the available versions of Kubo implementation:
180
181
```console
182
$ ipfs cat /ipns/dist.ipfs.tech/kubo/versions
@@ -238,7 +238,7 @@ https://packages.gentoo.org/packages/net-p2p/kubo
238
239
#### <a name="nix-linux">Nix</a>
240
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:
242
243
```
244
$ nix-env -i kubo
@@ -258,11 +258,11 @@ You can also install it through the Solus software center.
258
259
#### openSUSE
260
261
-[Community Package for go-ipfs](https://software.opensuse.org/package/go-ipfs)
261
+[Community Package for kubo](https://software.opensuse.org/package/kubo)
262
263
#### Guix
264
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.
266
267
#### Snap
268
@@ -323,7 +323,7 @@ PS> scoop install kubo
323
324
#### MacPorts
325
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.
327
328
```
329
$ sudo port install ipfs
@@ -383,7 +383,7 @@ $ cd kubo
383
$ make install
384
```
385
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.
387
388
**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.
389
@@ -400,7 +400,7 @@ make build GOOS=myTargetOS GOARCH=myTargetArchitecture
400
- Separate [instructions are available for building on Windows](docs/windows.md).
401
- `git` is required in order for `go get` to fetch all dependencies.
402
- 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.
404
- If you are interested in development, please install the development
405
dependencies as well.
406
- 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
418
the optional arguments it takes. After initialization is complete, you can use
419
`ipfs mount`, `ipfs add` and any of the other commands to explore!
420
421
+For detailed configuration options, see [docs/config.md](https://github.com/ipfs/kubo/blob/master/docs/config.md).
422
+
423
### Some things to try
424
425
Basic proof of 'ipfs working' locally:
@@ -436,6 +438,8 @@ For programmatic interaction with Kubo, see our [list of HTTP/RPC clients](docs/
438
439
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.
440
441
+For more information about configuration options, see [docs/config.md](https://github.com/ipfs/kubo/blob/master/docs/config.md).
442
+
443
Please direct general questions and help requests to our [forums](https://discuss.ipfs.tech).
444
445
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
+1
-1
@@ -1,6 +1,6 @@
1
# The Kubo config file
2
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
4
is read once at node instantiation, either for an offline command, or when
5
starting the daemon. Commands that execute on a running daemon do not read the
6
config file at runtime.