borg-mount.1 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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-MOUNT" "1" "2025-10-31" "" "borg backup tool"
  31. .SH NAME
  32. borg-mount \- Mount archive or an entire repository as a FUSE filesystem
  33. .SH SYNOPSIS
  34. .sp
  35. borg [common options] mount [options] REPOSITORY_OR_ARCHIVE MOUNTPOINT [PATH...]
  36. .SH DESCRIPTION
  37. .sp
  38. This command mounts a repository or an archive as a FUSE filesystem.
  39. This can be useful for browsing or restoring individual files.
  40. .sp
  41. When restoring, take into account that the current FUSE implementation does
  42. not support special filesystem flags and ACLs.
  43. .sp
  44. When mounting a repository, the top directories will be named like the
  45. archives and the directory structure below these will be loaded on\-demand from
  46. the repository when entering these directories, so expect some delay.
  47. .sp
  48. Unless the \fB\-\-foreground\fP option is given the command will run in the
  49. background until the filesystem is \fBunmounted\fP\&.
  50. .sp
  51. Performance tips:
  52. .INDENT 0.0
  53. .IP \(bu 2
  54. when doing a \(dqwhole repository\(dq mount:
  55. do not enter archive directories if not needed; this avoids on\-demand loading.
  56. .IP \(bu 2
  57. only mount a specific archive, not the whole repository.
  58. .IP \(bu 2
  59. only mount specific paths in a specific archive, not the complete archive.
  60. .UNINDENT
  61. .sp
  62. The command \fBborgfs\fP provides a wrapper for \fBborg mount\fP\&. This can also be
  63. used in fstab entries:
  64. \fB/path/to/repo /mnt/point fuse.borgfs defaults,noauto 0 0\fP
  65. .sp
  66. To allow a regular user to use fstab entries, add the \fBuser\fP option:
  67. \fB/path/to/repo /mnt/point fuse.borgfs defaults,noauto,user 0 0\fP
  68. .sp
  69. For FUSE configuration and mount options, see the mount.fuse(8) manual page.
  70. .sp
  71. Borg\(aqs default behavior is to use the archived user and group names of each
  72. file and map them to the system\(aqs respective user and group ids.
  73. Alternatively, using \fBnumeric\-ids\fP will instead use the archived user and
  74. group ids without any mapping.
  75. .sp
  76. The \fBuid\fP and \fBgid\fP mount options (implemented by Borg) can be used to
  77. override the user and group ids of all files (i.e., \fBborg mount \-o
  78. uid=1000,gid=1000\fP).
  79. .sp
  80. The man page references \fBuser_id\fP and \fBgroup_id\fP mount options
  81. (implemented by FUSE) which specify the user and group id of the mount owner
  82. (aka, the user who does the mounting). It is set automatically by libfuse (or
  83. the filesystem if libfuse is not used). However, you should not specify these
  84. manually. Unlike the \fBuid\fP and \fBgid\fP mount options which affect all files,
  85. \fBuser_id\fP and \fBgroup_id\fP affect the user and group id of the mounted
  86. (base) directory.
  87. .sp
  88. Additional mount options supported by borg:
  89. .INDENT 0.0
  90. .IP \(bu 2
  91. \fBversions\fP: when used with a repository mount, this gives a merged, versioned
  92. view of the files in the archives. EXPERIMENTAL; the layout may change in the future.
  93. .IP \(bu 2
  94. \fBallow_damaged_files\fP: by default damaged files (where missing chunks were
  95. replaced with runs of zeros by \fBborg check \-\-repair\fP) are not readable and
  96. return EIO (I/O error). Set this option to read such files.
  97. .IP \(bu 2
  98. \fBignore_permissions\fP: for security reasons the \fBdefault_permissions\fP mount
  99. option is internally enforced by borg. \fBignore_permissions\fP can be given to
  100. not enforce \fBdefault_permissions\fP\&.
  101. .UNINDENT
  102. .sp
  103. The BORG_MOUNT_DATA_CACHE_ENTRIES environment variable is meant for advanced users
  104. to tweak the performance. It sets the number of cached data chunks; additional
  105. memory usage can be up to ~8 MiB times this number. The default is the number
  106. of CPU cores.
  107. .sp
  108. When the daemonized process receives a signal or crashes, it does not unmount.
  109. Unmounting in these cases could cause an active rsync or similar process
  110. to unintentionally delete data.
  111. .sp
  112. When running in the foreground, ^C/SIGINT cleanly unmounts the filesystem,
  113. but other signals or crashes do not.
  114. .sp
  115. Debugging:
  116. .sp
  117. \fBborg mount\fP usually daemonizes and the daemon process sends stdout/stderr
  118. to /dev/null. Thus, you need to either use \fB\-f / \-\-foreground\fP to make it stay
  119. in the foreground and not daemonize, or use \fBBORG_LOGGING_CONF\fP to reconfigure
  120. the logger to output to a file.
  121. .SH OPTIONS
  122. .sp
  123. See \fIborg\-common(1)\fP for common options of Borg commands.
  124. .SS arguments
  125. .INDENT 0.0
  126. .TP
  127. .B REPOSITORY_OR_ARCHIVE
  128. repository or archive to mount
  129. .TP
  130. .B MOUNTPOINT
  131. where to mount filesystem
  132. .TP
  133. .B PATH
  134. paths to extract; patterns are supported
  135. .UNINDENT
  136. .SS options
  137. .INDENT 0.0
  138. .TP
  139. .B \-\-consider\-checkpoints
  140. Show checkpoint archives in the repository contents list (default: hidden).
  141. .TP
  142. .B \-f\fP,\fB \-\-foreground
  143. stay in foreground, do not daemonize
  144. .TP
  145. .B \-o
  146. Extra mount options
  147. .TP
  148. .B \-\-numeric\-owner
  149. deprecated, use \fB\-\-numeric\-ids\fP instead
  150. .TP
  151. .B \-\-numeric\-ids
  152. use numeric user and group identifiers from archive(s)
  153. .UNINDENT
  154. .SS Archive filters
  155. .INDENT 0.0
  156. .TP
  157. .BI \-P \ PREFIX\fR,\fB \ \-\-prefix \ PREFIX
  158. only consider archive names starting with this prefix. (deprecated)
  159. .TP
  160. .BI \-a \ GLOB\fR,\fB \ \-\-glob\-archives \ GLOB
  161. only consider archive names matching the glob. sh: rules apply (without actually using the sh: prefix), see \(dqborg help patterns\(dq.
  162. .TP
  163. .BI \-\-sort\-by \ KEYS
  164. Comma\-separated list of sorting keys; valid keys are: timestamp, archive, name, id; default is: timestamp
  165. .TP
  166. .BI \-\-first \ N
  167. consider first N archives after other filters were applied
  168. .TP
  169. .BI \-\-last \ N
  170. consider last N archives after other filters were applied
  171. .UNINDENT
  172. .SS Include/Exclude options
  173. .INDENT 0.0
  174. .TP
  175. .BI \-e \ PATTERN\fR,\fB \ \-\-exclude \ PATTERN
  176. exclude paths matching PATTERN
  177. .TP
  178. .BI \-\-exclude\-from \ EXCLUDEFILE
  179. read exclude patterns from EXCLUDEFILE, one per line
  180. .TP
  181. .BI \-\-pattern \ PATTERN
  182. include/exclude paths matching PATTERN
  183. .TP
  184. .BI \-\-patterns\-from \ PATTERNFILE
  185. read include/exclude patterns from PATTERNFILE, one per line
  186. .TP
  187. .BI \-\-strip\-components \ NUMBER
  188. Remove the specified number of leading path elements. Paths with fewer elements will be silently skipped.
  189. .UNINDENT
  190. .SH SEE ALSO
  191. .sp
  192. \fIborg\-common(1)\fP, \fIborg\-umount(1)\fP, \fIborg\-extract(1)\fP
  193. .SH AUTHOR
  194. The Borg Collective
  195. .\" Generated by docutils manpage writer.
  196. .