Building Qtum on Linux
Building Qtum Core on Debian/Ubuntu
Installing dependencies (This will work for Ubuntu and Debian)
Compiling Qtum Core from source
From Github source:
This will install all the Qtum binaries on depends/x86_64-pc-linux-gnu
From a release file:
This will install all the Qtum binaries on depends/x86_64-pc-linux-gnu
Running Qtum Core
Type from a terminal:
qtumd -daemon
Also, make sure to create a qtum.conf with your credentials if needed for accessing RPC calls.
This is a sample qtum.conf file
QRC20 Tokens on Qtum Core
Enabling Log events
add logevents=1
to the qtum.conf file before launching the daemon
Run Qtum like this:
qtumd -daemon -logevents -txindex=1
If Qtum has already synced, you'll need to reindex blocks:
qtumd -daemon -reindex
Build Qtum on CentOS 7
CentOS is an enterprise-oriented Linux distribution, that means it's focused for stability and security but not necessarily the latest software. With that being said, you cannot currently build Qtum in CentOS 7 following the steps that other more recent distributions can use.
In this document we'll show how to build Qtum in CentOS 7 and produce a static binary which can then be executed on any other Linux distribution, even if it's more recent.
General Prerequisites
Update Yum repositories
Install development tools and libraries
Getting ready:
Enable Devtoolset-7
Clone Qtum Github source:
Building Qtum
Please keep in mind, this will produce a static build and it will take longer than a normal build.
Last updated