# Proxmox Virtual Environment (PVE)



# Enabling no-subscription repositories

On Debian v13 (trixie)



```bash
mv /etc/apt/sources.list.d/pve-enterprise.sources  /root
```

Create new file
```bash
nano /etc/apt/sources.list.d/pve-no-subscription.list 
```

repos
```ini
deb http://download.proxmox.com/debian/pve trixie pve-no-subscription
```


Adjust Debian repos


```bash
nano /etc/apt/sources.list.d/debian.sources 
```

repos
```ini
Types: deb
URIs: http://deb.debian.org/debian
Suites: trixie trixie-updates
Components: main contrib non-free-firmware
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg

Types: deb
URIs: http://security.debian.org/debian-security
Suites: trixie-security
Components: main contrib non-free-firmware
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg
```



Verify repositories declaration
```bash
apt policy
```
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-04/scaled-1680-/uJSMUQL5kRd7v2G8-image-1776049077979.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-04/uJSMUQL5kRd7v2G8-image-1776049077979.png)


Do APT update
```bash
apt update
```
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-04/scaled-1680-/zbgZtCGNIq7tcS1Y-image-1776049111490.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-04/zbgZtCGNIq7tcS1Y-image-1776049111490.png)

List packages ready for update, most important that there are new packages from PVE repo.
```bash
apt list --upgradable
```
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-04/scaled-1680-/K7cTng8coJLqGgxJ-image-1776049491713.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-04/K7cTng8coJLqGgxJ-image-1776049491713.png)


Perform upgrade (when needed)
```bash
apt upgrade
```
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-04/scaled-1680-/CT9ZfOz6yyjmPN2E-image-1776049552216.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-04/CT9ZfOz6yyjmPN2E-image-1776049552216.png)