pb boot iso

Try looking for help here if you are having problems with the latest beta of Ultimate Boot CD.

Moderators: Icecube, StopSpazzing

Post Reply
Message
Author
elixav
Posts: 1
Joined: Sun Sep 11, 2011 8:27 am

pb boot iso

#1 Post by elixav » Sun Sep 11, 2011 9:43 am

hello

have a message error during launching an iso which have add
message: invalid boot and kermel

that to make?

thank you

my custom.cfg

"
# Useful resources for UBCD customization:
#
# - http://syslinux.zytor.com/wiki/index.ph ... UX_Project
# - http://www.ultimatebootcd.com/customize.html
#

MENU INCLUDE /ubcd/menus/syslinux/defaults.cfg
UI /boot/syslinux/menu.c32

LABEL -
MENU LABEL ..
COM32 /boot/syslinux/menu.c32
APPEND /ubcd/menus/syslinux/main.cfg

LABEL -
MENU LABEL Your own boot image here
TEXT HELP
Your help message goes here.
ENDTEXT
LINUX /boot/syslinux/memdisk
INITRD /ubcd/custom/boot.img
APPEND -

LABEL -
LABEL MENU ERD Commander 5.0 for Windows XP / Windows 2003
AIDE DU TEXTE
ERD Commander 5.0 for Windows XP / Windows 2003
ENDTEXT
LINUX / boot / syslinux / memdisk
Initrd / ubcd/custom/erd50.iso.gz


LABEL -
LABEL MENU ERD Commander 6.0 x86 for Windows Vista / Windows 2008
AIDE DU TEXTE
ERD Commander 6.0 x86 for Windows Vista / Windows 2008
ENDTEXT
LINUX / boot / syslinux / memdisk
Initrd / ubcd/custom/erd60_x86.iso.gz
APPEND iso premières

LABEL -
LABEL MENU ERD Commander 6.0 x64 for Windows Vista / Windows 2008
AIDE DU TEXTE
ERD Commander 6.0 x64 for Windows Vista / Windows 2008
ENDTEXT
LINUX / boot / syslinux / memdisk
Initrd / ubcd/custom/erd60_x64.iso.gz
APPEND iso premières

LABEL -
LABEL MENU ERD Commander 6.5 x86 for Windows 7 / Windows 2008 RC2
AIDE DU TEXTE
ERD Commander 6.5 x86 for Windows 7 / Windows 2008 RC2
ENDTEXT
LINUX / boot / syslinux / memdisk
Initrd / ubcd/custom/erd65_x86.iso.gz
APPEND iso premières

LABEL -
LABEL MENU ERD Commander 6.5 x64 for Windows 7 / Windows 2008 RC2
AIDE DU TEXTE
ERD Commander 6.5 x64 for Windows 7 / Windows 2008 RC2
ENDTEXT
LINUX / boot / syslinux / memdisk
Initrd / ubcd/custom/erd65_x64.iso.gz
APPEND iso premières
"

ady
Posts: 832
Joined: Sat May 08, 2010 5:26 am

Re: pb boot iso

#2 Post by ady » Sun Sep 11, 2011 12:19 pm

You should NOT translate the normal syslinux parameters.

Code: Select all

AIDE DU TEXTE == HELP TEXT
You should also change the "premières" word to the parameter you really want to use (I don't know if the parameter is really necessary, but if you actually need it, it is NOT "premières").

In addition, you need to correct all the paths. I don't think you should be using spaces.

Example:

Code: Select all

LINUX / boot / syslinux / memdisk
should probably be:

Code: Select all

LINUX /boot/syslinux/memdisk
(note that after the first "LINUX", you indeed need a space.)

Another example:

Code: Select all

Initrd / ubcd/custom/erd60_x86.iso.gz
should probably be:

Code: Select all

INITRD /ubcd/custom/erd60_x86.iso.gz
(note that after the first "INITRD", you indeed need a space.)

The rest of the entries need equivalent corrections.

Post Reply