cURL: curl: (18) transfer closed with 96671047906 bytes remaining to read

1

I am trying to download a very massive file (~92Gb) using cURL:

curl -L -o 'file.tar.gz' -C - http://abc.dummy/file.tar.gz

and constantly getting into:

curl: (18) transfer closed with ... bytes remaining to read

which quits cURL leaving file partially downloaded.

How to ask cURL to resume transfer until download is complete?

P.S. It seems the error occurs after ~1Gb chunk has been downloaded.

Denis Kulagin

Posted 2018-11-18T11:22:17.227

Reputation: 113

1

You may find the last answer to this StackOverflow question useful.

– Anaksunaman – 2018-11-18T11:52:00.563

No answers