我从以下链接下载了构建脚本和一些需要的文件来构建debian cd映像
在自述文件中,它提到我应该编辑镜像的PATH。 在CONF.sh
# Paths to the mirrors
export MIRROR=${MIRROR:-$CDIMAGE_ROOT/ftp}
# Comment the following line if you don't have/want non-US
#export NONUS=/ftp/debian-non-US
# Path of the temporary directory
export TDIR=$CDIMAGE_ROOT/scratch/$PROJECT/$DIST/$IMAGE_TYPE/tmp
# Path where the images will be written
export OUT=$CDIMAGE_ROOT/scratch/$PROJECT/$DIST/$IMAGE_TYPE/debian-cd
# Where we keep the temporary apt stuff.
# This cannot reside on an NFS mount.
export APTTMP=$CDIMAGE_ROOT/scratch/$PROJECT/$DIST/$IMAGE_TYPE/apt
# Where extracted debootstrap scripts live
export DEBOOTSTRAP=$CDIMAGE_ROOT/scratch/$PROJECT/$DIST/$IMAGE_TYPE/debootstrap
# Where live filesystem images live
export LIVEIMAGES=$CDIMAGE_ROOT/scratch/$PROJECT/$DIST/$IMAGE_TYPE/live
我不确定“镜像”是指什么以及如何正确设置路径?
任何建议都将受到赞赏。
答案 0 :(得分:1)
MIRROR
指的是用于实时构建的APT软件存储库(通常是Debian的镜像,以节省带宽和下载时间)以检索软件组件以进行实时系统来自。
以下形式的通常是(以ubuntu为例,但网址略有不同):
http://tw.archive.ubuntu.com/ubuntu
所以在我的情况下只需修改CONF.sh的
export MIRROR=${MIRROR:-$CDIMAGE_ROOT/ftp}
到
export MIRROR=http://tw.archive.ubuntu.com/ubuntu
您可以通过查看Debian网站上的软件镜像部分找到所需的网址。