アプリケーションを更新しようとしたときにデフォルトのオペレーティングシステムエラーが発生しました。

アプリケーションを更新しようとしたときにデフォルトのオペレーティングシステムエラーが発生しました。

デフォルトのOS Hera 5.1(ターミナルまたはAppCenter経由)でアプリケーションを更新することはできません。

AppCenterにアクセスしてアプリ/システムを更新しようとすると、次のエラーが表示されます。

E: The repository 'http://ppa.launchpad.net/mpstark/elementary-tweaks-daily/ubuntu bionic Release' does not have a Release file.
W: Updating from such a repository can't be done securely, and is therefore disabled by default.
W: See apt-secure(8) manpage for repository creation and user configuration details.
W: GPG error: https://download.01.org/gfx/ubuntu/14.04/main saucy InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FFACA3F86663559C
E: The repository 'https://download.01.org/gfx/ubuntu/14.04/main saucy InRelease' is not signed.
W: Updating from such a repository can't be done securely, and is therefore disabled by default.
W: See apt-secure(8) manpage for repository creation and user configuration details.
E: https://download.01.org/gfx/ubuntu/14.04/main saucy InRelease is not (yet) available (The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FFACA3F86663559C)
E: The repository 'http://ppa.launchpad.net/pinta-maintainers/pinta-stable/ubuntu bionic Release' does not have a Release file.
W: Updating from such a repository can't be done securely, and is therefore disabled by default.
W: See apt-secure(8) manpage for repository creation and user configuration details

sudo apt-get upgrade以前に一般的に使用していたアプリを更新できましたが、今は更新するとこのエラーが発生し、実際には更新されません。

W: GPG error: https://download.01.org/gfx/ubuntu/14.04/main saucy InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FFACA3F86663559C
E: The repository 'https://download.01.org/gfx/ubuntu/14.04/main saucy InRelease' is not signed.
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://ppa.launchpad.net/mpstark/elementary-tweaks-daily/ubuntu bionic Release' does not 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://ppa.launchpad.net/pinta-maintainers/pinta-stable/ubuntu bionic Release' does not 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.

このエラーをどのように解決できますか?

答え1

Elementary OS Hera 5.1はUbuntu 18.04 Bionicに基づいており、エラーが発生したリポジトリにBionic用の配布ファイルはありません。

  1. ppa.launchpad.net/mpstark/elementary-tweaks-daily/ubuntuUbuntu Trusty(14.04)とUbuntu Utopic 14.10用の配布ファイルのみがあります。ここ

  2. download.01.org/gfx/ubuntu/14.04/main/dists/Ubuntu Trusty(14.04)のリポジトリです。

  3. ppa.launchpad.net/pinta-maintainers/pinta-stable/ubuntuさまざまな古いUbuntuバージョンの配布ファイルがありますが、Bionicにはありません。ここ

ソースからこれらのリポジトリを削除することは安全でなければなりません。その後、実行してもう一度更新してみてくださいsudo apt-get update

答え2

まず、特定の公開鍵が欠落していることを意味します。失われた鍵を取り戻してください。次の方法でこれを実行できます。

gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv FFACA3F86663559C

それから -

gpg --export --armor FFACA3F86663559C | sudo apt-key add -

問題が解決することを確認してください。そうでない場合は、新しい警告とエラーで質問を編集します。

今、いくつかの古いソースも削除する必要があります。ファイルを開き、その/etc/apt/sources.list行の前にを追加してその行をコメントアウトします#

関連情報