The Computer Oracle

how can I use wget to download large files?

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 2

--

Chapters
00:00 How Can I Use Wget To Download Large Files?
00:35 Accepted Answer Score 42
01:04 Answer 2 Score 4
01:49 Thank you

--

Full question
https://superuser.com/questions/611922/h...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#linux #linuxmint #wget

#avk47



ACCEPTED ANSWER

Score 42


You can continue failed downloads using wget. (Provided where you're downloading from supports it)

Quote:

Say we're downloading a big file:

$ wget bigfile

And bang - our connection goes dead (you can simulate this by quitting with Ctrl-C if you like). Once we're back up and running and making sure you're in the same directory you were during the original download:

$ wget -c bigfile

Provided where you're downloading from supports it, you should get going from exactly where you left off.




ANSWER 2

Score 4


Normally, wget has no file size limit.

If wget is failing, it is probably because you are running out of space on the pendrive. Do you have a free GB for the iso?

How did wget stop? Was there an error message? Did you perhaps allow the computer to go into suspend? If so, use wget -c as suggested by @dtmland.

Finally, wget does have an option to limit file size but it is not set by default. One possibility is that your sysadmin has set a limit by making wget an alias to something like wget --max-filesize N. To check if wget is an alias run alias wget. If it is, you can use \wget to bypass the alias and run wget directly.