LXC容器的安装和使用:

 lxc容器的依赖:

 依赖Centos-Base.repo和epel.repo

rm -fr /etc/yum.repos.d/local.repo
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

安装lxc容器:

yum install lxc-* -y
yum install libcgroup* -y
yum install bridge-utils.x86_64 -y

为lxc容器准备桥接网卡:

echo 'TYPE=Ethernet
BOOTPROTO=none
NAME=eth0
DEVICE=eth0
ONBOOT=yes
BRIDGE=virbr0' >/etc/sysconfig/network-scripts/ifcfg-eth0

echo 'TYPE=Bridge
BOOTPROTO=static
NAME=virbr0
DEVICE=virbr0
ONBOOT=yes
IPADDR=10.0.0.11
NETMASK=255.255.255.0
GATEWAY=10.0.0.254
DNS1=223.5.5.5' >/etc/sysconfig/network-scripts/ifcfg-virbr0

创建lxc容器:

lxc-create -t download -n centos6 -- --server mirrors.tuna.tsinghua.edu.cn/lxc-images

设置容器root用户名和密码:

chroot /var/lib/lxc/centos6/rootfs passwd

启动容器:

lxc-start -n centos6

lxc容器的进程:

容器中运行的命令,在宿主机中都可以看到,推荐使用pstree命令来查看,需要安装

yum install psmisc.x86_64 -y

lxc容器的系统目录文件:

lxc容器的系统目录文件在宿主机的某一个目录下

/var/lib/容器名/rootfs
02-13 18:09