# Enabling no-subscription repositories

Preparations:
- Ensure Internet connectivity
```bash
ping download.proxmox.com
```

[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-07/scaled-1680-/zEcRvYLyRBMOhgBD-image-1783232676275.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-07/zEcRvYLyRBMOhgBD-image-1783232676275.png)



## Prepare
```bash
sudo su
apt install tmux
exit

tmux
sudo su

```


## 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
```

close editor
```
CTRL+X, y
```
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-06/scaled-1680-/liLBuyhYKl3IjwPg-image-1781360103997.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-06/liLBuyhYKl3IjwPg-image-1781360103997.png)



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
```

close editor
```
CTRL+X, y
```

[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-06/scaled-1680-/WkS3m6pdVfakwfce-image-1781360137510.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-06/WkS3m6pdVfakwfce-image-1781360137510.png)


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)

another one:
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-06/scaled-1680-/tgrNiuTHnXK8CoFr-image-1781360197199.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2026-06/tgrNiuTHnXK8CoFr-image-1781360197199.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)