When I was making a bootable usb drive by Startup Disk Creator
utility, it said that the OS version of ubuntu-14.04.3-desktop-amd64.iso
is Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
. Why does it say such thing? By the way I am running Startup Disk Creator
on 14.04.3 LTS
.
14.04.03
was released August 6, 2015. Your iso has the date August 5, so you downloaded it while it was still a beta.But it doesn't matter. You can use it and it will update to the release version. Or you can re-download it if you feel better about it. But there's no need to use
14.04.02
, since.03
is the current release.That said, there may be a minor bug with the
14.04.3
iso. I also just downloaded theubuntu-14.04.3-desktop-amd64.iso
file and in theREADME.diskdefines
it says:And the
/.disk/info
includes the date info that you are seeing:So
Startup Disk Creator
says the version is a beta because the iso file says it is a beta.I haven't been able to find any documentation to say whether this is a bug or is by design. But using
dd
to burn the disk creates a usb with the label:Note the absence of 'beta' and the date. If it were truly a beta or development branch this would show up in the name.
So
Startup Disk Creator
is just displaying the info that it sees. Whether the bug is with the iso (and the creators neglected to remove 'beta' from those to spots) or the bug is with howSDC
pulls the info to display, I can't say.You are better off just using
sudo dd if=/path/to/iso of=/dev/usually-sdb
, although you need to be very careful that you have the output file (device) named correctly before pressing Enter.In the end, the iso is fine to use and I seriously doubt there is any reason to think you would have ever noticed any issue at all if you had originally used
dd
to create the installation media.