Zimri

Zimri - xlog

生活就像海洋 🌊
github

Proxmox VEのソースの設定とサブスクリプションの通知の無効化

企業版のアップデートソースを無効にする#

mv /etc/apt/sources.list.d/pve-enterprise.list /etc/apt/sources.list.d/pve-enterprise.list.bak

Debian の国内アクセラレーションと PVE 非サブスクリプション版のアップデートソースを更新する#

cp /etc/apt/sources.list /etc/apt/sources.list.bak
nano /etc/apt/sources.list

以下に変更します 6.x

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

# debian aliyun source
deb https://mirrors.aliyun.com/debian buster main contrib non-free
deb https://mirrors.aliyun.com/debian buster-updates main contrib non-free
deb https://mirrors.aliyun.com/debian-security buster/updates main contrib non-free

# proxmox source
deb http://mirrors.ustc.edu.cn/proxmox/debian/pve buster pve-no-subscription
# deb http://download.proxmox.com/debian/pve buster pve-no-subscription

7.x のソースは以下の通りです

deb http://mirrors.aliyun.com/debian/ bullseye main non-free contrib
deb http://mirrors.aliyun.com/debian/ bullseye-updates main non-free contrib
deb http://mirrors.aliyun.com/debian/ bullseye-backports main non-free contrib

deb-src http://mirrors.aliyun.com/debian/ bullseye main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ bullseye-updates main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ bullseye-backports main non-free contrib

deb http://mirrors.aliyun.com/debian-security/ bullseye-security main non-free contrib
deb-src http://mirrors.aliyun.com/debian-security/ bullseye-security main non-free contrib


#ProxmoveVE7
deb http://mirrors.ustc.edu.cn/proxmox/debian/pve bullseye pve-no-subscription

鍵をダウンロードする - PVE 7.x 用

wget http://mirrors.ustc.edu.cn/proxmox/debian/proxmox-release-bull

最新の 8.x のソースは以下の通りです

deb http://mirrors.ustc.edu.cn/debian/ bookworm main non-free non-free-firmware  contrib
deb http://mirrors.ustc.edu.cn/debian/ bookworm-updates main non-free non-free-firmware  contrib
deb http://mirrors.ustc.edu.cn/debian/ bookworm-backports main non-free non-free-firmware  contrib

deb-src http://mirrors.ustc.edu.cn/debian/ bookworm main non-free non-free-firmware  contrib
deb-src http://mirrors.ustc.edu.cn/debian/ bookworm-updates main non-free non-free-firmware  contrib
deb-src http://mirrors.ustc.edu.cn/debian/ bookworm-backports main non-free non-free-firmware  contrib

deb http://mirrors.ustc.edu.cn/debian-security/ bookworm-security main non-free non-free-firmware  contrib
deb-src http://mirrors.ustc.edu.cn/debian-security/ bookworm-security main non-free non-free-firmware  contrib


#ProxmoveVE8
deb http://mirrors.ustc.edu.cn/proxmox/debian/pve bookworm pve-no-subscription

サブスクリプションの通知を無効にする#

cp /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js.bak

次に、/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js を開き、以下の行を見つけます

if (data.status !== 'Active') {

![[Pasted image 20231122214812.png]]

以下のように変更します

if (false) {

![[Pasted image 20231122214818.png]]

そして、proxmox ウェブサービスを再起動します

systemctl restart pveproxy

アップデートコマンド#

apt-get update 
apt-get dist-upgrade

dist-upgrade を必ず追加することに注意してください

オリジナルのリンク https://www.ywlib.com/archives/150.html

読み込み中...
文章は、創作者によって署名され、ブロックチェーンに安全に保存されています。