borg.1 32 KB

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