<div class="gmail_quote">On Thu, Dec 9, 2010 at 12:07 AM, Robert G. (Doc) Savage <span dir="ltr">&lt;<a href="mailto:dsavage@peaknet.net">dsavage@peaknet.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Dan,<br>
<br>
You could try using the &quot;meat&quot; of that link without the prefix:<br>
<div class="im"><br>
<a href="http://download.fedoraproject.org/pub/fedora/linux/releases/14/Fedora/x86_64/iso/Fedora-14-x86_64-DVD.iso" target="_blank">http://download.fedoraproject.org/pub/fedora/linux/releases/14/Fedora/x86_64/iso/Fedora-14-x86_64-DVD.iso</a><br>

<br>
</div>which will actually initiate an FTP download from a mirror site.<br>
Windows&#39; FTP has been known to be problematic for very large files<br>
because (at least in the past) an interrupted download could not be<br>
resumed.<br>
<br>
I would recommend using IE8 for what it&#39;s good at, then another utility<br>
for the main haul. Fetch cwRsync from:<br>
<br>
<a href="http://sourceforge.net/projects/sereds/files/cwRsync/4.0.5/cwRsync_4.0.5_Installer.zip/download" target="_blank">http://sourceforge.net/projects/sereds/files/cwRsync/4.0.5/cwRsync_4.0.5_Installer.zip/download</a><br>

<br>
This is a Windows version of the rsync utility, a workhorse of the file<br>
transfer variety if there ever was one. Assuming this latest cwRsync<br>
uses the same command line options as rsync, this *LONG* command line at<br>
an MS-DOS prompt will download the F14 DVD ISO file to the current<br>
directory:<br>
<br>
C:&gt; cwRsync -tvxzP rsync://<a href="http://download.fedora.redhat.com/fedora-linux-releases/14/Fedora/x86_64/iso/Fedora-14-x86_64-DVD.iso" target="_blank">download.fedora.redhat.com/fedora-linux-releases/14/Fedora/x86_64/iso/Fedora-14-x86_64-DVD.iso</a> .<br>

<br>
Don&#39;t forget the trailing &quot; .&quot; space-dot destination. If you&#39;re curious,<br>
the options in that command line are defined as follows:<br>
<br>
       -t      preserve modification times<br>
       -v      increase verbosity<br>
       -x      don’t cross filesystem boundaries<br>
       -z      compress file data during the transfer<br>
       -P      same as --partial --progress<br>
               --partial       keep partially transferred files<br>
               --progress      show progress during transfer<br>
<br>
On a 12Mbps connection this download should take about 75 minutes. If<br>
the download is interrupted for any reason, you can re-run the same<br>
command line and it will pick up where it left off. rsync is VERY<br>
tenacious and guarantees 100% error-free delivery.<br>
<br>
Good luck.<br>
<div class="im"><br>
--Doc Savage<br>
  Fairview Heights, IL<br>
<br>
<br>
</div><div><div></div><div class="h5">On Wed, 2010-12-08 at 23:48 -0700, Dan Willenberg wrote:<br>
&gt; using iexploder8<br>
&gt;<br>
&gt; <a href="http://fedoraproject.org/en/download-splash?file=http://download.fedoraproject.org/pub/fedora/linux/releases/14/Fedora/x86_64/iso/Fedora-14-x86_64-DVD.iso" target="_blank">http://fedoraproject.org/en/download-splash?file=http://download.fedoraproject.org/pub/fedora/linux/releases/14/Fedora/x86_64/iso/Fedora-14-x86_64-DVD.iso</a><br>

&gt;<br>
&gt; link tries to connect, then nothing, it claims to be direct download<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; &gt; Subject: Re: can&#39;t download fedora 64bit dvd iso file<br>
&gt; &gt; From: <a href="mailto:dsavage@peaknet.net">dsavage@peaknet.net</a><br>
&gt; &gt; To: <a href="mailto:users@lists.fedoraproject.org">users@lists.fedoraproject.org</a><br>
&gt; &gt; Date: Wed, 8 Dec 2010 08:29:31 -0600<br>
&gt; &gt;<br>
&gt; &gt; On Wed, 2010-12-08 at 03:41 -0700, Dan Willenberg wrote:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; every time I try, I just get file not found.<br>
&gt; &gt; &gt; never had a problem with earlier versions<br>
&gt; &gt;<br>
&gt; &gt; Dan,<br>
&gt; &gt;<br>
&gt; &gt; Where are you trying to download it from, and what are you using to<br>
&gt; &gt; fetch it?<br>
&gt; &gt;<br>
&gt; &gt; --Doc Savage<br>
&gt; &gt; Fairview Heights, IL<br>
&gt; &gt;<br></div></div></blockquote></div><br>You can also use wget (<a href="http://gnuwin32.sourceforge.net/packages/wget.htm">http://gnuwin32.sourceforge.net/packages/wget.htm</a> ) to download files. Use <br><br>wget ftp://<a href="http://download.fedoraproject.org/pub/fedora/linux/releases/14/Fedora/x86_64/iso/Fedora-14-x86_64-DVD.iso" target="_blank">download.fedoraproject.org/pub/fedora/linux/releases/14/Fedora/x86_64/iso/Fedora-14-x86_64-DVD.iso</a><br>
<br>If the download fails resume with<br><br>wget -c ftp://<a href="http://download.fedoraproject.org/pub/fedora/linux/releases/14/Fedora/x86_64/iso/Fedora-14-x86_64-DVD.iso" target="_blank">download.fedoraproject.org/pub/fedora/linux/releases/14/Fedora/x86_64/iso/Fedora-14-x86_64-DVD.iso</a><br>
<br><br>Remember that DVD images can exceed the 4GB limitation of FAT32 formatted drives. Make sure you are saving to a NTFS formatted drive.<br><br>