LXC (LinuX Containers)
Linux Containers (LXC) are lightweight virtualization technology and 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 (containers) simultaneously on the same host.
Installing LXC ( ubuntu 13.04 ) with WebPanel
$ sudo apt-get install lxc
Creating container
$ sudo lxc-create -t ubuntu -n ubuntu
$ sudo lxc-start -n ubuntu
Login in container
$ sudo lxc-console -n ubuntu -t 1
Install LXC web panel
$ sudo apt-get install lxc debootstrap bridge-utils -y
$ sudo su
$ wget http://lxc-webpanel.github.com/tools/install.sh -O - | bash
Login in LXC web panel
open broswer
http://localhost:5000 or http://your_ip_address:5000
username : admin
password : admin
Post a Comment