Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7612231
  • 博文数量: 1769
  • 博客积分: 18684
  • 博客等级: 上将
  • 技术积分: 16352
  • 用 户 组: 普通用户
  • 注册时间: 2010-06-02 10:28
个人简介

啥也没写

文章分类

全部博文(1769)

文章存档

2024年(15)

2023年(44)

2022年(39)

2021年(46)

2020年(43)

2019年(27)

2018年(44)

2017年(50)

2016年(47)

2015年(15)

2014年(21)

2013年(43)

2012年(143)

2011年(228)

2010年(263)

2009年(384)

2008年(246)

2007年(30)

2006年(38)

2005年(2)

2004年(1)

分类: LINUX

2012-02-08 10:08:17

安装lxc
sudo -i
apt-get upate
apt-get install lxc
mkdir /cgroup
vi /etc/fstab
cgroup        /cgroup        cgroup        defaults    0    0
mount /cgroup
 
配置网络
apt-get install bridge-utils
vi /etc/network/interfaces
...
auto br100
iface br100 inet static
 bridge_ports eth0
 bridge_stp off
 bridge_maxwait 0
 bridge_fd 0
 address 10.0.0.1
 netmask 255.255.255.0
 broadcast 10.0.0.255
 
/etc/init.d/networking restart
 
检测lxc配置信息
# lxc-checkconfig
Kernel config /proc/config.gz not found, looking in other places...
Found kernel config file /boot/config-3.0.0-12-server
--- 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 clone_children flag: enabled
Cgroup device: enabled
Cgroup sched: enabled
Cgroup cpu account: enabled
Cgroup memory controller: enabled
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
 
创建虚拟机
mkdir -p /var/lib/lxc/zone01
/usr/lib/lxc/templates/lxc-debian -p /var/lib/lxc/zone01
 
vim /var/lib/lxc/zone01/config
...
# network
lxc.utsname = zone01
lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = br100
# lxc.network.name = eth0
#lxc.network.hwaddr = 00:FF:12:34:56:78
lxc.network.ipv4 = 10.0.0.2/24
 
运行:
lxc-start -n zone01 -d
查看:
lxc-info -n zone01
进入容器
lxc-console -n zone01
停止
lxc-stop -n zone01
删除
lxc-destroy -n zone01
修改IP
/var/lib/lxc/zone01/rootfs/etc/network/interfaces
auto eth0
iface eth0 inet static
        address 10.0.0.2
        netmask 255.255.255.0
        network 10.0.0.0
        broadcast 10.0.0.255
        gateway 10.0.0.1
 
 
 
阅读(1391) | 评论(2) | 转发(0) |
给主人留下些什么吧!~~

badb0y2012-02-13 14:18:26

暮雪清浊: 呵呵,兄弟你也开始研究lxc了?刚出来时我玩过,现在稳定性如何?.....
还可以,感觉不错,比linux-vserver好点,那个老有问题

暮雪清浊2012-02-11 10:58:36

呵呵,兄弟你也开始研究lxc了?刚出来时我玩过,现在稳定性如何?