installation.rst 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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. .. _distribution-package:
  19. Distribution Package
  20. --------------------
  21. Some distributions might offer a ready-to-use ``borgbackup``
  22. package which can be installed with the package manager. As |project_name| is
  23. still a young project, such a package might be not available for your system
  24. yet.
  25. ============ ============================================= =======
  26. Distribution Source Command
  27. ============ ============================================= =======
  28. Arch Linux `[community]`_ ``pacman -S borg``
  29. Debian `stretch`_, `unstable/sid`_ ``apt install borgbackup``
  30. NetBSD `pkgsrc`_ ``pkg_add py-borgbackup``
  31. NixOS `.nix file`_ N/A
  32. OS X `Brew cask`_ ``brew cask install borgbackup``
  33. Ubuntu `Xenial 16.04`_, `Wily 15.10 (backport PPA)`_ ``apt install borgbackup``
  34. Ubuntu `Trusty 14.04 (backport PPA)`_ ``apt install borgbackup``
  35. ============ ============================================= =======
  36. .. _[community]: https://www.archlinux.org/packages/?name=borg
  37. .. _stretch: https://packages.debian.org/stretch/borgbackup
  38. .. _unstable/sid: https://packages.debian.org/sid/borgbackup
  39. .. _pkgsrc: http://pkgsrc.se/sysutils/py-borgbackup
  40. .. _Xenial 16.04: https://launchpad.net/ubuntu/xenial/+source/borgbackup
  41. .. _Wily 15.10 (backport PPA): https://launchpad.net/~costamagnagianfranco/+archive/ubuntu/borgbackup
  42. .. _Trusty 14.04 (backport PPA): https://launchpad.net/~costamagnagianfranco/+archive/ubuntu/borgbackup
  43. .. _.nix file: https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/backup/borg/default.nix
  44. .. _Brew cask: http://caskroom.io/
  45. Please ask package maintainers to build a package or, if you can package /
  46. submit it yourself, please help us with that! See :issue:`105` on
  47. github to followup on packaging efforts.
  48. If a package is available, it might be interesting to check its version
  49. and compare that to our latest release and review the :doc:`changes`.
  50. .. _pyinstaller-binary:
  51. Standalone Binary
  52. -----------------
  53. |project_name| binaries (generated with `pyinstaller`_) are available
  54. on the releases_ page for the following platforms:
  55. * **Linux**: glibc >= 2.13 (ok for most supported Linux releases). Maybe older
  56. glibc versions also work, if they are compatible to 2.13.
  57. * **Mac OS X**: 10.10 (does not work with older OS X releases)
  58. * **FreeBSD**: 10.2 (unknown whether it works for older releases)
  59. To install such a binary, just drop it into a directory in your ``PATH``,
  60. make borg readable and executable for its users and then you can run ``borg``::
  61. sudo cp borg-linux64 /usr/local/bin/borg
  62. sudo chown root:root /usr/local/bin/borg
  63. sudo chmod 755 /usr/local/bin/borg
  64. Note that the binary uses /tmp to unpack |project_name| with all dependencies.
  65. It will fail if /tmp has not enough free space or is mounted with the ``noexec`` option.
  66. You can change the temporary directory by setting the ``TEMP`` environment variable before running |project_name|.
  67. If a new version is released, you will have to manually download it and replace
  68. the old version using the same steps as shown above.
  69. .. _pyinstaller: http://www.pyinstaller.org
  70. .. _releases: https://github.com/borgbackup/borg/releases
  71. .. _source-install:
  72. From Source
  73. -----------
  74. Dependencies
  75. ~~~~~~~~~~~~
  76. To install |project_name| from a source package (including pip), you have to install the
  77. following dependencies first:
  78. * `Python 3`_ >= 3.4.0, plus development headers. Even though Python 3 is not
  79. the default Python version on most systems, it is usually available as an
  80. optional install.
  81. * OpenSSL_ >= 1.0.0, plus development headers.
  82. * libacl_ (that pulls in libattr_ also), both plus development headers.
  83. * liblz4_, plus development headers.
  84. * some Python dependencies, pip will automatically install them for you
  85. * optionally, the llfuse_ Python package is required if you wish to mount an
  86. archive as a FUSE filesystem. See setup.py about the version requirements.
  87. If you have troubles finding the right package names, have a look at the
  88. distribution specific sections below and also at the Vagrantfile in our repo.
  89. In the following, the steps needed to install the dependencies are listed for a
  90. selection of platforms. If your distribution is not covered by these
  91. instructions, try to use your package manager to install the dependencies. On
  92. FreeBSD, you may need to get a recent enough OpenSSL version from FreeBSD
  93. ports.
  94. After you have installed the dependencies, you can proceed with steps outlined
  95. under :ref:`pip-installation`.
  96. Debian / Ubuntu
  97. +++++++++++++++
  98. Install the dependencies with development headers::
  99. sudo apt-get install python3 python3-dev python3-pip python-virtualenv \
  100. libssl-dev openssl \
  101. libacl1-dev libacl1 \
  102. liblz4-dev liblz4-1 \
  103. build-essential
  104. sudo apt-get install libfuse-dev fuse pkg-config # optional, for FUSE support
  105. In case you get complaints about permission denied on ``/etc/fuse.conf``: on
  106. Ubuntu this means your user is not in the ``fuse`` group. Add yourself to that
  107. group, log out and log in again.
  108. Fedora / Korora
  109. +++++++++++++++
  110. Install the dependencies with development headers::
  111. sudo dnf install python3 python3-devel python3-pip python3-virtualenv
  112. sudo dnf install openssl-devel openssl
  113. sudo dnf install libacl-devel libacl
  114. sudo dnf install lz4-devel
  115. sudo dnf install gcc gcc-c++
  116. sudo dnf install fuse-devel fuse pkgconfig # optional, for FUSE support
  117. Mac OS X
  118. ++++++++
  119. Assuming you have installed homebrew_, the following steps will install all the
  120. dependencies::
  121. brew install python3 lz4 openssl
  122. pip3 install virtualenv
  123. For FUSE support to mount the backup archives, you need at least version 3.0 of
  124. FUSE for OS X, which is available as a pre-release_.
  125. .. _pre-release: https://github.com/osxfuse/osxfuse/releases
  126. FreeBSD
  127. ++++++++
  128. Listed below are packages you will need to install |project_name|, its dependencies,
  129. and commands to make fuse work for using the mount command.
  130. ::
  131. pkg install -y python3 openssl liblz4 fusefs-libs pkgconf
  132. pkg install -y git
  133. python3.4 -m ensurepip # to install pip for Python3
  134. To use the mount command:
  135. echo 'fuse_load="YES"' >> /boot/loader.conf
  136. echo 'vfs.usermount=1' >> /etc/sysctl.conf
  137. kldload fuse
  138. sysctl vfs.usermount=1
  139. Cygwin
  140. ++++++
  141. .. note::
  142. Running under Cygwin is experimental and has only been tested with Cygwin
  143. (x86-64) v2.5.2.
  144. Use the Cygwin installer to install the dependencies::
  145. python3 python3-setuptools
  146. binutils gcc-g++
  147. libopenssl openssl-devel
  148. liblz4_1 liblz4-devel
  149. git make openssh
  150. You can then install ``pip`` and ``virtualenv``::
  151. easy_install-3.4 pip
  152. pip install virtualenv
  153. .. _pip-installation:
  154. Using pip
  155. ~~~~~~~~~
  156. Virtualenv_ can be used to build and install |project_name| without affecting
  157. the system Python or requiring root access. Using a virtual environment is
  158. optional, but recommended except for the most simple use cases.
  159. .. note::
  160. If you install into a virtual environment, you need to **activate** it
  161. first (``source borg-env/bin/activate``), before running ``borg``.
  162. Alternatively, symlink ``borg-env/bin/borg`` into some directory that is in
  163. your ``PATH`` so you can just run ``borg``.
  164. This will use ``pip`` to install the latest release from PyPi::
  165. virtualenv --python=python3 borg-env
  166. source borg-env/bin/activate
  167. # install Borg + Python dependencies into virtualenv
  168. pip install borgbackup
  169. # or alternatively (if you want FUSE support):
  170. pip install borgbackup[fuse]
  171. To upgrade |project_name| to a new version later, run the following after
  172. activating your virtual environment::
  173. pip install -U borgbackup # or ... borgbackup[fuse]
  174. .. _git-installation:
  175. Using git
  176. ~~~~~~~~~
  177. This uses latest, unreleased development code from git.
  178. While we try not to break master, there are no guarantees on anything. ::
  179. # get borg from github
  180. git clone https://github.com/borgbackup/borg.git
  181. virtualenv --python=python3 borg-env
  182. source borg-env/bin/activate # always before using!
  183. # install borg + dependencies into virtualenv
  184. pip install sphinx # optional, to build the docs
  185. cd borg
  186. pip install -r requirements.d/development.txt
  187. pip install -r requirements.d/fuse.txt # optional, for FUSE support
  188. pip install -e . # in-place editable mode
  189. # optional: run all the tests, on all supported Python versions
  190. # requires fakeroot, available through your package manager
  191. fakeroot -u tox
  192. .. note:: As a developer or power user, you always want to use a virtual environment.