installation.rst 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. .. include:: global.rst.inc
  2. .. highlight:: bash
  3. .. _installation:
  4. Installation
  5. ============
  6. There are different ways to install Borg:
  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.
  23. .. important:: Those packages may not be up to date with the latest
  24. Borg releases. Before submitting a bug
  25. report, check the package version and compare that to
  26. our latest release then review :doc:`changes` to see if
  27. the bug has been fixed. Report bugs to the package
  28. maintainer rather than directly to Borg if the
  29. package is out of date in the distribution.
  30. .. keep this list in alphabetical order
  31. ============ ============================================= =======
  32. Distribution Source Command
  33. ============ ============================================= =======
  34. Alpine Linux `Alpine repository`_ ``apk add borgbackup``
  35. Arch Linux `[extra]`_ ``pacman -S borg``
  36. Debian `Debian packages`_ ``apt install borgbackup``
  37. Gentoo `ebuild`_ ``emerge borgbackup``
  38. GNU Guix `GNU Guix`_ ``guix package --install borg``
  39. Fedora/RHEL `Fedora official repository`_ ``dnf install borgbackup``
  40. FreeBSD `FreeBSD ports`_ ``cd /usr/ports/archivers/py-borgbackup && make install clean``
  41. macOS `Homebrew`_ | ``brew install borgbackup`` (official formula, **no** FUSE support)
  42. | **or**
  43. | ``brew install --cask macfuse`` (`private Tap`_, FUSE support)
  44. | ``brew install borgbackup/tap/borgbackup-fuse``
  45. Mageia `cauldron`_ ``urpmi borgbackup``
  46. NetBSD `pkgsrc`_ ``pkg_add py-borgbackup``
  47. NixOS `.nix file`_ ``nix-env -i borgbackup``
  48. OpenBSD `OpenBSD ports`_ ``pkg_add borgbackup``
  49. OpenIndiana `OpenIndiana hipster repository`_ ``pkg install borg``
  50. openSUSE `openSUSE official repository`_ ``zypper in borgbackup``
  51. Raspbian `Raspbian testing`_ ``apt install borgbackup``
  52. Ubuntu `Ubuntu packages`_, `Ubuntu PPA`_ ``apt install borgbackup``
  53. ============ ============================================= =======
  54. .. _Alpine repository: https://pkgs.alpinelinux.org/packages?name=borgbackup
  55. .. _[extra]: https://www.archlinux.org/packages/?name=borg
  56. .. _Debian packages: https://packages.debian.org/search?keywords=borgbackup&searchon=names&exact=1&suite=all&section=all
  57. .. _Fedora official repository: https://packages.fedoraproject.org/pkgs/borgbackup/borgbackup/
  58. .. _FreeBSD ports: https://www.freshports.org/archivers/py-borgbackup/
  59. .. _ebuild: https://packages.gentoo.org/packages/app-backup/borgbackup
  60. .. _GNU Guix: https://www.gnu.org/software/guix/package-list.html#borg
  61. .. _pkgsrc: http://pkgsrc.se/sysutils/py-borgbackup
  62. .. _cauldron: http://madb.mageia.org/package/show/application/0/release/cauldron/name/borgbackup
  63. .. _.nix file: https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/backup/borgbackup/default.nix
  64. .. _OpenBSD ports: https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/sysutils/borgbackup/
  65. .. _OpenIndiana hipster repository: https://pkg.openindiana.org/hipster/en/search.shtml?token=borg&action=Search
  66. .. _openSUSE official repository: https://software.opensuse.org/package/borgbackup
  67. .. _Homebrew: https://formulae.brew.sh/formula/borgbackup
  68. .. _private Tap: https://github.com/borgbackup/homebrew-tap
  69. .. _Raspbian testing: https://archive.raspbian.org/raspbian/pool/main/b/borgbackup/
  70. .. _Ubuntu packages: https://launchpad.net/ubuntu/+source/borgbackup
  71. .. _Ubuntu PPA: https://launchpad.net/~costamagnagianfranco/+archive/ubuntu/borgbackup
  72. Please ask package maintainers to build a package or, if you can package /
  73. submit it yourself, please help us with that! See :issue:`105` on
  74. github to followup on packaging efforts.
  75. **Current status of package in the repositories**
  76. .. start-badges
  77. |Packaging status|
  78. .. |Packaging status| image:: https://repology.org/badge/vertical-allrepos/borgbackup.svg
  79. :alt: Packaging status
  80. :target: https://repology.org/project/borgbackup/versions
  81. .. end-badges
  82. .. _pyinstaller-binary:
  83. Standalone Binary
  84. -----------------
  85. .. note:: Releases are signed with an OpenPGP key, see
  86. :ref:`security-contact` for more instructions.
  87. Borg x86/x64 amd/intel compatible binaries (generated with `pyinstaller`_)
  88. are available on the releases_ page for the following platforms:
  89. * **Linux**: glibc >= 2.28 (ok for most supported Linux releases).
  90. Older glibc releases are untested and may not work.
  91. * **MacOS**: 10.12 or newer (To avoid signing issues download the file via
  92. command line **or** remove the ``quarantine`` attribute after downloading:
  93. ``$ xattr -dr com.apple.quarantine borg-macosx64.tgz``)
  94. * **FreeBSD**: 12.1 (unknown whether it works for older releases)
  95. ARM binaries are built by Johann Bauer, see: https://borg.bauerj.eu/
  96. To install such a binary, just drop it into a directory in your ``PATH``,
  97. make borg readable and executable for its users and then you can run ``borg``::
  98. sudo cp borg-linux64 /usr/local/bin/borg
  99. sudo chown root:root /usr/local/bin/borg
  100. sudo chmod 755 /usr/local/bin/borg
  101. Optionally you can create a symlink to have ``borgfs`` available, which is an
  102. alias for ``borg mount``::
  103. ln -s /usr/local/bin/borg /usr/local/bin/borgfs
  104. Note that the binary uses /tmp to unpack Borg with all dependencies. It will
  105. fail if /tmp has not enough free space or is mounted with the ``noexec``
  106. option. You can change the temporary directory by setting the ``TEMP``
  107. environment variable before running Borg.
  108. If a new version is released, you will have to manually download it and replace
  109. the old version using the same steps as shown above.
  110. .. _pyinstaller: http://www.pyinstaller.org
  111. .. _releases: https://github.com/borgbackup/borg/releases
  112. .. _source-install:
  113. From Source
  114. -----------
  115. .. note::
  116. Some older Linux systems (like RHEL/CentOS 5) and Python interpreter binaries
  117. compiled to be able to run on such systems (like Python installed via Anaconda)
  118. might miss functions required by Borg.
  119. This issue will be detected early and Borg will abort with a fatal error.
  120. Dependencies
  121. ~~~~~~~~~~~~
  122. To install Borg from a source package (including pip), you have to install the
  123. following dependencies first:
  124. * `Python 3`_ >= 3.8.0, plus development headers.
  125. * OpenSSL_ >= 1.0.0, plus development headers.
  126. * libacl_ (which depends on libattr_), both plus development headers.
  127. * We have bundled code of the following packages, but borg by default (see
  128. setup.py if you want to change that) prefers a shared library if it can
  129. be found on the system (lib + dev headers) at build time:
  130. - liblz4_ >= 1.7.0 (r129)
  131. - libzstd_ >= 1.3.0
  132. - libxxhash >= 0.8.1 (0.8.0 might work also)
  133. * pkg-config (cli tool) and pkgconfig python package (borg uses these to
  134. discover header and library location - if it can't import pkgconfig and
  135. is not pointed to header/library locations via env vars [see setup.py],
  136. it will fall back to using the bundled code, see above).
  137. **These must be present before invoking setup.py!**
  138. * some other Python dependencies, pip will automatically install them for you.
  139. * optionally, if you wish to mount an archive as a FUSE filesystem, you need
  140. a FUSE implementation for Python:
  141. - Either pyfuse3_ (preferably, newer and maintained) or llfuse_ (older,
  142. unmaintained now). See also the BORG_FUSE_IMPL env variable.
  143. - See setup.py about the version requirements.
  144. If you have troubles finding the right package names, have a look at the
  145. distribution specific sections below or the Vagrantfile in the git repository,
  146. which contains installation scripts for a number of operating systems.
  147. In the following, the steps needed to install the dependencies are listed for a
  148. selection of platforms. If your distribution is not covered by these
  149. instructions, try to use your package manager to install the dependencies. On
  150. FreeBSD, you may need to get a recent enough OpenSSL version from FreeBSD
  151. ports.
  152. After you have installed the dependencies, you can proceed with steps outlined
  153. under :ref:`pip-installation`.
  154. Debian / Ubuntu
  155. +++++++++++++++
  156. Install the dependencies with development headers::
  157. sudo apt-get install python3 python3-dev python3-pip python3-virtualenv \
  158. libacl1-dev libacl1 \
  159. libssl-dev \
  160. liblz4-dev libzstd-dev libxxhash-dev \
  161. build-essential \
  162. pkg-config python3-pkgconfig
  163. sudo apt-get install libfuse-dev fuse # needed for llfuse
  164. sudo apt-get install libfuse3-dev fuse3 # needed for pyfuse3
  165. In case you get complaints about permission denied on ``/etc/fuse.conf``: on
  166. Ubuntu this means your user is not in the ``fuse`` group. Add yourself to that
  167. group, log out and log in again.
  168. Fedora
  169. ++++++
  170. Install the dependencies with development headers::
  171. sudo dnf install python3 python3-devel python3-pip python3-virtualenv \
  172. libacl-devel libacl \
  173. openssl-devel \
  174. lz4-devel libzstd-devel xxhash-devel \
  175. pkgconf python3-pkgconfig
  176. sudo dnf install gcc gcc-c++ redhat-rpm-config
  177. sudo dnf install fuse-devel fuse # needed for llfuse
  178. sudo dnf install fuse3-devel fuse3 # needed for pyfuse3
  179. openSUSE Tumbleweed / Leap
  180. ++++++++++++++++++++++++++
  181. Install the dependencies automatically using zypper::
  182. sudo zypper source-install --build-deps-only borgbackup
  183. Alternatively, you can enumerate all build dependencies in the command line::
  184. sudo zypper install python3 python3-devel \
  185. libacl-devel openssl-devel \
  186. libxxhash-devel \
  187. python3-Cython python3-Sphinx python3-msgpack-python python3-pkgconfig pkgconf \
  188. python3-pytest python3-setuptools python3-setuptools_scm \
  189. python3-sphinx_rtd_theme gcc gcc-c++
  190. sudo zypper install python3-llfuse # llfuse
  191. macOS
  192. +++++
  193. When installing via Homebrew_, dependencies are installed automatically. To install
  194. dependencies manually::
  195. brew install python3 openssl zstd lz4 xxhash
  196. brew install pkg-config
  197. pip3 install virtualenv pkgconfig
  198. For FUSE support to mount the backup archives, you need at least version 3.0 of
  199. macFUSE, which is available via `github
  200. <https://github.com/osxfuse/osxfuse/releases/latest>`__, or Homebrew::
  201. brew install --cask macfuse
  202. When installing Borg via ``pip``, be sure to install the ``llfuse`` extra,
  203. since macFUSE only supports FUSE API v2. Also, since Homebrew won't link
  204. the installed ``openssl`` formula, point pkg-config to the correct path::
  205. PKG_CONFIG_PATH="/usr/local/opt/openssl@1.1/lib/pkgconfig" pip install borgbackup[llfuse]
  206. Be aware that for all recent macOS releases you must authorize full disk access.
  207. It is no longer sufficient to run borg backups as root. If you have not yet
  208. granted full disk access, and you run Borg backup from cron, you will see
  209. messages such as::
  210. /Users/you/Pictures/Photos Library.photoslibrary: scandir: [Errno 1] Operation not permitted:
  211. To fix this problem, you should grant full disk access to cron, and to your
  212. Terminal application. More information `can be found here
  213. <https://osxdaily.com/2020/04/27/fix-cron-permissions-macos-full-disk-access/>`__.
  214. FreeBSD
  215. ++++++++
  216. Listed below are packages you will need to install Borg, its dependencies,
  217. and commands to make FUSE work for using the mount command.
  218. ::
  219. pkg install -y python3 pkgconf
  220. pkg install openssl
  221. pkg install liblz4 zstd xxhash
  222. pkg install fusefs-libs # needed for llfuse
  223. pkg install -y git
  224. python3 -m ensurepip # to install pip for Python3
  225. To use the mount command:
  226. echo 'fuse_load="YES"' >> /boot/loader.conf
  227. echo 'vfs.usermount=1' >> /etc/sysctl.conf
  228. kldload fuse
  229. sysctl vfs.usermount=1
  230. Windows 10's Linux Subsystem
  231. ++++++++++++++++++++++++++++
  232. .. note::
  233. Running under Windows 10's Linux Subsystem is experimental and has not been tested much yet.
  234. Just follow the Ubuntu Linux installation steps. You can omit the FUSE stuff, it won't work anyway.
  235. Cygwin
  236. ++++++
  237. .. note::
  238. Running under Cygwin is experimental and has not been tested much yet.
  239. Use the Cygwin installer to install the dependencies::
  240. python38 python38-devel python38-pkgconfig
  241. python38-setuptools python38-pip python38-wheel python38-virtualenv
  242. libssl-devel libxxhash-devel liblz4-devel libzstd-devel
  243. binutils gcc-g++ git make openssh
  244. .. _pip-installation:
  245. Using pip
  246. ~~~~~~~~~
  247. Ensure to install the dependencies as described within :ref:`source-install`.
  248. Virtualenv_ can be used to build and install Borg without affecting
  249. the system Python or requiring root access. Using a virtual environment is
  250. optional, but recommended except for the most simple use cases.
  251. .. note::
  252. If you install into a virtual environment, you need to **activate** it
  253. first (``source borg-env/bin/activate``), before running ``borg``.
  254. Alternatively, symlink ``borg-env/bin/borg`` into some directory that is in
  255. your ``PATH`` so you can just run ``borg``.
  256. This will use ``pip`` to install the latest release from PyPi::
  257. virtualenv --python=python3 borg-env
  258. source borg-env/bin/activate
  259. # might be required if your tools are outdated
  260. pip install -U pip setuptools wheel
  261. # pkgconfig MUST be available before borg is installed!
  262. pip install pkgconfig
  263. # install Borg + Python dependencies into virtualenv
  264. pip install borgbackup
  265. # or alternatively (if you want FUSE support):
  266. pip install borgbackup[llfuse] # to use llfuse
  267. pip install borgbackup[pyfuse3] # to use pyfuse3
  268. To upgrade Borg to a new version later, run the following after
  269. activating your virtual environment::
  270. pip install -U borgbackup # or ... borgbackup[llfuse/pyfuse3]
  271. When doing manual pip installation, man pages are not automatically
  272. installed. You can run these commands to install the man pages
  273. locally::
  274. # get borg from github
  275. git clone https://github.com/borgbackup/borg.git borg
  276. # Install the files with proper permissions
  277. install -D -m 0644 borg/docs/man/borg*.1* $HOME/.local/share/man/man1/borg.1
  278. # Update the man page cache
  279. mandb
  280. .. _git-installation:
  281. Using git
  282. ~~~~~~~~~
  283. Ensure to install the dependencies as described within :ref:`source-install`.
  284. This uses latest, unreleased development code from git.
  285. While we try not to break master, there are no guarantees on anything.
  286. ::
  287. # get borg from github
  288. git clone https://github.com/borgbackup/borg.git
  289. # create a virtual environment
  290. virtualenv --python=$(which python3) borg-env
  291. source borg-env/bin/activate # always before using!
  292. # install borg + dependencies into virtualenv
  293. cd borg
  294. pip install -r requirements.d/development.txt
  295. pip install -r requirements.d/docs.txt # optional, to build the docs
  296. pip install -e . # in-place editable mode
  297. or
  298. pip install -e .[pyfuse3] # in-place editable mode, use pyfuse3
  299. or
  300. pip install -e .[llfuse] # in-place editable mode, use llfuse
  301. # optional: run all the tests, on all installed Python versions
  302. # requires fakeroot, available through your package manager
  303. fakeroot -u tox --skip-missing-interpreters
  304. By default the system installation of python will be used.
  305. If you need to use a different version of Python you can install this using ``pyenv``:
  306. ::
  307. ...
  308. # create a virtual environment
  309. pyenv install 3.8.0 # minimum, preferably use something more recent!
  310. pyenv global 3.8.0
  311. pyenv local 3.8.0
  312. virtualenv --python=${pyenv which python} borg-env
  313. source borg-env/bin/activate # always before using!
  314. ...
  315. .. note:: As a developer or power user, you always want to use a virtual environment.