如何为 Linux 容器制作本地模板并指向该模板

如何为 Linux 容器制作本地模板并指向该模板

假设我想制作我的 Linux 容器。第一个命令始终是:-

sudo lxc-create -t debian -n p1

模板名称通常是“ubuntu”,但由于我是 Debian 粉丝,因此将其替换为 debian。两者的最终结果是相同的,它开始通过 /usr/share/lxc/templates 中编写的 lxc-debian 模板从 debian.org 下载组件。

$ sudo lxc-create -t debian -n debian-n
[sudo] password for shirish: 
debootstrap is /usr/sbin/debootstrap
Checking cache download in /var/cache/lxc/debian/rootfs-wheezy-amd64 ... 
Downloading debian minimal ...
I: Retrieving Release 

我确实有一个本地 debian-wheezy.iso 映像文件。有没有办法告诉它使用本地 .iso 映像而不是访问网络。

答案1

提供给的参数-t是 中的一个文件/usr/share/lxc/templates。查看lxc-debian模板,执行下载的例程被调用download_debian(),并且工作是通过以下方式执行的debootstrap

    debootstrap --verbose --variant=minbase --arch=$arch \
    --include=$packages \
    "$release" "$cache/partial-$release-$arch" $MIRROR

查看联机帮助页,debootstrap可以使用镜像文件的本地目录而不是网络地址

…MIRROR can be an http:// or https:// URL, a file:/// URL,
or an ssh:/// URL.

因此,要使用本地数据,请将 ISO 挂载到文件系统的某个位置;定义 MIRROR 环境变量;调用lxc-create.

签名的发布文件似乎不在我尝试的 ISO 中,因此我还必须传递--no-check-gpgdebootstrap,这意味着编辑模板文件以/usr/share/lxc/templates添加参数:

--- lxc-debian~ 2015-03-04 10:04:12.628619962 +0000
+++ lxc-debian  2015-03-04 10:04:17.420619851 +0000
@@ -232,7 +232,6 @@
     # download a mini debian into a cache
     echo "Downloading debian minimal ..."
     debootstrap --verbose --variant=minbase --arch=$arch \
+   --no-check-gpg \
         --include=$packages \
         "$release" "$cache/partial-$release-$arch" $MIRROR
     if [ $? -ne 0 ]; then

所以,调整后:

# mount -o loop debian-7.8.0-amd64-CD-1.iso /mnt
# export MIRROR=file:///mnt
# lxc-create -t debian -n p1 -- -r wheezy

工作了。

相关内容