On Sat, Apr 24, 2004 at 04:49:38PM +0100, Nick Daniels wrote:
Hi I cannot download Kernel 2.6 as it is too big for my two hour cut off on my isp.(no resume). I have downloaded Kernel 2.6 RPM from Suse on a spare machine and everything seemed to work O.K.
If you can get hold of the url that you want to download the kernel from you could use wget to grab the file and then use it to continue the download after you have been kicked off.
For example
wget http://myinterwebserver.example/myultralarge.file
<something breaks and the download ceases>
then I can do
wget -c http://myinterwebserver.example/myultralarge.file
then the -c will make wget continue the download.
Adam