From 7208a7f2382f376e84ef4af717d72a7a42452881 Mon Sep 17 00:00:00 2001 From: Dennis Buchhorn Date: Tue, 27 Jun 2023 08:34:17 +0000 Subject: [PATCH] Add 'proxmox_backup_client' --- proxmox_backup_client.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 proxmox_backup_client.md diff --git a/proxmox_backup_client.md b/proxmox_backup_client.md new file mode 100644 index 0000000..909d8f4 --- /dev/null +++ b/proxmox_backup_client.md @@ -0,0 +1,37 @@ +# Proxmox Backup Client + +## Installation + +### Debian 12 + +Until now (2023-06-27) you have to use the `pvetest` repository. (Ref: [1](https://bugzilla.proxmox.com/show_bug.cgi?id=4191#c6), [2](https://forum.proxmox.com/threads/proxmox-ve-8-0-beta-released.128677/)) + +Add public key: + +``` +sudo wget http://download.proxmox.com/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg +``` + +Add repository: + +``` +sudo nano /etc/apt/sources.list.d/proxmox.list +``` + +With following content: + +``` +deb http://download.proxmox.com/debian/pve bookworm pvetest +``` + +After that, update apt: + +``` +sudo apt update +``` + +Now you can install `proxmox-backup-client` with: + +``` +sudo apt install proxmox-backup-client +``` \ No newline at end of file