Create a bootable USB flash drive using UBCD iso
Moderators: Icecube, StopSpazzing
-
- Posts: 462
- Joined: Tue Sep 09, 2008 4:37 pm
- Location: California, USA
- Contact:
Now located in the wiki aswell: http://wiki.ultimatebootcd.com/index.ph ... stallation
~Just StopSpazzing~
Visit the UBCD Wiki: http://wiki.ultimatebootcd.com
Please check your UBCD ISO MD5 Hash Sum; May prevent issues later on by not having an exact copy.
Currently Working on Common Issues and Repair Tips on the Wiki.
Visit the UBCD Wiki: http://wiki.ultimatebootcd.com
Please check your UBCD ISO MD5 Hash Sum; May prevent issues later on by not having an exact copy.
Currently Working on Common Issues and Repair Tips on the Wiki.
-
- Posts: 3
- Joined: Fri Jul 23, 2010 9:28 pm
Re: Create a bootable USB flash drive using UBCD iso
This is much simpler under Linux (or perhaps I've been using Linux long enough that it's warped my idea of simple
) -- 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.

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:
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.StopSpazzing wrote:Now located in the wiki aswell: http://wiki.ultimatebootcd.com/index.ph ... stallation
Re: Re:
Why not using the good and free 7-zip program?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.
http://7-zip.org/
Download Ultimate Boot CD v5.0: http://www.ultimatebootcd.com/download.html
Use Parted Magic for handling all partitioning task: http://partedmagic.com/
Use Parted Magic for handling all partitioning task: http://partedmagic.com/
-
- Posts: 462
- Joined: Tue Sep 09, 2008 4:37 pm
- Location: California, USA
- Contact:
Re: Create a bootable USB flash drive using UBCD iso
Fixed: http://wiki.ultimatebootcd.com/index.ph ... quirements
Now has links to extracting the contents tutorial.
Thanks for the heads up.
Now has links to extracting the contents tutorial.
Thanks for the heads up.
~Just StopSpazzing~
Visit the UBCD Wiki: http://wiki.ultimatebootcd.com
Please check your UBCD ISO MD5 Hash Sum; May prevent issues later on by not having an exact copy.
Currently Working on Common Issues and Repair Tips on the Wiki.
Visit the UBCD Wiki: http://wiki.ultimatebootcd.com
Please check your UBCD ISO MD5 Hash Sum; May prevent issues later on by not having an exact copy.
Currently Working on Common Issues and Repair Tips on the Wiki.
Re: Create a bootable USB flash drive using UBCD iso
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
Good Luck
Re: Create a bootable USB flash drive using UBCD iso
I use winzip to extract files is this ok ?
Re: Create a bootable USB flash drive using UBCD iso
Linux ? Which flavor is best ? I use Mint.
Re: Create a bootable USB flash drive using UBCD iso
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.
-
- Posts: 178
- Joined: Fri Jun 17, 2011 11:23 pm
Re: Create a bootable USB flash drive using UBCD iso
@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.
4.
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.
This question is not related to UBCD, so I'll skip it.Linux ? Which flavor is best ? I use Mint.
4.
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'.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.
-
- Posts: 1
- Joined: Wed Dec 03, 2014 4:03 am
Re: Create a bootable USB flash drive using UBCD iso
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.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
Re: Create a bootable USB flash drive using UBCD iso
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/
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/