LoginSignup
1
0

Proxmox8で最初にやる apt update エラー対応(no subcription時)

Last updated at Posted at 2024-03-15

Proxmox8のインストール直後いきなりapt updateエラーが出ました。有料のサブスク登録していない場合に出るエラーのようです。
2024年の2月から利用するようになり、まだまだ慣れていないので備忘録として残します。

Qiitaの記事、「Proxmox 8の注意事項」を参考にしました。

下記3つのファイルを修正すればapt updateのエラーが解消されます。

  1. /etc/apt/sources.list
  2. /etc/apt/sources.list.d/pve-enterprise.list
  3. /etc/apt/sources.list.d/ceph.list

1. nano /etc/apt/sources.list

/etc/apt/sources.list
deb http://ftp.debian.org/debian bookworm main contrib
deb http://ftp.debian.org/debian bookworm-updates main contrib

# Proxmox VE pve-no-subscription repository provided by proxmox.com,
# NOT recommended for production use
deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription

# security updates
deb http://security.debian.org/debian-security bookworm-security main contrib

2. nano /etc/apt/sources.list.d/pve-enterprise.list

/etc/apt/sources.list.d/pve-enterprise.list
# deb https://enterprise.proxmox.com/debian/pve bookworm pve-enterprise

3. nano /etc/apt/sources.list.d/ceph.list

/etc/apt/sources.list.d/ceph.list
# deb https://enterprise.proxmox.com/debian/ceph-quincy bookworm enterprise
deb http://download.proxmox.com/debian/ceph-quincy bookworm no-subscription

公式からの説明はこちら

1
0
1

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
1
0