mirror of
https://github.com/Ravinou/borgwarehouse
synced 2026-03-15 06:45:45 +01:00
56 lines
1.8 KiB
TypeScript
56 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import classes from '../WizardStep1/WizardStep1.module.css';
|
|
import { IconDeviceDesktopAnalytics, IconTerminal2 } from '@tabler/icons-react';
|
|
|
|
function WizardStep1() {
|
|
return (
|
|
<div className={classes.container}>
|
|
<h1>
|
|
<IconTerminal2 className={classes.icon} />
|
|
Command Line Interface
|
|
</h1>
|
|
<div className={classes.description}>
|
|
We recommend using the official <b>BorgBackup</b> client which is supported by most Linux
|
|
distributions.
|
|
<br />
|
|
More information about installation can be{' '}
|
|
<a
|
|
href='https://borgbackup.readthedocs.io/en/stable/installation.html'
|
|
target='_blank'
|
|
rel='noreferrer'
|
|
>
|
|
found here
|
|
</a>
|
|
.<br />
|
|
To <b>automate your backup</b>, you can also use{' '}
|
|
<a href='https://torsion.org/borgmatic/' target='_blank' rel='noreferrer'>
|
|
Borgmatic
|
|
</a>{' '}
|
|
which is a{' '}
|
|
<a href='https://packages.debian.org/buster/borgmatic' target='_blank' rel='noreferrer'>
|
|
Debian package
|
|
</a>
|
|
. On the step 4, you will find a pattern of default config.
|
|
</div>
|
|
<div className={classes.separator}></div>
|
|
<h1>
|
|
<IconDeviceDesktopAnalytics className={classes.icon} />
|
|
Graphical User Interface
|
|
</h1>
|
|
<div className={classes.description}>
|
|
BorgWarehouse is <b>compatible with all BorgBackup graphical clients</b>, including the
|
|
well-known{' '}
|
|
<a href='https://apps.gnome.org/PikaBackup/' target='_blank' rel='noreferrer'>
|
|
Pika Backup
|
|
</a>{' '}
|
|
and{' '}
|
|
<a href='https://vorta.borgbase.com/' target='_blank' rel='noreferrer'>
|
|
Vorta
|
|
</a>
|
|
.
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default WizardStep1;
|