installation.rst 18 KB

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