David
2010-Jul-22 22:09 UTC
[CentOS] Building an install disk on a USB key manually or using unetbootin
Has anyone successfully built a USB key for installing centos5.5 either manually or using a tool like unetbootin? I am trying to create one using the 64bit install DVD iso and so far the USB either won't boot (unetbootin) or the installation aborts after I select the iso location on the USB key (manual). Thanks, David
Whit Blauvelt
2010-Jul-22 22:26 UTC
[CentOS] Building an install disk on a USB key manually or using unetbootin
On Thu, Jul 22, 2010 at 05:09:22PM -0500, David wrote:> Has anyone successfully built a USB key for installing centos5.5 either > manually or using a tool like unetbootin?Haven't tried it for CentOS, but unetbootin hasn't worked for me for several other distros. Not once. Not sure why I even tried it more than once. The author claims it runs better from Windows. Whit
John Doe
2010-Jul-23 09:25 UTC
[CentOS] Building an install disk on a USB key manually or using unetbootin
From: David <david at adurotec.com>> Has anyone successfully built a USB key for installing centos5.5 either > manually or using a tool like unetbootin? > I am trying to create one using the 64bit install DVD iso and so far the > USB either won't boot (unetbootin) or the installation aborts after I > select the iso location on the USB key (manual).http://wiki.centos.org/HowTos/InstallFromUSBkey Either you can do most of it "manualy" (and learn a few things), or you use others scripts/programs (seeAlternatives at the bottom)... JD
Bowie Bailey
2010-Jul-23 14:46 UTC
[CentOS] Building an install disk on a USB key manually or using unetbootin
On 7/22/2010 6:09 PM, David wrote:> Has anyone successfully built a USB key for installing centos5.5 either > manually or using a tool like unetbootin? > > I am trying to create one using the 64bit install DVD iso and so far the > USB either won't boot (unetbootin) or the installation aborts after I > select the iso location on the USB key (manual).I was able to successfully install CentOS 32-bit from an 8GB USB flash drive (4GB is not quite big enough, even for i386) created with this procedure: Create a 10M DOS partition on the USB drive and make it active Create Linux partition using the rest of the drive mkfs -t vfat /dev/<USB DOS partition> mkfs /dev/<USB Linux partition> liveCD-iso-to-disk <boot.iso> /dev/<USB DOS partition> mount /dev/<USB Linux partition> /mnt rsync --progress <CentOS.iso> /mnt/ You can get the boot.iso by loop-mounting the CentOS iso and pulling it out of the /os/i386/images directory, or grab it from one of the mirrors (the mirror links on the CentOS site link directly to the install isos, so you'll have to browse up a few directories and then go back down to find the images directory). I used 'rsync' here because I hate having a copy process run for 10 minutes with no progress indication. :) The only problem I found was that the install insisted on installing grub on the USB drive rather than the target hard drive. I finally had to skip the grub installation and install it by hand afterwards. -- Bowie