installation.rst 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. .. include:: global.rst.inc
  2. .. highlight:: bash
  3. .. _installation:
  4. Installation
  5. ============
  6. There are different ways to install |project_name|:
  7. - :ref:`distribution-package` - easy and fast if a package is
  8. available from your distribution.
  9. - :ref:`pyinstaller-binary` - easy and fast, we provide a ready-to-use binary file
  10. that comes bundled with all dependencies.
  11. - :ref:`source-install`, either:
  12. - :ref:`pip-installation` - installing a source package with pip needs
  13. more installation steps and requires all dependencies with
  14. development headers and a compiler.
  15. - :ref:`git-installation` - for developers and power users who want to
  16. have the latest code or use revision control (each release is
  17. tagged).
  18. .. _installation-requirements:
  19. Pre-Installation Considerations
  20. -------------------------------
  21. (G)LIBC requirements
  22. --------------------
  23. Borg uses some filesytem functions from Python's `os` standard library module
  24. with `follow_symlinks=False`. These are implemented since quite a while with
  25. the non-symlink-following (g)libc functions like e.g. `lstat` or `lutimes`
  26. (not: `stat` or `utimes`).
  27. Some stoneage systems (like RHEL/CentOS 5) and also Python interpreter binaries
  28. compiled to be able to run on such systems (like Python installed via Anaconda)
  29. might miss these functions and Borg won't be able to work correctly.
  30. This issue will be detected early and Borg will abort with a fatal error.
  31. For the Borg binaries, there are additional (g)libc requirements, see below.
  32. .. _distribution-package:
  33. Distribution Package
  34. --------------------
  35. Some distributions might offer a ready-to-use ``borgbackup``
  36. package which can be installed with the package manager. As |project_name| is
  37. still a young project, such a package might be not available for your system
  38. yet.
  39. ============ ============================================= =======
  40. Distribution Source Command
  41. ============ ============================================= =======
  42. Arch Linux `[community]`_ ``pacman -S borg``
  43. Debian `Debian packages`_ ``apt install borgbackup``
  44. Gentoo `ebuild`_ ``emerge borgbackup``
  45. GNU Guix `GNU Guix`_ ``guix package --install borg``
  46. Fedora/RHEL `Fedora official repository`_ ``dnf install borgbackup``
  47. FreeBSD `FreeBSD ports`_ ``cd /usr/ports/archivers/py-borgbackup && make install clean``
  48. macOS `Brew cask`_ ``brew cask install borgbackup``
  49. Mageia `cauldron`_ ``urpmi borgbackup``
  50. NetBSD `pkgsrc`_ ``pkg_add py-borgbackup``
  51. NixOS `.nix file`_ N/A
  52. OpenBSD `OpenBSD ports`_ ``pkg_add borgbackup``
  53. OpenIndiana `OpenIndiana hipster repository`_ ``pkg install borg``
  54. openSUSE `openSUSE official repository`_ ``zypper in borgbackup``
  55. Raspbian `Raspbian testing`_ ``apt install borgbackup``
  56. Ubuntu `Ubuntu packages`_, `Ubuntu PPA`_ ``apt install borgbackup``
  57. ============ ============================================= =======
  58. .. _[community]: https://www.archlinux.org/packages/?name=borg
  59. .. _Debian packages: https://packages.debian.org/search?keywords=borgbackup&searchon=names&exact=1&suite=all&section=all
  60. .. _Fedora official repository: https://apps.fedoraproject.org/packages/borgbackup
  61. .. _FreeBSD ports: http://www.freshports.org/archivers/py-borgbackup/
  62. .. _ebuild: https://packages.gentoo.org/packages/app-backup/borgbackup
  63. .. _GNU Guix: https://www.gnu.org/software/guix/package-list.html#borg
  64. .. _pkgsrc: http://pkgsrc.se/sysutils/py-borgbackup
  65. .. _cauldron: http://madb.mageia.org/package/show/application/0/release/cauldron/name/borgbackup
  66. .. _Xenial 16.04: https://launchpad.net/ubuntu/xenial/+source/borgbackup
  67. .. _Wily 15.10 (backport PPA): https://launchpad.net/~costamagnagianfranco/+archive/ubuntu/borgbackup
  68. .. _Trusty 14.04 (backport PPA): https://launchpad.net/~costamagnagianfranco/+archive/ubuntu/borgbackup
  69. .. _.nix file: https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/backup/borg/default.nix
  70. .. _Brew cask: https://caskroom.github.io/
  71. .. _Raspbian testing: http://archive.raspbian.org/raspbian/pool/main/b/borgbackup/
  72. .. _Ubuntu packages: http://packages.ubuntu.com/xenial/borgbackup
  73. .. _Ubuntu PPA: https://launchpad.net/~costamagnagianfranco/+archive/ubuntu/borgbackup
  74. Please ask package maintainers to build a package or, if you can package /
  75. submit it yourself, please help us with that! See :issue:`105` on
  76. github to followup on packaging efforts.
  77. If a package is available, it might be interesting to check its version
  78. and compare that to our latest release and review the :doc:`changes`.
  79. .. _pyinstaller-binary:
  80. Standalone Binary
  81. -----------------
  82. .. note:: Releases are signed with an OpenPGP key, see
  83. :ref:`security-contact` for more instructions.
  84. |project_name| binaries (generated with `pyinstaller`_) are available
  85. on the releases_ page for the following platforms:
  86. * **Linux**: glibc >= 2.13 (ok for most supported Linux releases). Maybe older
  87. glibc versions also work, if they are compatible to 2.13.
  88. * **Mac OS X**: 10.10 (does not work with older OS X releases)
  89. * **FreeBSD**: 10.2 (unknown whether it works for older releases)
  90. To install such a binary, just drop it into a directory in your ``PATH``,
  91. make borg readable and executable for its users and then you can run ``borg``::
  92. sudo cp borg-linux64 /usr/local/bin/borg
  93. sudo chown root:root /usr/local/bin/borg
  94. sudo chmod 755 /usr/local/bin/borg
  95. Note that the binary uses /tmp to unpack |project_name| with all dependencies.
  96. It will fail if /tmp has not enough free space or is mounted with the ``noexec`` option.
  97. You can change the temporary directory by setting the ``TEMP`` environment variable before running |project_name|.
  98. If a new version is released, you will have to manually download it and replace
  99. the old version using the same steps as shown above.
  100. .. _pyinstaller: http://www.pyinstaller.org
  101. .. _releases: https://github.com/borgbackup/borg/releases
  102. .. _platforms:
  103. Features & platforms
  104. --------------------
  105. Besides regular file and directory structures, |project_name| can preserve
  106. * Hardlinks (considering all files in the same archive)
  107. * Symlinks (stored as symlink, the symlink is not followed)
  108. * Special files:
  109. * Character and block device files (restored via mknod)
  110. * FIFOs ("named pipes")
  111. * Special file *contents* can be backed up in ``--read-special`` mode.
  112. By default the metadata to create them with mknod(2), mkfifo(2) etc. is stored.
  113. * Timestamps in nanosecond precision: mtime, atime, ctime
  114. * Permissions:
  115. * IDs of owning user and owning group
  116. * Names of owning user and owning group (if the IDs can be resolved)
  117. * Unix Mode/Permissions (u/g/o permissions, suid, sgid, sticky)
  118. On some platforms additional features are supported:
  119. .. Yes/No's are grouped by reason/mechanism/reference.
  120. +------------------+----------+-----------+------------+
  121. | Platform | ACLs | xattr | Flags |
  122. | | [#acls]_ | [#xattr]_ | [#flags]_ |
  123. +==================+==========+===========+============+
  124. | Linux x86 | Yes | Yes | No |
  125. +------------------+ | | |
  126. | Linux PowerPC | | | |
  127. +------------------+ | | |
  128. | Linux ARM | | | |
  129. +------------------+----------+-----------+------------+
  130. | Mac OS X | Yes | Yes | Yes (all) |
  131. +------------------+----------+-----------+ |
  132. | FreeBSD | Yes | Yes | |
  133. +------------------+----------+-----------+ |
  134. | OpenBSD | n/a | n/a | |
  135. +------------------+----------+-----------+ |
  136. | NetBSD | n/a | No [2]_ | |
  137. +------------------+----------+-----------+------------+
  138. | Solaris 11 | No [3]_ | n/a |
  139. +------------------+ | |
  140. | OpenIndiana | | |
  141. +------------------+----------+-----------+------------+
  142. | Windows (cygwin) | No [4]_ | No | No |
  143. +------------------+----------+-----------+------------+
  144. Some Distributions (e.g. Debian) run additional tests after each release, these
  145. are not reflected here.
  146. Other Unix-like operating systems may work as well, but have not been tested at all.
  147. Note that most of the platform-dependent features also depend on the file system.
  148. For example, ntfs-3g on Linux isn't able to convey NTFS ACLs.
  149. .. [2] Feature request :issue:`1332`
  150. .. [3] Feature request :issue:`1337`
  151. .. [4] Cygwin tries to map NTFS ACLs to permissions with varying degress of success.
  152. .. [#acls] The native access control list mechanism of the OS. This normally limits access to
  153. non-native ACLs. For example, NTFS ACLs aren't completely accessible on Linux with ntfs-3g.
  154. .. [#xattr] extended attributes; key-value pairs attached to a file, mainly used by the OS.
  155. This includes resource forks on Mac OS X.
  156. .. [#flags] aka *BSD flags*.
  157. .. _source-install:
  158. From Source
  159. -----------
  160. Dependencies
  161. ~~~~~~~~~~~~
  162. To install |project_name| from a source package (including pip), you have to install the
  163. following dependencies first:
  164. * `Python 3`_ >= 3.4.0, plus development headers. Even though Python 3 is not
  165. the default Python version on most systems, it is usually available as an
  166. optional install.
  167. * OpenSSL_ >= 1.0.0, plus development headers.
  168. * libacl_ (that pulls in libattr_ also), both plus development headers.
  169. * liblz4_, plus development headers.
  170. * some Python dependencies, pip will automatically install them for you
  171. * optionally, the llfuse_ Python package is required if you wish to mount an
  172. archive as a FUSE filesystem. See setup.py about the version requirements.
  173. If you have troubles finding the right package names, have a look at the
  174. distribution specific sections below and also at the Vagrantfile in our repo.
  175. In the following, the steps needed to install the dependencies are listed for a
  176. selection of platforms. If your distribution is not covered by these
  177. instructions, try to use your package manager to install the dependencies. On
  178. FreeBSD, you may need to get a recent enough OpenSSL version from FreeBSD
  179. ports.
  180. After you have installed the dependencies, you can proceed with steps outlined
  181. under :ref:`pip-installation`.
  182. Debian / Ubuntu
  183. +++++++++++++++
  184. Install the dependencies with development headers::
  185. sudo apt-get install python3 python3-dev python3-pip python-virtualenv \
  186. libssl-dev openssl \
  187. libacl1-dev libacl1 \
  188. liblz4-dev liblz4-1 \
  189. build-essential
  190. sudo apt-get install libfuse-dev fuse pkg-config # optional, for FUSE support
  191. In case you get complaints about permission denied on ``/etc/fuse.conf``: on
  192. Ubuntu this means your user is not in the ``fuse`` group. Add yourself to that
  193. group, log out and log in again.
  194. Fedora / Korora
  195. +++++++++++++++
  196. Install the dependencies with development headers::
  197. sudo dnf install python3 python3-devel python3-pip python3-virtualenv
  198. sudo dnf install openssl-devel openssl
  199. sudo dnf install libacl-devel libacl
  200. sudo dnf install lz4-devel
  201. sudo dnf install gcc gcc-c++
  202. sudo dnf install fuse-devel fuse pkgconfig # optional, for FUSE support
  203. openSUSE Tumbleweed / Leap
  204. ++++++++++++++++++++++++++
  205. Install the dependencies automatically using zypper::
  206. sudo zypper source-install --build-deps-only borgbackup
  207. Alternatively, you can enumerate all build dependencies in the command line::
  208. sudo zypper install python3 python3-devel \
  209. libacl-devel liblz4-devel openssl-devel \
  210. python3-Cython python3-Sphinx python3-msgpack-python \
  211. python3-pytest python3-setuptools python3-setuptools_scm \
  212. python3-sphinx_rtd_theme python3-llfuse gcc gcc-c++
  213. Mac OS X
  214. ++++++++
  215. Assuming you have installed homebrew_, the following steps will install all the
  216. dependencies::
  217. brew install python3 lz4 openssl
  218. brew install pkg-config # optional, for FUSE support
  219. pip3 install virtualenv
  220. For FUSE support to mount the backup archives, you need at least version 3.0 of
  221. FUSE for OS X, which is available via github_, or via homebrew::
  222. brew cask install osxfuse
  223. .. _github: https://github.com/osxfuse/osxfuse/releases/latest
  224. FreeBSD
  225. ++++++++
  226. Listed below are packages you will need to install |project_name|, its dependencies,
  227. and commands to make fuse work for using the mount command.
  228. ::
  229. pkg install -y python3 openssl liblz4 fusefs-libs pkgconf
  230. pkg install -y git
  231. python3.4 -m ensurepip # to install pip for Python3
  232. To use the mount command:
  233. echo 'fuse_load="YES"' >> /boot/loader.conf
  234. echo 'vfs.usermount=1' >> /etc/sysctl.conf
  235. kldload fuse
  236. sysctl vfs.usermount=1
  237. Windows 10's Linux Subsystem
  238. ++++++++++++++++++++++++++++
  239. .. note::
  240. Running under Windows 10's Linux Subsystem is experimental and has not been tested much yet.
  241. Just follow the Ubuntu Linux installation steps. You can omit the FUSE stuff, it won't work anyway.
  242. Cygwin
  243. ++++++
  244. .. note::
  245. Running under Cygwin is experimental and has only been tested with Cygwin
  246. (x86-64) v2.5.2. Remote repositories are known broken, local repositories should work.
  247. Use the Cygwin installer to install the dependencies::
  248. python3 python3-devel python3-setuptools
  249. binutils gcc-g++
  250. libopenssl openssl-devel
  251. liblz4_1 liblz4-devel
  252. git make openssh
  253. You can then install ``pip`` and ``virtualenv``::
  254. easy_install-3.4 pip
  255. pip install virtualenv
  256. .. _pip-installation:
  257. Using pip
  258. ~~~~~~~~~
  259. Virtualenv_ can be used to build and install |project_name| without affecting
  260. the system Python or requiring root access. Using a virtual environment is
  261. optional, but recommended except for the most simple use cases.
  262. .. note::
  263. If you install into a virtual environment, you need to **activate** it
  264. first (``source borg-env/bin/activate``), before running ``borg``.
  265. Alternatively, symlink ``borg-env/bin/borg`` into some directory that is in
  266. your ``PATH`` so you can just run ``borg``.
  267. This will use ``pip`` to install the latest release from PyPi::
  268. virtualenv --python=python3 borg-env
  269. source borg-env/bin/activate
  270. # install Borg + Python dependencies into virtualenv
  271. pip install borgbackup
  272. # or alternatively (if you want FUSE support):
  273. pip install borgbackup[fuse]
  274. To upgrade |project_name| to a new version later, run the following after
  275. activating your virtual environment::
  276. pip install -U borgbackup # or ... borgbackup[fuse]
  277. .. _git-installation:
  278. Using git
  279. ~~~~~~~~~
  280. This uses latest, unreleased development code from git.
  281. While we try not to break master, there are no guarantees on anything. ::
  282. # get borg from github
  283. git clone https://github.com/borgbackup/borg.git
  284. virtualenv --python=python3 borg-env
  285. source borg-env/bin/activate # always before using!
  286. # install borg + dependencies into virtualenv
  287. pip install sphinx # optional, to build the docs
  288. cd borg
  289. pip install -r requirements.d/development.txt
  290. pip install -r requirements.d/fuse.txt # optional, for FUSE support
  291. pip install -e . # in-place editable mode
  292. # optional: run all the tests, on all supported Python versions
  293. # requires fakeroot, available through your package manager
  294. fakeroot -u tox
  295. .. note:: As a developer or power user, you always want to use a virtual environment.