我正在使用apt-mirror
它来创建本地 Ubuntu 镜像。它确实成功地从另一个镜像下载文件(每周大约有几千兆字节),但从未删除任何内容或指示可以删除的文件。最终我可能会耗尽可用空间。
的输出apt-mirror
总是包含
可以释放 0 个文件和 0 个目录中的 0.0 字节。
为此,运行 /var/spool/apt-mirror/var/clean.sh。
clean.sh
每次执行时都会运行,apt-mirror
因为 的内容/var/spool/apt-mirror/var/postmirror.sh
只是
/var/spool/apt-mirror/var/clean.sh
运行clean.sh
会产生以下输出:
删除 0 个不必要的文件 [0 字节]...完成。
删除 0 个不必要的目录...完成。
这是我的mirror.list
文件:
############# config ##################
#
# set base_path /var/spool/apt-mirror
#
# 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 nthreads 20
set _tilde 0
#
############# end config ##############
deb-i386 http://ubuntu.c3sl.ufpr.br/ubuntu/ trusty main restricted universe multiverse
deb-i386 http://ubuntu.c3sl.ufpr.br/ubuntu/ trusty-updates main restricted universe multiverse
deb-i386 http://ubuntu.c3sl.ufpr.br/ubuntu/ trusty-backports main restricted universe multiverse
deb-i386 http://ubuntu.c3sl.ufpr.br/ubuntu/ trusty-security main restricted universe multiverse
deb-amd64 http://ubuntu.c3sl.ufpr.br/ubuntu/ trusty main restricted universe multiverse
deb-amd64 http://ubuntu.c3sl.ufpr.br/ubuntu/ trusty-updates main restricted universe multiverse
deb-amd64 http://ubuntu.c3sl.ufpr.br/ubuntu/ trusty-backports main restricted universe multiverse
deb-amd64 http://ubuntu.c3sl.ufpr.br/ubuntu/ trusty-security main restricted universe multiverse
clean http://archive.ubuntu.com/ubuntu
答案1
解决方案:
将最后一行更改为:
clean http://ubuntu.c3sl.ufpr.br/ubuntu/
解释:
问题出在最后一行,它定义了要清理的存储库。clean
获取应删除的存储库的名称:
## Parse config
open CONFIG, "<$config_file" or die("apt-mirror: can't open config file ($config_file)");
while (<CONFIG>)
{
## Here we detect the line starting with "clean" and process the URL
if ( $config_line eq "clean" )
{
$config_line[0] =~ s[^(\w+)://][];
$config_line[0] =~ s[/$][];
$config_line[0] =~ s[~][%7E]g if get_variable("_tilde");
$clean_directory{ $config_line[0] } = 1;
next;
}
die("apt-mirror: invalid line in config file ($.: $config_line ...)");
}
## we store the results in the "clean_directory" variable, now we will
## loop through all of them:
foreach ( keys %clean_directory )
{
process_directory($_) if -d $_ && !-l $_;
}
## and proceed to take the actions:
sub process_directory
{
my $dir = shift;
my $is_needed = 0;
return 1 if $skipclean{$dir};
opendir( my $dir_h, $dir ) or die "apt-mirror: can't opendir $dir: $!";
foreach ( grep { !/^\.$/ && !/^\.\.$/ } readdir($dir_h) )
{
my $item = $dir . "/" . $_;
$is_needed |= process_directory($item) if -d $item && !-l $item;
$is_needed |= process_file($item) if -f $item;
$is_needed |= process_symlink($item) if -l $item;
}
closedir $dir_h;
push @rm_dirs, $dir unless $is_needed;
return $is_needed;
}
存储文件的目录采用 的形式/var/spool/apt-mirror/mirror/mirror.domain
,因此要决定要清理的目录,它应该与这些目录中的任何一个匹配,如果不匹配则不执行任何操作。
这就是为什么更改 url 以匹配其他 URL 是解决方案。