Sat.Nov 23, 2013 - Fri.Nov 29, 2013

Remove page n
article thumbnail

A Brief Introduction to Linux Containers with LXC

Scott Lowe

For example, to use the “ubuntu” template and create a new container called “cn–01″, the command would look like this: lxc-create -t ubuntu -n cn-01. To do that, you’ll add the “-d” parameter to the command: lxc-start -d -n <container name> This launches your container in the background.

Linux 96
article thumbnail

Linux Containers via LXC and Libvirt

Scott Lowe

The first part, creating the container, is pretty straightforward: lxc-create -t ubuntu -n cn-02. At first, I thought this might be the most difficult section, but thanks to this page I was able to create a template XML configuration. Create a libvirt XML definition for the container. Define the libvirt container domain.

Linux 65