Tuesday, March 17, 2015

boot - Is there an easy way to create a multiboot grub2 usb flash using isos?


I've recently purchased a 32gb usb 3.0 flash drive. Because I find myself creating bootable flash drives all the time with different images, I'm looking for a way I could create ONE flash drive with multiple images on it.


What I'm trying to figure out is:



  1. Is it possible to get Grub2 to boot directly from an ISO image, stored on the flash drive? (without extracting the content)?

  2. If this is possible, is there an existing tool one could use? (I know I could run the grub commands over and over, but I'm rather looking for a tool that could do it for you)

  3. Is Grub2 capable of "scanning" through a directory of ISO's and displaying that list on boot, or I need to manually add/remove the files each time they change?


Answer



You can try Easy2Boot if you want to boot directly from 100s of different Linux .iso files.


You just copy over any .iso file you like. The only snag is that you need to make sure each .iso file is contiguous. There is a defrag utility supplied for FAT32 USB drives or udefrag for NTFS USB drives so you can do this.


You can delete any ISO at any time. The menu is automatically created each time you boot, so no application is needed.


A good supplementary article on the details of using it here: https://www.technibble.com/easy2boot-boot-disks/


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...