Ubuntu 11.04を使用しています。更新マネージャーはかつて新しいリリース「oneiric」を見つけましたが、sshを使用してログオンすると、この画面が表示されます。
Welcome to Ubuntu 11.04 (GNU/Linux 2.6.38-14-generic x86_64)
* Documentation: https://help.ubuntu.com/
0 packages can be updated.
0 updates are security updates.
New release 'oneiric' available.
Run 'do-release-upgrade' to upgrade to it.
Last login: Wed Apr 25 16:22:48 2012 from ***
しかし、その後はアップグレードせず、aptソースを変更しました。そして今、私は「oneiric」にアップグレードできません。 do-relase-upgrade
の表示:
$ Sudo do-release-upgrade
Checking for a new ubuntu release
No new release found
$
そして、apt-get dist-upgrade
は以下を示します。
$ Sudo apt-get dist-upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
$
すべてのパッケージを正常に更新できます。
Source.listのファイルの内容:
$ cat /etc/apt/sources.list
## See sources.list(5) for more information, especialy
# Remember that you can only use http, ftp or file URIs
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ natty main universe restricted multiverse
deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ natty main universe restricted multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ natty-security universe main multiverse restricted
deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ natty-security universe main multiverse restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ natty-updates universe main multiverse restricted
deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ natty-updates universe main multiverse restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ natty-backports universe main multiverse restricted
deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ natty-backports universe main multiverse restricted
# deb http://ubuntu.dormforce.net/ubuntu/ lucid main universe restricted multiverse
# deb-src http://ubuntu.dormforce.net/ubuntu/ lucid main universe restricted multiverse
# deb http://ubuntu.dormforce.net/ubuntu/ lucid-security universe main multiverse restricted
# deb-src http://ubuntu.dormforce.net/ubuntu/ lucid-security universe main multiverse restricted
# deb http://ubuntu.dormforce.net/ubuntu/ lucid-updates universe main multiverse restricted
# deb-src http://ubuntu.dormforce.net/ubuntu/ lucid-updates universe main multiverse restricted
# CDROMs are managed through the apt-cdrom tool.
# deb http://archive.canonical.com lucid partner
# deb http://archive.canonical.com lucid-security partner
# deb http://archive.canonical.com lucid-updates partner
# deb-src http://archive.canonical.com lucid partner
# deb-src http://archive.canonical.com lucid-security partner
# deb-src http://archive.canonical.com lucid-updates partner
#medibuntu repo
# deb http://packages.medibuntu.org/ lucid free non-free
# deb-src http://packages.medibuntu.org/ lucid free non-free
# deb http://extras.ubuntu.com/ubuntu maverick main #Third party developers repository
deb http://mirrors.sohu.com/ubuntu/ natty main restricted multiverse universe
deb-src http://mirrors.sohu.com/ubuntu/ natty main universe restricted multiverse #Added by software-properties
deb http://security.ubuntu.com/ubuntu/ natty-security universe main multiverse restricted
deb-src http://mirrors.sohu.com/ubuntu/ natty-security universe main multiverse restricted
deb http://mirrors.sohu.com/ubuntu/ natty-updates universe main multiverse restricted
deb-src http://mirrors.sohu.com/ubuntu/ natty-updates universe main multiverse restricted
/ etc/update-manager/meta-releaseのファイルの内容:
$ cat /etc/update-manager/meta-release
# default location for the meta-release file
[METARELEASE]
URI = http://changelogs.ubuntu.com/meta-release
URI_LTS = http://changelogs.ubuntu.com/meta-release-lts
URI_UNSTABLE_POSTFIX = -development
URI_PROPOSED_POSTFIX = -proposed
これの問題は何ですか?
サーバーまたはシステムでUbuntu 11.10またはUbuntu 10.04 LTSからアップグレードするには、update-manager-core
パッケージがインストールされていない場合はインストールします。 Sudo do-release-upgrade -d
コマンドを使用してアップグレードツールを起動します。画面上の指示に従います。サーバーのアップグレードがより堅牢になり、GNU画面を利用して、たとえば接続の問題を解消しました。
/etc/update-manager/release-upgrades
を確認してください
Prompt=lts
現在のリリースがnot LTSである場合、アップグレードは失敗します。
解決策:
Prompt=lts
をPrompt=normal
に変更し、変更を保存します
LTSリリースをインストールするまで、必要なアップグレードを実行します。
次にPrompt=lts
に戻ります
できた.
これは、aptがプロキシを使用するように設定されていて、プロキシが適切に機能しない場合にも発生する可能性があります。私の場合、ファイル/etc/apt/apt.conf.d/01proxy
には次の行が含まれていました
Acquire::http::Proxy "http://proxy.local:9999";
サーバーproxy.local
が応答していません。この行を削除すると、グラフィカルおよび端末の更新ツールの「新しいリリースが見つかりません」という問題が修正されました。
12.04-> 13.04に問題があり、上記のガイド付きコールマン/カガンとして-d
オプションを使用することで修正されました。
do-release-upgrade -d
私の場合、実行中の12.04は12.10へのアップグレードを提案しません。その理由は、12.10のビデオハードウェアとの互換性の問題があるためです。アップグレードを強制しようとした後、ツールは私に言った。
EOLサイクルに達した古いリリースについては、これを試すことができます:
次の手順でメタリリース情報をローカルでダウンロードします。 https://askubuntu.com/a/502485/34298