Is it possible to download only a certain percentage of a file wit Kget (or wget)?

2

0

I need to download some large files (ISOs of some Linux distros) and I'm connected to the internet with a mobile broadband connection, which has a limited amount of daily total data transfer size.

I'd like to set up Kget (or alternatively wget) to download only a certain part of a specific file at a time (i.e., only 100MB of a said ISO) to make sure to not exceed my daily quota and resume it the next day, and without having to continuously checking by myself.

Is it possible to do that, and how?

Sekhemty

Posted 2013-05-20T19:45:43.010

Reputation: 6 654

Answers

2

As an alternative, if it is possible for you to use cURL instead of wget, you can use

curl --range startByte-stopByte "URL to some ISO-file"

the manpage can help you: http://curl.haxx.se/docs/manpage.html

Legionair

Posted 2013-05-20T19:45:43.010

Reputation: 393

0

Not with wget atleast...You can limit the download speed by using --limit-rate=amount flag but cannot limit its daily bandwidth usage.

maybe Flareget or FatRat can help you

Ayush

Posted 2013-05-20T19:45:43.010

Reputation: 151