web-dev-qa-db-ja.com

Ubuntu 16.10 Yakketyは更新されません。修正できますか、または16.04または17.10を取得する必要がありますか?

だから、昨夜古いウェブカメラをセットアップしたかったまで、本当に素敵なシステムを実行していた。 Sudo apt-get updateを実行して、これを取得しました。

Fetched 1,475 B in 3min 25s (7 B/s)
Reading package lists... Done
W: The repository 'http://security.ubuntu.com/ubuntu yakkety-security 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: The repository 'http://ca.archive.ubuntu.com/ubuntu yakkety 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: GPG error: http://download.opensuse.org/repositories/home:/jgeboski/xUbuntu_16.10  Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 12C6ADA61C85BB5E
W: The repository 'http://download.opensuse.org/repositories/home:/jgeboski/xUbuntu_16.10  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: The repository 'http://ca.archive.ubuntu.com/ubuntu yakkety-updates 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: The repository 'http://ca.archive.ubuntu.com/ubuntu yakkety-backports 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: The repository 'http://ppa.launchpad.net/eugenesan/ppa/ubuntu yakkety Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.

そして、Sudo apt-get install for any yields

E: Package 'program' has no installation candidate

Ubuntu 16.10を使用しているため、この問題が発生していると思われます。そうでない場合、私はそれを修正する方法を知りたいと思います。なぜなら、私は自分のシステムがそのように本当に好きだからです。そうでない場合は、16.04または17.10のインストールを検討しますが、どちらが優れているか、すべてのプログラムやものを失うことなくインストールする方法があるかどうかも知りたいです。それらのいくつかはインストールするのがかなりイライラしていたので、本当に必要です。

ありがとう!

3
gannex

あなたの問題は、@ Organic Marbleが言ったように、yakkety(16.10)は「サポート終了」リリースだということです。
問題を修正するには、別の「サポート終了」リリース(zesty(17.04))にアップグレードする必要があります。そして、後者から巧みな(17.10)にアップグレードする必要があります。

私の答えは reference に触発されています。その中で、@ kapは、彼の質問が重複としてマークされているという事実のために、簡単な方法で私たちに行う方法を提供します。そこで、@ Sidepipeにも感謝します。彼の答えとコメントを読んでください。

バーチャルマシンで(virtualboxを使用して)2回テストし、動作しました。
それから、メインマシンに適用しましたが、これも成功しました。この方法では、「壊れたPPA」は修正されません。巧妙なリリースに適したPPAを見つける必要があります。

私はすべてを説明しません。 StackExchange またはWebの他の場所で、自分で答えを見つけられると確信しています。

すべてをルートとして、またはSudo経由で行う必要があります。
リリースを確認するには:$ lsb_release -aまたは$ cat /etc/os-release

そこに行きます.

I)「サポート終了」yakkety(16.10)から「サポート終了」zesty(17.04)へのアップグレード

  1. /etc/apt/sources.list.dを修正します
    • # update-manager-すべてのPPAのチェックを外します
  2. ダウンロード zesty.tar.gz
  3. パッケージの信頼性を確認する-同じURLのgpgファイル
  4. アーカイブを抽出し、次のファイルを変更します
    • # vi ./DistUgradeController.py"
      • すべての「archive.ubuntu.com」を変更==>「old-releases.ubuntu.com」
      • すべての「security.ubuntu.com」を変更します==>「old-releases.ubuntu.com」
    • # vi ./mirrors.cfg
      • すべての「old-releases.ubuntu.com/」に「ubuntu /」を追加します
  5. /etc/apt/sources.list
    • すべての "fr.archive.ubuntu.com" ==> "old-releases.ubuntu.com"を変更します
    • すべての「security.ubuntu.com」を変更します==>「old-releases.ubuntu.com」
  6. # apt-get update
  7. # apt-get upgrade
  8. # apt-get dist-upgrade
  9. # ./zesty --mode=server --frontend=DistUpgradeViewText
  10. # reboot
  11. # apt-get update-トラブル、次のステップを参照-
  12. /etc/apt/sources.listの重複を削除します
  13. # apt-get update
  14. # apt-get upgrade
  15. # apt-get dist-upgrade
  16. # apt-get autoremove
  17. # apt-get autoclean
  18. # reboot

II)「終末期」zesty(17.04)からartful(17.10)へのアップグレード

  1. # do-release-upgrade
  2. # reboot
  3. # apt-get update
  4. # apt-get upgrade
  5. # apt-get dist-upgrade
  6. # apt-get autoremove
  7. # apt-get autoclean
  8. # reboot
5
egon7

あなたの疑いは正しいです! 16.10は昨年夏にサポートが終了し、サポートされなくなりました。

17.10(17.04もサポート終了)にアップグレードできる場合がありますが、それについてはわかりません。アップグレードパスは永久に機能しません。

18.04は数か月後にリリースされ、長期サポートリリースになります。

参照: https://www.ubuntu.com/info/release-end-of-life

2
Organic Marble