What lives here? Various snapshots from cosmos/tendermint blockchains.
<chain-id>_<day>_<pruning>_<indexer>_<version>.tar.xz
skipping the obvious...
data
directory.pixz
to parallelize decompression (see below)aria2
can help download speed, wget or curl will work fine too, just slower.INCOMPLETE
extension are actively being uploaded (or died?) and aren't likely complete, don't bother with these.# install packages
sudo apt-get install -y aria2 pixz
# cd into base directory for the chain ie... `cd ~/.osmosisd` or `cd ~/.sifnoded`
# get the files
aria2c -x 3 https://share.blockpane.com/<chain-id>_<day>_<pruning>_<indexer>_<version>.tar.xz
# extract the files
tar -I'pixz' -xvf <chain-id>_<day>_<pruning>_<indexer>_<version>.tar.xz && rm <chain-id>_<day>_<pruning>_<indexer>_<version>.tar.xz
# profit.
Or if you are really strapped for drive space (are you sure that's a good idea?) you can use curl and pipe to tar so the tarball never hits the disk, but the download will be slower and won't recover if there is an error.
curl https://share.blockpane.com/<chain-id>_<day>_<pruning>_<indexer>_<version>.tar.xz | tar -I'pixz' -xv