C
C
Cyril2017-05-12 07:53:49
linux
Cyril, 2017-05-12 07:53:49

What is the best backup tool for Ubuntu?

Currently Windows Server is used as a file server. We want to install Ubuntu Server instead. And in Ubuntu already deploy samba and everything else you need.
There are about 100 users. The amount of data is approximately 2Tb.
All files should be backed up incrementally daily, and a full backup of all files should be made on weekends.
Tell me, please, which utility in Ubuntu is best suited for this? So that it can be run according to the schedule, for example, via cron.
Thank you!

Answer the question

In order to leave comments, you need to log in

8 answer(s)
E
Eugene, 2017-05-12
@immaculate

I've been using the duplicity utility for about 6 years now. And both for backing up my laptop and for copying the servers that I support and administer.
It is simple, runs from the command line, supports encryption (GPG), backups to a specific folder, S3, ftp, etc. etc. Incremental copying with full at certain intervals, splitting copies into volumes of a given size.
A real harvester, and at the same time quite simple. For example, here is part of my laptop backup script:

duplicity \
    --full-if-older-than 3M \
    --volsize 150 \
    --exclude='**/*.pyc' \
    --exclude='**/firefox/*/cache2' \
    --exclude='**/lib/python2.7' \
    --exclude='**/.thumbnails' \
    --exclude='**/.virtualenvs' \
    --exclude='**/.virtualenv' \
    --exclude='**/thumbnails' \
    --exclude='**/.xsession-errors*' \
    --exclude='**/.PyCharm*' \
    --exclude=/home/jmv/.Private \
    --exclude=/home/jmv/.ecryptfs \
    --exclude=/home/jmv/.cache \
    --exclude=/home/jmv/.macromedia \
    --exclude=/home/jmv/.adobe \
    --exclude=/home/jmv/.nvm \
    --exclude=/home/jmv/.local/share/zeitgeist \
    --include=/etc \
    --include=/home/jmv \
    --exclude='**' \
    / $DEST

duplicity remove-older-than 12M --force $DEST

B
Boris Korobkov, 2017-05-12
@BorisKorobkov

tar+gz+rsync

V
vreitech, 2017-05-12
@fzfx

I take cron backups from the file server to the backup server via rsync, then on the backup server I create a snapshot of the backup directory (btrfs file system).

A
Alexander Myasoedov, 2017-05-12
@kendomag

I use LuckyBackUp:
luckybackup.sourceforge.net
Easy to set up via GUI, supports both backup and sync, based on rsync.
I have been using it for 5 years already, the flight is normal.
02c71b30f66343e89c6fe50ccb839837.png

M
mrdaniv, 2021-04-20
@mrdaniv

I use Veeam Backup & Replication. Moreover, the free version (for legal entities too) completely covers the need for a file storage and system backup. I advise.

M
mikes, 2017-05-12
@mikes

From paid I can advise acronis. Oh good stuff.

E
Erelecano Oioraen, 2017-05-12
@Erelecano

Any system capable of incremental backup. Whether it's the old fsbackup.pl script , or duplicity , or something else. An example with duplicity was given to you above. Using an incremental backup, you save space and can deploy a backup for a specific day with one command.
I used to use fsbackup on servers, in recent years I have been using duplicity.

G
gaxetasok, 2017-05-12
@gaxetasok

bacula/bareos

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question