Page 1 of 1

creating bootable USB

Posted: Sat Sep 27, 2008 4:10 pm
by Disker
High everyone!

I read in the description of the 4.1.1 version that there is a script for creating a bootable USB stick with UBCD on it. For the life of me I can't find it so if someone can point me in the right direction I would appreciate it.

Thanks! :D

Posted: Sat Sep 27, 2008 11:27 pm
by StopSpazzing
This is where its located after extracting it:..\tools\ubcd2usb

I made a bat file that helps build the usb.

Here is my batch file:

Code: Select all

echo off
cd d:\ubcd\tools\ubcd2usb
ubcd2usb d:\ubcd i:
You will HAVE to change it to your location of your ubcd folder location AND change "I:" to your usb drive letter. It doesnt like spaces....just a warning.


For some odd reason my usb builds never work right and get boot errors...so if after making the usb you get errors go here:
http://www.pendrivelinux.com/2006/03/25 ... sb-device/
Works fine...you just have to build the iso then run that app they give you.

Posted: Sun Sep 28, 2008 3:58 pm
by Icecube
@ StopSpazzing
Use quotes to make it possible to use spaces in the paths.

Code: Select all

echo off
cd "d:\ubcd extract\tools\ubcd2usb"
ubcd2usb "d:\ubcd extract" i:

Posted: Tue Oct 28, 2008 9:40 pm
by StopSpazzing
Icecube wrote:@ StopSpazzing
Use quotes to make it possible to use spaces in the paths.

Code: Select all

echo off
cd "d:\ubcd extract\tools\ubcd2usb"
ubcd2usb "d:\ubcd extract" i:
Yeah, I kinda realized that..and I knew that but wasnt thinking clearly at the time of posting.