]> git.proxmox.com Git - proxmox-backup.git/blame - docs/faq.rst
docs: add section for calendar events
[proxmox-backup.git] / docs / faq.rst
CommitLineData
1de47507
DW
1FAQ
2===
3
4What distribution is Proxmox Backup Server (PBS) based on?
5----------------------------------------------------------
6
7Proxmox Backup Server is based on `Debian GNU/Linux <https://www.debian.org/>`_.
8
9
10Which platforms are supported as a backup source (client)?
11----------------------------------------------------------
12
13The client tool works on most modern Linux systems, meaning you are not limited
14to Debian-based backups.
15
16
17Will Proxmox Backup Server run on a 32-bit processor?
18-----------------------------------------------------
19
20Proxmox Backup Server only supports 64-bit CPUs (AMD or Intel). There are no
21future plans to support 32-bit processors.
22
23
24How long will my Proxmox Backup Server version be supported?
25------------------------------------------------------------
26
e84fde3e
TL
27+-----------------------+--------------------+---------------+------------+--------------------+
28|Proxmox Backup Version | Debian Version | First Release | Debian EOL | Proxmox Backup EOL |
29+=======================+====================+===============+============+====================+
30|Proxmox Backup 1.x | Debian 10 (Buster) | tba | tba | tba |
31+-----------------------+--------------------+---------------+------------+--------------------+
1de47507
DW
32
33
34Can I copy or synchronize my datastore to another location?
35-----------------------------------------------------------
36
37Proxmox Backup Server allows you to copy or synchroize datastores to other
38locations, through the use of *Remotes* and *Sync Jobs*. *Remote* is the term
39given to a separate server, which has a datastore that can be synced to a local store.
40A *Sync Job* is the process which is used to pull the contents of a datastore from
41a *Remote* to a local datastore.
42
43
44Can Proxmox Backup Server verify data integrity of a backup archive?
45--------------------------------------------------------------------
46
e84fde3e
TL
47Proxmox Backup Server uses a built-in SHA-256 checksum algorithm, to ensure
48data integrity. Within each backup, a manifest file (index.json) is created,
49which contains a list of all the backup files, along with their sizes and
50checksums. This manifest file is used to verify the integrity of each backup.
1de47507
DW
51
52
53When backing up to remote servers, do I have to trust the remote server?
54------------------------------------------------------------------------
55
e84fde3e
TL
56Proxmox Backup Server supports client-side encryption, meaning your data is
57encrypted before it reaches the server. Thus, in the event that an attacker
58gains access to the server, they will not be able to read the data.
1de47507
DW
59
60.. note:: Encryption is not enabled by default. To set up encryption, see the
61 `Encryption
62 <https://pbs.proxmox.com/docs/administration-guide.html#encryption>`_ section
3294b516 63 of the Proxmox Backup Server Administration Guide.
1de47507
DW
64
65
66Is the backup incremental/deduplicated?
67---------------------------------------
68
e84fde3e
TL
69With Proxmox Backup Server, backups are sent incremental and data is
70deduplicated on the server.
71This minimizes both the storage consumed and the network impact.