Proxmox Post Install
Log into proxmox
Set repositories
1
| nano /etc/apt/sources.list
|
Make sure these repositories are listed
1
2
3
4
5
| deb http://ftp.debian.org/debian bullseye main contrib
deb http://ftp.debian.org/debian bullseye-updates main contrib
PVE pve-no-subscription repository provided by proxmox.com
|
NOT recommended for production use
1
| deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription
|
Security Updates
Add this line
1
| deb http://security.debian.org/debian-security bullseye-security main contrib
|
1
| /etc/apt/sources.list.d/pve-enterprise.list
|
Then update the system
1
| apt update && apt upgrade
|
Update the container library
To view the list of available images run
Commands for Remove License Banner:
1
2
3
4
5
6
7
| ssh root@(ip address)
cd /usr/share/javascript/proxmox-widget-toolkit
cp proxmoxlib.js proxmoxlib.js.bak
nano interfaces
|
In nano hit
ctrl+w and search No valid subscription
change to
1
2
3
| void({ //Ext.Msg.show({
title: gettext('No valid subscription'),
|
Restart the pveproxy service
1
| systemctl restart pveproxy.service
|