sofasurfer
Member
I want to make a grub bootable foxclone script. I need to see where the
vmlinuz and initrd fyles reside. I am so far unable to extract or list the files in the iso. I am using foxcloneedge_50-07.iso and I have it stored in a seperate partition. The iso shows to be 870mb. Here is my script...
vmlinuz and initrd fyles reside. I am so far unable to extract or list the files in the iso. I am using foxcloneedge_50-07.iso and I have it stored in a seperate partition. The iso shows to be 870mb. Here is my script...
Code:
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above. (I removed the hyphens in the filename in the script and the filename). This a a script I found online so I know the paths to the init and initrd may be incorrect. This is why I need to view the files.
# foxclone ISO grub boot
menuentry "ISO Boot: FoxClone" {
set isofile="/media/daryl/ISOstorage/foxcloneedge5007.iso"
loopback loop (hd0, 2)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject quiet splash toram
initrd (loop)/casper/initrd.lz
}
Last edited: