I am using Linux Mint 10, and it is installed on sda8.
I edited /etc/grub.d/40_custom:
#!/bin/sh
echo "Adding 40_custom.">&2
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.
menuentry "fedora ISO" {
loopback loop (hd0,8)/boot/iso/Fedora-14-i386-DVD.iso
linux (loop)/isolinux/vmlinuz boot=isolinux iso-scan/filename=/boot/iso/Fedora$
initrd (loop)/isolinux/initrd.img
}
Then I ran sudo update-grub2. After rebooting, I chose “Fedora ISO”. The computer restarted.
I tried following this guide, but it didn't work.
Do I need to change the file permissions of the boot and casper folders
or there is some other problem?