diff --git a/_data/sidebar.yml b/_data/sidebar.yml index ba1bcbe00b..b46b588cad 100644 --- a/_data/sidebar.yml +++ b/_data/sidebar.yml @@ -1,3 +1,5 @@ +Getting started: + - Dev mode: /docs/getting-started/dev-mode Install and build: - Downloads: /downloads - Installing Ethereum: /docs/Building-Ethereum @@ -20,4 +22,4 @@ Developers: - Mobile Clients: /docs/Mobile-Clients/Libraries-and-Inproc-Ethereum-Nodes - Native DApps: /docs/Native-DApps/Go-bindings-to-Ethereum-contracts - Active go-ethereum projects: /docs/Active-go-ethereum-projects - - Other documents: /docs/other-documents \ No newline at end of file + - Other documents: /docs/other-documents diff --git a/docs/_getting-started/ns.md b/docs/_getting-started/ns.md deleted file mode 100644 index 86b9f386e2..0000000000 --- a/docs/_getting-started/ns.md +++ /dev/null @@ -1,47 +0,0 @@ - - -## Next steps - - - -### Fast sync a test network - - - -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: - - - -```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 -``` - -## Dev mode - -Geth has a development mode which sets up a single node Ethereum test network along with a number of options optimized for local development. Enable it with the `--dev` argument. - -```shell -geth --dev -``` - - - -```shell -geth attach ipc:{FILL_THIS} -``` - - - -## Start a private network diff --git a/docs/_getting-started/private-network.md b/docs/_getting-started/private-network.md deleted file mode 100644 index 8e742f1d35..0000000000 --- a/docs/_getting-started/private-network.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Start a private network ---- - -