similar to: process --files-from filelist as given

Displaying 20 results from an estimated 10000 matches similar to: "process --files-from filelist as given"

2023 Dec 31
0
process --files-from filelist as given
>> I want to copy a list of files in specific order > Why ? because i want to serialize files on disk so they are stored on disk in the order being accessed regularly i built that list for --files-from?? via output from fatrace tool. i now did use tar to transfer the files i will add an RFE to bugzilla thanks roland Am 31.12.23 um 20:56 schrieb Francis.Montagnac at inria.fr: >
2012 Nov 02
2
Rsync problem when connected to mirror site
Hello, I'm trying to connect to one of the mirror sites to get a package update for Linux server through the proxy server, but after approximately 10- 15 minutes it times out with the following error: "rsync error: timeout in data send /received (code 30) at ioc (140) [receiver=3.0.9] rsync: connection unexpectedly closed (973 bytes received so far) rsync error: error in rsync
2017 Feb 23
3
which rsync command?
This is looking good and very helpful to an rsync novice. I will try the modification rsync --dry-run -avi --delete --filter 'protect /*’ --filter ‘protect /.*’ SOURCE/ TARGET/ and see what it produces. I do have a number of directories and files beginning with a dot in TARGET and these need to be protected. Unfortunately, the output from —dry-run is still likely to be sufficiently
2015 Apr 13
4
How to discern when like dir names exist in 2 places
Hi, On Mon, 13 Apr 2015 12:59:07 -0400 Kevin Korb wrote: > Hmmm, according to my interpretation of the man page (I am on 3.1.1) > that is supposed to work however when I test using the "-/ > /etc/passwd" example the / seems to have the same effect as commenting > the line. I get /etc/passwd copied whether the source is / or /etc. I guess that this -/ syntax is not usable
2010 Dec 28
4
MacOS and Extended Attributes
I'm just starting with rsync(). I grabbed the 3.0.7 source and built it on Mac OS X.6.5 (./configure and ./make reported no problems.) When I try running with -X or -A, I get the following error messages: rsync: unpack_smb_acl: sys_acl_get_info(): Unknown error: 0 (0) rsync: unpack_smb_acl: sys_acl_get_info(): Unknown error: 0 (0) A quick look at the buglist didn't reveal anything to
2013 Jan 11
4
Does rsync need a --ignore-unreadable-files option?
I work on software that archives gigabytes of files to multiple sites. Occasionally one or two files have no read permissions: % ls -l dir/foo --w-------+ 1 abcserve myusers 11222 Jan 10 03:14 The error message is: rsync: send_files failed to open "/dir/foo" (in xxx): Permission denied (13) rsync error: some files/attrs were not transferred (see previous errors) (code 23) at
2017 Feb 23
2
which rsync command?
I hate to say it because it goes against my normal advice but this is one instance where using a * in the source parameter would help... rsync -vaiE --delete --dry-run source/* target/ This would ignore any top level directory that is on the target but not the source while rsyncing with --delete any top level directory that is on the source. It is normally recommended to not use a * in the
2015 Apr 13
1
How to discern when like dir names exist in 2 places
On Mon, 13 Apr 2015 13:45:18 -0400 Kevin Korb wrote: > The +/- syntax absolutely works in an --exclude-from or --include-from > file I use it all the time. However, apparently the -/ syntax does > not work there. > So, I am not sure if the man page is wrong or if this feature just > isn't working correctly in an exclude file. This is perhaps this note in the "FILTER
2011 Jul 14
1
copy /backup/current/home/???user>/Maildir -> /home/???user>/Maildir ?
On Sat, 09 Jul 2011 15:04:24 +0200 Louis-David Mitterrand wrote: > Is there also a pure rsync solution (without any shell loop) maybe based > on --include/--exclude? I thing the following will do: cd /backup/current/home rsync -av --delete \ --include '/*/' \ --include '*/Maildir/***' \ --exclude '*' \ . /home Beware that the
2019 Aug 27
2
implied-dirs tail component being chown'd
I use rsync in a fairly complex scripted situation and am trying to figure out how to avoid changing ownership/permissions just on the directories specified on the command line (but operate normally for everything underneath). I've been using --relative --no-implied-dirs with some success in other situations, but here it still seems to try to chown the last path component of the
2016 Oct 30
2
-e escape rule
> assuming that a shell is being used is invalid I never made this assumption. I looked directly at the source code and I stated that "I feel that this function should also handle backslash escapes." I think the assumption that splitting the command works the same way as (all?) major shells, is not inappropriate given the circumstances, and it seems like you agree. > but
2003 May 13
1
rsync through intermediate server
We have a number of scripts that use rsync to automate administration of a number our servers. We are adding servers that are not directly network accessible to our main admin box. That is, we have to go through an intermediate machine to reach these new machines. I've seen how you can string ssh commands together to copy commands through an intermediate machine. Does anyone know of a
2003 Apr 19
1
Possible new rsync bug
Hello, I think I found a bug in rsync. I checked the TODO and the issues, but I didn't find any reference to it. It seems, that rsync goofes up, if you rename a directory and then create a symlink with the old name to the new location. Below is a simple example how to do it. ------------------------------------------------------------------------------ [ptriller] elmore:~/test > ls
2019 Apr 23
2
--delete-missing-args doesn't delete
Thank you Kevin. It seems that I misunderstood the purpose of this --delete-missing-args option. If someone has a good suggestion on how to rsync a list of files and delete from the destination any file that is not listed in --files-from, that would be welcome. Thanks, MI -------- Original Message -------- (Kevin Korb via rsync, 2019-04-23 14:11) > --files-from will delete files from
2023 Mar 09
1
rsync 3.2.7 hangs when --usermap is used and receiver is not a super-user
Hi. On Wed, 08 Mar 2023 22:21:28 +0100 Tomasz Chmielewski via rsync wrote: > After upgrading to rsync 3.2.7, the following command hangs forever > (using "--usermap" causes the hang; without "--usermap" it doesn't > hang): > rsync -v -p -e --usermap user:user /etc/services user at remote: This command is incorrect: the -e option needs a command. Without
2004 Apr 01
2
Problems with Rsync
Sorry if this problem has been covered previously. I'm having a problem with Rsync. I have created a script to put in cron but that is besides the point. Here is the script that i'm using. #!/bin/sh HOST=`/bin/hostname`
2023 Mar 05
1
Trying to diagnose incomplete file transfer
I second Francis here. You don't need to diagnose incomplete file transfers as long as you have racing conditions as you described. This leads to strange result inevitably. NEVER start several rsync jobs manipulating the same data - especially if there are modifications to BOTH sides source and destination. You do not necessarily define a service like Francis suggests. A simple semaphore
2005 May 09
4
Two folders !
Hello !! I need to sync two folders in fedora linux. One is at /ftp/test/test1 Second is at /ftp/test/test1/test3 I need to sync /ftp/test/test1/test3 that new files uploaded will be seen in /ftp/test/test1 every hour or a day . How do i do that ? Thank YOU ALL ! Tibor Vovcak Slovenia -------------- next part -------------- HTML attachment scrubbed and removed
2019 Jul 26
2
Correct, resumable, large-file flags
Hello. I'm a long-time rsync user, but I've encountered a case today and I just can't seem to get rsync to do the right thing. I want to mirror a directory A on server www1.example.com to a directory B on www2.example.com. The directory A contains very large but essentially read-only files. A server process on www1.example.com periodically creates new large files and deletes old
2004 Jun 21
3
error in rsync protocol data stream (code 12) at io.c(165)
I am recieving a connection unexpectedly closed error while trying to sync a directory on two machines. Rsync is in my path on both machines. I am using ssh and I can connect to the server fine through ssh. I am using a vpn but have no problems connecting to any of the servers with it. This is the full error message I get: Remote Machine: Connection refused rsync: connection unexpectedly