0

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.

Dante
  • 2,329
  • 5
  • 27
  • 35

1 Answers1

3

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 the ubuntu-14.04.3-desktop-amd64.iso file and in the README.diskdefines it says:

#define DISKNAME  Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64

And the /.disk/info includes the date info that you are seeing:

Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)

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:

Ubuntu 14.04.3 LTS amd64

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 how SDC 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.

chaskes
  • 15,246
  • I downloaded a new one, but it still says Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)! Also the md5 of both iso files are the same. – Dante Nov 06 '15 at 02:52