]> git.proxmox.com Git - proxmox-backup.git/blame - docs/faq.rst
sort dependencies
[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
6f66a0ca
TL
27+-----------------------+----------------------+---------------+------------+--------------------+
28|Proxmox Backup Version | Debian Version | First Release | Debian EOL | Proxmox Backup EOL |
29+=======================+======================+===============+============+====================+
30|Proxmox Backup 2.x | Debian 11 (Bullseye) | 2021-07 | tba | tba |
31+-----------------------+----------------------+---------------+------------+--------------------+
1ed8698b 32|Proxmox Backup 1.x | Debian 10 (Buster) | 2020-11 | 2022-08 | 2022-07 |
6f66a0ca 33+-----------------------+----------------------+---------------+------------+--------------------+
1de47507
DW
34
35
36Can I copy or synchronize my datastore to another location?
37-----------------------------------------------------------
38
3bbb70b3 39Proxmox Backup Server allows you to copy or synchronize datastores to other
1de47507
DW
40locations, through the use of *Remotes* and *Sync Jobs*. *Remote* is the term
41given to a separate server, which has a datastore that can be synced to a local store.
42A *Sync Job* is the process which is used to pull the contents of a datastore from
43a *Remote* to a local datastore.
44
45
46Can Proxmox Backup Server verify data integrity of a backup archive?
47--------------------------------------------------------------------
48
e84fde3e
TL
49Proxmox Backup Server uses a built-in SHA-256 checksum algorithm, to ensure
50data integrity. Within each backup, a manifest file (index.json) is created,
51which contains a list of all the backup files, along with their sizes and
52checksums. This manifest file is used to verify the integrity of each backup.
1de47507
DW
53
54
55When backing up to remote servers, do I have to trust the remote server?
56------------------------------------------------------------------------
57
44a5f38b
DW
58Proxmox Backup Server transfers data via `Transport Layer Security (TLS)
59<https://en.wikipedia.org/wiki/Transport_Layer_Security>`_ and additionally
60supports client-side encryption. This means that data is transferred securely
61and can be encrypted before it reaches the server. Thus, in the event that an
62attacker gains access to the server or any point of the network, they will not
63be able to read the data.
1de47507
DW
64
65.. note:: Encryption is not enabled by default. To set up encryption, see the
384a2b4d 66 :ref:`backup client encryption section <client_encryption>`.
1de47507
DW
67
68
d8e4837a 69Is the backup incremental/deduplicated/full?
ae66b245 70--------------------------------------------
1de47507 71
2bc1250c
DW
72With Proxmox Backup Server, backups are sent incrementally to the server, and
73data is then deduplicated on the server. This minimizes both the storage
d8e4837a
DC
74consumed and the impact on the network. Each backup still references all
75data and such is a full backup. For details see the
76:ref:`Technical Overview <tech_design_overview>`