0

我是LXC的新手。我尝试使用命令创建 ubuntu 容器

lxc-create -n onos -t ubuntu

安装运行了一段时间并遇到以下消息

Installing Update
Connecting to archive.ubuntu.com

我支持公司代理。apt-get update 在主机中运行良好。但是当我尝试创建一个 ubuntu 容器时,我遇到了上述问题。

有没有人遇到过类似的问题。请帮忙。

4

1 回答 1

0

你应该在 lxc-create 之前使用代理:

export http_proxy="http://$pre$server:$port/"
export https_proxy=$http_proxy
export ftp_proxy=$http_proxy
export rsync_proxy=$http_proxy
export HTTP_PROXY=$http_proxy
export HTTPS_PROXY=$http_proxy
export FTP_PROXY=$http_proxy
export RSYNC_PROXY=$http_proxy
lxc-create -n onos -t ubuntu

您还可以为 apt 设置代理:

#cat /etc/apt/apt.conf.d/30proxy 
Acquire::http::proxy "http://proxy:4128";
Acquire::https::proxy "https://proxy:4128";

PS:

错误 lxc-create 没有利用 apt 代理

这里: lxc-create 在代理后面不起作用,解决方案是:

apt 没有问题,但是我在使用 debootstrap 时遇到了问题。必须在 /etc/wgetrc 中设置代理设置。现在一切都好。

于 2016-04-27T19:15:25.670 回答