wiki.bitgrin.dev
  • wiki.bitgrin.dev
  • What's Bitgrin
  • Team
  • Coin Info
  • What's MimbleWimble
  • Tutorials
    • VPN & Port Fowarding
    • HTTP payments without port forwarding
    • How to check port 8515 is open
    • How to deposit on VINEX
    • How to run a node - Linux
  • WALLET
    • Wallet Kingfish W10 - V1.1.2
    • Wallet Linux Command
    • How to revover from seed W10
    • How to store your seed
  • MINING
    • List of compatible miners
    • Video with simplemining
    • How to register on pool.bitgrin.dev
    • How to mine Bitgrin W10 AMD
    • How to mine Bitgrin W10 NVIDIA
    • How to mine Bitgrin Linux
  • News
    • Dev Updates - Announcements
  • Usefull links
    • Bitgrin links
    • Social Media links
    • Exchanges
    • Pool list
  • MEDIA
    • Official Logo
    • Infographics - Memes
Powered by GitBook
On this page

Was this helpful?

  1. Tutorials

How to run a node - Linux

SOON UNDER CONSTUCTION

PreviousHow to deposit on VINEXNextWallet Kingfish W10 - V1.1.2

Last updated 5 years ago

Was this helpful?

I use windows 10 and a virtual machine for this tutorial, but that doesn't really matter where you start from.

No need to explain how to install a virtual machine on windows 10, there are so many tutorials out there.

I prefer to use Oracle VirtualBox, this is very easy to setup and run great.

Once installed on windows 10, you can choose any linux image.

I chose manjaro, because I like it, ubuntu will make no difference for what we want to achieved.

open up a terminal
---Update ubuntu

$ sudo apt-get update -y && sudo apt-get upgrade -y

---Install Node (wallet)

$ sudo apt install build-essential cmake git libgit2-dev clang libncurses5-dev libncursesw5-dev zlib1g-dev pkg-config libssl-dev llvm curl git -y

$ cd bitgrin

$ cargo build --release

$ target/release/bitgrin

your wallet is started let it full sync - then reboot

---Create Wallet - backup seeds

Open a terminal

$ cd bitgrin

$ target/release/grin wallet init

input your password and confirme again

*** !! -- SAVE YOUR SEED -- !! ***

Next the wallet commands

$ curl -sSf | sh; source $HOME/.cargo/env

$ git clone —recursive

https://sh.rustup.rs/
https://github.com/bitgrin/bitgrin.git
Wallet Linux Command