我正在使用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 是解決方案。