Next scheduled rescrape ... in 4 days
Version 1
Last scraped
Scraped on 27/09/2025, 09:07:34 UTC
I'm thinking about maintaining a full backup of the entire blockchain on an HDD, in case I ever need to set up a new node, so that I don't have to do the IBD again.
But why? Taken slightly out of context, it reminds me of this:
Quote from: Linux Torvalds
“Only wimps use tape backup. REAL men just upload their important stuff on ftp and let the rest of the world mirror it.”
Unless you're restricted on bandwidth or RAM, I wouldn't worry about backup up blockchain data as long as thousands of nodes have a backup online!(note: he wasn't talking about wallets)
Unless you're restricted on bandwidth or RAM, I wouldn't worry about backing up blockchain data as long as thousands of nodes have a backup online!

Quote
3. make periodical update backups (I don't know how often).
~
(b) What's the ideal process?
I would use this:
Code:
rsync - a fast, versatile, remote (and local) file-copying tool
       --link-dest=DIR          hardlink to files in DIR when unchanged
This way, you don't need to overwrite old backups, while keeping multiple "snapshots" of older backups barely takes more disk space than your latest backup.
Original archived Re: Bitcoin Core - Full backup of everything
Scraped on 27/09/2025, 09:02:10 UTC
I'm thinking about maintaining a full backup of the entire blockchain on an HDD, in case I ever need to set up a new node, so that I don't have to do the IBD again.
But why? Taken slightly out of context, it reminds me of this:
Quote from: Linux Torvalds
“Only wimps use tape backup. REAL men just upload their important stuff on ftp and let the rest of the world mirror it.”
Unless you're restricted on bandwidth or RAM, I wouldn't worry about backup up blockchain data as long as thousands of nodes have a backup online!

Quote
3. make periodical update backups (I don't know how often).
~
(b) What's the ideal process?
I would use this:
Code:
rsync - a fast, versatile, remote (and local) file-copying tool
       --link-dest=DIR          hardlink to files in DIR when unchanged
This way, you don't need to overwrite old backups, while keeping "snapshots" of older backups barely takes more disk space than your latest backup.