mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Fix rendering and start adding next steps
This commit is contained in:
parent
c49abfc4a8
commit
04772c134c
3 changed files with 43 additions and 10 deletions
23
_config.yml
23
_config.yml
|
|
@ -25,42 +25,47 @@ default_root: ".."
|
||||||
|
|
||||||
collections_dir: docs
|
collections_dir: docs
|
||||||
collections:
|
collections:
|
||||||
|
getting-started:
|
||||||
|
output: true
|
||||||
|
caption: Getting started
|
||||||
|
sidebar_index: 1
|
||||||
|
frontpage: _getting-started/index.md
|
||||||
install-and-build:
|
install-and-build:
|
||||||
output: true
|
output: true
|
||||||
caption: Install and build
|
caption: Install and build
|
||||||
sidebar_index: 1
|
sidebar_index: 2
|
||||||
frontpage: _install-and-build/Installing-Geth.md
|
frontpage: _install-and-build/Installing-Geth.md
|
||||||
interface:
|
interface:
|
||||||
output: true
|
output: true
|
||||||
caption: Interacting with Geth
|
caption: Interacting with Geth
|
||||||
sidebar_index: 2
|
sidebar_index: 3
|
||||||
support:
|
support:
|
||||||
output: true
|
output: true
|
||||||
caption: Issues and support
|
caption: Issues and support
|
||||||
sidebar_index: 3
|
sidebar_index: 4
|
||||||
developers:
|
developers:
|
||||||
output: true
|
output: true
|
||||||
caption: Developer docs
|
caption: Developer docs
|
||||||
sidebar_index: 4
|
sidebar_index: 5
|
||||||
clef:
|
clef:
|
||||||
output: true
|
output: true
|
||||||
caption: Clef
|
caption: Clef
|
||||||
sidebar_index: 5
|
sidebar_index: 6
|
||||||
frontpage: _clef/Overview.md
|
frontpage: _clef/Overview.md
|
||||||
whisper:
|
whisper:
|
||||||
output: true
|
output: true
|
||||||
caption: Whisper
|
caption: Whisper
|
||||||
sidebar_index: 6
|
sidebar_index: 7
|
||||||
frontpage: _whisper/Whisper-Overview.md
|
frontpage: _whisper/Whisper-Overview.md
|
||||||
rpc:
|
rpc:
|
||||||
output: true
|
output: true
|
||||||
caption: JSON RPC APIs
|
caption: JSON RPC APIs
|
||||||
sidebar_index: 7
|
sidebar_index: 8
|
||||||
doc:
|
doc:
|
||||||
output: true
|
output: true
|
||||||
caption: Other
|
caption: Other
|
||||||
sidebar_index: 8
|
sidebar_index: 9
|
||||||
legacy:
|
legacy:
|
||||||
output: true
|
output: true
|
||||||
caption: Legacy content
|
caption: Legacy content
|
||||||
sidebar_index: 9
|
sidebar_index: 10
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
Getting started:
|
||||||
Install and build:
|
Install and build:
|
||||||
- Downloads: /downloads
|
- Downloads: /downloads
|
||||||
- Installing Ethereum: /docs/Building-Ethereum
|
- Installing Ethereum: /docs/Building-Ethereum
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Getting Started with Geth
|
title: Getting Started with Geth
|
||||||
|
permalink: getting-started
|
||||||
---
|
---
|
||||||
|
|
||||||
## Installing
|
## Installing
|
||||||
|
|
@ -122,3 +123,29 @@ eth.accounts
|
||||||
<!-- TODO: Read more -->
|
<!-- TODO: Read more -->
|
||||||
|
|
||||||
## Next steps
|
## Next steps
|
||||||
|
|
||||||
|
<!-- I like the idea of having a Getting started section. You may want to describe a few ways to get your feet wet with Geth (fast sync with a test net, dev mode, start a private network). -->
|
||||||
|
|
||||||
|
### Fast sync a test network
|
||||||
|
|
||||||
|
<!-- TODO: What happens if you don't specify? -->
|
||||||
|
|
||||||
|
You learned about the `--syncmode` argument above, but you can also specify the network to sync with, by adding it as an argument. For example to fast sync with the Rinkeby test network:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
geth --syncmode "fast" --rinkeby
|
||||||
|
```
|
||||||
|
|
||||||
|
To check the status of the sync, open another terminal, attach to the geth process, and open a console with the command below:
|
||||||
|
|
||||||
|
<!-- TODO: Figuring out what to attach to seems difficult -->
|
||||||
|
|
||||||
|
```shell
|
||||||
|
geth attach ipc:{FILL_THIS}
|
||||||
|
```
|
||||||
|
|
||||||
|
Then at the `>` prompt, run the command below to the current state of the sync operation:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
eth.syncing
|
||||||
|
```
|
||||||
Loading…
Reference in a new issue