We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The easiest way to install Bitcoin Wallet on your Linux machine is via repositories.
Let us first install Bitcoind, because it takes some time to sync it all up (around 12 hours)
sudo add-apt-repository ppa:bitcoin-unlimited/bu-ppa sudo apt-get update sudo apt-get install bitcoind bitcoin-qt
Let's create folder .bitcoin
cd ~/ mkdir .bitcoin cd .bitcoin nano bitcoin.conf
Paste this in your bitcoin.conf (replace recuser and rpcpassword)
server=1 daemon=1 txindex=1 rpcuser=bitcoinrpc rpcpassword=password bind=127.0.0.1 rpcbind=127.0.0.1
secure the bitcoin.conf file
chmod 600 ~/.bitcoin/bitcoin.conf
Start Bitcoind
bitcoind -daemon
check to see if it's downloading the blocks
bitcoin-cli getinfo