I was thinking about creating a bootable USB drive by burning an ISO image, but I can't find an ISO burner for Ubuntu.
How I can do that?
I was thinking about creating a bootable USB drive by burning an ISO image, but I can't find an ISO burner for Ubuntu.
How I can do that?
Ubuntu has an official tutorial to Install Ubuntu Desktop.
This tutorial walks you through the entire process of installing Ubuntu, including downloading the ISO and creating bootable media that can be used for installation or to boot a live session of Ubuntu.
The official tutorial uses Etcher which is an easy-to-use, cross-platform utility for flashing system images to USB drives.
Creating bootable media containing Ubuntu is pretty easy. You just need to Download Ubuntu, then flash the downloaded ISO file to a USB flash drive using Etcher or a similar utility.
I use the same approach as detailed in creating Linux boot image. That is, I download the .iso; and then, as in the link above I use the command (or with superuser privileges logged in as root with sudo -i):
sudo dd if=<input_file> of=<device_name>
sync
The sync statement flushes the disk and iso cache buffers. Most of the time it is not necessary with the default dd copy block size of 512 Bytes for the input file and the output file. However, if there are problems, it might be an important troubleshooting step.
The input file is the downloaded ubuntu-20.04.5-desktop-amd64.iso file. The output file is /dev/sda or whatever root device name your USB stick has. I use fdisk -l to figure out the USB device name. The device is usually pretty obvious to me because of the device size.
After that completes, I just test the boot manually booting to the USB drive with the boot type set as Legacy or UEFI dependent on what kind of boot you want. If you want to install a Legacy version of Ubuntu, you should boot into the legacy version as set in the computer's BIOS. If you want to create a UEFI version, in principle boot to the UEFI partition.
And that is it!
I recommend, and use mkusb
Refer https://help.ubuntu.com/community/mkusb
For years I just used dd
to write the ISO to thumb-drive, but mistakes were bound to happen, and sure enough
I've made no mistakes since using mkusb
, and it can create persistent drives & not just the simple clones I'd create with dd
.
However, have you looked at the Ubuntu tutorials on this subject? They cover writing one on Ubuntu of course (StartUp Disk Creator), but also MacOS & Windows too
Most modern computers, (UEFI), do not need a Live USB maker to boot Ubuntu, (or Windows).
In Ubuntu use GParted to create an ~8GB NTFS partition on the USB or on the Target drive. (In Windows use Disk Management).
In Ubuntu use Archive Manager, (or 7Zip), to extract the ISO file to the NTFS partition.
When booting use the applicable F key to open the UEFI menu and then select the USB or NTFS partition to boot.
The way I like to flash Ubuntu to my USB device is with Balena Etcher. You can flash your ISO file to your usb drive and then you can use it as a bootable usb.
I use balenaEtcher to burn Linux an ISO file to USB to create a bootable disk. Advantages: (1) balenEtcher has AppImage format, it does not require installation, you can double click to run it (2) balenEtcher not only burn Ubuntu iso files, but it is also to burn Manjaro iso files to create Manjaro bootable disk. Hope this helps.
For USB if you are using Ubuntu there is many programs At Ubuntu software shop and Installed one some times as Start Disk Creator
If You On Other OS Use Universal USB Installer Or Rufus
For CD or DVD You have many programs at Ubuntu software shop, Best one I tried was Brasero
Fedora Media Writer works cross-platform and also, in my experience, works more reliably than Rufus, balenaEtcher, or other options I've tried. Especially when writing ISOs to USB thumbdrives on Windows.
https://fedoraproject.org/workstation/download/
Obviously it works best with Fedora/CentOS builds but it'll write pretty much any Linux/BSD ISO to USB thumbdrives including ARM/aarch64 builds. It doesn't correctly handle Windows ISOs though, which write successfully but only partially boot and then die during the device discovery phase. Therefore, while Fedora Media Writer is not a perfect/universal OS ISO writing tool, anything UNIXey generally works as expected. I just used Fedora Media Writer to deploy the latest Ubuntu Server ISO to some new hardware and it installed clean and is working great.
It's also supplied directly from the Fedora project, which helps with trust and therefore probably a tool that's not likely to go away unexpectedly, stop being maintained, or change in unfortunate ways. Of course, Red Hat sometimes does things that Red Hat does. So this paragraph might not age well.