So far Ubuntu (and derivatives) has been delivering ISO images to be burned onto optical media.
Then there's a tool (usb-creator) to "burn" those ISOs onto USB drives.
I could be wrong, but I think that nowadays the majority of users don't use optical media to install Ubuntu (as well as other OSs) also because optical drives are not any more standard.
A "USB image" is usually "burnt" with a standard dd which is readily available within whatever OS you already have. While if you are not coming from Ubuntu it's likely your conversion tool is different from Ubuntu's and it won't work flawlessly.
What is the advantage for Ubuntu to keep the ISO instead of a "dd-able" image?
The current iso image is dd
able and the images have been dd
able for quite some time now as far as I know.
sudo dd if=./ubuntu.iso of=/dev/sdx bs=16M
Where ./ubuntu.iso
is the path to the actual file and /dev/sdx
is the target USB drive.
Alternatively, you can use cat
instead of dd
which is arguably faster like so:
sudo -i
cat ./ubuntu.iso > /dev/sdx
exit
Again, ./ubuntu.iso
represents the full path to the actual iso file and /dev/sdx
is the actual USB device.
Even if the image were not dd
able, it would simply take a couple of syslinux commands to convert the image to dd
able form.
Hypothetically, if the Ubuntu iso images were not dd
able, you would just have to run the following commands:
sudo apt-get install syslinux syslinux-utils
isohybrid ./ubuntu.iso --entry 4 --type 0x1c
dd if=./ubuntu.iso of=/dev/sdx bs=16M
Again, where ./ubuntu.iso
is the path to the actual iso file and /dev/sdx
is the actual USB device.
No comments:
Post a Comment