I need a little guidance.
I'm working with the Linux Live Kit to make a redistributable distro I'm working on.
Linux Live Kit found here:
https://www.linux-live.org/
I use_linux_iso.sh to create linux-x86_64.iso and it does that just fine, but where I need guidance is the USB portion.
I use these commands to setup the USB after I have the linux-x86_64.iso file created.
plug in usb thumb drive
fdisk -l
to see where usb is located
to burn iso to usb drive
dd bs=4M if=linux-x86_64.iso of=/dev/sdb
This copies files over to the USB but it does not make it bootable.
What do I need to do to make this a bootable usb? I must be missing something.
Any help would be appreciated.