mirror of
https://github.com/Ravinou/borgwarehouse
synced 2026-03-14 22:35:46 +01:00
64 lines
2.1 KiB
TypeScript
64 lines
2.1 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>
|
||
.
|
||
<br />
|
||
Vorta runs on Linux, MacOS and Windows (via Windows’ Linux Subsystem (WSL)). Find the right
|
||
way to install it{' '}
|
||
<a href='https://vorta.borgbase.com/install/' target='_blank' rel='noreferrer'>
|
||
just here
|
||
</a>
|
||
.
|
||
</div>
|
||
<img src='/vorta-demo.gif' alt='Vorta GIF' />
|
||
</div>
|
||
);
|
||
}
|
||
|
||
export default WizardStep1;
|