2
0

borg.1 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889
  1. .\" Man page generated from reStructuredText.
  2. .
  3. .TH BORG 1 "2020-04-12" "" "borg backup tool"
  4. .SH NAME
  5. borg \- deduplicating and encrypting backup tool
  6. .
  7. .nr rst2man-indent-level 0
  8. .
  9. .de1 rstReportMargin
  10. \\$1 \\n[an-margin]
  11. level \\n[rst2man-indent-level]
  12. level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
  13. -
  14. \\n[rst2man-indent0]
  15. \\n[rst2man-indent1]
  16. \\n[rst2man-indent2]
  17. ..
  18. .de1 INDENT
  19. .\" .rstReportMargin pre:
  20. . RS \\$1
  21. . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
  22. . nr rst2man-indent-level +1
  23. .\" .rstReportMargin post:
  24. ..
  25. .de UNINDENT
  26. . RE
  27. .\" indent \\n[an-margin]
  28. .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
  29. .nr rst2man-indent-level -1
  30. .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
  31. .in \\n[rst2man-indent\\n[rst2man-indent-level]]u
  32. ..
  33. .SH SYNOPSIS
  34. .sp
  35. borg [common options] <command> [options] [arguments]
  36. .SH DESCRIPTION
  37. .\" we don't include the README.rst here since we want to keep this terse.
  38. .
  39. .sp
  40. BorgBackup (short: Borg) is a deduplicating backup program.
  41. Optionally, it supports compression and authenticated encryption.
  42. .sp
  43. The main goal of Borg is to provide an efficient and secure way to backup data.
  44. The data deduplication technique used makes Borg suitable for daily backups
  45. since only changes are stored.
  46. The authenticated encryption technique makes it suitable for backups to not
  47. fully trusted targets.
  48. .sp
  49. Borg stores a set of files in an \fIarchive\fP\&. A \fIrepository\fP is a collection
  50. of \fIarchives\fP\&. The format of repositories is Borg\-specific. Borg does not
  51. distinguish archives from each other in any way other than their name,
  52. it does not matter when or where archives were created (e.g. different hosts).
  53. .SH EXAMPLES
  54. .SS A step\-by\-step example
  55. .INDENT 0.0
  56. .IP 1. 3
  57. Before a backup can be made a repository has to be initialized:
  58. .INDENT 3.0
  59. .INDENT 3.5
  60. .sp
  61. .nf
  62. .ft C
  63. $ borg init \-\-encryption=repokey /path/to/repo
  64. .ft P
  65. .fi
  66. .UNINDENT
  67. .UNINDENT
  68. .IP 2. 3
  69. Backup the \fB~/src\fP and \fB~/Documents\fP directories into an archive called
  70. \fIMonday\fP:
  71. .INDENT 3.0
  72. .INDENT 3.5
  73. .sp
  74. .nf
  75. .ft C
  76. $ borg create /path/to/repo::Monday ~/src ~/Documents
  77. .ft P
  78. .fi
  79. .UNINDENT
  80. .UNINDENT
  81. .IP 3. 3
  82. The next day create a new archive called \fITuesday\fP:
  83. .INDENT 3.0
  84. .INDENT 3.5
  85. .sp
  86. .nf
  87. .ft C
  88. $ borg create \-\-stats /path/to/repo::Tuesday ~/src ~/Documents
  89. .ft P
  90. .fi
  91. .UNINDENT
  92. .UNINDENT
  93. .sp
  94. This backup will be a lot quicker and a lot smaller since only new never
  95. before seen data is stored. The \fB\-\-stats\fP option causes Borg to
  96. output statistics about the newly created archive such as the amount of unique
  97. data (not shared with other archives):
  98. .INDENT 3.0
  99. .INDENT 3.5
  100. .sp
  101. .nf
  102. .ft C
  103. \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
  104. Archive name: Tuesday
  105. Archive fingerprint: bd31004d58f51ea06ff735d2e5ac49376901b21d58035f8fb05dbf866566e3c2
  106. Time (start): Tue, 2016\-02\-16 18:15:11
  107. Time (end): Tue, 2016\-02\-16 18:15:11
  108. Duration: 0.19 seconds
  109. Number of files: 127
  110. \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
  111. Original size Compressed size Deduplicated size
  112. This archive: 4.16 MB 4.17 MB 26.78 kB
  113. All archives: 8.33 MB 8.34 MB 4.19 MB
  114. Unique chunks Total chunks
  115. Chunk index: 132 261
  116. \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
  117. .ft P
  118. .fi
  119. .UNINDENT
  120. .UNINDENT
  121. .IP 4. 3
  122. List all archives in the repository:
  123. .INDENT 3.0
  124. .INDENT 3.5
  125. .sp
  126. .nf
  127. .ft C
  128. $ borg list /path/to/repo
  129. Monday Mon, 2016\-02\-15 19:14:44
  130. Tuesday Tue, 2016\-02\-16 19:15:11
  131. .ft P
  132. .fi
  133. .UNINDENT
  134. .UNINDENT
  135. .IP 5. 3
  136. List the contents of the \fIMonday\fP archive:
  137. .INDENT 3.0
  138. .INDENT 3.5
  139. .sp
  140. .nf
  141. .ft C
  142. $ borg list /path/to/repo::Monday
  143. drwxr\-xr\-x user group 0 Mon, 2016\-02\-15 18:22:30 home/user/Documents
  144. \-rw\-r\-\-r\-\- user group 7961 Mon, 2016\-02\-15 18:22:30 home/user/Documents/Important.doc
  145. \&...
  146. .ft P
  147. .fi
  148. .UNINDENT
  149. .UNINDENT
  150. .IP 6. 3
  151. Restore the \fIMonday\fP archive by extracting the files relative to the current directory:
  152. .INDENT 3.0
  153. .INDENT 3.5
  154. .sp
  155. .nf
  156. .ft C
  157. $ borg extract /path/to/repo::Monday
  158. .ft P
  159. .fi
  160. .UNINDENT
  161. .UNINDENT
  162. .IP 7. 3
  163. Recover disk space by manually deleting the \fIMonday\fP archive:
  164. .INDENT 3.0
  165. .INDENT 3.5
  166. .sp
  167. .nf
  168. .ft C
  169. $ borg delete /path/to/repo::Monday
  170. .ft P
  171. .fi
  172. .UNINDENT
  173. .UNINDENT
  174. .UNINDENT
  175. .sp
  176. \fBNOTE:\fP
  177. .INDENT 0.0
  178. .INDENT 3.5
  179. Borg is quiet by default (it works on WARNING log level).
  180. You can use options like \fB\-\-progress\fP or \fB\-\-list\fP to get specific
  181. reports during command execution. You can also add the \fB\-v\fP (or
  182. \fB\-\-verbose\fP or \fB\-\-info\fP) option to adjust the log level to INFO to
  183. get other informational messages.
  184. .UNINDENT
  185. .UNINDENT
  186. .SH NOTES
  187. .SS Positional Arguments and Options: Order matters
  188. .sp
  189. Borg only supports taking options (\fB\-s\fP and \fB\-\-progress\fP in the example)
  190. to the left or right of all positional arguments (\fBrepo::archive\fP and \fBpath\fP
  191. in the example), but not in between them:
  192. .INDENT 0.0
  193. .INDENT 3.5
  194. .sp
  195. .nf
  196. .ft C
  197. borg create \-s \-\-progress repo::archive path # good and preferred
  198. borg create repo::archive path \-s \-\-progress # also works
  199. borg create \-s repo::archive path \-\-progress # works, but ugly
  200. borg create repo::archive \-s \-\-progress path # BAD
  201. .ft P
  202. .fi
  203. .UNINDENT
  204. .UNINDENT
  205. .sp
  206. This is due to a problem in the argparse module: \fI\%http://bugs.python.org/issue15112\fP
  207. .SS Repository URLs
  208. .sp
  209. \fBLocal filesystem\fP (or locally mounted network filesystem):
  210. .sp
  211. \fB/path/to/repo\fP \- filesystem path to repo directory, absolute path
  212. .sp
  213. \fBpath/to/repo\fP \- filesystem path to repo directory, relative path
  214. .sp
  215. Also, stuff like \fB~/path/to/repo\fP or \fB~other/path/to/repo\fP works (this is
  216. expanded by your shell).
  217. .sp
  218. Note: you may also prepend a \fBfile://\fP to a filesystem path to get URL style.
  219. .sp
  220. \fBRemote repositories\fP accessed via ssh \fI\%user@host\fP:
  221. .sp
  222. \fBuser@host:/path/to/repo\fP \- remote repo, absolute path
  223. .sp
  224. \fBssh://user@host:port/path/to/repo\fP \- same, alternative syntax, port can be given
  225. .sp
  226. \fBRemote repositories with relative paths\fP can be given using this syntax:
  227. .sp
  228. \fBuser@host:path/to/repo\fP \- path relative to current directory
  229. .sp
  230. \fBuser@host:~/path/to/repo\fP \- path relative to user\(aqs home directory
  231. .sp
  232. \fBuser@host:~other/path/to/repo\fP \- path relative to other\(aqs home directory
  233. .sp
  234. Note: giving \fBuser@host:/./path/to/repo\fP or \fBuser@host:/~/path/to/repo\fP or
  235. \fBuser@host:/~other/path/to/repo\fP is also supported, but not required here.
  236. .sp
  237. \fBRemote repositories with relative paths, alternative syntax with port\fP:
  238. .sp
  239. \fBssh://user@host:port/./path/to/repo\fP \- path relative to current directory
  240. .sp
  241. \fBssh://user@host:port/~/path/to/repo\fP \- path relative to user\(aqs home directory
  242. .sp
  243. \fBssh://user@host:port/~other/path/to/repo\fP \- path relative to other\(aqs home directory
  244. .sp
  245. If you frequently need the same repo URL, it is a good idea to set the
  246. \fBBORG_REPO\fP environment variable to set a default for the repo URL:
  247. .INDENT 0.0
  248. .INDENT 3.5
  249. .sp
  250. .nf
  251. .ft C
  252. export BORG_REPO=\(aqssh://user@host:port/path/to/repo\(aq
  253. .ft P
  254. .fi
  255. .UNINDENT
  256. .UNINDENT
  257. .sp
  258. Then just leave away the repo URL if only a repo URL is needed and you want
  259. to use the default \- it will be read from BORG_REPO then.
  260. .sp
  261. Use \fB::\fP syntax to give the repo URL when syntax requires giving a positional
  262. argument for the repo (e.g. \fBborg mount :: /mnt\fP).
  263. .SS Repository / Archive Locations
  264. .sp
  265. Many commands want either a repository (just give the repo URL, see above) or
  266. an archive location, which is a repo URL followed by \fB::archive_name\fP\&.
  267. .sp
  268. Archive names must not contain the \fB/\fP (slash) character. For simplicity,
  269. maybe also avoid blanks or other characters that have special meaning on the
  270. shell or in a filesystem (borg mount will use the archive name as directory
  271. name).
  272. .sp
  273. If you have set BORG_REPO (see above) and an archive location is needed, use
  274. \fB::archive_name\fP \- the repo URL part is then read from BORG_REPO.
  275. .SS Logging
  276. .sp
  277. Borg writes all log output to stderr by default. But please note that something
  278. showing up on stderr does \fInot\fP indicate an error condition just because it is
  279. on stderr. Please check the log levels of the messages and the return code of
  280. borg for determining error, warning or success conditions.
  281. .sp
  282. If you want to capture the log output to a file, just redirect it:
  283. .INDENT 0.0
  284. .INDENT 3.5
  285. .sp
  286. .nf
  287. .ft C
  288. borg create repo::archive myfiles 2>> logfile
  289. .ft P
  290. .fi
  291. .UNINDENT
  292. .UNINDENT
  293. .sp
  294. Custom logging configurations can be implemented via BORG_LOGGING_CONF.
  295. .sp
  296. The log level of the builtin logging configuration defaults to WARNING.
  297. This is because we want Borg to be mostly silent and only output
  298. warnings, errors and critical messages, unless output has been requested
  299. by supplying an option that implies output (e.g. \fB\-\-list\fP or \fB\-\-progress\fP).
  300. .sp
  301. Log levels: DEBUG < INFO < WARNING < ERROR < CRITICAL
  302. .sp
  303. Use \fB\-\-debug\fP to set DEBUG log level \-
  304. to get debug, info, warning, error and critical level output.
  305. .sp
  306. Use \fB\-\-info\fP (or \fB\-v\fP or \fB\-\-verbose\fP) to set INFO log level \-
  307. to get info, warning, error and critical level output.
  308. .sp
  309. Use \fB\-\-warning\fP (default) to set WARNING log level \-
  310. to get warning, error and critical level output.
  311. .sp
  312. Use \fB\-\-error\fP to set ERROR log level \-
  313. to get error and critical level output.
  314. .sp
  315. Use \fB\-\-critical\fP to set CRITICAL log level \-
  316. to get critical level output.
  317. .sp
  318. While you can set misc. log levels, do not expect that every command will
  319. give different output on different log levels \- it\(aqs just a possibility.
  320. .sp
  321. \fBWARNING:\fP
  322. .INDENT 0.0
  323. .INDENT 3.5
  324. Options \fB\-\-critical\fP and \fB\-\-error\fP are provided for completeness,
  325. their usage is not recommended as you might miss important information.
  326. .UNINDENT
  327. .UNINDENT
  328. .SS Return codes
  329. .sp
  330. Borg can exit with the following return codes (rc):
  331. .TS
  332. center;
  333. |l|l|.
  334. _
  335. T{
  336. Return code
  337. T} T{
  338. Meaning
  339. T}
  340. _
  341. T{
  342. 0
  343. T} T{
  344. success (logged as INFO)
  345. T}
  346. _
  347. T{
  348. 1
  349. T} T{
  350. warning (operation reached its normal end, but there were warnings \-\-
  351. you should check the log, logged as WARNING)
  352. T}
  353. _
  354. T{
  355. 2
  356. T} T{
  357. error (like a fatal error, a local or remote exception, the operation
  358. did not reach its normal end, logged as ERROR)
  359. T}
  360. _
  361. T{
  362. 128+N
  363. T} T{
  364. killed by signal N (e.g. 137 == kill \-9)
  365. T}
  366. _
  367. .TE
  368. .sp
  369. If you use \fB\-\-show\-rc\fP, the return code is also logged at the indicated
  370. level as the last log entry.
  371. .SS Environment Variables
  372. .sp
  373. Borg uses some environment variables for automation:
  374. .INDENT 0.0
  375. .TP
  376. .B General:
  377. .INDENT 7.0
  378. .TP
  379. .B BORG_REPO
  380. When set, use the value to give the default repository location. If a command needs an archive
  381. parameter, you can abbreviate as \fB::archive\fP\&. If a command needs a repository parameter, you
  382. can either leave it away or abbreviate as \fB::\fP, if a positional parameter is required.
  383. .TP
  384. .B BORG_PASSPHRASE
  385. When set, use the value to answer the passphrase question for encrypted repositories.
  386. It is used when a passphrase is needed to access an encrypted repo as well as when a new
  387. passphrase should be initially set when initializing an encrypted repo.
  388. See also BORG_NEW_PASSPHRASE.
  389. .TP
  390. .B BORG_PASSCOMMAND
  391. When set, use the standard output of the command (trailing newlines are stripped) to answer the
  392. passphrase question for encrypted repositories.
  393. It is used when a passphrase is needed to access an encrypted repo as well as when a new
  394. passphrase should be initially set when initializing an encrypted repo. Note that the command
  395. is executed without a shell. So variables, like \fB$HOME\fP will work, but \fB~\fP won\(aqt.
  396. If BORG_PASSPHRASE is also set, it takes precedence.
  397. See also BORG_NEW_PASSPHRASE.
  398. .TP
  399. .B BORG_PASSPHRASE_FD
  400. When set, specifies a file descriptor to read a passphrase
  401. from. Programs starting borg may choose to open an anonymous pipe
  402. and use it to pass a passphrase. This is safer than passing via
  403. BORG_PASSPHRASE, because on some systems (e.g. Linux) environment
  404. can be examined by other processes.
  405. If BORG_PASSPHRASE or BORG_PASSCOMMAND are also set, they take precedence.
  406. .TP
  407. .B BORG_NEW_PASSPHRASE
  408. When set, use the value to answer the passphrase question when a \fBnew\fP passphrase is asked for.
  409. This variable is checked first. If it is not set, BORG_PASSPHRASE and BORG_PASSCOMMAND will also
  410. be checked.
  411. Main usecase for this is to fully automate \fBborg change\-passphrase\fP\&.
  412. .TP
  413. .B BORG_DISPLAY_PASSPHRASE
  414. When set, use the value to answer the "display the passphrase for verification" question when defining a new passphrase for encrypted repositories.
  415. .TP
  416. .B BORG_HOSTNAME_IS_UNIQUE=no
  417. Borg assumes that it can derive a unique hostname / identity (see \fBborg debug info\fP).
  418. If this is not the case or you do not want Borg to automatically remove stale locks,
  419. set this to \fIno\fP\&.
  420. .TP
  421. .B BORG_HOST_ID
  422. Borg usually computes a host id from the FQDN plus the results of \fBuuid.getnode()\fP (which usually returns
  423. a unique id based on the MAC address of the network interface. Except if that MAC happens to be all\-zero \- in
  424. that case it returns a random value, which is not what we want (because it kills automatic stale lock removal).
  425. So, if you have a all\-zero MAC address or other reasons to better externally control the host id, just set this
  426. environment variable to a unique value. If all your FQDNs are unique, you can just use the FQDN. If not,
  427. use \fI\%fqdn@uniqueid\fP\&.
  428. .TP
  429. .B BORG_LOGGING_CONF
  430. When set, use the given filename as \fI\%INI\fP\-style logging configuration.
  431. A basic example conf can be found at \fBdocs/misc/logging.conf\fP\&.
  432. .TP
  433. .B BORG_RSH
  434. When set, use this command instead of \fBssh\fP\&. This can be used to specify ssh options, such as
  435. a custom identity file \fBssh \-i /path/to/private/key\fP\&. See \fBman ssh\fP for other options. Using
  436. the \fB\-\-rsh CMD\fP commandline option overrides the environment variable.
  437. .TP
  438. .B BORG_REMOTE_PATH
  439. When set, use the given path as borg executable on the remote (defaults to "borg" if unset).
  440. Using \fB\-\-remote\-path PATH\fP commandline option overrides the environment variable.
  441. .TP
  442. .B BORG_FILES_CACHE_TTL
  443. When set to a numeric value, this determines the maximum "time to live" for the files cache
  444. entries (default: 20). The files cache is used to quickly determine whether a file is unchanged.
  445. The FAQ explains this more detailed in: \fIalways_chunking\fP
  446. .TP
  447. .B BORG_SHOW_SYSINFO
  448. When set to no (default: yes), system information (like OS, Python version, ...) in
  449. exceptions is not shown.
  450. Please only use for good reasons as it makes issues harder to analyze.
  451. .TP
  452. .B BORG_WORKAROUNDS
  453. A list of comma separated strings that trigger workarounds in borg,
  454. e.g. to work around bugs in other software.
  455. .sp
  456. Currently known strings are:
  457. .INDENT 7.0
  458. .TP
  459. .B basesyncfile
  460. Use the more simple BaseSyncFile code to avoid issues with sync_file_range.
  461. You might need this to run borg on WSL (Windows Subsystem for Linux) or
  462. in systemd.nspawn containers on some architectures (e.g. ARM).
  463. Using this does not affect data safety, but might result in a more bursty
  464. write to disk behaviour (not continuously streaming to disk).
  465. .UNINDENT
  466. .UNINDENT
  467. .TP
  468. .B Some automatic "answerers" (if set, they automatically answer confirmation questions):
  469. .INDENT 7.0
  470. .TP
  471. .B BORG_UNKNOWN_UNENCRYPTED_REPO_ACCESS_IS_OK=no (or =yes)
  472. For "Warning: Attempting to access a previously unknown unencrypted repository"
  473. .TP
  474. .B BORG_RELOCATED_REPO_ACCESS_IS_OK=no (or =yes)
  475. For "Warning: The repository at location ... was previously located at ..."
  476. .TP
  477. .B BORG_CHECK_I_KNOW_WHAT_I_AM_DOING=NO (or =YES)
  478. For "Warning: \(aqcheck \-\-repair\(aq is an experimental feature that might result in data loss."
  479. .TP
  480. .B BORG_DELETE_I_KNOW_WHAT_I_AM_DOING=NO (or =YES)
  481. For "You requested to completely DELETE the repository \fIincluding\fP all archives it contains:"
  482. .TP
  483. .B BORG_RECREATE_I_KNOW_WHAT_I_AM_DOING=NO (or =YES)
  484. For "recreate is an experimental feature."
  485. .UNINDENT
  486. .sp
  487. Note: answers are case sensitive. setting an invalid answer value might either give the default
  488. answer or ask you interactively, depending on whether retries are allowed (they by default are
  489. allowed). So please test your scripts interactively before making them a non\-interactive script.
  490. .UNINDENT
  491. .INDENT 0.0
  492. .TP
  493. .B Directories and files:
  494. .INDENT 7.0
  495. .TP
  496. .B BORG_BASE_DIR
  497. Defaults to \fB$HOME\fP or \fB~$USER\fP or \fB~\fP (in that order).
  498. If you want to move all borg\-specific folders to a custom path at once, all you need to do is
  499. to modify \fBBORG_BASE_DIR\fP: the other paths for cache, config etc. will adapt accordingly
  500. (assuming you didn\(aqt set them to a different custom value).
  501. .TP
  502. .B BORG_CACHE_DIR
  503. Defaults to \fB$BORG_BASE_DIR/.cache/borg\fP\&. If \fBBORG_BASE_DIR\fP is not explicitly set while
  504. \fI\%XDG env var\fP \fBXDG_CACHE_HOME\fP is set, then \fB$XDG_CACHE_HOME/borg\fP is being used instead.
  505. This directory contains the local cache and might need a lot
  506. of space for dealing with big repositories. Make sure you\(aqre aware of the associated
  507. security aspects of the cache location: \fIcache_security\fP
  508. .TP
  509. .B BORG_CONFIG_DIR
  510. Defaults to \fB$BORG_BASE_DIR/.config/borg\fP\&. If \fBBORG_BASE_DIR\fP is not explicitly set while
  511. \fI\%XDG env var\fP \fBXDG_CONFIG_HOME\fP is set, then \fB$XDG_CONFIG_HOME/borg\fP is being used instead.
  512. This directory contains all borg configuration directories, see the FAQ
  513. for a security advisory about the data in this directory: \fIhome_config_borg\fP
  514. .TP
  515. .B BORG_SECURITY_DIR
  516. Defaults to \fB$BORG_CONFIG_DIR/security\fP\&.
  517. This directory contains information borg uses to track its usage of NONCES ("numbers used
  518. once" \- usually in encryption context) and other security relevant data.
  519. .TP
  520. .B BORG_KEYS_DIR
  521. Defaults to \fB$BORG_CONFIG_DIR/keys\fP\&.
  522. This directory contains keys for encrypted repositories.
  523. .TP
  524. .B BORG_KEY_FILE
  525. When set, use the given filename as repository key file.
  526. .TP
  527. .B TMPDIR
  528. This is where temporary files are stored (might need a lot of temporary space for some
  529. operations), see \fI\%tempfile\fP for details.
  530. .UNINDENT
  531. .TP
  532. .B Building:
  533. .INDENT 7.0
  534. .TP
  535. .B BORG_OPENSSL_PREFIX
  536. Adds given OpenSSL header file directory to the default locations (setup.py).
  537. .TP
  538. .B BORG_LIBLZ4_PREFIX
  539. Adds given prefix directory to the default locations. If a \(aqinclude/lz4.h\(aq is found Borg
  540. will be linked against the system liblz4 instead of a bundled implementation. (setup.py)
  541. .TP
  542. .B BORG_LIBB2_PREFIX
  543. Adds given prefix directory to the default locations. If a \(aqinclude/blake2.h\(aq is found Borg
  544. will be linked against the system libb2 instead of a bundled implementation. (setup.py)
  545. .TP
  546. .B BORG_LIBZSTD_PREFIX
  547. Adds given prefix directory to the default locations. If a \(aqinclude/zstd.h\(aq is found Borg
  548. will be linked against the system libzstd instead of a bundled implementation. (setup.py)
  549. .UNINDENT
  550. .UNINDENT
  551. .sp
  552. Please note:
  553. .INDENT 0.0
  554. .IP \(bu 2
  555. Be very careful when using the "yes" sayers, the warnings with prompt exist for your / your data\(aqs security/safety.
  556. .IP \(bu 2
  557. Also be very careful when putting your passphrase into a script, make sure it has appropriate file permissions (e.g.
  558. mode 600, root:root).
  559. .UNINDENT
  560. .SS File systems
  561. .sp
  562. We strongly recommend against using Borg (or any other database\-like
  563. software) on non\-journaling file systems like FAT, since it is not
  564. possible to assume any consistency in case of power failures (or a
  565. sudden disconnect of an external drive or similar failures).
  566. .sp
  567. While Borg uses a data store that is resilient against these failures
  568. when used on journaling file systems, it is not possible to guarantee
  569. this with some hardware \-\- independent of the software used. We don\(aqt
  570. know a list of affected hardware.
  571. .sp
  572. If you are suspicious whether your Borg repository is still consistent
  573. and readable after one of the failures mentioned above occurred, run
  574. \fBborg check \-\-verify\-data\fP to make sure it is consistent.
  575. Requirements for Borg repository file systems.INDENT 0.0
  576. .IP \(bu 2
  577. Long file names
  578. .IP \(bu 2
  579. At least three directory levels with short names
  580. .IP \(bu 2
  581. Typically, file sizes up to a few hundred MB.
  582. Large repositories may require large files (>2 GB).
  583. .IP \(bu 2
  584. Up to 1000 files per directory (10000 for repositories initialized with Borg 1.0)
  585. .IP \(bu 2
  586. mkdir(2) should be atomic, since it is used for locking
  587. .IP \(bu 2
  588. Hardlinks are needed for \fIborg_upgrade\fP \fB\-\-inplace\fP
  589. .UNINDENT
  590. .SS Units
  591. .sp
  592. To display quantities, Borg takes care of respecting the
  593. usual conventions of scale. Disk sizes are displayed in \fI\%decimal\fP, using powers of ten (so
  594. \fBkB\fP means 1000 bytes). For memory usage, \fI\%binary prefixes\fP are used, and are
  595. indicated using the \fI\%IEC binary prefixes\fP,
  596. using powers of two (so \fBKiB\fP means 1024 bytes).
  597. .SS Date and Time
  598. .sp
  599. We format date and time conforming to ISO\-8601, that is: YYYY\-MM\-DD and
  600. HH:MM:SS (24h clock).
  601. .sp
  602. For more information about that, see: \fI\%https://xkcd.com/1179/\fP
  603. .sp
  604. Unless otherwise noted, we display local date and time.
  605. Internally, we store and process date and time as UTC.
  606. .SS Resource Usage
  607. .sp
  608. Borg might use a lot of resources depending on the size of the data set it is dealing with.
  609. .sp
  610. If one uses Borg in a client/server way (with a ssh: repository),
  611. the resource usage occurs in part on the client and in another part on the
  612. server.
  613. .sp
  614. If one uses Borg as a single process (with a filesystem repo),
  615. all the resource usage occurs in that one process, so just add up client +
  616. server to get the approximate resource usage.
  617. .INDENT 0.0
  618. .TP
  619. .B CPU client:
  620. .INDENT 7.0
  621. .IP \(bu 2
  622. \fBborg create:\fP does chunking, hashing, compression, crypto (high CPU usage)
  623. .IP \(bu 2
  624. \fBchunks cache sync:\fP quite heavy on CPU, doing lots of hashtable operations.
  625. .IP \(bu 2
  626. \fBborg extract:\fP crypto, decompression (medium to high CPU usage)
  627. .IP \(bu 2
  628. \fBborg check:\fP similar to extract, but depends on options given.
  629. .IP \(bu 2
  630. \fBborg prune / borg delete archive:\fP low to medium CPU usage
  631. .IP \(bu 2
  632. \fBborg delete repo:\fP done on the server
  633. .UNINDENT
  634. .sp
  635. It won\(aqt go beyond 100% of 1 core as the code is currently single\-threaded.
  636. Especially higher zlib and lzma compression levels use significant amounts
  637. of CPU cycles. Crypto might be cheap on the CPU (if hardware accelerated) or
  638. expensive (if not).
  639. .TP
  640. .B CPU server:
  641. It usually doesn\(aqt need much CPU, it just deals with the key/value store
  642. (repository) and uses the repository index for that.
  643. .sp
  644. borg check: the repository check computes the checksums of all chunks
  645. (medium CPU usage)
  646. borg delete repo: low CPU usage
  647. .TP
  648. .B CPU (only for client/server operation):
  649. When using borg in a client/server way with a \fI\%ssh:\-type\fP repo, the ssh
  650. processes used for the transport layer will need some CPU on the client and
  651. on the server due to the crypto they are doing \- esp. if you are pumping
  652. big amounts of data.
  653. .TP
  654. .B Memory (RAM) client:
  655. The chunks index and the files index are read into memory for performance
  656. reasons. Might need big amounts of memory (see below).
  657. Compression, esp. lzma compression with high levels might need substantial
  658. amounts of memory.
  659. .TP
  660. .B Memory (RAM) server:
  661. The server process will load the repository index into memory. Might need
  662. considerable amounts of memory, but less than on the client (see below).
  663. .TP
  664. .B Chunks index (client only):
  665. Proportional to the amount of data chunks in your repo. Lots of chunks
  666. in your repo imply a big chunks index.
  667. It is possible to tweak the chunker params (see create options).
  668. .TP
  669. .B Files index (client only):
  670. Proportional to the amount of files in your last backups. Can be switched
  671. off (see create options), but next backup might be much slower if you do.
  672. The speed benefit of using the files cache is proportional to file size.
  673. .TP
  674. .B Repository index (server only):
  675. Proportional to the amount of data chunks in your repo. Lots of chunks
  676. in your repo imply a big repository index.
  677. It is possible to tweak the chunker params (see create options) to
  678. influence the amount of chunks being created.
  679. .TP
  680. .B Temporary files (client):
  681. Reading data and metadata from a FUSE mounted repository will consume up to
  682. the size of all deduplicated, small chunks in the repository. Big chunks
  683. won\(aqt be locally cached.
  684. .TP
  685. .B Temporary files (server):
  686. A non\-trivial amount of data will be stored on the remote temp directory
  687. for each client that connects to it. For some remotes, this can fill the
  688. default temporary directory at /tmp. This can be remediated by ensuring the
  689. $TMPDIR, $TEMP, or $TMP environment variable is properly set for the sshd
  690. process.
  691. For some OSes, this can be done just by setting the correct value in the
  692. .bashrc (or equivalent login config file for other shells), however in
  693. other cases it may be necessary to first enable \fBPermitUserEnvironment yes\fP
  694. in your \fBsshd_config\fP file, then add \fBenvironment="TMPDIR=/my/big/tmpdir"\fP
  695. at the start of the public key to be used in the \fBauthorized_hosts\fP file.
  696. .TP
  697. .B Cache files (client only):
  698. Contains the chunks index and files index (plus a collection of single\-
  699. archive chunk indexes which might need huge amounts of disk space,
  700. depending on archive count and size \- see FAQ about how to reduce).
  701. .TP
  702. .B Network (only for client/server operation):
  703. If your repository is remote, all deduplicated (and optionally compressed/
  704. encrypted) data of course has to go over the connection (\fBssh://\fP repo url).
  705. If you use a locally mounted network filesystem, additionally some copy
  706. operations used for transaction support also go over the connection. If
  707. you backup multiple sources to one target repository, additional traffic
  708. happens for cache resynchronization.
  709. .UNINDENT
  710. .SS Support for file metadata
  711. .sp
  712. Besides regular file and directory structures, Borg can preserve
  713. .INDENT 0.0
  714. .IP \(bu 2
  715. symlinks (stored as symlink, the symlink is not followed)
  716. .IP \(bu 2
  717. special files:
  718. .INDENT 2.0
  719. .IP \(bu 2
  720. character and block device files (restored via mknod)
  721. .IP \(bu 2
  722. FIFOs ("named pipes")
  723. .IP \(bu 2
  724. special file \fIcontents\fP can be backed up in \fB\-\-read\-special\fP mode.
  725. By default the metadata to create them with mknod(2), mkfifo(2) etc. is stored.
  726. .UNINDENT
  727. .IP \(bu 2
  728. hardlinked regular files, devices, FIFOs (considering all items in the same archive)
  729. .IP \(bu 2
  730. timestamps in nanosecond precision: mtime, atime, ctime
  731. .IP \(bu 2
  732. other timestamps: birthtime (on platforms supporting it)
  733. .IP \(bu 2
  734. permissions:
  735. .INDENT 2.0
  736. .IP \(bu 2
  737. IDs of owning user and owning group
  738. .IP \(bu 2
  739. names of owning user and owning group (if the IDs can be resolved)
  740. .IP \(bu 2
  741. Unix Mode/Permissions (u/g/o permissions, suid, sgid, sticky)
  742. .UNINDENT
  743. .UNINDENT
  744. .sp
  745. On some platforms additional features are supported:
  746. .\" Yes/No's are grouped by reason/mechanism/reference.
  747. .
  748. .TS
  749. center;
  750. |l|l|l|l|.
  751. _
  752. T{
  753. Platform
  754. T} T{
  755. ACLs
  756. [5]
  757. T} T{
  758. xattr
  759. [6]
  760. T} T{
  761. Flags
  762. [7]
  763. T}
  764. _
  765. T{
  766. Linux
  767. T} T{
  768. Yes
  769. T} T{
  770. Yes
  771. T} T{
  772. Yes [1]
  773. T}
  774. _
  775. T{
  776. Mac OS X
  777. T} T{
  778. Yes
  779. T} T{
  780. Yes
  781. T} T{
  782. Yes (all)
  783. T}
  784. _
  785. T{
  786. FreeBSD
  787. T} T{
  788. Yes
  789. T} T{
  790. Yes
  791. T} T{
  792. Yes (all)
  793. T}
  794. _
  795. T{
  796. OpenBSD
  797. T} T{
  798. n/a
  799. T} T{
  800. n/a
  801. T} T{
  802. Yes (all)
  803. T}
  804. _
  805. T{
  806. NetBSD
  807. T} T{
  808. n/a
  809. T} T{
  810. No [2]
  811. T} T{
  812. Yes (all)
  813. T}
  814. _
  815. T{
  816. Solaris and derivatives
  817. T} T{
  818. No [3]
  819. T} T{
  820. No [3]
  821. T} T{
  822. n/a
  823. T}
  824. _
  825. T{
  826. Windows (cygwin)
  827. T} T{
  828. No [4]
  829. T} T{
  830. No
  831. T} T{
  832. No
  833. T}
  834. _
  835. .TE
  836. .sp
  837. Other Unix\-like operating systems may work as well, but have not been tested at all.
  838. .sp
  839. Note that most of the platform\-dependent features also depend on the file system.
  840. For example, ntfs\-3g on Linux isn\(aqt able to convey NTFS ACLs.
  841. .IP [1] 5
  842. Only "nodump", "immutable", "compressed" and "append" are supported.
  843. Feature request #618 for more flags.
  844. .IP [2] 5
  845. Feature request #1332
  846. .IP [3] 5
  847. Feature request #1337
  848. .IP [4] 5
  849. Cygwin tries to map NTFS ACLs to permissions with varying degrees of success.
  850. .IP [5] 5
  851. The native access control list mechanism of the OS. This normally limits access to
  852. non\-native ACLs. For example, NTFS ACLs aren\(aqt completely accessible on Linux with ntfs\-3g.
  853. .IP [6] 5
  854. extended attributes; key\-value pairs attached to a file, mainly used by the OS.
  855. This includes resource forks on Mac OS X.
  856. .IP [7] 5
  857. aka \fIBSD flags\fP\&. The Linux set of flags [1] is portable across platforms.
  858. The BSDs define additional flags.
  859. .SH SEE ALSO
  860. .sp
  861. \fIborg\-common(1)\fP for common command line options
  862. .sp
  863. \fIborg\-init(1)\fP,
  864. \fIborg\-create(1)\fP, \fIborg\-mount(1)\fP, \fIborg\-extract(1)\fP,
  865. \fIborg\-list(1)\fP, \fIborg\-info(1)\fP,
  866. \fIborg\-delete(1)\fP, \fIborg\-prune(1)\fP,
  867. \fIborg\-recreate(1)\fP
  868. .sp
  869. \fIborg\-compression(1)\fP, \fIborg\-patterns(1)\fP, \fIborg\-placeholders(1)\fP
  870. .INDENT 0.0
  871. .IP \(bu 2
  872. Main web site \fI\%https://www.borgbackup.org/\fP
  873. .IP \(bu 2
  874. Releases \fI\%https://github.com/borgbackup/borg/releases\fP
  875. .IP \(bu 2
  876. Changelog \fI\%https://github.com/borgbackup/borg/blob/master/docs/changes.rst\fP
  877. .IP \(bu 2
  878. GitHub \fI\%https://github.com/borgbackup/borg\fP
  879. .IP \(bu 2
  880. Security contact \fI\%https://borgbackup.readthedocs.io/en/latest/support.html#security\-contact\fP
  881. .UNINDENT
  882. .SH AUTHOR
  883. The Borg Collective
  884. orphan:
  885. .\" Generated by docutils manpage writer.
  886. .