23 lines
302 B
Markdown
23 lines
302 B
Markdown
# Borg Backup
|
|
|
|
## Install
|
|
|
|
```bash
|
|
dnf install -y borgbackup
|
|
```
|
|
|
|
## Server Setup
|
|
|
|
```bash
|
|
btrfs sub create /backups
|
|
btrfs prop set /backups ro true
|
|
```
|
|
|
|
Mount the backup folder over nfs
|
|
|
|
/etc/fstab
|
|
|
|
```conf
|
|
10.1.2.10:/mnt/backup2/borg0 /backups nfs rw,hard,intr,rsize=8192,wsize=8192,timeo=14 0 0
|
|
```
|