<br><div><br><div class="gmail_quote">On Fri, Apr 17, 2009 at 8:24 AM, Marc Ferguson <span dir="ltr">&lt;<a href="mailto:marcferguson@gmail.com">marcferguson@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hey Folks,<br><br>I&#39;m looking for a howto or some information on doing a NetInstall of Fedora using a USB drive.  Call me crazy, but I&#39;m getting tired of burning DVDs - only to have them sit and stale in a spindle.  So; I did a NetInstall of Fedora 10 x86_64 (when it came out) and I loved the process.  I don&#39;t remember the LONG URL the guy from the IRC channel gave me.<br>


<br>I think I need to download and then copy n paste a .img file to my USB drive and I should be good to go.  If that&#39;s not the process then please help.  Thanks.<br clear="all"><font color="#888888"><br>-- <br>Marc F.</font></blockquote>
<div> </div></div>Marc,<div><br></div><div>If it&#39;s just using the USB drive to access the second stage of the installer, you cat or dd the efidisk.img file from the install media to your USB drive.  Once you boot off of the drive, it&#39;ll ask you the type of install you want, you can select http, ftp, or NFS.  A local mirror is:</div>
<div>x86 -</div><div><a href="http://mirror.newnanutilities.org/pub/fedora/linux/releases/10/Fedora/i386/os/">http://mirror.newnanutilities.org/pub/fedora/linux/releases/10/Fedora/i386/os/</a><br></div><div>x86_64 -</div>
<div><a href="http://mirror.newnanutilities.org/pub/fedora/linux/releases/10/Fedora/x86_64/os/">http://mirror.newnanutilities.org/pub/fedora/linux/releases/10/Fedora/x86_64/os/</a> <br></div><div><br></div><div>The process looks something like:</div>
<div>(1) Download the Fedora DVD image</div><div>(2) mount the Fedora DVD image using -o loop option with mount</div><div>(3) Lets assume in the previous step you used /mnt as your mountpoint for the image.  cat /mnt/images/efidisk.img &gt; /dev/sdX  where X is the letter of your USB disk.</div>
<div>(4) Boot your target machine off of the USB disk you&#39;ve made</div><div>(5) Choose FTP or HTTP as your install type, and put in the network details to reach your installation source (a machine with the Fedora and images directories copied from the Fedora install DVD, the shared via NFS, FTP, or HTTP)</div>
<div><br></div><div>Don&#39;t want to download the whole DVD?  Replace steps 1 and 2 with download:</div><div><a href="http://mirror.newnanutilities.org/pub/fedora/linux/releases/10/Fedora/i386/os/images/efidisk.img">http://mirror.newnanutilities.org/pub/fedora/linux/releases/10/Fedora/i386/os/images/efidisk.img</a><br>
</div><div>Then step 3 is catting this file out to your USB disk.</div><div><br></div><div>Alternatively, depending on the size of your USB disk, you can put all the installation stuff you need on the USB stick, needs about 4GiB.  You create 2 partitions on the USB stick, for the first 21MiB in size, you follow the proceedure above for writing the efidisk.img file to it, but now instead of /dev/sdX it&#39;s /dev/sdX1.  For the second partition, you format it with a filesystem and put your Fedora DVD image on it, the single file.  I did this with an 8GiB stick, so space was less of an issue, with a 4GiB stick, you may need to optimize the filesystem format, maybe something like:</div>
<div>mke2fs -N 500 -b 4096 /dev/sdX2</div><div>This will give you 500 inodes, instead of the default 1 inode/ 1KiB of space and should cut down on the overhead you lose to file pointers.  The downside is that you&#39;d only be able to store 500 files,directories, and symlinks.</div>
<div>Assuming everything fits on the USB stick, you can do a &quot;Hard Drive&quot; install, point the installer source at the second partition on your USB drive, and go to town.</div><div><br></div><div>-Scott</div></div>