Проблема обновления Debian Stretch - PullRequest
0 голосов
/ 18 октября 2018

Я пытаюсь постоянно обновлять свою версию Debian на своем ноутбуке.Когда я запускаю эту команду

apt-get update && apt-get upgrade

, она показывает следующий вывод

Reading package lists... Done                                                                                                                  
E: The repository 'http://ftp.us.debian.org/debian stretch Release' does no longer have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'http://ftp.us.debian.org/debian stretch-updates Release' does no longer have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

Вот мой sources.list

deb http://ftp.us.debian.org/debian/ stretch main
deb-src http://ftp.us.debian.org/debian/ stretch main

deb http://ftp.us.debian.org/debian/ stretch-updates main contrib
deb-src http://ftp.us.debian.org/debian/ stretch-updates main contrib

deb http://security.debian.org/debian-security stretch/updates main contrib non-free

1 Ответ

0 голосов
/ 07 марта 2019

Как указано на man-странице apt-secure:

Starting with version 0.6, APT contains code that does signature checking of the Release file for all repositories.

Это означает, что если apt не сможет проверить подписи, на которых он не будет работать.Он будет обновляться только если вы укажете --allow-unauthenticated в apt следующим образом:

sudo apt-get --allow-unauthenticated update

...