How do we create a LIVE USB on LINUX? (using command line "dd")
i'm reading on the internet you type...
Insert your USB drive into your computer and use ‘df’ or ‘lsblk’ from the command line to determine the device name your flash drive has been assigned, e.g. /dev/sdb, sdc, etc. in my case the USB drive shows up on /media/asher/gentoo
Make sure the drive is not mounted. If necessary, unmount it with:
sudo umount /dev/<device_name>
Write the .iso image to the flash drive:
sudo dd if=/path/to/distro.iso of=/dev/<device_name> bs=1M
this does seem to do something however it doesn't write the LIVE USB ISO to the USB DRIVE
THANKS FOR THE LIVE USB HELP!