web-dev-qa-db-ja.com

Ubuntuの17.04から18.04へのアップグレード

Ubuntu 17.04をインストールしましたが、18.04にアップグレードしたいと思います。私がやろうとしたとき:

 Sudo do-release-upgrade

An upgrade from 'zesty' to 'bionic' is not supported with this tool。これを進めるには入力が必要です。

Sudo do-release-upgrade
Checking for a new Ubuntu release
Your Ubuntu release is not supported anymore.
For upgrade information, please visit:
http://www.ubuntu.com/releaseendoflife

Get:1 Upgrade tool signature [819 B]                                           
Get:2 Upgrade tool [1,257 kB]                                                  
Fetched 1,258 kB in 0s (0 B/s)                                                 
authenticate 'bionic.tar.gz' against 'bionic.tar.gz.gpg' 
extracting 'bionic.tar.gz'

Reading cache

Checking package manager

Can not upgrade 

An upgrade from 'zesty' to 'bionic' is not supported with this tool. 
19
spa

これはどこにも適切に説明されていませんでした、ここにあなたがする必要があること(または私がそれをした方法)があります:

17.04から17.10にアップグレード: buntu 17.04から17.10にアップグレードできません

Sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak #to be safe
Sudo sed -i -re 's/old-releases.ubuntu.com/archive.ubuntu.com/g' /etc/apt/sources.list
Sudo sed -i -re 's/zesty/artful/g' /etc/apt/sources.list
Sudo apt update
Sudo apt dist-upgrade
Sudo apt autoremove

(Linksはapt-getではなくaptitudeを使用するように言っています)

17.10から18.04へのアップグレード: EOLUpgrades

/etc/apt/sources.listのすべてを次のように置き換えます。

## EOL upgrade sources.list
# Required
deb http://old-releases.ubuntu.com/ubuntu/ artful main restricted universe multiverse
deb http://old-releases.ubuntu.com/ubuntu/ artful-updates main restricted universe multiverse
deb http://old-releases.ubuntu.com/ubuntu/ artful-security main restricted universe multiverse

# Optional
#deb http://old-releases.ubuntu.com/ubuntu/ artful-backports main restricted universe multiverse

次に、アップグレードを実行します。

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

要求されたときにそれが言うことを行い、それが完了するのを待ってください。そうすれば完了です。

44
uranibaba