Running bitcoin core in a low storage system

6

1

I have a machine with ~40GB in storage. The Bitcoin block chain is ~75GB in size, is there any chance to run bitcoind in my system? I mean, can I somehow skip downloading some part of the block chain?

Thanks in advance for any answers.

Kostas662

Posted 2016-06-19T08:49:24.180

Reputation: 63

possible duplicate of How can I run bitcoind in pruning mode?

Murch 2016-06-19T11:28:37.387

Answers

9

You cannot skip downloading the blockchain, but you can skip storing it.

If you run Bitcoin Core with the -prune=N or put prune=N in the bitcoin.conf file, only at most N megabytes worth of blocks will be stored on disk. N has to be at least 550 currently.

Pruning does not reduce the validation or security at all, but does prevent your node from serving historical blocks to other peers.

Pieter Wuille

Posted 2016-06-19T08:49:24.180

Reputation: 54 032

But are the latest blocks downloaded this way?Kostas662 2016-06-21T13:13:50.587

All blocks are still downloaded and verified like before. They're just not kept on your disk forever.Pieter Wuille 2016-06-21T14:08:12.077

@PieterWuille: Do you perhaps know the answer to this follow-up question? http://bitcoin.stackexchange.com/questions/52030/what-happens-if-you-set-prune-n-to-a-value-between-0-and-550

Murch 2017-03-11T11:53:13.457