我想为我的 LTS 16.04 客户端提供一个存储库。它们是 i386 和 amd64,计划升级到 LTS 18.04。当我启动时apt-mirror
出现
sudo apt-mirror
此错误:
apt-mirror: can't create /media/ubunturepro/mirror directory at /usr/bin/apt-mirror line 342 onto SMB-Share NAS
我到目前为止所做的:
mkdir /media/ubunturepo/mirror
chown -R $User /media/ubunturepo/
更改配置中的设置/etc/apt/apt-mirror
重新安装 apt-mirror
我不知道该做什么,有人在这里吗?
这是 apt-mirror 配置:
#apt-mirror configuration file
############# config ##################
#
set base_path /media/ubunturepro
#
set mirror_path $base_path/mirror
set skel_path $base_path/skel
set var_path $base_path/var
set cleanscript $var_path/clean.sh
# set defaultarch <running host architecture>
# set postmirror_script $var_path/postmirror.sh
# set run_postmirror 0
set limit_rate 250k
set nthreads 20
set _tilde 0
#
############# end config ##############
deb-i386 http://archive.ubuntu.com/ubuntu bionic main restricted universe multiverse
deb-amd64 http://archive.ubuntu.com/ubuntu xenial main restricted universe multiverse
答案1
您的文件中可能有拼写错误etc/apt/mirror.list
。错误消息指出无法创建目录/media/ubunturepro/mirror
,看来您创建了一个名为 的目录/media/ubunturepo
。配置文件中有一个r
未出现在mkdir
命令中的额外内容。确保两个路径相同,错误应该会消失。