+3 votes
279 views
How to download large files in Linux?

in Linux / Unix by (551k points) | 279 views

1 Answer

+4 votes
Best answer

Files with 100 MByte or more can be loaded with the normal browser. But if the connection freezes or breaks, everything was mostly free and you have to start the download again.

The program wget, however, does not get out of step even with large ftp or http transfers and can continue a previously interrupted download in a new attempt.

Here is a call with typical options:

wget -c -t10 ftp://xyserv.de/pub/update.bin

With

-c

wget continues a previously aborted file transfer.

The parameter

t10

Helps with servers that often fail to connect. In case of problems wgetwill start 10 new attempts if necessary.

The tool wget masters the protocols http, https, ftp and can also deal with proxies. You make the selection simply by prefixing the desired protocol with URLs. Be sure to try ftp:// first, as this variant achieves the best data throughput.


by (551k points)

Related questions

+3 votes
1 answer
asked Aug 10, 2019 in Guides by backtothefuture (551k points) | 8.5k views
+5 votes
1 answer
+3 votes
1 answer
asked May 12, 2019 in Linux / Unix by backtothefuture (551k points) | 214 views
+4 votes
1 answer
asked May 11, 2019 in Linux / Unix by backtothefuture (551k points) | 190 views
+5 votes
1 answer
asked Nov 17, 2019 in Linux / Unix by backtothefuture (551k points) | 485 views
Sponsored articles cost $40 per post. You can contact us via Feedback
10,633 questions
10,765 answers
510 comments
3 users