Hi Merlin, Have you tried "wget -c" to resume an interrupted download? You can put the command inside an infinite loop that will keep retrying even if the connection is interrupted when you are not watching (say, overnight). The following should work:
while (true) ; do wget -c -T 60 ftp://surfer.nmr.mgh.harvard.edu/pub/dist/freesurfer/5.1.0/freesurfer-Linux-centos4-stable-pub-v5.1.0.tar.gz; sleep 600 ; done If it doesn't receive data for 60 seconds, it stops, sleeps for 10 min, and tries automatically again. When the download is complete, it will continue trying again every 10 min until you press Ctrl+C, but since the file will already be complete, it will do nothing, so it's fine. Hope this helps! All the best, Anderson 2013/2/15 <merlinva2...@grannet.grm.sld.cu> > Hi, > Could somebody say to me if exists some form by means of which I can > download the file "freesurfer-Linux-centos4-stable-pub-v5.1.0.tar.gz" in > several smaller parts? > Greetings, > Merlin Verdecia > > > -- > > Este mensaje le ha llegado mediante el servicio de correo electronico que > ofrece Infomed para respaldar el cumplimiento de las misiones del Sistema > Nacional de Salud. La persona que envia este correo asume el compromiso de > usar el servicio a tales fines y cumplir con las regulaciones establecidas > > Infomed: http://www.sld.cu/ > _______________________________________________ > Freesurfer mailing list > Freesurfer@nmr.mgh.harvard.edu > https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer > > > The information in this e-mail is intended only for the person to whom it > is > addressed. If you believe this e-mail was sent to you in error and the > e-mail > contains patient information, please contact the Partners Compliance > HelpLine at > http://www.partners.org/complianceline . If the e-mail was sent to you in > error > but does not contain patient information, please contact the sender and > properly > dispose of the e-mail. > >
_______________________________________________ Freesurfer mailing list Freesurfer@nmr.mgh.harvard.edu https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Partners Compliance HelpLine at http://www.partners.org/complianceline . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.