Friday, May 3, 2024
 Popular · Latest · Hot · Upcoming
15
rated 0 times [  15] [ 0]  / answers: 1 / hits: 7413  / 3 Years ago, mon, july 19, 2021, 8:09:36

I was in the middle of a large download in Chromium and the power supply to my computer failed (well I tripped over my power cord ...). I see the entry in chrome://downloads/ which says the download was cancelled.



There is a link to the file called "Retry download" but I would rather not start the download from scratch because I have limited downloads. How can I resume this download?


More From » chromium

 Answers
0

You can resume any download using the wget command provided:



  • You know the url of the file

  • You have the partially downloaded file and know its location

  • The server the file is on supports resuming downloads


Getting the required information


In Chromium, go the the chrome://downloads/ page. Find the failed download that you want to resume. To get the url, right click on the "Retry download" link and click "Copy Link Address". The location to the file will be ~/Downloads/NAME.crdownload - NAME is the file name that is displayed above the url in the entry on the chrome://downloads/ page.


Downloading the file


The command to resume the download is:


wget -c URL -O FILE

where URL is the url of the partially downloaded file and FILE is the location of the partially downloaded file. Make sure you escape any spaces in the file path.
If the server supports resuming downloads you will see a progress bar like this:


100%[++++++++++++++++++++++++========================>]

where the '+'s indicate what was previously downloaded and the '='s indicate what is currently being downloaded.


If the server doesn't support resuming downloads, you will get an error message and it will fail to download. In this case you have no choice but to restart the download.


[#44655] Wednesday, July 21, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
mouedi

Total Points: 420
Total Questions: 109
Total Answers: 116

Location: Philippines
Member since Wed, Aug 19, 2020
4 Years ago
;