web-dev-qa-db-ja.com

Ubuntu Server 16.04から18. *にアップグレードしようとしています

16.04から18. *への移行方法を説明する複数の記事を読みました。どれも私のために働いているようには見えません。

に着いたら

do-release-upgrade

私はメッセージを受け取ります

Checking for a new Ubuntu release
Please install all available updates for your release before upgrading.

現在、私は/ etc/update-manager/release-upgradesに設定していますnormalこれをLTSに設定すると同じ結果が得られます。

さらに、これは両方を実行した後です

Sudo apt update && Sudo apt update

もちろん、私が走ったら

do-release-upgrade -d

私はメッセージを受け取ります

Upgrades to the development release are only
available from the latest supported release.

これは私にとって理にかなっています。ここに何が欠けていますか? Ubuntu Server 16.04から18. *に移行できますか?

UPDATE

走ると気づいた

Sudo apt update

この出力を取得します

Sudo apt-get update
Hit:1 http://us.archive.ubuntu.com/ubuntu xenial InRelease
Hit:2 http://download.mono-project.com/repo/debian jessie InRelease
Hit:3 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease
Hit:4 http://ppa.launchpad.net/ermshiperete/monodevelop/ubuntu xenial InRelease
Hit:5 http://security.ubuntu.com/ubuntu xenial-security InRelease
Hit:6 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease
Hit:8 http://ppa.launchpad.net/iconnor/zoneminder/ubuntu xenial InRelease
Hit:9 http://ppa.launchpad.net/jcfp/ppa/ubuntu xenial InRelease
Hit:10 http://ppa.launchpad.net/modriscoll/nzbget/ubuntu xenial InRelease
Get:7 http://download.sonarr.tv/repos/apt/debian master InRelease [13.3 kB]
Err:11 http://Shell.ninthgate.se/packages/debian jessie InRelease
  Could not connect to Shell.ninthgate.se:80 (195.22.88.165). - connect (111: Connection refused)
Fetched 13.3 kB in 5s (2,532 B/s)
Reading package lists... Done
W: Failed to fetch     http://Shell.ninthgate.se/packages/debian/dists/jessie/InRelease  Could not     connect to Shell.ninthgate.se:80 (195.22.88.165). - connect (111:     Connection refused)
W: Some index files failed to download. They have been ignored, or old ones used instead.

ランニング

Sudo apt list --upgradable

利回り

Listing... Done
libgdiplus/stable-jessie 5.6-0xamarin5+debian8b1 AMD64 [upgradable from: 4.2-1ubuntu1]
N: There are 2 additional versions. Please use the '-a' switch to see them.

これが、18。*へのアップグレードを妨げているものと思われます。私はこの時点で少し立ち往生しています。

UPDATE

私が受け入れた答えでこれを解決することができました。

また、死んだレポジトリをクリーンアップする必要がありました。 security.ubuntu.comにも接続できないという問題に遭遇しました。これを解決するために、次のことを行いました。

Sudo vi /etc/gai.conf

次の行のコメントを解除します

#
# For sites which prefer IPv4 connections change the last line to
#
precedence ::ffff:0:0/96 100

更新を完了できました。 Ubuntuのディストリビューションをアップグレードする

Welcome to Ubuntu 18.04.1 LTS (GNU/Linux 4.15.0-43-generic x86_64)
4
Martin

同じ問題がありました。やった:

Sudo apt-get update 
Sudo apt-get upgrade -y
Sudo apt-get dist-upgrade
Sudo do-release-upgrade

お役に立てれば!

9
user2719113