Debian 12 bookworm
Sponsored Link

初期設定 : APT リポジトリを設定する2023/06/14

 
[apt] コマンドでパッケージのインストールやアップデート等々を実行する際に参照される APT リポジトリを設定します。
[1] DVD メディアから Debian をインストールした場合は、DVD メディアがリポジトリの参照先に設定されますが、DVD を取り出して設定が不要な場合は、設定を変更しておきます。
root@localhost:~#
vi /etc/apt/sources.list
# DVD ソースはコメントにして ネットワークソースを追記

#
deb cdrom:[Debian GNU/Linux 12.0.0 _Bookworm_ - Official amd64 DVD Binary-1 20230610-10:23]/ bookworm main non-free-firmware
deb http://deb.debian.org/debian/ bookworm main non-free-firmware
# コメントになっている場合は
# コメント解除して [security] リポジトリを有効化

deb http://security.debian.org/debian-security bookworm-security main non-free-firmware
# コメントになっている場合は
# コメント解除して [updates] リポジトリを有効化

deb http://deb.debian.org/debian/ bookworm-updates main non-free-firmware
[2] Backports リポジトリを追加しておきます。
⇒ https://backports.debian.org/Instructions/
root@localhost:~#
vi /etc/apt/sources.list
# 最終行に追記

deb http://deb.debian.org/debian/ bookworm-backports main non-free-firmware
[3] リポジトリの追加や変更を行った際は、リストをアップデートしておきます。
root@localhost:~#
apt update

Hit:1 http://deb.debian.org/debian bookworm InRelease
Hit:2 http://deb.debian.org/debian bookworm-updates InRelease
Hit:3 http://security.debian.org/debian-security bookworm-security InRelease
Get:4 http://deb.debian.org/debian bookworm-backports InRelease [49.7 kB]
Fetched 49.7 kB in 0s (101 kB/s)
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
関連コンテンツ