Networking Forums

Networking Forums > Computer Networking > Linux Networking > How to continue an aborted d/l-ed BIG file ?

Reply
Thread Tools Display Modes

How to continue an aborted d/l-ed BIG file ?

 
 
problems@gmail
Guest
Posts: n/a

 
      11-23-2007, 03:54 AM
I'm trying to use 'curl' to d/l a 11Mb binary of 'wine' via my
dialup connection, which aborted after 309 Kb d/l.

curl -I http://garr.dl.sourceforge.net/sourceforge/wine/
wine-0.9.49-i486-1kjz.tgz >> garrHdr
looks OK and shows me:----------
HTTP/1.1 200 OK
Accept-Ranges: bytes
Date: Fri, 23 Nov 2007 03:13:13 GMT
Content-Length: 11754882 <-- YES !! ~ 11Mb
Content-Type: application/x-tar
Server: Apache/2.2.3 (Debian)
Last-Modified: Tue, 13 Nov 2007 01:32:06 GMT
ETag: "113fba-b35d82-6aac5180"
Content-Encoding: x-gzip
Via: 1.1 nc5-rba (NetCache NetApp/5.5R6D17DEBUG1)

Whereas the man says:
Use "-C -" to tell curl to automatically find out
where/how to resume the transfer. It then uses the
given output/input files to figure that out.

When I try:
curl -C - -o http://garr.dl.sourceforge.net/sourceforge/wine/
wine-0.9.49-i486-1kjz.tgz
I get the error mesg: "curl: no URL specified!"

So then I tried:
curl -C - http://garr.dl.sourceforge.net/sourceforge/wine/
wine-0.9.49-i486-1kjz.tgz >> newFileID2

But it just started to re-d/l from the BEGINNING & aborted after 903Kb !

Please, what should I do ?

== Chris Glur.

 
Reply With Quote
 
 
 
 
Thomas Overgaard
Guest
Posts: n/a

 
      11-23-2007, 02:50 PM

problems@gmail wrote :

> When I try:
> curl -C - -o http://garr.dl.sourceforge.net/sourceforge/wine/
> wine-0.9.49-i486-1kjz.tgz
> I get the error mesg: "curl: no URL specified!"


Thats because you haven't given in the output filename so curl assumes
that the URL is the filename. Try this instead:

curl -C - -o wine-0.9.49-i486-1kjz.tgz
http://garr.dl.sourceforge.net/sourc...-i486-1kjz.tgz
--
Thomas O.

This area is designed to become quite warm during normal operation.
 
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
TCP connection reset/aborted issue Daniel Weber Windows Networking 0 05-29-2009 08:22 AM
davFS - aborted operation but connection still established korgman Linux Networking 0 10-13-2006 09:33 AM
Aborted large file transfers Dave Rudisill Wireless Internet 1 04-11-2006 01:31 AM
Group policy processing aborted Senthil Raj Windows Networking 0 01-10-2006 05:21 PM
Shorewall and CONTINUE policy chris-usenet@roaima.co.uk Linux Networking 5 10-03-2005 01:18 PM



1 2 3 4 5 6 7 8 9 10 11