Linux – Unable to create bootable USB to mount kali linux iso image

bootable-mediakali-linuxrufus

I want to dual boot kali linux. I'm mounting kali linux.iso to create a bootable USB with the help of Rufus. Rufus shows the following errors when i start the process.

Rufus bootable error

It asks for download some file which I've no idea what they are and why Rufus seems so interested in downloading them before creating bootable USB. Is there any way to get around this error?

Edit: Issue resolved

Best Answer

ldlinux.sys is the name of the bootloader file used in SYSLINUX and ISOLINUX (used for booting Linux off of FAT32 and ISO9660 filesystems, respectively). It is loaded into memory by the BIOS on bootup. The loader then parses the configuration file (syslinux.cfg or isolinux.cfg) to know which kernel to launch, along with parameters to be passed to it.

Essentialy you need these files or else linux will not run.

Related Question