0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Ubuntu 14.04 LTSをいまさらアップグレードしようとしたらハマった

Posted at

背景・現象

いろいろあって、所属組織のネットワーク管理担当を引き継ぐことになった。
そこでネットワーク内にUbuntu 14.04 LTSのマシンが(2022年なのに)アップグレードされずに残っていることを知った。急いでアップグレードしようとしたが、以下の現象が起こってterminateした。(このエラーメッセージはコピペできなかったので、同様のエラーが出ていたらしい参考サイトから引用・編集している)

Restoring original system state

Aborting
Reading package lists... Done
Building dependency tree
Reading state information... Done
Building data structures... Done
=== Command detached from window (Mon May xx 00:20:31 2022) ===
=== Command terminated with exit status 1 (Mon May xx 00:20:31 2022) ===

ここまで実行していたこと

$ lsb_release -a #Ubuntu 14.04 LTSであることを確認
$ sudo apt update
$ sudo apt upgrade
$ sudo apt-get autoremove
$ do-release-upgrade

考えられること

アップグレード実行中の画面で、ubuntuのリリースページに到達できていないことをにおわせるエラーが大量に出ていた。これも出たメッセージそのものは掲載できないのだが、こんな感じのもの↓

Err:12 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en
Err:13 (類似エラーメッセージ)
Err:14 (類似エラーメッセージ)

アップデートのOSディストリビューションをどこから持ってくるかは、/etc/apt/sources.listに指定されている。
このファイルの中身は、たとえばこのリンク先の人の環境では:

#deb cdrom:[Ubuntu 14.04.3 LTS _Trusty Tahr_ - Beta amd64 (20150805)]/ trusty main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ trusty main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ trusty universe
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty universe
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://us.archive.ubuntu.com/ubuntu/ trusty multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty multiverse
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu trusty-security main restricted
deb-src http://security.ubuntu.com/ubuntu trusty-security main restricted
deb http://security.ubuntu.com/ubuntu trusty-security universe
deb-src http://security.ubuntu.com/ubuntu trusty-security universe
deb http://security.ubuntu.com/ubuntu trusty-security multiverse
deb-src http://security.ubuntu.com/ubuntu trusty-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu trusty partner
# deb-src http://archive.canonical.com/ubuntu trusty partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
## deb http://extras.ubuntu.com/ubuntu trusty main
## deb-src http://extras.ubuntu.com/ubuntu trusty main

となっているらしい。http://us.archive.ubuntu.com/ubuntu/を参照しろといっている。
今回エラーをはいた僕の環境では、これが日本語サーバになっていて、http://jp.archive.ubuntu.com/ubuntu/であった。
というわけでjpをusに書き換える。つまり上のsources.listと全く同じファイルに書き換えた。

これで最後までアップグレードを完了することができた。

14.04 LTSという古いOSであるということもあり、jp版ではサポートが切れているのだろうか?いちおう、End of Lifeは当初予定の22年4月から24年4月まで伸びたということらしい(ソース)のだが…

何にせよ、OSアップデートはこまめに行いましょう。

参考文献

文中のリンク先で貼ったもの以外には、以下のようなものを見ながら作業した
View Full Version : [ubuntu] can't upgrade from 10.04 to 12.04
16.04 to 18.04 do-release-upgrade fails with "Command terminated with exit status 1"

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?