00_README.txt 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. Binary BorgBackup builds
  2. ========================
  3. The binaries are supposed to work on the specified platform without installing
  4. any dependencies.
  5. Download the correct files
  6. --------------------------
  7. amd64 / x86_64 architecture
  8. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  9. borg-linux-glibc236 Linux (built on Debian 12 "Bookworm" with glibc 2.36)
  10. borg-linux-glibc231 Linux (built on Debian 11 "Bullseye" with glibc 2.31)
  11. borg-linux-glibc228 Linux (built on Debian 10 "Buster" with glibc 2.28)
  12. Note: you can also try them on other Linuxes with other glibc
  13. versions - as long as the glibc is compatible, they will work.
  14. If it doesn't work, try a borg 1.2.x binary.
  15. borg-macos1012 macOS (built on macOS Sierra 10.12 with latest macFUSE from brew)
  16. To avoid signing issues download the file via command line OR
  17. remove the "quarantine" attribute after downloading:
  18. $ xattr -dr com.apple.quarantine borg-macos.tgz
  19. borg-freebsd13 FreeBSD (built on FreeBSD 13)
  20. borg-freebsd14 FreeBSD (built on FreeBSD 14)
  21. *.tgz similar to above, but built as a directory with files,
  22. not as a single self-extracting binary. using the directory
  23. build is faster and doesn't need as much space in the temp
  24. directory as the one-file build.
  25. *.asc GnuPG signatures for *
  26. Verifying your download
  27. -----------------------
  28. Please check the GPG signature to make sure you received the binary as I have
  29. built it.
  30. To check the GPG signature, download both the binary and the corresponding
  31. *.asc file and then (on the shell) type, e.g.:
  32. gpg --recv-keys 9F88FB52FAF7B393
  33. gpg --verify borg-freebsd.asc borg-freebsd
  34. The files are signed by:
  35. Thomas Waldmann <tw@waldmann-edv.de>
  36. GPG key fingerprint: 6D5B EF9A DD20 7580 5747 B70F 9F88 FB52 FAF7 B393
  37. My fingerprint is also in the footer of all my borgbackup mailing list posts.
  38. Installing
  39. ----------
  40. It is suggested that you rename or symlink the binary to just "borg".
  41. If you need "borgfs", just also symlink it to the same binary, it will
  42. detect internally under which name it was invoked.
  43. On UNIX-like platforms, /usr/local/bin/ or ~/bin/ is a nice place for it,
  44. but you can invoke it from every place by giving a full path to it.
  45. Make sure the file is readable and executable (chmod +rx borg on UNIX-like
  46. platforms).
  47. Reporting issues
  48. ----------------
  49. Please first check the FAQ and whether a github issue already exists.
  50. If you find a NEW issue, please open a ticket on our issue tracker:
  51. https://github.com/borgbackup/borg/issues/
  52. There, please give:
  53. - the version number (it is displayed if you invoke borg -V)
  54. - the sha256sum of the binary
  55. - a good description of what the issue is
  56. - a good description of how to reproduce your issue
  57. - a traceback with system info (if you have one)
  58. - your precise platform (CPU, 32/64bit?), OS, distribution, release
  59. - your python and (g)libc version