How to Create a bootable Ubuntu USB flash drive from terminal
- by Avinash Raj
Is there any possibility to create a Ubuntu USB flash drive from terminal without using any third-party applications like YUMI,Unetbootin,etc.
I tried to create a bootable ubuntu flash drive with dd method,
sudo umount /dev/sdb
sudo dd if=/path/to/ubuntu.iso of=/dev/sdb bs=1M
It create files on the USB disk,but when i try to boot the usb disk it says Operating System Not Found error.
Any help will be appreciated!