LoginSignup
9
10

More than 5 years have passed since last update.

Proxmox VE (APTリポジトリの設定)

Last updated at Posted at 2014-03-21

APTリポジトリの設定

Proxmoxが提供しているフリーのアップデートリポジトリを追加します。

/etc/apt/sources.list
deb http://ftp.debian.org/debian wheezy main contrib

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

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

サブスクリプションキーを購入しない場合、エンタープライズリポジトリを利用できないので、コメントアウトします。

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

ログイン後のポップアップダイアログを無効化する方法

You do not have a valid subscription for this server. Please visit www.proxmox.com to get a list of available options.

サブスクリプションキーを購入していない場合、上記のメッセージがログイン後に表示されます。 pvemanagerlib.js を編集し、下記の519行目の条件を false に変更します。

/usr/share/pve-manager/ext4/pvemanagerlib.js
if (data.status !== 'Active') {

to

/usr/share/pve-manager/ext4/pvemanagerlib.js
if (false) {

参考

https://pve.proxmox.com/wiki/Package_repositories
http://www.jamescoyle.net/how-to/614-remove-the-proxmox-no-subscription-message

9
10
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
9
10