LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-24-2011, 04:56 AM   #1
nass
Member
 
Registered: Apr 2006
Location: Athens, Greece
Distribution: slackware, debian, ubuntu
Posts: 666

Rep: Reputation: 39
rsnapshot doesn't just do incremental backups


Hello everyone,
I seem to have a bit of a problem with rsnapshot. After the 1st (full) backup, the i am trying to do the 2nd one (back to back really, so not many files will be changed) and it takes a loooong time ( i actually didn't let it finish )

I check the newly created backup a couple of minutes later and it already has copied 150MB of 'altered' data compared to the original full backup. This can't be.

I have checked the time on my 2 systems (the main server and this backup server) and the dates coincide ( I have a time server too for the internal network ). so modification times shouldn't be the reason why rsnapshot gets fooled into backing things up.
ofcourse nothing in the original full bakcup has bee chmod'ed between the 2 backups so thats not the reason either...

I do not know what else could be there reason though... any thoughts?

Thank you for your help
nass
 
Old 07-24-2011, 06:06 AM   #2
sparkyhall
Member
 
Registered: Nov 2009
Location: Chatteris---UK
Distribution: Slackware 13.0 & 14.0
Posts: 42

Rep: Reputation: 8
Quote:
Originally Posted by nass View Post

I check the newly created backup a couple of minutes later and it already has copied 150MB of 'altered' data compared to the original full backup. This can't be.

nass
Why do think 150MB can't be ? I do a daily incremental backup of my home directory (2 users) and that's usually over 165MB, most of which is firefox and thunderbird related and that excludes the cache directories. I also do a weekly incremental full backup, excluding home directories, and according to my logs that's over 179MB although it only takes 3-4 minutes over wired 100Mb ethernet.

I use my own scripts using rsync and hard links for this so I can't comment on rsnapshot but just thought I would give an indication that 150MB is really not that much data. If I were to include the firefox cache then my backups would be much larger.
 
Old 07-24-2011, 04:49 PM   #3
nass
Member
 
Registered: Apr 2006
Location: Athens, Greece
Distribution: slackware, debian, ubuntu
Posts: 666

Original Poster
Rep: Reputation: 39
well 150MB of data seem little esp compared to 1.7TB of office data, but among those I find a backup of the /etc/ directory and I know I didn't change any config files between these 2 backups...
 
Old 07-25-2011, 04:58 PM   #4
granth
Member
 
Registered: Jul 2004
Location: USA
Distribution: Slackware64
Posts: 212

Rep: Reputation: 55
Show us your rsnapshot.conf.

Also, you can use "rsnapshot-diff" to see what changed.

Eg.
Code:
$ sudo rsnapshot-diff /backup/daily.0 /backup/daily.1
Comparing /backup/daily.1 to /backup/daily.0
Between /backup/daily.1 and /backup/daily.0:
  897 were added, taking 1678470607 bytes;
  25028 were removed, saving 2293944092 bytes;
 
Old 07-26-2011, 06:58 PM   #5
BCarey
Senior Member
 
Registered: Oct 2005
Location: New Mexico
Distribution: Slackware
Posts: 1,639

Rep: Reputation: Disabled
Quote:
Originally Posted by nass View Post
but among those I find a backup of the /etc/ directory and I know I didn't change any config files between these 2 backups...
You do realize that each snapshot is actually a complete backup with all files and directories using hardlinks for unchanged files? (Strictly speaking I should say rsync overwrites hardlinks for changed files, replacing with the new file.)

Brian
 
Old 06-06-2014, 04:33 PM   #6
Tamadite
LQ Newbie
 
Registered: Jun 2014
Posts: 2

Rep: Reputation: Disabled
I do not get rsnapshot to do incremental backups. See below:

Code:
 # rsnapshot-diff ./daily.0 ./daily.1
Comparing ./daily.1 to ./daily.0
Between ./daily.1 and ./daily.0:
  220911 were added, taking 604634711656 bytes;
  220911 were removed, saving 604634711656 bytes;
Code:
 # rsnapshot -t daily
echo 19313 > /opt/var/run/rsnapshot.pid 
mv /share/HDB_DATA/Qbackup/rsnapshot/daily.1/ \
    /share/HDB_DATA/Qbackup/rsnapshot/daily.2/ 
mv /share/HDB_DATA/Qbackup/rsnapshot/daily.0/ \
    /share/HDB_DATA/Qbackup/rsnapshot/daily.1/ 
/opt/bin/rsync -a --delete --numeric-ids --relative --delete-excluded \
    --exclude=iTunes*/ /share/HDA_DATA/Qmultimedia \
    /share/HDB_DATA/Qbackup/rsnapshot/daily.0/\ 
/opt/bin/rsync -a --delete --numeric-ids --relative --delete-excluded \
    --exclude=iTunes*/ /share/HDA_DATA/Private \
    /share/HDB_DATA/Qbackup/rsnapshot/daily.0/\ 
touch /share/HDB_DATA/Qbackup/rsnapshot/daily.0/
Any idea?

Last edited by Tamadite; 06-06-2014 at 05:29 PM.
 
Old 06-06-2014, 06:29 PM   #7
Woodsman
Senior Member
 
Registered: Oct 2005
Distribution: Slackware 14.1
Posts: 3,482

Rep: Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546
If you are performing the backups manually back-to-back, then I agree there should be almost no time involved with the second backup. In fact, the kernel will have cached much of the files to help improve the time. I saw this on another system I was testing about two weeks ago.

How do you have sync_first configured? If that option is set to 1, then you have to perform the very first backup manually before rsnapshot will start accumulating rotations. If set to 0 then rsnapshot will perform the first backup in its own.
 
Old 06-06-2014, 06:35 PM   #8
Tamadite
LQ Newbie
 
Registered: Jun 2014
Posts: 2

Rep: Reputation: Disabled
I have just found the source of the problem. I had:

Code:
# If your version of rsync supports --link-dest, consider enable this.
# This is the best way to support special files (FIFOs, etc) cross-platform.
# The default is 0 (off).
# 
link_dest       0
when it should be:

Code:
#
link_dest       1
Now I get:
Code:
[~] # rsnapshot -t daily
echo 10681 > /opt/var/run/rsnapshot.pid 
mv /share/HDB_DATA/Qbackup/rsnapshot/daily.1/ \
    /share/HDB_DATA/Qbackup/rsnapshot/daily.2/ 
/opt/bin/cp -al /share/HDB_DATA/Qbackup/rsnapshot/daily.0 \
    /share/HDB_DATA/Qbackup/rsnapshot/daily.1 
/opt/bin/rsync -a --delete --numeric-ids --relative --delete-excluded \
    --exclude=iTunes*/ /share/HDA_DATA/Qmultimedia \
    /share/HDB_DATA/Qbackup/rsnapshot/daily.0/\ 
/opt/bin/rsync -a --delete --numeric-ids --relative --delete-excluded \
    --exclude=iTunes*/ /share/HDA_DATA/Private \
    /share/HDB_DATA/Qbackup/rsnapshot/daily.0/\ 
touch /share/HDB_DATA/Qbackup/rsnapshot/daily.0/
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
rsnapshot backups zkab Linux - Software 4 01-17-2011 03:30 PM
Modify rsnapshot backups manually brianmcgee Linux - Software 0 10-21-2009 01:54 AM
rsnapshot not automating backups Myiagros Linux - Server 9 08-05-2009 08:51 AM
[SOLVED] Remote rsync/rsnapshot backups as a limited privelege user Vanyel Linux - Software 1 07-30-2009 10:27 AM
Backups with rsnapshot jeremy LQ Articles Discussion 0 07-30-2007 12:58 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 03:25 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration