Debianを9(stretch)から10(buster)にアップグレードする

0,目次

  1. はじめに
  2. アップグレード手順
    1. パッケージのソースリストファイルを更新
    2. コマンド実行
    3. 再起動
    4. Debianのバージョン確認

1,はじめに

Debian 9.12(stretch)をDebian 10にアップグレードする。

その作業記録として、本稿を記載する。

本作業はDebian公式サイトの下記の記事を参照し実施した。

第4章 Debian 9 (stretch) からのアップグレード

2,アップグレード手順

(1)パッケージのソースリストファイルを更新

DebianのアップグレードはAPT経由で行う。

そのため、APTのパッケージのダウンロード元のリストが記載されているファイルを更新する。

更新するファイルは次のファイルである。

/etc/apt/sources.list

更新内容としては「stretch」を「buster」に置き換えるだけである。

(A)更新前

deb ftp://ftp.riken.jp/Linux/debian/debian/ stretch main contrib non-free
deb-src ftp://ftp.riken.jp/Linux/debian/debian/ stretch main contrib non-free

deb http://security.debian.org/debian-security stretch/updates main contrib non-free
deb-src http://security.debian.org/debian-security stretch/updates main contrib non-free

deb ftp://ftp.riken.jp/Linux/debian/debian/ stretch-updates main contrib non-free
deb-src ftp://ftp.riken.jp/Linux/debian/debian/ stretch-updates main contrib non-free

(B)更新後

deb ftp://ftp.riken.jp/Linux/debian/debian/ buster main contrib non-free
deb-src ftp://ftp.riken.jp/Linux/debian/debian/ buster main contrib non-free

deb http://security.debian.org/debian-security buster/updates main contrib non-free
deb-src http://security.debian.org/debian-security buster/updates main contrib non-free

deb ftp://ftp.riken.jp/Linux/debian/debian/ buster-updates main contrib non-free
deb-src ftp://ftp.riken.jp/Linux/debian/debian/ buster-updates main contrib non-free

(2)コマンド実行

Debian自体のアップグレードの準備は完了した。

下記の通りコマンドを逐次発行し更新を行う。

  1. apt update
  2. apt autoremove
  3. apt clean
  4. apt-get upgrade
  5. apt full-upgrade

(3)再起動

下記のコマンドを発行する。

reboot

(4)Debianのバージョン確認

Debianのバージョンを確認するために、下記のコマンドを実行する。

cat /etc/debian_version
root@VAIO-S-SB-Debian:/etc/apt# cat /etc/debian_version 
 10.3

以上で、Debian自体のバージョンアップ作業は完了である。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

CAPTCHA