2021-03-23 11:16:34 +00:00
|
|
|
# Backuppy
|
|
|
|
|
2021-04-08 06:35:44 +00:00
|
|
|
No backup - no pity. So that this is not the case, you make backups. Backuppy tries to simplify this.
|
|
|
|
|
|
|
|
Name: Backuppy
|
2021-04-14 04:29:51 +00:00
|
|
|
|
2021-04-08 06:35:44 +00:00
|
|
|
Description: Make daily backups with Backuppy to avoid losing your data.
|
2021-04-14 04:29:51 +00:00
|
|
|
|
2021-05-05 15:18:36 +00:00
|
|
|
Installation: execute `chmod +x install.sh && .\install.sh`
|
|
|
|
|
|
|
|
Install. GUI: execute `chmod +x install.sh && .\install.sh --gui`
|
|
|
|
|
|
|
|
Usage: execute `backuppy`
|
2021-04-14 04:29:51 +00:00
|
|
|
|
2021-04-08 06:35:44 +00:00
|
|
|
Author: Joël Schurter
|
2021-04-14 04:29:51 +00:00
|
|
|
|
2021-04-08 06:35:44 +00:00
|
|
|
Licence: GPL3
|
2021-04-14 04:29:51 +00:00
|
|
|
|
2021-05-05 15:18:36 +00:00
|
|
|
More infos: see constants and README.md
|
2021-04-08 06:35:44 +00:00
|
|
|
|
|
|
|
# ToDo
|
|
|
|
|
2021-04-10 08:46:17 +00:00
|
|
|
- add a log-file for the rsync errors
|
2021-04-08 06:35:44 +00:00
|
|
|
|
|
|
|
# Dependencies
|
2021-05-04 16:10:32 +00:00
|
|
|
- rsync (because Backuppy makes its backups with rsync)
|
2021-04-08 06:35:44 +00:00
|
|
|
|
2021-05-04 16:10:32 +00:00
|
|
|
execute `sudo apt install rsync` on Debian/Ubuntu
|
|
|
|
|
|
|
|
execute `sudo pacman -S rsync` on Arch/Manjaro
|
|
|
|
|
|
|
|
# Dependencies for the graphical installer:
|
|
|
|
- pip (the python package manager)
|
|
|
|
|
|
|
|
execute `sudo apt install python3-pip` on Debian/Ubuntu
|
|
|
|
|
|
|
|
execute `sudo pacman -S pip` on Arch/Manjaro
|
|
|
|
|
|
|
|
- pip package 'PySide2'
|
|
|
|
|
|
|
|
execute `pip3 install pyside2` on Debian/Ubuntu
|
|
|
|
|
|
|
|
execute `pip install pyside2` on Arch/Manjaro
|
2021-04-10 08:46:17 +00:00
|
|
|
|
|
|
|
# IMPORTANT
|
|
|
|
|
2021-05-04 16:10:32 +00:00
|
|
|
You have to remove the "backuppy" alias in your .bashrc or .zshrc before reinstall Backuppy.
|