Hello,

I have been at this for a few hours and can't seem to get it to work properly.
I have placed Kali ISO in my HDD, in an NTFS partition, and am trying to load it from there through Grub4DOS but I'm encountering errors during boot, specifically:

Code:
FAT-fs (sdb1): utf8 is not a recommended IO charset for FAT filesystems, filesystems will be case sensitive!
...
(initramfs) Unable to find a medium containing a live file system
Here is my Grub menu.lst entry for Kali:

Code:
title Kali
find --set-root=/iso
map /kali.iso (0xff) && map --hook && root (0xff)
kernel /live/vmlinuz boot=live noconfig=sudo username=root hostname=kali
initrd /live/initrd.img

So far the only way I got it to boot properly was by placing the /live/ folder in the root of my NTFS partition, and it must be exactly on the root, anywhere else and the boot process will fail with the error(s) mentioned above.

Anyone has any idea how to get around this?

Thanks.