Page 1 of 1

Posted: Mon May 31, 2010 9:27 pm
by StopSpazzing

Re: Create a bootable USB flash drive using UBCD iso

Posted: Fri Jul 23, 2010 10:59 pm
by thetrivialstuff
This is much simpler under Linux (or perhaps I've been using Linux long enough that it's warped my idea of simple :P) -- just look in ubcd/tools/linux/ubcd2usb and follow the readme.

Basically:
0. partition the USB stick
1. mkfs.vfat /dev/sdX1
2. dd if=mbr.bin of=/dev/sdX
3. syslinux the USB stick (exact parameters for syslinux are in the readme)
4. boot from the USB stick


The fun part is that this procedure will also work on hard drives (which, for really warped reasons involving a difficult Windows install, you might sometimes want).

~Felix.

Re:

Posted: Sun Oct 03, 2010 1:07 am
by s69
StopSpazzing wrote:Now located in the wiki aswell: http://wiki.ultimatebootcd.com/index.ph ... stallation
This tutorial does not clearly explain how to extract the files from the ISO file and place them in the ubcd-extract folder - you also need a program like winimage to extract the files or mount the iso as a drive using Slysoft CloneDrive which is not mentioned in the requirements.

Re: Re:

Posted: Sun Oct 03, 2010 2:15 am
by Icecube
s69 wrote:This tutorial does not clearly explain how to extract the files from the ISO file and place them in the ubcd-extract folder - you also need a program like winimage to extract the files or mount the iso as a drive using Slysoft CloneDrive which is not mentioned in the requirements.
Why not using the good and free 7-zip program?
http://7-zip.org/

Re: Create a bootable USB flash drive using UBCD iso

Posted: Sun Oct 03, 2010 8:29 am
by StopSpazzing
Fixed: http://wiki.ultimatebootcd.com/index.ph ... quirements

Now has links to extracting the contents tutorial.


Thanks for the heads up.

Re: Create a bootable USB flash drive using UBCD iso

Posted: Sat Feb 23, 2013 12:02 pm
by thwaptica
I would suggest using Rufus ( http://rufus.akeo.ie/ ). It should detect your USB drive and you just point it at the ISO. It does format the USB drive though, so back that up before creating the boot disk.

Good Luck

Re: Create a bootable USB flash drive using UBCD iso

Posted: Tue Jul 23, 2013 10:23 am
by jhorak101
I use winzip to extract files is this ok ?

Re: Create a bootable USB flash drive using UBCD iso

Posted: Tue Jul 23, 2013 10:23 am
by jhorak101
Linux ? Which flavor is best ? I use Mint.

Re: Create a bootable USB flash drive using UBCD iso

Posted: Tue Jul 23, 2013 10:26 am
by jhorak101
I am attending a Jr College and taking a degree in computer science (IT Network administration) you would think that some of the courses would tech students how to make a bootable CD & USB stick.

Re: Create a bootable USB flash drive using UBCD iso

Posted: Thu Jul 25, 2013 5:03 am
by Explorer09
@jhorak101
It seems that you're new to this forums, so:
1. Please don't make multiple posts for your questions. Some people will think this is impolite. If you're asking several questions at once, you should try editing your last post to include all your questions.

2. Winzip can open read most of the zip files. By the time you make this question, why not try opening it yourself? It wouldn't hurt.

3.
Linux ? Which flavor is best ? I use Mint.
This question is not related to UBCD, so I'll skip it.

4.
I am attending a Jr College and taking a degree in computer science (IT Network administration) you would think that some of the courses would tech students how to make a bootable CD & USB stick.
My college experience tells me that you have to learn most of these by yourself. Most computer science courses won't teach you this 'skill'.

Re: Create a bootable USB flash drive using UBCD iso

Posted: Wed Dec 03, 2014 4:10 am
by Vansloneker
thwaptica wrote:I would suggest using Rufus ( http://rufus.akeo.ie/ ). It should detect your USB drive and you just point it at the ISO. It does format the USB drive though, so back that up before creating the boot disk.

Good Luck
I was going to suggest the same. With Rufus it's as easy as pie. When booting from stick you may have to point the bios explicitly to the stick.

Re: Create a bootable USB flash drive using UBCD iso

Posted: Mon Aug 08, 2016 9:52 pm
by Jdwhatnot
How to copy from iso in Linux. Sorry I'm typing from a phone.

cd ~/desktop
mv $isofile ~/desktop/
mkdir iso/
mkdir disk/
mount -t iso9660 $isofile iso/
mount $device disk/
rsync -ra iso/ disk
umount iso/
umount disk/