Using LXC

Intro

Containers are insulated areas inside a system, which have their own namespace for filesystem, network, PID, IPC, CPU and memory allocation and which can be created using the Control Group and Namespace features included in the Linux kernel.

Docker vs. LXC

The idea behind Docker is to reduce a …

more ...

Using libvirt and KVM

Installation

Install required packages
apt-get install qemu-kvm libvirt-bin bridge-utils virtinst
Setup /etc/network/interfaces
iface eth0 inet manual

auto br0
iface br0 inet static
    bridge_interfaces eth0
    bridge_stp off
    bridge_maxwait 5
    .. address, netmask, etc.

Try to put br0 interface up or reboot

brctl addbr br0

Deploy instance

Now you have more …

more ...