Ubuntu 16.04 でパッケージ リストを更新中にエラーを修正するにはどうすればよいですか?

Ubuntu 16.04 でパッケージ リストを更新中にエラーを修正するにはどうすればよいですか?

アップデートしようとするとこのエラーが発生しますウブントゥ 16.04すでにいくつかの解決策を試しましたが、今のところ何も機能していません。

エラー:

W: http://archive.canonical.com/ubuntu/dists/precise/Release.gpg: Signature by key 630239CC130E1A7FD81A27B140976EAF437D05B5 uses weak digest algorithm (SHA1)
W: http://us.archive.ubuntu.com/ubuntu/dists/precise-security/InRelease: Signature by key 630239CC130E1A7FD81A27B140976EAF437D05B5 uses weak digest algorithm (SHA1)
W: GPG error: http://extras.ubuntu.com/ubuntu precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 16126D3A3E5C1192
W: The repository 'http://extras.ubuntu.com/ubuntu precise 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.
W: http://us.archive.ubuntu.com/ubuntu/dists/precise-updates/InRelease: Signature by key 630239CC130E1A7FD81A27B140976EAF437D05B5 uses weak digest algorithm (SHA1)
W: http://us.archive.ubuntu.com/ubuntu/dists/precise-backports/InRelease: Signature by key 630239CC130E1A7FD81A27B140976EAF437D05B5 uses weak digest algorithm (SHA1)
W: http://us.archive.ubuntu.com/ubuntu/dists/precise/Release.gpg: Signature by key 630239CC130E1A7FD81A27B140976EAF437D05B5 uses weak digest algorithm (SHA1)
W: The repository 'http://ppa.launchpad.net/upubuntu-com/network/ubuntu xenial Release' does not have a Release file.
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.
E: Failed to fetch http://ppa.launchpad.net/upubuntu-com/network/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.

不要なパッケージ/リポジトリのチェックを外した後ソフトウェアとアップデートのセクションから、いくつかのエラーを取り除くことができましたが、まだいくつかのエラーが残っています。

 The repository 'http://ppa.launchpad.net/upubuntu-com/network/ubuntu xenial Release' does not have a Release file.
 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: http://archive.canonical.com/ubuntu/dists/precise/Release.gpg: Signature by key 630239CC130E1A7FD81A27B140976EAF437D05B5 uses weak digest algorithm (SHA1)
 E: Failed to fetch http://ppa.launchpad.net/upubuntu-com/network/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not Found
 E: Some index files failed to download. They have been ignored, or old ones used instead.

溶液を塗布した後以下(Raphael 提供)により、ほとんどのエラーは解決されました。ただし、次のエラーは除きます:

 W: The repository 'http://ppa.launchpad.net/upubuntu-com/network/ubuntu xenial Release' does not have a Release file.
 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.
 E: Failed to fetch http://ppa.launchpad.net/upubuntu-com/network/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not Found
 E: Some index files failed to download. They have been ignored, or old ones used instead.

答え1

を使用していますXenialが、sources.listには のリンクが含まれていますPrecise。これを修正するには、

  • 現在のバックアップsources.list:

    sudo mv /etc/apt/sources.list /etc/apt/sources.list.bak
    
  • 新しいを作成しますsource.list

    sudo nano /etc/apt/sources.list
    
  • 以下の内容をコピーして貼り付けます。

    deb http://us.archive.ubuntu.com/ubuntu/ xenial main restricted universe multiverse 
    deb-src http://us.archive.ubuntu.com/ubuntu/ xenial main restricted universe multiverse
    deb http://us.archive.ubuntu.com/ubuntu/ xenial-security main restricted universe multiverse 
    deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe multiverse 
    deb http://us.archive.ubuntu.com/ubuntu/ xenial-proposed main restricted universe multiverse 
    deb http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse 
    deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-security main restricted universe multiverse 
    deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe multiverse 
    deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-proposed main restricted universe multiverse 
    deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse 
    
  • 次に、キーボードで次のキーを押します。

    Ctrl+XそしてY最後にEnter

  • 最後に、ソースを更新してみてください。

    sudo apt-get update
    

編集:-ppaエラーは、その通りです。ppaのリリースファイルがありませんXenial。 を削除するにはppas、次の回答に従ってください。Ubuntuに質問する

関連情報