Ubuntu certified
Modified: 05 Nov 2024 18:47 UTC
The Ubuntu Certified Images are designed by Canonical to be optimized for various cloud infrastructures, including the MNX Cloud.
The Certified Images support cloud-init to provide a uniform boot-time setup. MNX Cloud boot script user-script
metadata is also available to do per-boot scripting.
You can use Juju to deploy your web applications on MNX-hosted Ubuntu instances. To learn how to configure Juju to work with the MNX Cloud, see Configuring for MNX Cloud in the Juju documentation
MNX-supplied Ubuntu images prior to these Certified Images have some basic differences. The summary of differences section summarizes those differences.
The goal of the Ubuntu Certified Images is to work the same way regardless of the cloud infrastructure hosting them. This section describes some basic differences between the Certified Images and the legacy MNX-supplied Ubuntu images.
In certified images, the default user is ubuntu
. You cannot log in as root
. However, the ubuntu
user is authorized to use sudo
to do things as root.
In certified images, the ephemeral device (data disk) is mounted at /mnt
. In MNX-supplied images, the ephemeral device is mounted at /data
. The following output of the df
command shows the default file system in a Certified Image.
$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/vda1 7.5G 745M 6.4G 11% /
none 4.0K 0 4.0K 0% /sys/fs/cgroup
udev 493M 4.0K 493M 1% /dev
tmpfs 100M 360K 100M 1% /run
none 5.0M 0 5.0M 0% /run/lock
none 498M 0 498M 0% /run/shm
none 100M 0 100M 0% /run/user
/dev/vdb 33G 177M 31G 1% /mnt
The certified images can use both cloud-init and MNX boot-time setup.
Initialization data (like cloud-init) is provided as metadata when the instance is created. You can provide this metadata CLI command option --metadata-file
(or —script
for MNX images).
Cloud-init data is provided as metadata with the cloud-init:user-data
key. Triton DataCenter boot-time data is supplied as metadata with the user-data
and user-script
keys.
cloud-init:user-data
is consumed once per instance
user-script is consumed each boot
user-data is consumed each boot
Keep in mind that you may be able to log in to your instance before cloud-init is finished . Complex cloud-init or user-script scripts could take several minutes to complete. Please plan accordingly.
cloud-init is the Ubuntu package that handles first-boot initialization of a cloud instance. You can learn more information about cloud-init here and in the cloud-int documentation .
These examples use the [CloudAPI command-line interface](Working with CloudAPI.html). To run these examples, make sure that you are using at least version 7.2.0 of the CloudAPI tools.
Anything in the cloud-init:user-data
, runs once per instance on the first boot. In this example, the shell script ubuntu.cloud.sh
will run on first boot.
ubuntu.cloud.sh
does nothing more than to write a message with the current time in /root/output.txt
. It should be in the same directory that you run the sdc-createmachine
in.
#! /usr/bin/env bash
echo "Hello World. The time is now $(date -R)!" | tee /root/output.txt
To provision an Ubuntu instance, you would use the sdc-createmachine
command like this. 46407334-9096-40ef-bb72-6f9a094f0507
is the UUID of the the Ubuntu 13.10 image.
$ sdc-createmachine --dataset 46407334-9096-40ef-bb72-6f9a094f0507 \
--package g3-standard-1-kvm \
--metadata-file cloud-init:user-data=./ubuntu.cloud.sh
After the instance is provisioned, you can log in to it and verify that the script ran:
$ sudo cat /root/output.txt
Hello World. The time is now Fri, 14 Feb 2014 23:15:13 +0000!
cloud-init can also take a YAML file that describes how to configure the instance. In this example, cloud.init
is a cloud-init config file that:
updates the package list
upgrades installed packages
installs the apache2 package
#cloud-config
apt_update: true
apt_upgrade: true
packages:
- apache2
To provision an Ubuntu instance, you would use the sdc-createmachine
command like this, using the name of the config file.
sdc-createmachine --dataset 46407334-9096-40ef-bb72-6f9a094f0507 \
--package g3-standard-1-kvm \
--metadata-file cloud-init:user-data=./cloud.init
After provisioning, you can check that the apache2 packages were installed:
$ dpkg -l | grep apache
ii apache2 2.4.6-2ubuntu2.1 amd64 Apache HTTP Server
ii apache2-bin 2.4.6-2ubuntu2.1 amd64 Apache HTTP Server (binary files and modules)
ii apache2-data 2.4.6-2ubuntu2.1 all Apache HTTP Server (common files)
Any script provided as a user script, will run every time the instance boots. The user script can be provided as the name of a file to the —script
option to sdc-createmachine
, or as the value of the user-script
metadata key.
In this example, the script userscript.sh
will run when the instance is provisioned as well as on every reboot.
#! /usr/bin/env bash
echo "Hello World. The time is now $(date -R)!" | tee /root/joyoutput.txt
Provision the instance:
sdc-createmachine --dataset 46407334-9096-40ef-bb72-6f9a094f0507 \
--package g3-standard-1-kvm \
--script ./userscript.sh
After provisioning, check the output:
ubuntu@eeac1ea5-0c7f-e445-febc-9ba2883dfe7b:~$ sudo cat /root/joyoutput.txt
Hello World. The time is now Fri, 14 Feb 2014 22:46:50 +0000!
If you were to reboot the instance a few days later, you would see this:
ubuntu@eeac1ea5-0c7f-e445-febc-9ba2883dfe7b:~$ sudo cat /root/joyoutput.txt
Hello World. The time is now Tue, 18 Feb 2014 17:12:17 +0000!
This table summarizes the difference between the Canonical Certified images and the MNX-supplied images.
MNX-supplied
Canonical-supplied
Default user
root
ubuntu
Disk layout
/tmp
on separate partition, /data
is the mount point for the ephemeral device, statically configured fstab
/tmp
on rootfs, /mnt
is the mount point for the ephemeral device, dynamic mounts
Boot-time setup
user-script
metadata
cloud-init
Kernel
Locked
Uses stock Ubuntu virtual kernel
Name
ubuntu-certified-18.04
Description
Ubuntu 18.04 (20190627.1 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
9aa48095-da9d-41ca-a094-31d1fb476b98
min_platform
"7.0": "20150929T232348Z"
Updates for CVE-2019-11477 and CVE-2019-11478
Name
ubuntu-certified-18.04
Description
Ubuntu 18.04 (20190514 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
4feac886-cc24-4e52-902b-fc939f1f0fcb
min_platform
"7.0": "20150929T232348Z"
Updates for CVE-2018-12126, CVE-2018-12127, CVE-2018-12130, and CVE-2019-11091
Name
ubuntu-certified-18.04
Description
Ubuntu 18.04 (20190212.1 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
cb0849d5-d890-4158-b788-07b11718179d
min_platform
"7.0": "20150929T232348Z"
Updates for CVE-2019-7304
Name
ubuntu-certified-18.04
Description
Ubuntu 18.04 (20190122 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
c9db249c-93ba-4507-9fa4-b4d0f81265fc
min_platform
"7.0": "20150929T232348Z"
Updates for CVE-2019-3462
Name
ubuntu-certified-18.04
Description
Ubuntu 18.04 (20180808 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
6b47e1d9-36b8-4b6f-8764-5ff5fe6d120b
min_platform
"7.0": "20150929T232348Z"
Updates for CVE-2018-3639
First Ubuntu Bhyve/KVM hybrid image
Name
ubuntu-certified-18.04
Description
Ubuntu 18.04 (20180717.1 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
935272c8-81f9-4bdb-b66f-6ccbaa4e9719
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-17.10
Description
Ubuntu 17.10 (20180222 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
0ed8e3fa-154e-4302-8d4e-d74f877dbf37
min_platform
"7.0": "20150929T232348Z"
Updated for kernel fixes Meltdown Spectre V1 and V2
Name
ubuntu-certified-17.10
Description
Ubuntu 17.10 (20180109 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
e0ef873d-6423-4002-90db-1ecd1d99dff2
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-17.10
Description
Ubuntu 17.10 (20171122 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
33cfd5f4-0ef1-4849-add1-2262c08ce992
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-17.10
Description
Ubuntu 17.10 (20171017 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
4bce0c90-6da4-4a8e-921f-436f4580bc77
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-17.04
Description
Ubuntu 17.04 (20171123 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
76a373ba-be82-4d7c-aa1a-273d8128c6a8
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-17.04
Description
Ubuntu 17.04 (20170803 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
d6e9bc19-f6bb-464c-8da2-8a350fa66abb
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-17.04
Description
Ubuntu 17.04 (20170619.1 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
80e13c87-76c8-4a25-bd1d-da3c846ccce8
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-17.04
Description
Ubuntu 17.04 (20170412.1 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
4e6d08e1-f224-4f0e-9d72-831541eefaac
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.10
Description
Ubuntu 16.10 (20170619.1 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
a26713d3-1ba0-4a85-8f37-437097cd8a8b
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.10
Description
Ubuntu 16.10 (20170330 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
cfa9ebac-45c4-4e96-9b83-0f519c49efe8
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.10
Description
Ubuntu 16.10 (20170307 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
67eaef4f-4fec-4dec-bcb8-9b1bc6bc87f5
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.10
Description
Ubuntu 16.10 (20170222 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
f62a1f5b-3a41-4cdf-a186-173c60aca70d
min_platform
"7.0": "20150929T232348Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-16.10
Description
Ubuntu 16.10 (20161214 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
bf25994d-23d2-474a-b311-971572448d0f
min_platform
"7.0": "20150929T232348Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-16.10
Description
Ubuntu 16.10 (20161207 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
246482bf-b9aa-4ad4-9f06-3a735a5bf92a
min_platform
"7.0": "20150929T232348Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-16.10
Description
Ubuntu 16.10 (20161020 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
83aa2533-46dd-405a-ada0-2b6d56e5a33b
min_platform
"7.0": "20150929T232348Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-16.10
Description
Ubuntu 16.10 (20161012.3 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
5147129d-8b6a-48d6-9aef-961206f5706c
min_platform
"7.0": "20150929T232348Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04 (20190628 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
616c7421-4b9a-49fe-989e-81eb19232b87
min_platform
"7.0": "20150929T232348Z"
Updates for CVE-2019-11477 and CVE-2019-11478
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04 (20190514 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
f440d70e-f05f-42e8-bb21-c351da253c25
min_platform
"7.0": "20150929T232348Z"
Updates for CVE-2018-12126, CVE-2018-12127, CVE-2018-12130, and CVE-2019-11091
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04 (20190212 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
2d4068a1-d3da-4f93-bcda-db872bc7ded7
min_platform
"7.0": "20150929T232348Z"
Updates for CVE-2019-7304
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04 (20190122.1 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
81c0ef69-e9d7-4e93-a15b-efd7ea9c9ee8
min_platform
"7.0": "20150929T232348Z"
Updates for CVE-2019-3462
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04 (20181005 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
6b47e1d9-36b8-4b6f-8764-5ff5fe6d120b
min_platform
"7.0": "20150929T232348Z"
First KVM/Bhyve hybrid image
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04 (20180222 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
429bf9f2-bb55-4c6f-97eb-046fa905dd03
min_platform
"7.0": "20150929T232348Z"
Updated for kernel fixes Meltdown Spectre V1 and V2
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04 (20180109 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
d42c37f4-2956-413f-b12a-32a79dfe84af
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04 (20171122 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
b2da7f6e-7ef5-454c-9d76-d15e2ef8abf1
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04 (20170803 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
d472f84c-69cf-431c-b848-c5dce6bee153
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04 LTS (20170619.1 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
342045ce-6af1-4adf-9ef1-e5bfaf9de28c
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04.2 LTS (20170330 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
554abb2e-a957-4b51-a601-97c934eadf33
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04.2 LTS (20170307 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
630ee3d6-da6e-483c-b9bf-9f35fda4d716
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04.2 LTS (20170221 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
0867ef86-e69d-4aaa-ba3b-8d2aef0c204e
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04.1 LTS (20161221 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
698a8146-d6d9-4352-99fe-6557ebce5661
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04.1 LTS (20161020 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
b8a4ba09-ef63-4ee0-adaf-72cc677d863d
min_platform
"7.0": "20150929T232348Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-16.04
Description
Ubuntu 16.04.1 LTS (20160922 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
c98c51f7-edf4-46f0-b592-6814ce56ae37
min_platform
"7.0": "20150929T232348Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Please note: The 15.10 (Wily) image will reach end-of-life in July 2016 at which point it will be disabled. Shortly after the EOL date you will need to update your archive mirrors for any virtual machine based on this image. Your archive mirrors should be updated to use old-releases.ubuntu.com
in /etc/apt/sources.list. For example:
deb http://old-releases.ubuntu.com/ubuntu/ wily main
deb-src http://old-releases.ubuntu.com/ubuntu/ wily main
Please note: The 15.04 (Vivid) image reached end-of-life on on Feb 4, 2016 and will be disabled on April 28, 2016. For Virtual Machines based on a 15.04 image, you will need to update your archive mirrors to use old-releases.ubuntu.com
in /etc/apt/sources.list. For example:
deb http://old-releases.ubuntu.com/ubuntu/ vivid main
deb-src http://old-releases.ubuntu.com/ubuntu/ vivid main
Please note: The 14.10 (Utopic) image is now end-of-life and has been disabled. For Virtual Machines based on a 14.10 image, you will need to update your archive mirrors to use old-releases.ubuntu.com
in /etc/apt/sources.list. For example:
deb http://old-releases.ubuntu.com/ubuntu/ utopic main
deb-src http://old-releases.ubuntu.com/ubuntu/ utopic main
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04 (20190514 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
e7e77246-74fd-4ed7-8fde-a021eafb4d3d
min_platform
"7.0": "20150929T232348Z"
Updates for CVE-2018-12126, CVE-2018-12127, CVE-2018-12130, and CVE-2019-11091
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04 (20180222 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
6d027421-aad7-4732-9800-9d0a2bd4b80d
min_platform
"7.0": "20150929T232348Z"
Updated for kernel fixes Meltdown Spectre V1 and V2
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04 (20180110 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
48b9655c-6530-46ae-b9ac-76c70414994b
min_platform
"7.0": "20150929T232348Z"
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04 LTS (20171122 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
8ee8d65d-8c5a-4b0f-92fc-05b7be89cf9d
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04 LTS (20170619 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
bc33164c-22a6-493b-bbd0-81cbaa154d54
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.5 LTS (20170330.1 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
5b3e188a-c8af-42da-9b2d-841ce109de7a
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.5 LTS (20170307 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
05dd69bd-3d4c-49c0-b8a3-55a9111c5d34
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.5 LTS (20170222 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
d810b3d1-0b63-4eb0-9b54-9733cfafad0b
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.5 LTS (20161214 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
762c5b33-62f4-4301-8fd6-14de648a68da
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.5 LTS (20161205 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
cd389560-9a59-4a71-b5a5-0801ab19c45e
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.5 LTS (20161020 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
897c9d63-9397-4cb3-bf90-88375d7dc933
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.4 LTS (20160627 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
643d5524-7eba-4a72-8fca-8dbb84d8d35d
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.4 LTS (20160516 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
1a0b9621-0d77-437f-8ef1-f62535df96d6
min_platform
"7.0": "20130723T015243Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.4 LTS (20160314 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
1a0b9621-0d77-437f-8ef1-f62535df96d6
min_platform
"7.0": "20130723T015243Z"
Updated to address CVE-2016-3134: Linux netfilter IPT_SO_SET_REPLACE
memory corruption
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.4 LTS (20160217.1 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
03a2f372-7d05-46d6-a5d2-b033a2d97bbc
min_platform
"7.0": "20130723T015243Z"
Updated to 14.04.4
Updated to address CVE-2015-7547: vulnerability in glibc getaddrinfo
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.3 LTS (20160114.5 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
6b097cd3-d89b-4bc1-9650-f0a596f8360e
min_platform
"7.0": "20130723T015243Z"
Updated to address CVE-2016-0777 and CVE-2016-0778 OpenSSH vulnerabilities
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.2 LTS (20150225.2 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
c864f104-624c-43d2-835e-b49a39709b6b
min_platform
"7.0": "20130723T015243Z"
Ubuntu 14.04.2 LTS release.
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.2 LTS (20150708 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
143e254a-b185-4d0c-9785-d924f4dc0a0d
min_platform
"7.0": "20130723T015243Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.1 LTS (20140929 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
5f67e820-1489-4db7-9df2-1d8e3ec5cd90
min_platform
"7.0": "20130723T015243Z"
Updated bash (4.3-7ubuntu1.4) to address USN-2364-1 .
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.1 LTS (20140926 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
202d0d26-1d57-4f2e-bf2c-489025845267
min_platform
"7.0": "20130723T015243Z"
Updated bash (4.3-7ubuntu1.3) to address CVE-2014-6271 and CVE-2014-7169
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04.1 LTS (20140729 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
202d0d26-1d57-4f2e-bf2c-489025845267
min_platform
"7.0": "20130723T015243Z"
Ubuntu 14.04.1 release
login-duo is no longer pre-installed
GRUB_TIMEOUT set to 5 seconds
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04 LTS (20140416 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
7735fbba-3706-49f0-8020-9e69e11f8ea1
min_platform
"7.0": "20130723T015243Z"
Fix for CVE-2014-0196
Added kernel tuning for vm.dirty_background_bytes. This causes dirty data to be flushed at 100 Mbytes for improved performance.
apt
aptitude
bash
bzip2
curl
dpkg
gzip
login-duo
openssl
perl
python
sudo
wget
Name
ubuntu-certified-14.04
Description
Ubuntu 14.04 LTS (20140416 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
df165dad-0a5d-4eb7-8646-50507ff1c136
min_platform
"7.0": "20130723T015243Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
login-duo
openssl
perl
python
sudo
wget
Please note: The 13.10 images are now end-of-life and have been disabled. For Virtual Machines based on a 13.10 image, you will need to update your archive mirrors to use old-releases.ubuntu.com
in /etc/apt/sources.list. For example:
deb http://old-releases.ubuntu.com/ubuntu/ saucy main
deb-src http://old-releases.ubuntu.com/ubuntu/ saucy main
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20170331 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
c682ea9d-f50a-479c-9271-9b30b8e3110c
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20170307 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
e88e76ac-c744-435a-93a2-dafdc4f3b022
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20170221 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
700ffe91-000a-4d5b-b82e-fc08f591cc67
min_platform
"7.0": "20130723T015243Z"
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20161207 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
ce0d095b-6787-48b0-9855-b004be486a05
min_platform
"7.0": "20130723T015243Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20160516 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
5d9af113-aded-458c-a5b7-1cbff469a8fe
min_platform
"7.0": "20130723T015243Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20160217.2 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
a536e19f-bdc2-49cd-bb32-5f771608df42
min_platform
"7.0": "20130723T015243Z"
Updated to address CVE-2015-7547: vulnerability in glibc getaddrinfo
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20160114 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
a340e5fc-d854-48e5-b249-ec7320133649
min_platform
"7.0": "20130723T015243Z"
Updated to address CVE-2016-0777 and CVE-2016-0778 OpenSSH vulnerabilities
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20150709 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
506bd05d-5804-4088-9606-d26568ad0499
min_platform
"7.0": "20130723T015243Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20150225.1 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
415e39e6-26f1-48c4-85b1-9697066fc1a9
min_platform
"7.0": "20130723T015243Z"
Updated to reflect 12.04.5 server
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20150127 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
be16f02b-900d-40ab-b40e-c90033989adf
min_platform
"7.0": "20130723T015243Z"
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20140929 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
01a24b88-f957-4f9d-9946-fbd21b0612bf
min_platform
"7.0": "20130723T015243Z"
Updated bash (4.2-2ubuntu2.5) to address USN-2364-1
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20140926 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
d0fb3c79-24b6-4e49-89c8-4e94aaa09099
min_platform
"7.0": "20130723T015243Z"
Updated bash (4.2-2ubuntu2.3) to address CVE-2014-6271 and CVE-2014-7169
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.5 LTS (20140806 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
6c970fa8-20ad-48e4-a694-0f68fa1f08fe
min_platform
"7.0": "20130723T015243Z"
Ubuntu 12.04.5 LTS release
login-duo is no longer pre-installed
GRUB_TIMEOUT set to 5 seconds
apt
aptitude
bash
bzip2
curl
dpkg
gzip
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.4 LTS (20140519 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
0fd57f23-bc80-4bde-8ab2-64acf8a14fe9
min_platform
"7.0": "20130723T015243Z"
Fix for CVE-2014-0196
Added kernel tuning for vm.dirty_background_bytes. This causees dirty data to be flushed at 100 Mbytes for improved performance.
apt
aptitude
bash
bzip2
curl
dpkg
gzip
login-duo
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.4 LTS (20140408 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
fe5aa6c0-0f09-4b1f-9bad-83e453bb74f3
min_platform
"7.0": "20130723T015243Z"
Updated OpenSSL to address HeartBleed bug (openssl 1.0.1-4ubuntu5.12)
apt
aptitude
bash
bzip2
curl
dpkg
gzip
login-duo
openssl
perl
python
sudo
wget
Name
ubuntu-certified-12.04
Description
Ubuntu 12.04.4 LTS (20140227 64-bit). Certified Ubuntu Server Cloud Image from Canonical.
UUID
e28711b3-7f9c-47a7-be7f-ce07e9a99394
min_platform
"7.0": "20130723T015243Z"
Resolved an issue where ssh host keys are not generated when instance is provisioned with one interface.
Resolved an issue where the hostid
command always returns "00000000" rather than a unique value.
Resolved an issue where the sudo
command produces a "unable to resolve host.." warning.
Ubuntu 12.04 LTS Release Notes
apt
aptitude
bash
bzip2
curl
dpkg
gzip
login-duo
openssl
perl
python
sudo
wget