Displaying 20 results from an estimated 1000 matches similar to: "mirror combined with 7 day incremental backup"
2005 Feb 17
4
Incremental Backups
I read the following hint at:
http://www.mikerubel.org/computers/rsync_snapshots/#Incremental
mv backup.0 backup.1
rsync -a --delete --link-dest=../backup.1 source_directory/ backup.0/
I simply want to maintain a dated backup of a server so that I could
always go back to a certain date. I would like to keep this structure
for each day for the last seven days, then one weekly snapshot for
2005 Dec 07
2
incremental backup help required
Hi,
This is my rsync command
/usr/bin/rsync --compress \
--verbose \
--rsh=ssh \
--times \
--owner \
--group \
--ignore-times \
--links \
--perms \
--recursive \
--size-only \
2002 Dec 12
2
rsync snapshot problem deleting files
Well, I followed this link:
http://www.mikerubel.org/computers/rsync_snapshots/
and implemented it (with a bit of tweaking) on my home network. It is
used to make snapshots of two Windows PC's over samba. On one of the
machines (and not the other, from what I can tell) it deletes files from
the target machine for no good reason (ie. they still exist on the
source machine). Then, if I run
2008 Feb 08
2
incremental backup
Can anyone tell me that how can i take incremental backup through rsync. I
will be grateful to you .
--
Regards
Piyush Joshi
9415414376
-------------- next part --------------
HTML attachment scrubbed and removed
2007 Aug 22
6
Who does snapshots other than Network Appliance?
Having snapshot technology is great. Who else supports it?
Thanks.
Scott
2003 Dec 15
5
Rsyncing Windows directory to a Linux box: problem with spaces in directory names
Hello,
I am trying to rsync folders/files hosted on a Windows machine to a
Linux machine. Many of the directory names have spaces in them.
How can I list them in a file so that the --include-from option use
them correctly?
Thanks!
Charles
--
Charles-E. Nadeau Ph.D
http://radio.weblogs.com/0111823/
2003 Oct 31
1
rsync and smbfs
I'm trying to configure rsync snapshots as described at
http://www.mikerubel.org/computers/rsync_snapshots/. I'm
essentially using the following commands:
mv backup.3 backup.tmp
mv backup.2 backup.3
mv backup.1 backup.2
mv backup.0 backup.1
mv backup.tmp backup.0
cp -al backup.1 backup.0
rsync -a --delete source_directory/ backup.0/
I'm trying to backup two directories in a
2006 Nov 22
8
Looking for assistance
We have about 5 servers spread out throughout the country: 2 Centos 4.4,
1 Red Hat and 2 windows machines- looking for some good ideas for a
back-up solution. Our servers hold a lot of data, but only a small
portion of it is crucial on any given day. That crucial portion is
always changing (for example, this week the crucial files all relate to
November- current and previous projects, and the next
2009 Jan 19
5
file compression on target side
Hello All,
I have been using rsync to backup several filesystems by using Mike
Rubel's hard link method
(http://www.mikerubel.org/computers/rsync_snapshots/).
The problem is, I am backing up a lot of ASCII .log, csv, and .txt
files. These files are large and can range anywhere from 1GB to 30GB.
I was wondering if on the target side (the backup side), if I can use
some sort of compression. I
2003 Mar 24
1
Rsync snapshots problem.
From:
http://lists.samba.org/pipermail/rsync/2002-December/009101.html
>Well, I followed this link:
http://www.mikerubel.org/computers/rsync_snapshots/
>
>and implemented it (with a bit of tweaking) on my home network. It is
>used to make snapshots of two Windows PC's over samba. On one of the
>machines (and not the other, from what I can tell) it deletes files from
>the
2002 Mar 27
2
rsync-2.5.4:backup.c possible bug
Hello,
I suspect a minor bug in the file rsync-2.5.4/backup.c line 206.
To identify too-long pathnames, it makes the following test:
if (strlen(backup_dir) + strlen(fname) > (MAXPATHLEN - 1))
I think that the constant subtracted off should be 2, to account both for
the forward-slash and for the trailing zero in the following snprintf
statement, line 211:
snprintf(keep_name, sizeof
2003 Feb 03
1
Feature request...
Hi, I dont run rsync cron jobs to maintain
big archives, I use the system to keep my
work and home computer sync-ed.
I would like a '-i, --interactive' option
to use with --delete, so I can decide wich
deletes to up date and which were potential
mistakes.
For example, my regular backup of my work
files (at work) was needed as we lost some
data - However this backup didn't delete
2009 Apr 09
3
Help creating incremental backups using --backup-dir.
Normally I would use the --link-dest option to do this but I can't
since I'm rsyncing from a Mac to a Samba share on a Linux box and hard
links don't work. What I want to do is create a 10 day rotating
incremental backup. I used the first script example on the rsync
examples page as a template. The only thing I changed was the
destination to be a local directory and paths for
2003 Apr 23
1
trying to get incremental backups working
So I'm trying to write up a short script to do some backups over rsync.
The goal is to have multiple client machines push the backups to the
backup server nightly. The backup server will have a complete copy of the
selected directories as well as revisions for the last 7 days.
Here is the brief script I have. Btw if you're wondering about all the
variables, I eventually want to set it to
2002 Sep 27
1
wishlist addition?
I didn't see this in the wishlist, but using rsync for backups as I'm
starting to do now, there's a feature that would be really cool. I
don't see it in the man page or in any of the docs online.
Basically, I'd like to see an option to modify --delete that deletes
only destination files that have been missing for over Y days. For
backups, this provides a time window on
2003 Aug 14
1
Incremental Backup
Hi folks,
What is the purpose of following statements?
[ -d $HOME/emptydir ] || mkdir $HOME/emptydir
rsync --delete -a $HOME/emptydir/ $BSERVER::$USER/$BACKUPDIR/
Expecting reply.
Baskar
2008 Nov 08
2
Differential backup
Hello,
I have got three folders:
- /home/backup/2008-10-20 - place for differential backup
- /mnt/for_backup - folder with files for backup
- /home/backup/2008-10-01 - place where the last full backup is
My question: is below command prepared correctly to make differential
backup?
rsync -avPbn --backup-dir=/home/backup/2008-10-20/ --exclude "System
Volume Information" --exclude
2007 Sep 16
12
DO NOT REPLY [Bug 4977] New: rsync: failed to set times on
https://bugzilla.samba.org/show_bug.cgi?id=4977
Summary: rsync: failed to set times on
Product: rsync
Version: 2.6.9
Platform: x86
URL: http://www.mikerubel.org/computers/rsync_snapshots/
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo:
2006 Dec 06
2
May I merge several increment backups to one?
Hi all,
I have the following situation:
Backup /mysource to /backupdir,
/backupdir/full ---------an old full backup
/backupdir/back2 -------previous increment backup(based on the full backup
mentioned above)
/backupdir/back1 ------most recent increment backup (based on the two
backups mentioned above)
How can I merge the two increment backups into one directory,say
2002 Oct 24
2
Feature Request: break hardlinks before metadata changes
[This email is either empty or too large to be displayed at this time]