Has anyone perfected the art of universal install of distros from a hard drive partition?
I have tried the approach explained here, but not working for me. I have only tried this approach with absolute linux, but I get through the installation process, but after it says it is complete, it didn't actually install anything. Absolute Linux is Slackware based so wondering if that may be a problem.
I'm wondering if I need to know a more descriptive information about bzImage and initrd than what's shown in the how-to link above.
I am using GRUB2 as well and followed the manual for GRUB2 as that how-to doesn't actually explain the correct approach with GRUB2.
Here is what I imput:
menuentry 'Install Absolute Linux (/dev/sda3)' {
recordfail
insmod part_msdos
insmod vfat
set root='(hd0,msdos3)'
search --no-floppy --fs-uuid --set 8420-4672
linux /bzImage root=UUID=8420-4672 rw quiet splash
initrd /initrd.img
}
The files were put into the root of a separate partition by themselves (/dev/sda3). 3 files, the iso image, bzImage and initrd.img. However, this approach is not working.
I haven't seen any other sites or explanations on this subject, but I am sure there is some kind of hack for this.




