A similar but detailed description can be found here.
PROCEDURE
- Place Downloaded Image in an ext2 Partition (sda2 here)
- Copy from the Iso Image the Files: 'vmlinuz' and 'initrd.lz'. Place them in a reiserfs Partition (not ext2fs, other fs types might be O.K.).
- Code: Select all
$ mkdir p_rfs
$ mkdir p_xt2
$ sudo mount /dev/sda1 p_rfs # Filesystem: reiserfs
$ sudo mount /dev/sda2 p_xt2 # Filesystem: ext2
$ mkdir im
$ sudo mount p_xt2/M_Nadya/linuxmint-14-cinnamon-dvd-32bit.iso im -t iso9660 -o loop
$ cp -p im/casper/vmlinuz p_rfs/M_Nadya
$ cp -p im/casper/initrd.lz p_rfs/M_Nadya
- Grub 1
Entry in menu.lst- Code: Select all
title Linux Mint Nadia Live DVD from Iso 'linuxmint-14-cinnamon-dvd-32bit.iso'
root (hd0,0)
kernel /M_Nadya/vmlinuz live-media=/dev/sda2 iso-scan/filename=/M_Nadya/linuxmint-14-cinnamon-dvd-32bit.iso file=/cdrom/preseed/mint.seed boot=casper noprompt
initrd /M_Nadya/initrd.lz

