You are not logged in.
i installed grub and grub4dos am going to test iso booting tomorrow
Offline
sorry - a bit late, but research on Plop Boot Manager for another thread seems to be the possibility for Grub2
http://phanvinhthinh.blogspot.co.at/2010/08/boot-from-usb-flash-without-bios.html
its a pitty, that Elmar is not planing to add iso boot to plop boot manager - described here:
http://reboot.pro/topic/12781-plop-boot-manager-5011-released/
but maybe with syslinux installed on the disk, it should be possible
http://www.ultimatebootcd.com/forums/viewtopic.php?p=7356
http://www.rmprepusb.com/tutorials/chainload-syslinux
Offline
very nice, but im using grub4dos now 
i tried this script:
title slitaz
find --set-root /boot/isos/slitaz.iso
map --mem /boot/isos/slitaz.iso (hd32)
map --hook
chainloader (hd32)
it gets stuck. I tried issuing the commands in the grub prompt, it gets stuck when i type te map --mem line. could the file be too big to get mapped to ram?
Offline
when it gets stuck, thats a sign, that it is to big
how much ram do you have?
Offline
512 Mb
the iso is 191 Mb
Offline
I think, that is to little, not very much, but to little.
to be on the secure side, you have to count x4 - I would say 756 MB would be enough
Offline
aha, anything i can do about this? i saw something about fake-write to harddrive, can I use that? or could i convert it to loram iso?
Offline
in your normal slitaz run
# tazlito build-loram slitaz.iso loram.iso
Creates an ISO image flavor for low ram systems from a SliTaz ISO image.
I have never tried it
Offline
ok i made a loram my menu.lst looks like this now:
title slitaz
find --set-root /boot/isos/slitaz-loram.iso
map --mem --heads=0 --sectors-per-track=0 /boot/isos/slitaz-loram.iso (hd32)
map --hook
chainloader (hd32)
it does map now but gives still kernel panic.
it succesfully chainloads to isolinux so i guess the problem is with isolinux
Offline
I am able to boot from the extracted iso file on my filesystem, could it be that there is too less ram to map the iso AND run it
Btw im content with this result
Thx a lot for your time and help kultex!!!!
Offline
what I would do:
boot from the cd, add some bigger apps like firefox gimp and abiword and run tazlito to make the iso and try this iso in your configuration, you have now - this should boot without any probs
when this works, then create a low ram iso from this new iso and look if this works too
maybe any problems with the menu.lst?
Here I found something for grub4dos:
title stilaz 4.0
map /boot/slitaz-4.0.iso (0xff) || map --mem /boot/slitaz-4.0.iso (0xff)
map --hook root (0xff)
chainloader (0xff)
and just here I found something for grub2 and booting 3.0 - so it should work also with bzimage in grub 2
menuentry "Slitaz 3.0" {
set isofile="/boot/slitaz-3.0.iso"
loopback loop $isofile
linux (loop)/boot/bzImage lang=en kmap=us autologin isofrom=$isofile boot=live noeject noprompt root=/dev/null
initrd (loop)/boot/rootfs.gz
}
and of course, grub legacy is also working with bzimage
so thats the question to the devs:
WHY we need bzImage and vmlinuz in the iso? - that would be 2.4 MB less !!
Offline
bzImage and vmlinuz-XXX are hard links. See http://hg.slitaz.org/tazlito/file/d5e9336b9867/tazlito#l240
The bzImage name is generic (for scripts)
The vmlinuz-VERSION is human readable information.
Offline
hi pascal,
the whole thread only exists, because tazlito is not coping vmlinuz from the iso - or CD to the new iso
is this a bug?
and about vmlinuz and bzImage - I just think, thats quite stupid to have 2 identical files in one CD quite bad invention....
Offline
What is stupid ?
- use the same scripts / boot config files for every kernel version (bzImage) ?
- show clearly the kernel version with ls (vmlinuz-*) ? Cost: 0 bytes (128 unused bytes - including rockridge attributes - in a iso9660 directory sector)
http://en.wikipedia.org/wiki/Hard_link
$ stat -m /media/cdrom/boot/vmlinuz-2.6.37-slitaz /media/cdrom/boot/bzImage | \
awk '{ if (prev + 1 != $1) printf("%d\n%d - ",prev,$1); prev=$1 } END { print prev }'
Only bzImage is necessary for scripts / boot config files.
Offline
thx pascal, I understood now Hard_link
but if I understand the tazlito receipt, bthere should be a hard link of vmlinuz lile in the normal slitaz iso, but it is not - see attachment
[attachment=19950,861] [attachment=19950,862]
Offline
[ Generated in 0.017 seconds, 7 queries executed - Memory usage: 1.56 MiB (Peak: 1.77 MiB) ]