T
T
Tsarev Vadim2020-01-01 18:55:02
Computer networks
Tsarev Vadim, 2020-01-01 18:55:02

How to quickly download folders and files from the server (more than 1 million files)?

How to quickly download folders and files from the server (a lot of sites). sites more than 400 statics need to be downloaded to a computer, via shh it takes a long time to download the client. Maybe someone knows how fast?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
Dmitry Roo, 2020-01-01
@xez

Compress them on the server into an archive and download in one file.

A
Aelliari, 2020-01-01
@Aelliari

Rclone / Rsync or compress and drag them into one file, you can compress, transfer and then decompress on the fly during reception
Something like this
transmission

tar -c /path/to/file/ | nc -l 3333

reception
nc example.com 3333 > tar -xvf -C /path

You can wrap not through nc, but through ssh and add compression if necessary
. But strictly speaking, I still recommend Rsync

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question