Proxmox Post-Install
Proxmox Post-Install
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
Comment out the subscription
1
/etc/apt/sources.list.d/pve-enterprise.list
Then update the system
1
apt update && apt upgrade
Update the container library
1
pveam update
To view the list of available images run
1
pveam available
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
Remove and Resize local drive
Commands for single drive storage:
1
2
3
4
5
lvremove /dev/pve/data
lvresize -l +100%FREE /dev/pve/root
resize2fs /dev/mapper/pve-root
This post is licensed under CC BY 4.0 by the author.