similar to: something about filter rules of rsync

Displaying 20 results from an estimated 20000 matches similar to: "something about filter rules of rsync"

2009 Dec 09
0
password-file problem of cwrsync in windows
i get a problem in use cwrsync in windows, when i use the password-file. i get the error below: the password-file must not world-wild read. and when i use rsync in the cygwin with the same command, it just succeed. if i input the password directly, both ok. -- ????????? contact me: MSN: walkerxk at gmail.com,walkerxk at hotmail.com GTALK: walkerxk at gmail.com QQ:25329680
2010 Jan 26
2
Rsync in daemon mode
Hi, I am a newbie to Rysnc and a had a quick question, the answer for which I wasn't able to find in the documentations. Currently I have Solaris system A which has files that are being generated and changed in real time. I am running rysnc in daemon mode on A.(server) On system B I use the appropriate rysnc command to connect to system A and sync all the files on B. I am having
2009 Nov 26
2
Rsync deletion issue on failure
I didn't see this in the man page or after a cursory Google search. I'm rsync-ing a file from computer A to computer B and the file does not exist yet on computer B. My problem is that on a shoddy Internet connection, if rsync fails due to a connection error, the dot file it creates on computer B is deleted and I have to start the rsync all over from the beginning. Is there a way to
2010 Jan 21
2
option 'auth users' in rsyncd.conf
Hi there, this is my first posting to this list, so let me quickly introduce myself. I'm Alex and currently working on a new version of the rsync package for the eisfair Linux distribution?. I have some problems understanding the behaviour of the 'auth users' option in the rsyncd.conf file when running rsync in daemon mode. I set up a module and a secrets file. This is the behaviour
2010 Jan 18
2
Another cygwin/rsync question
Hi, Been using rsync for many years but I'm stuck with this problem. I'ts a simplistic backup using rsync from a Windows 2k3 machine to a Linux box out on the 'net, using pre-shared ssh keys. In this case I'm saving, files belonging to various users, using the administrator account on the windows machine and the destination is a normal user account and its home file area.
2011 Feb 10
4
DO NOT REPLY [Bug 7951] New: Option for case insensitivity in filter rules
https://bugzilla.samba.org/show_bug.cgi?id=7951 Summary: Option for case insensitivity in filter rules Product: rsync Version: 3.0.6 Platform: All URL: http://lists.samba.org/archive/rsync/2007- March/017381.html OS/Version: All Status: NEW Severity: normal Priority: P3
2013 Jul 19
0
if i want to delete a million files, can rsync be more faster than rm?
i found two article said that rsync -a --delete empty/ a1/ will much more faster than rm when deleting millions files: http://linuxnote.net/jianingy/en/linux/a-fast-way-to-remove-huge-number-of-files.html http://www.quora.com/File-Systems/How-can-someone-rapidly-delete-400-000-files but my test gets opposite result, and i think it's impossible on theory. i use the command 'for i in
2010 Apr 02
1
DO NOT REPLY [Bug 7321] New: Extend "p" filter modifier to make source dirs prunable
https://bugzilla.samba.org/show_bug.cgi?id=7321 Summary: Extend "p" filter modifier to make source dirs prunable Product: rsync Version: 3.1.0 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy:
2010 Mar 04
2
--prune-empty-dirs option not doing the job
Hello and thanks to all who so generously assist on this great list. test command: rsync -avm --del --prune-empty-dirs --compare-dest=/Users/generic/Desktop/B /Users/generic/Desktop/A/ /Users/generic/Desktop/C produces a large number of directories and nested directories on the destination that are empty. i've tried tweaking so many different combinations of options i'm beginning to
2008 Feb 22
1
filter question
Hi, I've been trying to come up with a way to do the following operation. I have a /home folder and I want to transfer only the /mail/ folders inside the home folder along with their parent folders. So, if I have the following files: /home/bob/document.doc /home/bob/pr0n/pr0nFile /home/bob/mail/file1 /home/bob/mail/spam/viagra /home/mike/kitten.jpg
2017 Oct 26
1
Yet another filter question
Given the structure… /foo/bar/want-this.txt /foo/bar/want-this-2.txt /bar/foo/ /do-not-want-to-transfer/test.txt With the desire to ‘include items with foo in their path’... I understand that the closest I can get to a satisfactory filter ruleset is something like: + **foo** + */ - * … and setting --prune-empty-dirs. However, /bar/foo/ is empty, and of course should be copied.. but is pruned.
2005 Jan 13
4
load object
Hi, I happen to re-write my codes to save memory and my approach is write my obj into file first and later I load it. However, it seems like: load(filename) can load the object but the function returns the name of the object instead of the reference to it. For example, I have an object called r0.prune, which is saved by save(r0.prune, file='r0.prune') and later, I want to load it by
2006 Apr 15
2
include and exclude file
hi i try to include and exclude file when i do a rsync #!/bin/sh # directory to backup BDIR=/home/collinm/test/home # includes file - this contains a wildcard pattern per line of files to exclude INCLUDE=include.txt # excludes file - this contains a wildcard pattern per line of files to exclude EXCLUDE=exclude.txt OPTS="-a -r -v -p -t --delete-before --exclude-from=$EXCLUDE
2016 Feb 03
6
delete directories with find and exclude other directories
Hi all, I'm attempting to delete some directories and I want to be able to exclude a directory called 'logs' from being deleted. This is my basic find operation (without the exclusion) # find . -type d |tail -10 ./d20160124-1120-df8mfb/deployments ./d20160124-1120-df8mfb/releases ./d20160131-16993-vazqg5 ./d20160131-16993-vazqg5/metadata ./d20160131-16993-vazqg5/deployments
2009 Nov 30
0
Gtalk Asterisk integration
Hello users, I am trying to integrate asterisk and gtalk. my configuration is as follows OS:centos asterisk-1.6.0 asterisk-addons-1.6.0 dahdi-linux-2.2 dahdi-tools-2.2 libpri-1.4 share iksemel-1.2 #/etc/asterisk/jabber.conf [general] debug=yes autoprune=no autoregister=no [google] type=client serverhost=talk.google.com username=XXXX at gmail.com secret=xxxxx port=5222 usetls=yes usesasl=yes
2009 Oct 06
1
can a .rsync-filter improve performance?
Hi, I know certain subtrees I want to backup are written once and never deleted. So to reduce the time it takes rsync to run, I was thinking of putting the following .rsync-filter in each of these subtrees: P /** I can see this stops the files on the receiver side from being deleted. Does this filter also improve performance? It looks like it does. If I do a manual test and delete a file in
2010 Oct 25
4
google voice + asterisk: calls made to GV# processed but weird
Dear all, First off, I am very new to asterisk so forgive me if any of my comments or questions seem trivial. Thanks to [this post](http://blog.polybeacon.com/2010/10/17/asterisk-1-8-and-google-voice/) and [this post](http://www.davidvossel.com/?p=28), I have GV set up on asterisk through jabber.conf and gtalk.conf. I can successfully dial out from asterisk. I'm trying to set up an
2008 May 21
1
using gtalk received instant messages in the dialplan
I have been doing some reading about gtalk and asterisk. Most of it is pointed to enable using gtalk for making phonecalls. Would it be possible to use gtalk instant messaging input (just some text send to the gtalk account configured on an asterisk box) into the dialplan. This way you could use gtalk im to trigger all kind of events like sending an sms, adding sip entries to the system,
2007 Jun 21
3
gtalk - no audio
Hi list, I'm trying to get channel gtalk working in asterisk 1.4.5 I have it built and configured as follows: *jabber.conf:* [general] debug=yes autoprune=no autoregister=no [myaccount] type=client serverhost=talk.google.com username=myaccount at gmail.com/Talk secret=mypassword port=5222 usetls=yes usesasl=yes statusmessage="Talk to me" timeout=100 *gtalk.conf:* [general]
2012 Apr 01
0
10.3.0: gtalk_request: No XMPP client to talk to, us (partial JID)
Trying to use gtalk: -- Executing [andy at ipkall:2] Dial("SIP/ipkall-00000000", "gtalk/andy-gtalk/+1xxxyyyzzzz at voice.google.com") in new stack [Apr 1 10:41:53] ERROR[2416]: chan_gtalk.c:1934 gtalk_request: No XMPP client to talk to, us (partial JID) : andy-gtalk gtalk.conf [general] context=google-in ; Context to dump call into allowguest=yes stunaddr =