I currently have a knoppix and an insert on my dvd... what i did to run both...
I made sure i hade one isolinux configuration (the one from insert)
I placed the kernel and initrd in isolinux dir.
I created a neat cdshell menu for knoppix that supports cheat codes and pops up with a nice picture...
on cdshell site is the example code the cheats... should be something like this..
set string = ""
Set textCursorX = 0
Set textCursorY = 6
Set
build_string:
getkey
if $lastKey == key[enter]; then goto done
set string = "$(string)$lastChar"
print c "$lastChar"
Set textCursorX = length($string)
Set textCursorY = 6
goto build_string
done:
Set textCursorX = 0
Set textCursorY = 7
print "The cheatcode is: $string"
[edit]
and i saw a question about a linux.cfg... cdob is right..... look at this
CODE
knoppix:
isolinux linux ramdisk_size=100000 init=/etc/init lang=us apm=power-off vga=791 initrd=minirt.gz nomce quiet BOOT_IMAGE=knoppix"
return
expert:
isolinux linux ramdisk_size=100000 init=/etc/init lang=us apm=power-off vga=791 initrd=minirt.gz nomce BOOT_IMAGE=expert"
return
memtest:
isolinux memtest"
return
knoppix-txt:
isolinux linux ramdisk_size=100000 init=/etc/init lang=us apm=power-off vga=normal initrd=minirt.gz nomce quiet BOOT_IMAGE=knoppix"
return
debug:
isolinux linux ramdisk_size=100000 init=/etc/init lang=us apm=power-off vga=normal initrd=minirt.gz debug BOOT_IMAGE=debug"
return
fb1280:
isolinux linux ramdisk_size=100000 init=/etc/init lang=us apm=power-off vga=794 xmodule=fbdev initrd=minirt.gz nomce quiet BOOT_IMAGE=knoppix"
return
fb1024:
isolinux linux ramdisk_size=100000 init=/etc/init lang=us apm=power-off vga=791 xmodule=fbdev initrd=minirt.gz nomce quiet BOOT_IMAGE=knoppix"
return
fb800:
isolinux linux ramdisk_size=100000 init=/etc/init lang=us apm=power-off vga=788 xmodule=fbdev initrd=minirt.gz nomce quiet BOOT_IMAGE=knoppix"
return
this is in a cd shell menu... its the standard knoppix isolinux.cfg.... but in cdshell.....
the only problem i seem to have is that mkisofs wont take more than 6 directory's. i've included 28 windows directory's.. 16x windows xp setup and 4 windows 2003 setup.. also 4 different winpe installations from dvd and 4 from sdl ramdisk winpe injected in a winimage file.
if i use the -r switch then it creates an rr_moved directory and symbolic links to /i386/asms/6000/mft/windows/asms/1/whatever and my windows installation don't work saying nothing left to copy
if i use the -D switch in combination with -r it fails to load txtsetup.sifs (why??)....
if i then force uppercase all setup files it still doesn't do poo!
whats wrong???
this is my current mkisofs
"mkisofs.exe" -iso-level 4 -force-uppercase -l -r -N -v -T -D -joliet-long -hide-list "d:\hide.txt" -duplicates-once -sort "D:\SORT.TGLS" -o "D:\WINUBCD.iso" -b "boot/loader.bin" -no-emul-boot -volid "WinUBCD" -A PEBUILDER/MKISOFS -boot-load-size 4 "D:\Xpins1"
can i drop the joliet extension???? no i can't.... can i drop the rock-ridge extension?? no!!
maybe someone knows an answer to this...