Translation(s): none


Linux Containers (LXC) provide a Free Software virtualization system for computers running GNU/Linux. This is accomplished through kernel level isolation. It allows one to run multiple virtual units simultaneously. Those units, similar to chroots, are sufficiently isolated to guarantee the required security, but utilize available resources efficiently, as they run on the same kernel.

For all related information visit : http://lxc.sourceforge.net/

LXC is available starting with Debian 5.0 - Lenny (Kernel 2.6.26), however the LXC userspace tools are not packaged for Lenny, so they would have to be built from source. Debian 6.0 - Squeeze has full support for LXC.

<!> LXC installs corrrectly on Wheezy, but there are some problems with the template which ships with Wheezy. Other templates can be downloaded, for more reading go to the LXC container mailing list.

You can also read some sub pages :

Installation

aptitude install lxc

aptitude install bridge-utils libvirt-bin debootstrap

Prepare the host

Add this line to /etc/fstab

cgroup  /sys/fs/cgroup  cgroup  defaults  0   0

Try to mount it (a reboot solves an eventual "resource busy problem" in any case)

mount /sys/fs/cgroup

Check kernel configuration :

# lxc-checkconfig 
Kernel config /proc/config.gz not found, looking in other places...
Found kernel config file /boot/config-2.6.32-5-amd64
--- Namespaces ---
Namespaces: enabled
Utsname namespace: enabled
Ipc namespace: enabled
Pid namespace: enabled
User namespace: enabled
Network namespace: enabled
Multiple /dev/pts instances: enabled

--- Control groups ---
Cgroup: enabled
Cgroup namespace: enabled
Cgroup device: enabled
Cgroup sched: enabled
Cgroup cpu account: enabled
Cgroup memory controller: missing
Cgroup cpuset: enabled

--- Misc ---
Veth pair device: enabled
Macvlan: enabled
Vlan: enabled
File capabilities: enabled

Note : Before booting a new kernel, you can check its configuration
usage : CONFIG=/path/to/config /usr/bin/lxc-checkconfig

Here, I've Cgroup memory controller: missing. If you want memory control via cgroups then the Kernel recompilation is needed.

RootFS creation

Debian Squeeze

cp -a /usr/lib/lxc/templates/lxc-debian /usr/lib/lxc/templates/lxc-squeeze

lxc-create -n myfirstcontainer -t squeeze -f /usr/share/doc/lxc/examples/lxc-veth.conf

Debian Wheezy

lxc-create -n myfirstcontainer -t debian

This will prompt you on what distribution to install.

Setup networked containers

Start and stop containers

lxc-start -n myfirstcontainer

lxc-start -n myfirstcontainer -d
lxc-console -n myfirstcontainer

lxc-halt -n myfirstcontainer

lxc-stop -n myfirstcontainer

Support

References

See also :

Known bugs and "got to know issues"

See also