The only ubcd2usb.* I found is ubcd2usb.bat.

Any recommendations ?
regards
Moderators: Icecube, StopSpazzing
Code: Select all
if not exist ldlinux.bss %0 : _error Missing file 'ldlinux.bss'
if not exist "%1\syslinux\ldlinux.sys" %0 : _error Missing file '%1\syslinux\ldlinux.sys'
if not exist mbr.bin %0 : _error Missing file 'mbr.bin'
if not exist makebootfat.exe %0 : _error Missing file 'makebootfat.exe'
if not exist wait.com %0 : _error Missing file 'wait.com'
Code: Select all
cd \(UBCD-path)\tools\ubcd2usb
ubcd2usb.bat (UBCD-path) (USB-drive)
The path is correct. Both the bat file and those files are in the same directory, so there is no need to use anything more than the file name.I think it's normal ldlinux.bss is not found because it is at the location tools\ubcd2usb
I wonder why the path is not correct in the file ubcd2usb.bat and why that works with other people ??
Code: Select all
C:\Documents and Settings\etc\etc\My Documents\me\ubcd\
Code: Select all
C:\Documents\syslinux\ldlinux.sys
Just add a copy of the ldlinux.bss file to the subdirectory syslinux.Flo22 wrote:I'm looking in the ubcd2usb.bat file and I'm reading that :
I think it's normal ldlinux.bss is not found because it is at the location tools\ubcd2usb.Code: Select all
if not exist ldlinux.bss %0 : _error Missing file 'ldlinux.bss' if not exist "%1\syslinux\ldlinux.sys" %0 : _error Missing file '%1\syslinux\ldlinux.sys' if not exist mbr.bin %0 : _error Missing file 'mbr.bin' if not exist makebootfat.exe %0 : _error Missing file 'makebootfat.exe' if not exist wait.com %0 : _error Missing file 'wait.com'
I wonder why the path is not correct in the file ubcd2usb.bat and why that works with other people ??
The problem is the same with all filenames in th file...