mirror of
https://github.com/MAGICGrants/getmonero.dev.git
synced 2026-01-09 21:08:03 -05:00
fix more links
This commit is contained in:
8
index.md
8
index.md
@@ -12,10 +12,10 @@ The goal of this website is to supplement the official Monero documentation. Thi
|
||||
|
||||
Common pages include:
|
||||
|
||||
* [Using monerod](/interacting/monerod-reference)
|
||||
* [Using monero-wallet-cli](/interacting/monero-wallet-cli-reference)
|
||||
* [Using monero-wallet-gui](/interacting/monero-wallet-gui-reference)
|
||||
* [Using monero-wallet-rpc](/interacting/monero-wallet-rpc-reference)
|
||||
* [Using monerod](/interacting/monerod)
|
||||
* [Using monero-wallet-cli](/interacting/monero-wallet-cli)
|
||||
* [Using monero-wallet-gui](/interacting/monero-wallet-gui)
|
||||
* [Using monero-wallet-rpc](/interacting/monero-wallet-rpc)
|
||||
|
||||
Please submit your feedback and corrections directly on [GitHub](https://github.com/MAGICGrants/getmonero.dev/issues).
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ parent: Infrastructure
|
||||
|
||||
## When this is necessary?
|
||||
|
||||
This is only necessary if you run a full node and you want to propagate locally-originating transactions over Tor (using `tx-proxy` option, see [monerod reference](/interacting/monerod-reference/#tori2p)). This allows you to mask your IP (as transaction originator) against P2P network surveillence, on top of Monero's built-in Dandelion++.
|
||||
This is only necessary if you run a full node and you want to propagate locally-originating transactions over Tor (using `tx-proxy` option, see [monerod reference](/interacting/monerod/#tori2p)). This allows you to mask your IP (as transaction originator) against P2P network surveillence, on top of Monero's built-in Dandelion++.
|
||||
|
||||
## What are P2P seed nodes?
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ The tool imports bootstrap file `blockchain.raw` to your full node.
|
||||
This could be useful if you want to decouple download from verification for any reason (like testing performance in isolation).
|
||||
In this case, you may download the `blockchain.raw` file from [https://downloads.getmonero.org/blockchain.raw](https://downloads.getmonero.org/blockchain.raw).
|
||||
|
||||
Ideally though, you should use your own trusted `blockchain.raw` file that you [exported](/interacting/monero-blockchain-export-reference) earlier.
|
||||
Ideally though, you should use your own trusted `blockchain.raw` file that you [exported](/interacting/monero-blockchain-export) earlier.
|
||||
|
||||
Please note that importing `blockchain.raw` will **not** speed up the process over syncing up from p2p network.
|
||||
This is because usual bottlenecks are disk IO and verification, not the download.
|
||||
|
||||
@@ -25,7 +25,7 @@ The CLI wallet is the most reliable and most feature complete wallet for Monero.
|
||||
|
||||
### Depends on the full node
|
||||
|
||||
Wallet connects to a [full node](/interacting/monerod-reference) to scan the blockchain for your transaction outputs and to send your transactions out to the network.
|
||||
Wallet connects to a [full node](/interacting/monerod) to scan the blockchain for your transaction outputs and to send your transactions out to the network.
|
||||
|
||||
The full node can be either local (same computer) or remote.
|
||||
|
||||
@@ -86,7 +86,7 @@ In a separate terminal window, run the wallet:
|
||||
|
||||
#### Full node connection
|
||||
|
||||
Wallet depends on a full node for all non-local operations. The following options define how to connect to [`monerod`](/interacting/monerod-reference):
|
||||
Wallet depends on a full node for all non-local operations. The following options define how to connect to [`monerod`](/interacting/monerod):
|
||||
|
||||
| Option | Description
|
||||
|--------------------------|--------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
@@ -18,7 +18,7 @@ However, wallet does not store the blockchain and does not directly participate
|
||||
|
||||
### Depends on the full node
|
||||
|
||||
Wallet connects to a [full node](/interacting/monerod-reference) to scan the blockchain for your transaction outputs and to send your transactions out to the network.
|
||||
Wallet connects to a [full node](/interacting/monerod) to scan the blockchain for your transaction outputs and to send your transactions out to the network.
|
||||
|
||||
The full node can be either local (same computer) or remote.
|
||||
|
||||
|
||||
@@ -28,11 +28,11 @@ However, wallet does not store the blockchain and does not directly participate
|
||||
|
||||
### Depends on the full node
|
||||
|
||||
Wallet connects to a [full node](/interacting/monerod-reference) to scan the blockchain for your transaction outputs and to send your transactions out to the network.
|
||||
Wallet connects to a [full node](/interacting/monerod) to scan the blockchain for your transaction outputs and to send your transactions out to the network.
|
||||
|
||||
The full node can be either local (same computer) or remote.
|
||||
|
||||
You can play with [CLI wallet](/interacting/monero-wallet-cli-reference) and [GUI wallet](/interacting/monero-wallet-gui-reference) first to understand the relationship between the full node, the wallet and the user.
|
||||
You can play with [CLI wallet](/interacting/monero-wallet-cli) and [GUI wallet](/interacting/monero-wallet-gui) first to understand the relationship between the full node, the wallet and the user.
|
||||
|
||||
## Syntax
|
||||
|
||||
|
||||
@@ -54,7 +54,7 @@ extras/monero-blockchain-depth
|
||||
|
||||
| Executable | Description
|
||||
| -------------------------- |:-----------------------------------------------------------------------------------------------------------------------------------
|
||||
| `monerod` | The full node daemon. Does not require a wallet. <br />[Documentation](/interacting/monerod-reference).
|
||||
| `monerod` | The full node daemon. Does not require a wallet. <br />[Documentation](/interacting/monerod).
|
||||
| `monero-wallet-gui` | Wallet logic and __graphical__ user interface. <br />Requires `monerod` running.
|
||||
| `monero-wallet-cli` | Wallet logic and __commandline__ user interface. <br />Requires `monerod` running.
|
||||
| `monero-wallet-rpc` | Wallet logic and __HTTP API__ (JSON-RPC protocol). <br />Requires `monerod` running.
|
||||
|
||||
@@ -100,7 +100,7 @@ Verify it is working as intended `tail -n100 /var/log/monero/monero.log`
|
||||
|
||||
### /etc/monero.conf
|
||||
|
||||
This is just an example configuration and it is by no means authoritative. Feel free to modify, see [monerod reference](/interacting/monerod-reference).
|
||||
This is just an example configuration and it is by no means authoritative. Feel free to modify, see [monerod reference](/interacting/monerod).
|
||||
|
||||
Modify paths if you changed them.
|
||||
|
||||
@@ -110,7 +110,7 @@ Print your onion address with `cat /var/lib/tor/monero/hostname` and paste it to
|
||||
# /etc/monero.conf
|
||||
#
|
||||
# Configuration file for monerod. For all available options see the MoneroDocs:
|
||||
# https://getmonero.dev/interacting/monerod-reference/
|
||||
# https://getmonero.dev/interacting/monerod/
|
||||
|
||||
# Data directory (blockchain db and indices)
|
||||
data-dir=/srv/monero
|
||||
|
||||
Reference in New Issue
Block a user