Ошибка Debmirror

. Я следовал руководству по настройке debmirror из https://help.ubuntu.com/community/Debmirror . Я изменил файлы на внешний диск и установил загрузку Focal и Hirsute. Debmirror завершается без ошибок, но я получаю сообщение об ошибке, когда пытаюсь указать на него компьютер, но получаю сообщение об ошибке, когда пытаюсь выполнить apt-get update.

Сообщение об ошибке:
В репозитории http://192.168.1.42/ubuntu hirsute Release нет файла Release. Обновление из такого репозитория не может быть выполнено безопасно, поэтому по умолчанию оно отключено. См. Справочную страницу apt-secure (8). создание репозитория и детали конфигурации пользователя.

В чем я ошибаюсь?


Файлы загружаются отсюда

/mnt/USBHDD/mirrors/ubuntu_repository
├── dists
│   ├── focal
│   ├── focal-security
│   ├── focal-updates
│   ├── hirsute
│   ├── hirsute-security
│   └── hirsute-updates
├── pool
│   ├── main
│   ├── multiverse
│   ├── restricted
│   └── universe
└── project
    └── trace

Для Apache я сделал символическую ссылку на / var / www / ubuntu Дерево выглядит так же, как указано выше.

Вот мой сценарий sh

#!/bin/bash

# Arch=         -a      # Architecture. For Ubuntu can be i386, powerpc or amd64.
# sparc, only starts in dapper, it is only the later models of sparc.
# For multiple  architecture, use ",". like "i386,amd64"

arch=amd64,i386

# Minimum Ubuntu system requires main, restricted
# Section=      -s      # Section (One of the following - main/restricted/universe/multiverse).
# You can add extra file with $Section/debian-installer. ex: main/debian-installer,universe/debian-installer,multiverse/debian-installer,restricted/debian-installer


section=main,restricted,universe,multiverse

# Release=      -d      # Release of the system (, focal ), and the -updates and -security ( -backports can be added if desired)
# List of updated releases in: https://wiki.ubuntu.com/Releases
# List of sort codenames used: http://archive.ubuntu.com/ubuntu/dists/

release=focal,focal-security,focal-updates,hirsute,hirsute-security,hirsute-updates

# Server=       -h      # Server name, minus the protocol and the path at the end
# CHANGE "*" to equal the mirror you want to create your mirror from. au. in Australia  ca. in Canada.
# This can be found in your own /etc/apt/sources.list file, assuming you have Ubuntu installed.

server=archive.ubuntu.com

# Dir=          -r      # Path from the main server, so http://my.web.server/$dir, Server dependant

inPath=/ubuntu

# Proto=        --method=       # Protocol to use for transfer (http, ftp, hftp, rsync)
# Choose one - http is most usual the service, and the service must be available on the server you point at.
# For some "rsync" may be faster.

proto=rsync

# Outpath=              # Directory to store the mirror in
# Make this a full path to where you want to mirror the material.

outPath=/mnt/USBHDD/mirrors/ubuntu_repository

# The --nosource option only downloads debs and not deb-src's
# The --progress option shows files as they are downloaded
# --source \ in the place of --no-source \ if you want sources also.
# --nocleanup  Do not clean up the local mirror after mirroring is complete. Use this option to keep older repository

# Start script

debmirror       -a $arch \
                --no-source \
                --check-gpg \
                --checksums \
                -s $section \
                -h $server \
                -d $release \
                -r $inPath \
0
задан 18 November 2021 в 07:09

0 ответов

Другие вопросы по тегам:

Похожие вопросы: