Skip to content

Commit

Permalink
Install Solana before using it (solana-labs#8638)
Browse files Browse the repository at this point in the history
automerge
  • Loading branch information
solana-grimes authored Mar 4, 2020
1 parent 7035d3c commit 47bb904
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 56 deletions.
3 changes: 1 addition & 2 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Table of contents

* [Introduction](introduction.md)
* [Installing Solana](install-solana.md)
* [Using Solana from the Command-line](cli/README.md)
* [Command-line Usage](cli/usage.md)
* [Remote Wallet](remote-wallet/README.md)
* [Ledger Hardware Wallet](remote-wallet/ledger.md)
* [Paper Wallet](paper-wallet/README.md)
* [Installation](paper-wallet/installation.md)
* [Paper Wallet Usage](paper-wallet/usage.md)
* [Offline Signing](offline-signing/README.md)
* [Durable Transaction Nonces](offline-signing/durable-nonce.md)
Expand Down Expand Up @@ -41,7 +41,6 @@
* [Running a Validator](running-validator/README.md)
* [Validator Requirements](running-validator/validator-reqs.md)
* [Choosing a Testnet](running-validator/validator-testnet.md)
* [Installing the Validator Software](running-validator/validator-software.md)
* [Starting a Validator](running-validator/validator-start.md)
* [Staking](running-validator/validator-stake.md)
* [Monitoring a Validator](running-validator/validator-monitor.md)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Installing the Validator Software
# Installing Solana

Install the Solana release
[v1.0.0](https://github.com/solana-labs/solana/releases/tag/v1.0.0) on your
Expand Down
51 changes: 0 additions & 51 deletions src/paper-wallet/installation.md

This file was deleted.

12 changes: 12 additions & 0 deletions src/paper-wallet/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@ written to disk by unencrypted memory swaps. It is the user's responsibility to
protect against this scenario.
{% endhint %}

## Before You Begin

- [Install the Solana command-line tools](../install-solana.md)

### Check your installation

Check that `solana-keygen` is installed correctly by running:

```bash
solana-keygen --version
```

## Creating a Paper Wallet

Using the `solana-keygen` tool, it is possible to generate new seed phrases as
Expand Down
1 change: 1 addition & 0 deletions src/remote-wallet/ledger.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ secure transaction signing.

## Before You Begin

- [Install the Solana command-line tools](../install-solana.md)
- [Initialize your Ledger Nano S](https://support.ledger.com/hc/en-us/articles/360000613793)
- [Install the latest device firmware](https://support.ledgerwallet.com/hc/en-us/articles/360002731113-Update-Ledger-Nano-S-firmware)
- [Install Ledger Live](https://support.ledger.com/hc/en-us/articles/360006395553/) software on your computer
Expand Down
2 changes: 1 addition & 1 deletion src/running-validator/validator-reqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Here are our recommendations for low, medium, and high end machine specification
## Software

* We build and run on Ubuntu 18.04. Some users have had trouble when running on Ubuntu 16.04
* See [Validator Software](validator-software.md) for the current Solana software release.
* See [Installing Solana](../install-solana.md) for the current Solana software release.

Be sure to ensure that the machine used is not behind a residential NAT to avoid
NAT traversal issues. A cloud-hosted machine works best. **Ensure that IP ports 8000 through 10000 are not blocked for Internet inbound and outbound traffic.**
Expand Down
2 changes: 1 addition & 1 deletion src/running-validator/validator-testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ stability, all that can be said is that CI automation was successful.
### Get Testnet Version

You can submit a JSON-RPC request to see the specific software version of the
cluster. Use this to specify [the software version to install](validator-software.md).
cluster. Use this to specify [the software version to install](../install-solana.md).

```bash
curl -X POST -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","id":1, "method":"getVersion"}' devnet.solana.com:8899
Expand Down

0 comments on commit 47bb904

Please sign in to comment.