June 2016
Beginner
456 pages
9h 31m
English
In this recipe, we will create our first container with LXD.
You will need access to the root account or an account with sudo privileges.
LXD works on the concept of remote servers and images served by those remote servers. Starting a new container with LXD is as simple as downloading a container image and starting a container out of it, all with a single command. Follow these steps:
lxc launch command, as follows:
$ lxc launch ubuntu:14.04/amd64 c1
LXC will download the required image (14.04/amd64) and start the container.
You should see the progress like this:
lxc launch downloads the required image, creates ...Read now
Unlock full access