Displaying 20 results from an estimated 1000 matches similar to: "include and exclude file"
2006 May 20
1
problem to backup some folder - folder empy
hi
my script to backup my home folder
BDIR=/home/$USER
EXCLUDE=exclude.txt
OPTS="-a -r -v -p -t --del --exclude-from=$EXCLUDE
--progress"
BACKUPDIR=/media/dvdrecorder
rsync $OPTS $BDIR $BACKUPDIR
my exclude file
+ .kde/
+ .kde/share/
+ .kde/share/apps/
+ .kde/share/apps/kmail/***
+ .kde/share/apps/kwallet/***
+ .kde/share/apps/konqueror/***
+ .kde/share/apps/kabc/***
- .**
when i
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
2004 Sep 23
1
rsync script from homepage: trouble
Hello,
I'm new to this and am trying to modify the "backup to a central backup
server with 7 day incremental" script from
http://samba.anu.edu.au/rsync/examples.html to suit my situation.
I have ended up with the script attached below and when running it from
command line I get these errors:
rsync error: syntax or usage error (code 1) at main.c(726)
and a plethora of this
>
2010 Feb 21
2
some file are not there
hi
i try to backup some dir of my hd
i had an old script... but i lost it...
i tried to create a new one, without success
include.txt
+ .kde/
+ .kde/share/
+ .kde/share/apps/
+ .kde/share/apps/kmail/***
+ .kde/share/apps/kwallet/***
- .**
exclude.txt
rpm/
mp3/
Download/
.*
my backup script:
#!/bin/sh
# directory to backup
BDIR=/home/$USER
#destination
DEST=/dev/sr0
# excludes file
2003 Apr 09
0
rsync incremental backup problem with --backup-dir switch
Hello,
I am using rsync v2.5.6 to backup our entire server filesystem over the
network to a central backup server.
I have copied the example script from the rsync website
(http://rsync.samba.org/examples.html) to create incremental backups, the
--backup-dir seems to have a strange side-effect.
Everything goes well, but on the server side where the backup is stored I
can't seem to break out
2020 Sep 29
1
Back-up differences. Raspberry Pi and Fedora
I am using the 'backup to a central backup server with 7 day
incremental' example to archive three separate computers to identically
configured (apart from name) shares on a Western Digital 'MyBookLive'
NAS which has rsync enabled. The backup from two Raspberry Pi Computers
operates without a problem but the backup from a Fedora 32 computer
fails with an 'unknown module
2005 Jul 23
2
link_stat
Hi there,
I set up my company's back up server using rsync.
And I've got a strange problem. I searched in the archives of this
list, but
none of them seems not giving me an idea to solve the problem.
If anyone can help, it would be grateful.
I'm using cron by a user (non wheel/admin) to rsync everyday during
the night.
The cron is set in the server to transfer the backing-up
2003 Dec 05
0
[Linux-ME] daily backup (incremental backup ) - SOLVED
Dear Manoj,
Have found out the mistake in my script.
One must create directory if he/she wants to move old
files to backup directory. In my script I was not
creating any new backup-dir(datewise), therefore
despite of have -b --backup-dir flags it was not
working. This means
rsync can only create automatically new direcotry for
destination but not backup-dir !!!!
Am I correct?
Bipin
---
2003 Nov 19
1
daily back (incremental backup )
Hello,
I have Novell Netware File server. Which is mounted
as /mnt/novell on one of my Linux m/c.
I want to take backup of Novell Server to my Linux
m/c. I need everyday backup of Novell server to be
taken on Linux m/c. I don't want full backup every
day but I need an incremental backup. I do not want to
delete any old directory or files.
I have taken script from rsync examples, and
2007 Sep 26
4
Rsync and opened files
Hello,
I'm trying to determine if rsync is a sure method of backing up servers (Linux and Windows) whose files are constantly being accesed and are not able to be stoped they're services for backing up purposes... I would use it over ssh for making incremental backups... in my tests seem to always have worked backing up from a debian server to the copy server that runs debian too...
2006 Mar 02
1
Rsync 2.6.7pre3 released
I've just released rsync 2.6.7pre3 -- the third, and (hopefully) final
pre-release version of the 2.6.7 release. Please test this out and
email the rsync mailing list with any questions, comments, bug reports,
etc. Thanks!
You can download the tar file and its signature from here:
http://rsync.samba.org/ftp/rsync/rsync-2.6.7pre3.tar.gz
2006 Mar 02
1
Rsync 2.6.7pre3 released
I've just released rsync 2.6.7pre3 -- the third, and (hopefully) final
pre-release version of the 2.6.7 release. Please test this out and
email the rsync mailing list with any questions, comments, bug reports,
etc. Thanks!
You can download the tar file and its signature from here:
http://rsync.samba.org/ftp/rsync/rsync-2.6.7pre3.tar.gz
2003 Mar 20
1
bind blocking rsync
Hi Guys,
Here is the setup.
LVS NAT cluster with director (dir), backup director (bdir), and two
realservers (rs1 and rs2) running apache webserver.
SSH DSA key-based authentication set up between rs1 and rs2 in order to
facilitate automated (via cron) mirorring of htdocs directories. All
works fine untill I decide to host DNS on the same cluster. As soon as I
start BIND on rs1, ssh no longer
2006 Mar 31
1
logging problem
Yep I tried those two options, and nothing...
Even if the pre-user conf files have a log file in the same directory,
which I touch before trying, messages keep going to syslog... I tried
with 666 permissions on rsyncd.log too just to make sure...
The following is one of the user's conf file, hope theres a clue. Thanks!
log file = /home/pluto/rsyncd.log <<< This is the problem!!
2006 Feb 22
5
Rsync help needed...
Hello,
I was reading your posts about RSYNC. We have a massive Oracle schema lots
of datafiles about 750 GB size. We do rsync datafiles from source to target
server but everytime we cleanup the datafiles on the target server and do
rsync every 2 weeks. On the target side mostly the datafiles will be same
but on source we might have added few datafiles or made some changes in data
and as such the
2005 Dec 06
1
SRC=/, include a few directories and exclude everything else
Hi,
I am currently backing up a few Linux boxes, and a Windows XP box, using
rsync (through a cron job).
Regarding the Windows box ( Windows XP (running Cygwin) <--> Debian
Testing), so far I specify a few directories as sources in the rsync
command line. I then use an excludes file to include certain directories
and exclude others.
I was wondering, can I just specify / as the source and
2009 Mar 24
3
DO NOT REPLY [Bug 6209] New: rsync exiting suddenly
https://bugzilla.samba.org/show_bug.cgi?id=6209
Summary: rsync exiting suddenly
Product: rsync
Version: 3.0.5
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: mathieu.coavoux@aktor.fr
QAContact:
2006 Apr 04
2
how to tell what files changed?
I'm new to using rsync, so far it is working well. But I want to
know what files rsync decided to transfer. Using the -v option lists
every sub-folder of my directory and lots of files.
Is there any way to get rsync to report only on the changes it made
to the destination directory?
I'd like to know:
what files /directories were copied across
what files/ directories were deleted
2006 Feb 16
1
a few basic questions
Hi folks. Running rsync on Slackware. I'm going over the man pages yet
some aspects remain murky. Hopefully someone can set me straight.
1. The --rsh option,
The man page explains that you can invoke a single-transfer daemon if you
want some features that a daemon provides:
$ rsync -av --rsh=ssh host::module /dest
The it says that you need to slap on an ssh user if the daemon/module
2006 Feb 17
3
rsync files with certain mtime
Hello List,
How would i rsync all files which are older than X-Days? I am missing
some kind of -mtime option. Since this is quite common for backups i am
wondering how you are doing this kind of stuff.
Thanks, Mario