Proxmox Backup Server Installation Guide
Proxmox Backup Server Requirements
Before you get started, make sure you have these requirements for a production machine:
- CPU: modern 64-bit AMD- or Intel-based, with at least 4 cores.
- RAM: Minimum 4 GiB for the operating system, filesystem cache, and Proxmox Backup Server daemons. Add at least one more GiB for each TiB of storage space.
- Operating System Storage:
- 32 GiB, or more, of free storage space.
- Use a hardware RAID with battery-protected write cache (BBU) or a redundant ZFS configuration (ZFS is not compatible with a hardware RAID controller).
- Storage for backups:
- Prefer fast storage that offers high IOPS for random IO workloads; use only enterprise SSDs for best results.
- If using HDDs: it is highly recommended to use a metadata cache, e.g. add a ZFS "special device mirror".
- Network cards: use redundant network cards with Multi-GBit/s interfaces.
Necessary for this guide
For the installation described in this guide you will need:
- Internet access to download the Proxmox Backup Server ISO image
- A USB flash drive of at least 4GB to create a bootable drive
- Basic system administration knowledge
Downloading the ISO image
First, download the Proxmox Backup Server ISO image from the Official website of Proxmox.
Installing Proxmox Backup Server
Creating a bootable USB drive
Depending on the operating system you are using, a different procedure is required to create the PBS boot USB, let's see how to do it
a. Instructions for Windows
Use a tool such as Rufus to create a bootable USB drive with the Proxmox Backup Server ISO image.
b. Instructions for Linux
We can write with cp
directly the image to the bootable USB device with these commands
Identify the device we just inserted in this case
/dev/sdd
sudo dmesg | tail
[ 6141.877937] sdd: sdd1
We enter the directory where we downloaded PBS
cd $HOME/Downloaded
We copy the file to the device we identified earlier
sudo cp ./proxmox-backup-server*.iso of=/dev/DEVICE_CHOICE
We synchronize the filesystems
sudo sync
c. Instructions for macOS
- Open Terminal (search for "Terminal" in Spotlight).
Convert the
.iso
file to.dmg
format using the convert option ofhdiutil
. For example:hdiutil convert proxmox-backup-server_*.iso -format UDRW -o proxmox-backup-server_*.dmg
Note: macOS tends to automatically add
.dmg
to the output file name.To get the current list of devices, run the command:
diskutil list
Unmount the USB disk with the command:
diskutil unmountDisk /dev/diskX
Note: replace
X
with the disk number obtained from the previous command.Write the
.dmg
image to the USB stick using:sudo dd if=proxmox-backup-server_*.dmg bs=1M of=/dev/rdiskX
Note: in the last command, use
rdiskX
instead ofdiskX
to increase write speed.
Insert the USB stick and re-run the command to determine which device node it has been assigned to (e.g., /dev/diskX
).
diskutil list
Starting from USB device
- Insert the USB stick into the physical server or virtual machine and start the system from the USB device.
Installing the operating system
Follow the on-screen instructions to install Proxmox Backup Server on your hardware, starting with the graphical installation.

Creates the password for the default user root
, the system administrator

Select primary disk and RAID, if any

Configure static IP address

Review summary of configurations

Completed the installation, we are presented with the console with login and web interface address

With this last step we have succeeded in the Installation of Proxmox Backup Server
Frequent Questions (FAQ)
1. What are the minimum system requirements for Proxmox Backup Server?
The minimum requirements for Proxmox Backup Server PBS are, a server or virtual machine (for test environments), with at least 2 Cores, 4GB RAM and 2 disks, including at least 8GB disk space for the system.
2. Can I run Proxmox Backup Server in a virtual machine?
Yes, Proxmox Backup Server can be run on both physical hardware and a virtual machine.
3. How can I update Proxmox Backup Server?
You can update Proxmox Backup Server via the web management console or by using apt commands on the terminal.
4. Does Proxmox Backup Server support incremental backup?
Yes, Proxmox Backup Server supports incremental backup to optimize disk space and backup time.