Hi.
I have a flash drive that through the boot manager Grub4dos allows me to boot in a simple way multiple operating systems and tools from their .iso images of their Live versions ( or boot CD ) , which not only saves me the cost of burning CD 's or DVD's but also allows me to boot netbooks without CD or DVD drive .
I downloaded the BitDefender Rescue CD .iso image, but I can not boot it in the same way as the other operating systems.
The CD's or DVD's that have a boot menu usually use isolinux, which is often difficult to boot with Grub4dos (with notable exceptions such as Slitaz and Super Grub 2), which I find very comfortable for a multiboot flash drive , because once the pendrive is bootable , you only need two files: grldr ( bootloader ) and menu.lst a plain text menu, easily editable.
Usually I first test if the isolinux is Grub4dos friendly to boot as Slitaz , and it can boot with a few simple instructions , find the iso , mapping , hook and chainloader :
title SliTaz 4.0 Lnx 32b
find --set-root /boot-isos/slitaz-4.0.iso
map --heads=0 --sectors-per-track=0 /boot-isos/slitaz-4.0.iso (hd32)
map --hook
chainloader (hd32)
Most of the time, it does not work, as is the case with BitDefender Rescue CD . So I bypass the isolinux menu following the path of the instructions in the file isolinux.cfg in the folder isolinux. In this case, I take the instructions to boot BitDefender Live in Spanish and adapt them to the syntax of grub4dos:
title Bitdefender Rescue CD Lnx 32b
find --set-root /boot-isos/bitdefender-rescue-cd.iso
map --mem /boot-isos/bitdefender-rescue-cd.iso (0xff)
map --hook
root (0xff)
kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper persistent splash vga=normal lang=es iso-scan/filename=/boot-isos/bitdefender-rescue-cd.iso floppy.allowed_drive_mask=0 cdrom-detect/try-usb=true locale=es_ES bootkbd=es console-setup/layoutcode=es
initrd /casper/initrd.gz
boot
It does not work. Taking in account that this is an Ubuntu based distro I tried many other Ubuntu configurations. None worked.
I think the problem may be in the parameter file file=/cdrom/preseed/ubuntu.seed because this file does not exist in the .iso ( or the CD , if I burn it), nor a preseed folder . I tried removing that parameter in the kernel command line. It did not work.
Any idea?
Best regards.