usage.rst 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. .. include:: global.rst.inc
  2. .. _detailed_usage:
  3. Usage
  4. =====
  5. |project_name| consists of a number of commands. Each command accepts
  6. a number of arguments and options. The following sections will describe each
  7. command in detail.
  8. Quiet by default
  9. ----------------
  10. Like most UNIX commands |project_name| is quiet by default but the ``-v`` or
  11. ``--verbose`` option can be used to get the program to output more status
  12. messages as it is processing.
  13. .. include:: usage/init.rst.inc
  14. Examples
  15. ~~~~~~~~
  16. ::
  17. # Local repository
  18. $ borg init /data/mybackuprepo.borg
  19. # Remote repository
  20. $ borg init user@hostname:mybackuprepo.borg
  21. # Encrypted remote repository
  22. $ borg init --encryption=passphrase user@hostname:mybackuprepo.borg
  23. .. include:: usage/create.rst.inc
  24. Examples
  25. ~~~~~~~~
  26. ::
  27. # Backup ~/Documents into an archive named "my-documents"
  28. $ borg create /data/myrepo.borg::my-documents ~/Documents
  29. # Backup ~/Documents and ~/src but exclude pyc files
  30. $ borg create /data/myrepo.borg::my-files \
  31. ~/Documents \
  32. ~/src \
  33. --exclude '*.pyc'
  34. # Backup the root filesystem into an archive named "root-YYYY-MM-DD"
  35. NAME="root-`date +%Y-%m-%d`"
  36. $ borg create /data/myrepo.borg::$NAME / --do-not-cross-mountpoints
  37. .. include:: usage/extract.rst.inc
  38. Examples
  39. ~~~~~~~~
  40. ::
  41. # Extract entire archive
  42. $ borg extract /data/myrepo::my-files
  43. # Extract entire archive and list files while processing
  44. $ borg extract -v /data/myrepo::my-files
  45. # Extract the "src" directory
  46. $ borg extract /data/myrepo::my-files home/USERNAME/src
  47. # Extract the "src" directory but exclude object files
  48. $ borg extract /data/myrepo::my-files home/USERNAME/src --exclude '*.o'
  49. .. include:: usage/check.rst.inc
  50. .. include:: usage/delete.rst.inc
  51. .. include:: usage/list.rst.inc
  52. Examples
  53. ~~~~~~~~
  54. ::
  55. $ borg list /data/myrepo
  56. my-files Thu Aug 1 23:33:22 2013
  57. my-documents Thu Aug 1 23:35:43 2013
  58. root-2013-08-01 Thu Aug 1 23:43:55 2013
  59. root-2013-08-02 Fri Aug 2 15:18:17 2013
  60. ...
  61. $ borg list /data/myrepo::root-2013-08-02
  62. drwxr-xr-x root root 0 Jun 05 12:06 .
  63. lrwxrwxrwx root root 0 May 31 20:40 bin -> usr/bin
  64. drwxr-xr-x root root 0 Aug 01 22:08 etc
  65. drwxr-xr-x root root 0 Jul 15 22:07 etc/ImageMagick-6
  66. -rw-r--r-- root root 1383 May 22 22:25 etc/ImageMagick-6/colors.xml
  67. ...
  68. .. include:: usage/prune.rst.inc
  69. Examples
  70. ~~~~~~~~
  71. ::
  72. # Keep 7 end of day and 4 additional end of week archives:
  73. $ borg prune /data/myrepo --keep-daily=7 --keep-weekly=4
  74. # Same as above but only apply to archive names starting with "foo":
  75. $ borg prune /data/myrepo --keep-daily=7 --keep-weekly=4 --prefix=foo
  76. # Keep 7 end of day, 4 additional end of week archives,
  77. # and an end of month archive for every month:
  78. $ borg prune /data/myrepo --keep-daily=7 --keep-weekly=4 --monthly=-1
  79. # Keep all backups in the last 10 days, 4 additional end of week archives,
  80. # and an end of month archive for every month:
  81. $ borg prune /data/myrepo --keep-within=10d --keep-weekly=4 --monthly=-1
  82. .. include:: usage/info.rst.inc
  83. Examples
  84. ~~~~~~~~
  85. ::
  86. $ borg info /data/myrepo::root-2013-08-02
  87. Name: root-2013-08-02
  88. Fingerprint: bc3902e2c79b6d25f5d769b335c5c49331e6537f324d8d3badcb9a0917536dbb
  89. Hostname: myhostname
  90. Username: root
  91. Time: Fri Aug 2 15:18:17 2013
  92. Command line: /usr/bin/borg create --stats /data/myrepo::root-2013-08-02 / --do-not-cross-mountpoints
  93. Number of files: 147429
  94. Original size: 5344169493 (4.98 GB)
  95. Compressed size: 1748189642 (1.63 GB)
  96. Unique data: 64805454 (61.80 MB)
  97. .. include:: usage/mount.rst.inc
  98. Examples
  99. ~~~~~~~~
  100. ::
  101. $ borg mount /data/myrepo::root-2013-08-02 /tmp/mymountpoint
  102. $ ls /tmp/mymountpoint
  103. bin boot etc lib lib64 mnt opt root sbin srv usr var
  104. $ fusermount -u /tmp/mymountpoint
  105. .. include:: usage/change-passphrase.rst.inc
  106. Examples
  107. ~~~~~~~~
  108. ::
  109. # Create a key file protected repository
  110. $ borg init --encryption=keyfile /tmp/encrypted-repo
  111. Initializing repository at "/tmp/encrypted-repo"
  112. Enter passphrase (empty for no passphrase):
  113. Enter same passphrase again:
  114. Key file "/home/USER/.borg/keys/tmp_encrypted_repo" created.
  115. Keep this file safe. Your data will be inaccessible without it.
  116. # Change key file passphrase
  117. $ borg change-passphrase /tmp/encrypted-repo
  118. Enter passphrase for key file /home/USER/.borg/keys/tmp_encrypted_repo:
  119. New passphrase:
  120. Enter same passphrase again:
  121. Key file "/home/USER/.borg/keys/tmp_encrypted_repo" updated