search for: rsync_excludes

Displaying 17 results from an estimated 17 matches for "rsync_excludes".

Did you mean: rsync_exclude
2009 Jun 10
2
rsync excluded file syntax errors
I cannot figure out where I am going wrong with my excluded files syntax! rsync backups up those folders I'm trying to exclude. rsync -av --exclude-from=/etc/rsync_excluded.conf --delete root@polaris::polhome /pol_home_bkup cat /etc/rsync_excluded.conf - /home/agokhale - /home/anand - /home/asalazar etc. These are all top level folders with the same names. On the rsync server
2011 Sep 12
2
Ignoring /boot
...#!/bin/sh # # RSYNC_OPTS="--archive --one-file-system --perms --executability --progress --stats --delete-after --hard-links --keep-dirlinks --verbose --inplace" RSYNC_USER="bs" RSYNC_SERVER="192.168.6.6" RSYNC_MODULE="ben-desktop" RSYNC_PATH="/" RSYNC_EXCLUDES="--exclude=/usr/portage/distfiles --exclude=/tmp --exclude=/var --exclude=/home --exclude=/root --exclude=/usr --exclude=/bin --exclude=/opt --excl$ MOUNT_FOR_RSYNC="/boot" mount ${MOUNT_FOR_RSYNC} #ls -la /boot rsync --dry-run ${RSYNC_OPTS} --rsync-path="sudo rsync" ${...
2003 Feb 16
1
rsync-exclude.patch.
> I like the idea of your rsync-exclude.patch and have thought > about hacking it in myself. However as you already have done the work > may I make a small suggestion...... can the name of the exclude file > (your .rsync) be specified in the flags.... e.g. > > rsync --rsync-exclude=.snapshot -axvH /here /there > > In this way different invocations (e.g. system and
2003 Jan 14
3
.rsync-/.rsync+ patch and --link-dest example
This is a patch to add an --rsync-exclude option to rsync-2.5.6cvs. File names in .rsync- (or .rsync+) are excluded (or included) from the file lists associated with the current directory and all of its subdirectories. This has advantages over --cvs-exclude for backing up large file systems since the .cvsignore files only apply to the current directory: unless the .cvsignore restrictions apply
2011 Jan 20
5
DO NOT REPLY [Bug 7927] New: Rsync does not sync folders named "tags"
https://bugzilla.samba.org/show_bug.cgi?id=7927 Summary: Rsync does not sync folders named "tags" Product: rsync Version: 3.0.3 Platform: x86 OS/Version: Linux Status: NEW Severity: major Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy: bugzilla at
2004 Apr 09
3
include/exclude bug in rsync 2.6.0/2.6.1pre1
As mentioned on the rsync home page, the --files-from=FILE option in rsync version 2.6.0 is a useful option that allows one to "specify a list of files to transfer, and can be much more efficient than a recursive descent using include/exclude statements (if you know in advance what files you want to transfer)". However, --files-from does not help one implement the --rsync-exclude=FILE
2007 Jul 14
1
DO NOT REPLY [Bug 4786] New: deletes files in parent directory when destination directory doesn't exist
https://bugzilla.samba.org/show_bug.cgi?id=4786 Summary: deletes files in parent directory when destination directory doesn't exist Product: rsync Version: 2.6.9 Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo:
2003 May 07
1
Bug report: "exclude from" in rsyncd.conf is not effective.
The attached script file gives all the relevant details - I hope - please ask if you need any more information. /Sam Sam Sexton <mailto:sam.sexton@reuters.com> Reuters Coventry Automated Dealing Technologies Phone: +44 24 7625 6562 Fax: +44 24 7655 5203 -------------------------------------------------------------- -- Visit our Internet site at
2015 Jul 17
4
clone a disk
Hello i have a machine A with 2 disks 1 et 2 running Debian Jessie on 1 is the system and the boot and the swap on 2 different partitions like /home /opt ETC..... i have a machine B with 1 disk running kali-linux and *100G free* Can i clone the disk 1 of machine A on the 100G free on machine B with rsync? If it is possible, how to do that? Many thanks TG -------------- next part --------------
2015 Jul 17
0
clone a disk
...? > > If it is possible, how to do that? Yes, it's easy to do, I do that for the primary backup on all my systems. Lets say you are doing it from machine a, and backing up to directory /backup_a on b. Logged in as root then you could do it with : rsync -avH --delete --exclude-from=/etc/rsync_excludes / root at b:/backup_a/ -a means "archive" and sets several parameters, v simply makes things verbose, H means correctly handle hard linked files. --delete means delete files from the destination that have been removed from the source, and --exclude-from specifies a file containing a list...
2005 Jun 20
1
--exclude-from options
Hello, I'm configuring rsync to use --exclude-from option however it doesnt work as I want to. I have a directory /source/ which contains additional directories a, b, c. In addition /source/ directory contains some db.* files that I dont want to backup. The tricky part is that subdirectories /source/a, /source/b and /source/c can have their own db* files wich I do want to keep. so how
2006 Feb 22
1
Include Exclude .. a canonical way
I'm wrestling with include/exclude rules and not finding a way to do this: Simplified command: rsync -avv --exclcude-from=rsync_exclude \ ~/ /dest/ Backup ~/ including ~/.kde3.5/share/apps/konqueror/bookmarks.xml but excluding everything else under ~/.kde3.5 Here are some of what hasn't worked in an EXCLUDE file. + /.kde3.5/share/apps/konqueror/bookmarks.xml
2011 Jul 09
0
Problem with --dry-run
Hi Gents, I have written a backup script with rsync, which is working fine for a long time. Now a problem has occured. which I am not able to solve by my own: Before I am doing the backup I am checkig if there are any changes to backup ... rsync --delete $RSYNC_EXCLUDE -avzne "$RSYNC_SSH" $RSYNC_SOURCE $RSYNC_DESTINATION But when I have created a path of new directories in
2002 Oct 24
1
Using rsync for backup trashes st_atime
Hi! I've just tried to do a backup of a machine with rsync. While doing this (I was reading emails:-) I noted that mbox for mbox, I had no longe new mails, but I've never read off these mailboxes lately... This seemed to be a st_atime problem, and indeed, I could verify that. This is what I used for backup: rsync --archive \ --recursive \
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
2015 Jul 17
1
clone a disk
...to do that? > > Yes, it's easy to do, I do that for the primary backup on all my > systems. > > Lets say you are doing it from machine a, and backing up to > directory /backup_a on b. Logged in as root then you could do it > with : rsync -avH --delete --exclude-from=/etc/rsync_excludes / > root at b:/backup_a/ -a means "archive" and sets several parameters, v > simply makes things verbose, H means correctly handle hard linked > files. --delete means delete files from the destination that have > been removed from the source, and --exclude-from specifies a fil...
2006 Nov 03
0
a strange behavior on a small memory system with tun0
Hello I am using openssh as vpn on a router with freewrt.org and rsync to sync my local data to a remote server. Everything works fine for me so far. The only problem is that the channel-1 (tun0) goes down on the router after 50-200MB transfered via tun0 or after 5-20 hours only with a ping to the server . Channel-0 is still working. Tcpdump shows that a ping from the router to the server via