Difference between revisions of "btrbk"

From wiki
(Created page with "[http://digint.ch/btrbk/ btrbk] is a backup tool for Btrfs disks. == Install == btrbk is not yet included in Debian Jessie. Make sure you configure stretch source...")
 
(server setup)
Line 1: Line 1:
 
[http://digint.ch/btrbk/ btrbk] is a backup tool for [[Btrfs]] disks.
 
[http://digint.ch/btrbk/ btrbk] is a backup tool for [[Btrfs]] disks.
 +
 +
{{WIP}}
  
 
== Install ==
 
== Install ==
Line 5: Line 7:
 
# apt install btrbk
 
# apt install btrbk
 
</syntaxhighlight>
 
</syntaxhighlight>
[[Category:Debian Release]]
+
 
 +
== Setup Backup Server ==
 +
 
 +
=== Destination Disk ===
 +
Create a Btrfs volume and mount it on <code>/backup</code>.
 +
 
 +
=== User ===
 +
<syntaxhighlight lang="console">
 +
# adduser --system --home /backup/ --group --no-create-home btrbk
 +
Adding system user `btrbk' (UID 122) ...
 +
Adding new group `btrbk' (GID 124) ...
 +
Adding new user `btrbk' (UID 122) with group `btrbk' ...
 +
Not creating home directory `/backup/'.
 +
</syntaxhighlight>
 +
 
 +
== Setup Client ==
 +
{{TODO|msg = }}[[Category:Debian Release]]
 
[[Category:Linux Desktop]]
 
[[Category:Linux Desktop]]
 
[[Category:Linux Server]]
 
[[Category:Linux Server]]

Revision as of 17:51, 30 March 2016

btrbk is a backup tool for Btrfs disks.


Warning Warning: This page is a work in progress and is not completed. Important informations might be missing or wrong.

Install

btrbk is not yet included in Debian Jessie. Make sure you configure stretch source before running the command bellow.

# apt install btrbk

Setup Backup Server

Destination Disk

Create a Btrfs volume and mount it on /backup.

User

# adduser --system --home /backup/ --group --no-create-home btrbk
Adding system user `btrbk' (UID 122) ...
Adding new group `btrbk' (GID 124) ...
Adding new user `btrbk' (UID 122) with group `btrbk' ...
Not creating home directory `/backup/'.

Setup Client

TODO