我是LXC的新手。我试图用命令创建ubuntu容器
lxc-create -n onos -t ubuntu
安装运行了一段时间,遇到了下面的消息
Installing Update
Connecting to archive.ubuntu.com
我是公司代理的幕后黑手。Apt-get-update在主机中运行良好。但是当我试图创建一个ubuntu容器时,我遇到了上述问题。
有没有人遇到过类似的问题。请帮忙。
最佳答案
在lxc创建之前应使用代理:
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";
附言:
bug lxc-create doesn't take advantage of the apt proxy
Here: lxc-create not working behind proxy解决方案是:
apt没有问题,但是,我在使用debootstrap时遇到了问题。有
在/etc/wgetrc中设置代理设置。现在一切都好了。
关于linux - lxc-create卡在连接archive.ubuntu.com,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35992616/