📝 Josh's Notes

Proxmox Initial Setup

Disable enterprise and enable no-subscription repo

**As of Proxmox 8, this can all be done through the GUI as well by clicking on a node and going to updates –> repositories

Disable the enterprise repo:

1nano /etc/apt/sources.list.d/pve-enterprise.list

There should be one line in this file. Comment it out: `

1# deb https://enterprise.proxmox.com/debian/pve bookworm pve-enterprise

Add the pve-no-subscription repo to the file /etc/apt/sources.list

1deb http://ftp.debian.org/debian bookworm main contrib
2deb http://ftp.debian.org/debian bookworm-updates main contrib
3
4# Proxmox VE pve-no-subscription repository provided by proxmox.com,
5# NOT recommended for production use
6deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription
7
8# security updates
9deb http://security.debian.org/debian-security bookworm-security main contrib

Change the ceph enterprise repo to no-subscription. It should look like this:

1cat /etc/apt/sources.list.d/ceph.list
2deb http://download.proxmox.com/debian/ceph-quincy bookworm no-subscription

If it has an enterprise repo as it’s only entry, either remove it or comment it out and add the above repo instead

Finally, do an apt update && apt upgrade

Enable IOMMU

https://www.servethehome.com/how-to-pass-through-pcie-nics-with-proxmox-ve-on-intel-and-amd/

#linux #proxmox