Bitcoin Core Offline Reinstallation

0

It is possible to reinstall Bitcoin Core Offline? I copied all the files to my external HDD. I use Ubuntu. Thanks

Luiz Fernando

Posted 2018-01-22T18:31:07.433

Reputation: 1

what do you mean by copy? do you have tar file?Adam 2018-01-22T19:06:19.210

I downloaded the complete node until today, but I don't have much more space on my disk to store it. I want to save it in order to re-install the program in the future not from beginning, but from the point I have stopped synchronization.Luiz Fernando 2018-01-22T19:45:15.150

my answer should help you.Adam 2018-01-23T00:57:56.567

Answers

0

if you have tar.gz file do like that to extract files:

  • tar xzf bitcoin-0.14.2-x86_64-linux-gnu.tar.gz

install it

  • sudo install -m 0755 -o root -g root -t /usr/local/bin bitcoin-0.14.2/bin/*

finally, run it

  • bitcoind -daemon

if you mean by "you copied all the files" that you copied .bitcoin directory so do like that after the previous step:

  • mkdir ~/.bitcoin

move the files you copied to this directory and execute

  • bitcoind -daemon

Adam

Posted 2018-01-22T18:31:07.433

Reputation: 3 215