Запуск «apt-get update» возвращает ошибку «apt-secure (8)»

7935
Eno 12345

У меня есть Ubuntu Game Pack, и я пытаюсь использовать sudo apt-get updateего, и он выдает ошибку

W: https://download.01.org/gfx/ubuntu/16.04/main/dists/xenial/InRelease: Signature by key 09D6EF97BFB38E916EF060E756A3DEF863961D39 uses weak digest algorithm (SHA1) W: GPG error: http://deb.playonlinux.com trusty InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 73F0D6E88E3D6C3A W: The repository 'http://deb.playonlinux.com trusty InRelease' is not signed. N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use. N: See apt-secure(8) manpage for repository creation and user configuration details. W: GPG error: http://download.opensuse.org/repositories/home:/strycore/xUbuntu_16.04 ./ Release: The following signatures were invalid: KEYEXPIRED 1484261108 W: The repository 'http://download.opensuse.org/repositories/home:/strycore/xUbuntu_16.04 ./ Release' is not signed. N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use. N: See apt-secure(8) manpage for repository creation and user configuration details. 

Как я могу решить это?

1

1 ответ на вопрос

2
Alex_Krug
  1. https://download.01.org/gfx/ubuntu/16.04/main/dists/xenial/InRelease :

у всех такие проблемы (у меня тоже есть) - Intel лень создавать правильный ключ - не переживай

https://01.org/linuxgraphics/forum/graphics-installer-discussions/new-ubuntu-16.04-packages-use-unknown-key-again

  1. запустить команды:

    wget -q "http://deb.playonlinux.com/public.gpg" -O - | sudo apt-key add -

    sudo wget http://deb.playonlinux.com/playonlinux_trusty.list -O /etc/apt/sources.list.d/playonlinux.list

  2. sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/strycore/xUbuntu_16.04/ /' > /etc/apt/sources.list.d/lutris.list"

    wget -nv https://download.opensuse.org/repositories/home:strycore/xUbuntu_16.04/Release.key -O Release.key

    sudo apt-key add - < Release.key

    sudo apt-get update

https://www.ostechnix.com/manage-games-using-lutris-linux/

Большое спасибо за ваш ответ, однако у меня все еще есть одна ошибка, Eno 12345 6 лет назад 0
W: https://download.01.org/gfx/ubuntu/16.04/main/dists/xenial/InRelease: подпись с помощью ключа 09D6EF97BFB38E916EF060E756A3DEF863961D39 использует алгоритм слабого дайджеста (SHA1) Eno 12345 6 лет назад 0
Это предупреждение (W), а не ошибка (E) и не решаемо с вашей стороны. 6 лет назад 0
Хорошо. Благодарю. Я довольно новичок в Linux. Eno 12345 6 лет назад 0

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