Skip to content

Commit

Permalink
Merge pull request #575 from ethersphere/fix-broken-links
Browse files Browse the repository at this point in the history
fix broken links
  • Loading branch information
NoahMaizels authored Mar 29, 2024
2 parents e608a6f + 65e023b commit fb3cf79
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/bee/installation/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ HDD drives are very strongly discouraged for full nodes due to their low speeds.

Note that there are additional [hardware requirements](https://docs.gnosischain.com/node/#environment-and-hardware) if you choose to run your own Gnosis Chain node in order to provide your Bee node(s) with the required RPC endpoint. See [configuration step](/docs/bee/installation/install#set-blockchain-rpc-endpoint) for more details.

In order to test whether a set of hardware specs is sufficient for running a full node and participating in the storage incentives redistribution, see [this guide](/docs/bee/working-with-bee/staking#check-node-performance) on the staking page.
In order to test whether a set of hardware specs is sufficient for running a full node and participating in the storage incentives redistribution, see [this guide](/docs/bee/working-with-bee/troubleshooting#node-not-participating-in-redistribution).

### Light and UltraLight Nodes

Expand Down
2 changes: 1 addition & 1 deletion docs/bee/working-with-bee/backups.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ It may also be useful to include the `bee.yaml` config file in a backup so that

### Binary package install

If you installed Bee using the [automated shell script](/docs/bee/installation/install#shell-script-install-alternate-method) or by [building Bee from source](/docs/bee/installation/build-from-source), your data directory will typically be located at:
If you installed Bee using the [automated shell script](/docs/bee/installation/install#shell-script-install) or by [building Bee from source](/docs/bee/installation/build-from-source), your data directory will typically be located at:

```bash
/home/<user>/.bee
Expand Down
4 changes: 2 additions & 2 deletions docs/bee/working-with-bee/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ These two methods have [significant differences](/docs/bee/installation/install#

## Configuration for Bee Service

*Note that Bee is only set up to run as a service by default when it is [installed using one of the officially supported](/docs/bee/installation/install#package-manager-install-recommended-method) Linux Debian or RPM packages or the Homebrew installer for MacOS.*
*Note that Bee is only set up to run as a service by default when it is [installed using one of the officially supported](/docs/bee/installation/install#shell-script-install) Linux Debian or RPM packages or the Homebrew installer for MacOS.*


### Default Data and Config Directories
Expand Down Expand Up @@ -363,7 +363,7 @@ Bee provides the following options to customise your node.

_default_ `/home/<user>/.bee.yaml`

The location of a YAML configuration file containing configuration options. See [configuration](#configuration-file).
The location of a YAML configuration file containing configuration options. See [configuration](/docs/bee/working-with-bee/configuration#default-data-and-config-directories-1).

### Start

Expand Down
4 changes: 2 additions & 2 deletions docs/bee/working-with-bee/uninstalling-bee.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Choose the appropriate uninstall method based on the install method used:

### Package Manager Install

This method can be used for package manager based [installs](/docs/bee/installation/install#package-manager-install-recommended-method) of the official Debian, RPM, and Homebrew packages.
This method can be used for package manager based [installs](/docs/bee/installation/install#shell-script-install) of the official Debian, RPM, and Homebrew packages.

:::danger
This will remove your keyfiles so make certain that you have a [full backup](/docs/bee/working-with-bee/backups#backup-your-node) of your keys and configuration before uninstalling.
Expand All @@ -30,7 +30,7 @@ sudo yum remove bee
```

### Binary Install
If Bee is installed using the [automated shell script](/docs/bee/installation/install#shell-script-install-alternate-method) or by [building from source](/docs/bee/installation/build-from-source), Bee can be uninstalled by directly removing the installed file.
If Bee is installed using the [automated shell script](/docs/bee/installation/install#shell-script-install) or by [building from source](/docs/bee/installation/build-from-source), Bee can be uninstalled by directly removing the installed file.

```bash
sudo rm `/usr/local/bin/bee`
Expand Down
6 changes: 3 additions & 3 deletions docs/develop/bee-developers/useful-dev-info.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ If you would like to contribute, please read the [coding guidelines](https://git

Installation from source is described in the [Installation](/docs/bee/installation/build-from-source).

# Testing a connection with PingPong protocol
## Testing a connection with PingPong protocol

To check if two nodes are connected and to see the round trip time for message exchange between them, get the overlay address from one node, for example local node 2:

Expand All @@ -29,7 +29,7 @@ And use that address in the Debug API call on another node, for example, local n
curl -XPOST localhost:1735/pingpong/d4440baf2d79e481c3c6fd93a2014d2e6fe0386418829439f26d13a8253d04f1
```

# Generating protobuf
## Generating protobuf

To process protocol buffer files and generate the Go code from it two tools are needed:

Expand All @@ -42,7 +42,7 @@ Makefile rule `protobuf` can be used to automate `protoc-gen-gogofaster` install
make protobuf
```

# Tracing
## Tracing

Developers can gain an additional level of insight into the node by enabling `tracing`. To make use of Tracing, we advice to make use of [jaeger](https://www.jaegertracing.io/).

Expand Down
4 changes: 2 additions & 2 deletions docs/learn/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ There are many ways to acquire BZZ token, either on custodial centralised exchan

### What is the BZZ token address?

See [this page](/docs/learn/technology/contracts/overview/#token-contracts) for a list of relevant token addresses.
See [this page](/docs/learn/technology/contracts/overview) for a list of relevant token addresses.

### What is the BZZ token supply?

Expand Down Expand Up @@ -99,7 +99,7 @@ A bee node can be configured to run in various modes based on specific use cases
#### What are the requirements for running a Bee node?


See the [install section](/docs/bee/installation/install/#1-install-bee) for more information about running a Bee node.
See the [install section](/docs/bee/installation/install) for more information about running a Bee node.

##### Full node

Expand Down

0 comments on commit fb3cf79

Please sign in to comment.