Displaying 20 results from an estimated 200 matches for "recv_generator".
2014 Aug 03
2
[Bug 10756] New: rsync can't create files or dirs in subdirs (sometimes?)
...m --prune-empty-dirs --whole-file --xattrs ),
"--compare-dest=/home, /home.snap /home.diff
Today I got a bunch of new failures -- looks like anything in a subdirectory
failed? What's going on??
Oldest Snapshot = Home-2014.08.01-02.20.35.
Rsync with 9 excludes from config file...rsync: recv_generator: mkdir
"/home.diff/Bliss/Documents/law/Pictures/resources/Icons" failed: No such file
or directory (2)
*** Skipping any contents from this failed directory ***
rsync: recv_generator: mkdir
"/home.diff/Bliss/Documents/law/Pictures/resources/PSDs" failed: No such file
or directory...
2002 Jul 16
0
Rsync windows to linux is hanging
...angs, everything works out fine. I have tried both compressed
and uncompressed transfers. I am running the following:
Windows 2000 running cygwin rsync 2.5.5 and OpenSSH_3.4p1 (the sender)
Redhat 7.3 with rsync 2.5.4 and OpenSSH 3.1
Rsync reports the following at the time it hangs:
<snip>
recv_generator(Desktop/secdog docs/SecDog.Flyer.doc,6417)
recv_generator(Desktop/secdog
docs/SecDog.Hosting.Agreement.Appendices.doc,6418)
recv_generator(Desktop/secdog docs/SecDog.Hosting.Agreement.doc,6419)
recv_generator(Desktop/secdog docs/SecDog.Overview.doc,6420)
recv_generator(Desktop/secdog docs/SecDog.Re...
2002 Nov 10
0
bug with symlinks
...of pattern *
including directory dists/stable-proposed-updates because of pattern /dists/*
make_file(-1,dists/stable-proposed-updates)
excluding directory pool because of pattern *
excluding file Packages.gz because of pattern *
send_file_list done
deleting in .
generator starting pid=1289 count=21
recv_generator(.,0)
recv_generator(dists,1)
recv_generator(dists/Debian2.2r7,2)
recv_generator(dists/Debian3.0r0,3)
recv_generator(dists/old-proposed-updates,4)
recv_generator(dists/oldstable,5)
recv_generator(dists/potato,6)
set modtime of dists/potato to (987467538) Tue Apr 17 02:32:18 2001
dists/potato/
recv_g...
2005 Jul 07
1
rsync 2.6.4 - directory always updated
Hi,
I'm trying to figure out why when I do an rsync (Solaris, version
2.6.4 on both sides) from a site on the West Coast of the US to a site
on the East coast, I keep getting directories updated when I use the
command like this:
# rsync -ar -v -v -i -O --force --delete --exclude=.snapshot --stats \
src:/sysic/lib/freedomlib_V100/ /sysic/lib/freedomlib_V100/
And I get output like this,
2002 Sep 25
0
Rsync Hangs 100% of the time when copying files from win2k machin es to linux
...m going to need some
help.
It happens after I issue the following command from the linux box:
rsync -avx --progress --ignore-errors --delete-excluded --delete -vvv
--exclude-from=system/excludes -e ssh
Administrator@10.0.0.159:/cygdrive/c/WINNT deleteme/
Here is the tail end of it's output:
recv_generator(WINNT/twain_32/fjscan/fcpa,9712)
recv_generator(WINNT/twain_32/logiscan,9713)
recv_generator(WINNT/twain_32/miitwain,9714)
recv_generator(WINNT/twunk_16.exe,9715)
recv_generator(WINNT/twunk_32.exe,9716)
recv_generator(WINNT/uneng.exe,9717)
recv_generator(WINNT/uninst.exe,9718)
recv_generator(WINNT/...
2007 Jun 18
1
Rsync with non-english characters in filenames?
...ces/com.apple.systempreferences.plist
test070503/u2/Library/Preferences/com.apple.systemuiserver.plist
test070503/u2/Library/Preferences/com.apple.universalaccess.plist
test070503/u2/Library/Preferences/loginwindow.plist
test070503/u2/Library/Preferences/widget-com.apple.widget.weather.plist
rsync: recv_generator: mkdir
"/Volumes/Home_dirs/homes/students/kv04/kv04hen/inl?mningsuppgifter"
failed: Invalid argument (22)
rsync: stat "/Volumes/Home_dirs/homes/students/kv04/kv04hen/inl?mningsuppgifter"
failed: Invalid argument (22)
rsync: recv_generator: mkdir
"/Volumes/Home_dirs/homes/st...
2007 Jan 27
1
rsync: recv_generator and stat errors
Sorry, my question was whether or not this issue has been resolved.
Thanks
Hello,
I am having problems with
rsync: recv_generator: mkdir "dirname" No such file or directory (2)
stat dirname No such file or directory
Which is the same problem reported in the link below:
http://www.mail-archive.com/rsync@lists.samba.org/msg16446.html
rsync eating bandwidth without doing anything tyko brown
We...
2004 Aug 18
0
[Bug 1618] New: rsync transfer messages
...recv_file_list
done
get_local_name
count=10 /bucket/agfsap19/inbound
generator starting pid=23686
count=10
recv_generator
(0.dbf,0)
0.dbf is
uptodate
recv_generator
(1.dbf,1)
1.dbf is
uptodate...
2014 Dec 17
1
Differing behaviour on consecutive runs
...ags turned on. Am I missing something
that will let me know what rsync is thinking?
My command-line is:
rsync --info=all4 --debug=all4 -auvz --modify-window=1 ./src/dir/
server:path/to/dst/dir/
On the good run I see this in the output:
...
generator starting pid=3205
delta-transmission enabled
recv_generator(.,0)
recv_generator(.,1)
recv_generator(604-001-bg.jpg,2)
604-001-bg.jpg is uptodate
recv_generator(604-001-l.jpg,3)
604-001-l.jpg is uptodate
recv_generator(604-001-m.jpg,4)
604-001-m.jpg is uptodate
...
and on the later run when everything is copied again I see this:
...
generator starting pid=1...
2008 Mar 19
0
[PATCH] Unsnarl missing_below/dry_run logic.
...re. On a --dry-run,
the generator can also note the missingness of a directory while still scanning
its contents. These two scenarios were conflated using a single set of
missing_below/missing_dir variables in combination with transient increments in
dry_run; this caused at least three bugs.
Now recv_generator has separate variables for the two scenarios, called skip_dir
and dry_missing_dir, respectively. For simplicity, we take the F_DEPTH instead
of having separate *_below variables. We mark both kinds of missing dirs with
FLAG_MISSING_DIR. (dry_run > 1) iff the *root* of the destination does not...
2008 Jul 06
1
Handful of files are giving me error 13, directory executable bit issue
...-a and
thought maybe that was why. Currently my options are:
-rlEtiOzP
I don't need to keep the uid/gid permissions, but I do need to keep
the executability. But it seems like it can't create a directory on
the client when the executable flag is missing on the server or
something?
rsync: recv_generator: failed to stat
"/home/backups/linux01/home/clientdir/web/webapps/ROOT/videotemp/RollingDemo_media/images/bottom_center.jpg":
Permission denied (13)
rsync: recv_generator: failed to stat
"/home/backups/linux01/home/clientdir/web/webapps/ROOT/videotemp/RollingDemo_media/images/bottom_...
2009 May 15
1
rsync creates file twice
...r] make_file(/usr/include/fltk-1.1/FL/Fl_Toggle_Light_Button.h,*,2)
[sender] make_file(/usr/include/fltk-1.1/FL/Fl.h,*,2)
[sender] make_file(/usr/include/fltk-1.1/FL/Fl_Choice.h,*,2)
[sender] make_file(/usr/include/fltk-1.1/FL/Fl_Pixmap.h,*,2)
generator starting pid=12624
delta-transmission enabled
recv_generator(usr,1)
recv_generator(usr,2)
[sender] make_file(/usr/include/fltk-1.1/FL/Fl_GIF_Image.h,*,2)
[sender] make_file(/usr/include/fltk-1.1/FL/Fl_FormsBitmap.h,*,2)
[sender] make_file(/usr/include/fltk-1.1/FL/Fl_Menu.H,*,2)
[sender] make_file(/usr/include/fltk-1.1/FL/Fl_Sys_Menu_Bar.H,*,2)
[sender] make_...
2006 Oct 11
4
"Invalid file index" failures, suspicious index numbers
...tor] make_file(bin/fgrep,*,2)
[generator] make_file(bin/gtar,*,2)
[generator] make_file(bin/nisdomainname,*,2)
[generator] make_file(bin/rbash,*,2)
* This continues up to about the 348,000-line mark and we see "delta-
transmission enabled":
delete_in_dir(lib)
delta-transmission enabled
recv_generator(.,0)
set modtime of . to (1153412202) Thu Jul 20 18:16:42 2006
recv_generator(.autofsck,1)
recv_generator(bin,2)
recv_generator(bin/arch,3)
recv_generator(bin/ash,4)
recv_generator(bin/ash.static,5)
recv_generator(bin/awk,6)
bin/awk is uptodate
recv_generator(bin/basename,7)
recv_generator(bin/bash...
2008 Jul 04
2
rsync --delete isn't deleting files
I had this working on an older version, since 2.6.9 that when I set
--delete and --dry-run, I get no "Deleting ******" lines. Also, the
--delete-before never worked for me.
Working on a space constrained mirror, this has proven very handy,
when it works. What's up with the new versions? I haven't changed a
thing.
Best regards,
Tiago Marques
2011 Dec 16
1
[Bug 8665] New: Crash in free_xattr(), from recv_generator()
https://bugzilla.samba.org/show_bug.cgi?id=8665
Summary: Crash in free_xattr(), from recv_generator()
Product: rsync
Version: 3.1.0
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P5
Component: core
AssignedTo: wayned at samba.org
ReportedBy: chris at onthe.net.au
QAConta...
2001 Aug 31
0
Weird file permission behavior
...one
get_local_name count=5 /service/eftp/
[Lots of excludes get added]
make_file(-1,customers)
make_file(-1,customers/andan)
make_file(-1,customers/rbak)
make_file(-1,customers/rbak/OID308.netapp7)
send_file_list done
deleting in customers
generator starting pid=24711 count=5
recv_files(5) starting
recv_generator(customers,0)
send_file_list done
recv_generator(customers/andan,1)
[###### Here is the trouble spot ######]
send_files starting
recv_generator(customers/rbak,2)
recv_generator(customers/rbak/OID308.netapp7,3)
failed to open customers/rbak/OID308.netapp7, continuing : Permission
denied
recv_genera...
2008 Apr 30
2
rsync copying over existing files
..._name(backup/EDC3.1.4.dmg.zip)
recv_file_name(backup/SLES-10-x86-CD1.iso)
recv_file_name(backup/stage2.img)
recv_file_name(backup/wget)
received 4 names
recv_file_list done
get_local_name count=5 backup.dest
generator starting pid=14511
delta-transmission disabled for local transfer or --whole-file
recv_generator(backup,1)
recv_generator(backup,2)
send_files(2, backup)
.d backup/
delete_in_dir(backup)
[generator] make_file(backup/EDC3.1.4.dmg.zip,*,2)
[generator] make_file(backup/SLES-10-x86-CD1.iso,*,2)
[generator] make_file(backup/stage2.img,*,2)
[generator] make_file(backup/wget,*,2)
recv_gener...
2008 Mar 11
1
error allocating core memory buffers with certain iconv args
...file_list done
recv_file_name(db/archivi)
recv_file_name(db/def)
recv_file_name(db/disegni)
recv_file_name(db/prj)
recv_file_name(db/storici)
received 5 names
recv_file_list done
get_local_name count=6 /tmp/
generator starting pid=26880
delta-transmission disabled for local transfer or --whole-file
recv_generator(db,1)
recv_generator(db,2)
recv_generator(db/archivi,3)
recv_generator(db/def,4)
recv_generator(db/disegni,5)
recv_generator(db/prj,6)
recv_generator(db/storici,7)
recv_files(1) starting
rsync: connection unexpectedly closed (9 bytes received so far) [sender]
rsync error: error allocating core memo...
2010 Oct 30
1
osx remote backup wrong permissions
...but the results were the same though some files had permission denied errors. The output on my test folder show nothing remarkable, no errors, etc. Am I missing something here?
Any thoughts appreciated or directions to look in.
Thanks, Rob
delta-transmission enabled
recv_files(1) starting
recv_generator(audit,1)
recv_generator(audit,2)
send_files(2, /private/var/audit)
audit/
set modtime of audit to (1288417603) Sat Oct 30 01:46:43 2010
recv_generator(audit/20100701144405.20100702030039,3)
send_files(3, /private/var/audit/20100701144405.20100702030039)
send_files mapped /private/var/audit/20100701...
2004 Dec 21
1
Rsync permission issue
...module /dest
My LAN servers connect w/o incident or problems. However- I am trying to connect in a remote server and it is giving me some grief.
rsyncd.log excerpt:
2004/12/20 17:00:46 [25997] stat "fran/Herb's info" (in eca) failed: Permission denied
2004/12/20 17:00:46 [25997] recv_generator: mkdir "noreneold/My Documents" (in eca) failed: Permission denied
2004/12/20 17:00:46 [25997] stat "noreneold/My Documents" (in eca) failed: Permission denied
2004/12/20 17:00:46 [25997] recv_generator: mkdir "noreneold/My Documents/All-in-one" (in eca) failed: Permis...