ryanburnette / ryanburnette.com

0 stars 0 forks source link

blog/proxmox-updates/ #2

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

Enable Updates In Proxmox Without a Paid License

https://ryanburnette.com/blog/proxmox-updates/

ryanburnette commented 2 years ago

Works in Proxmox 7.

coolaj86 commented 1 year ago

Should use pveupgrade rather than apt dist-upgrade because it does a few extra Proxmox housekeeping bits as well.

coolaj86 commented 1 year ago

Updates for Proxmox 7.4:

Temporarily Disable Enterprise:

sed -i 's:^deb :#deb :g' /etc/apt/sources.list.d/pve-enterprise.list

Get non-subscription signing key:

wget http://download.proxmox.com/debian/proxmox-release-bullseye.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg

Add non-subscription source:

echo '# pve-no-subscription repository provided by proxmox.com, not recommended for production use
deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription
' > /etc/apt/sources.list.d/pve-no-subscription.list

Update & Upgrade

apt update
pveupgrade
coolaj86 commented 1 year ago

Some other notes-to-self I'll leave here:

apt install -y curl git rsync screen sudo vim zip
curl https://webi.sh/ssh-pubkey | sh

And my own flurish

webi ssh-adduser

webi iterm2-utils
pathman add ~/.iterm2/

sudo apt install -y fish
echo 'screen -xRS awesome -s fish' >> ~/.profile
ryanburnette commented 1 year ago

@coolaj86 Thanks, I updated the post to reflect these improvements.