Displaying 20 results from an estimated 900 matches similar to: "Incorrect Total File Size"
2008 Sep 30
1
Transfer between windows and linux going wrong
Hi,
I am running rsync 2.6.9-2etch2 protocol version 29 in a Debian machine.
There is a Windows machine that I want to get the files from debian. For
that I'm using rsync for windows version 3.0.4 protocol version 30
"C:\Program Files\cwRsync\bin\rsync.exe" -Cavz root@10.1.100.45:/root/
rsync: Failed to exec ssh: No such file or directory (2)
rsync error: error in IPC code (code 14)
2002 Oct 24
1
rsync error: partial transfer (code 23) at main.c(578)
Hi,
I am using a freebsd 4.5-stable system. I am using the latest "rsync
version 2.5.5 protocol version 26".
I tried to rsync my home directory to another machine:
rsync -Cavz /homes/yxw/ baggie.mit.edu:/disk1/ &> rsync.out&
However, I ran into the error:
www/wf-02.jpg
www/wf-03.jpg
www/www.c
www/www.tar
www/xiaowei.doc
www/xiaowei_dadmom.jpg
www/yxw-contact.txt
wrote
2018 Dec 30
1
--dry-run won't say where the files are going to go
Try as we may (--dry-run), it still won't tell us where it intends to put the files,
$ rsync --dry-run --remove-source-files --relative --verbose --itemize-changes -Cavz Maildir/new /tmp/
sending incremental file list
delta-transmission disabled for local transfer or --whole-file
cd+++++++++ Maildir/
cd+++++++++ Maildir/new/
>f+++++++++ Maildir/new/1546157908.1392_1.jidanni7
total:
2003 Aug 20
1
including file from excluded directory
I'm trying to explicitly include a file that exists under a directory
that I otherwise want excluded. Here are my command and include list:
rsync -e ssh -Cavz --delete --update \
--include-from=$HOME/.rsync.laptop . $DEST:
where $DEST contains the remote machine name and this is being run
from the top of my home directory. My include list is:
+ /.addressbook
+ /.ICAClient
+
2003 Mar 03
1
csum-length documentation
I was startled to find that the --csum-length option is not
implemented even though it is documented in the manpage.
Not a good thing.
Here's a patch that removes the manpage entry. I'd much
rather not see this option and actually have the csum_length
be per-file dynamic. Either way this patch should be
applied at least until the code changes.
The patch also brings rsync.1 and
2007 Oct 15
2
Association Help , 2 Teams playing a FootballGame
So I have the models
class FootballGame < ActiveRecord::Base
end
and
class Team < ActiveRecord::Base
end
I want to be able to do something like this
@t1 = Team.create(:name=>"Michigan Wolverines football")
@t1.save
@t2 = Team.create(:name=>"Penn State Nittany Lions football")
@t2.save
@g = FootballGame.create(:hometeam => @t1, :awayteam => @t2)
@g.save
2015 Feb 02
1
Re: [PATCH 5/6] New APIs: copy-in and copy-out
On Mon, Jan 26, 2015 at 05:04:10PM +0100, Pino Toscano wrote:
> Currently implemented as guestfish commands, provide them instead as
> single source -> destination functions for the library, so they can be
> used also in other places.
>
> These functions are not added to guestfish, since guestfish has its own
> implementation (which will soon switch to call copy-in and
2015 Jan 26
0
[PATCH 5/6] New APIs: copy-in and copy-out
Currently implemented as guestfish commands, provide them instead as
single source -> destination functions for the library, so they can be
used also in other places.
These functions are not added to guestfish, since guestfish has its own
implementation (which will soon switch to call copy-in and copy-out for
multiple paths).
---
generator/actions.ml | 28 ++++++
po/POTFILES | 1 +
2015 Jan 26
6
[PATCH 1/6] cmd: add a way to run (and wait) asynchronously commands
---
src/command.c | 64 +++++++++++++++++++++++++++++++++++++++++++-------
src/guestfs-internal.h | 3 +++
2 files changed, 58 insertions(+), 9 deletions(-)
diff --git a/src/command.c b/src/command.c
index 4bb469b..e26573d 100644
--- a/src/command.c
+++ b/src/command.c
@@ -360,7 +360,7 @@ debug_command (struct command *cmd)
}
static int
-run_command (struct command *cmd)
2012 Oct 17
2
Rsync - include only files containing matching string
I have a string, "2012_10_16"; let's call this $YESTERDAY
How can I rsync a file tree from a remote machine to the local one,
including *only* filenames that contain the matching string? I've
read the man page and googled around but can't seem to get the syntax
right. I either end up syncing all the files, or none of them.
Here's how the code looks now (I will remove
2017 Feb 15
1
[PATCH v2] copy-out: new optional arguments
Add new optional argument to copy-out: 'numericowner', 'excludes',
'xattrs', 'selinux', and 'acls'. Pass them straight to tar-out, so
it is possible to tweak how the files are extracted from the guest,
and locally saved.
---
generator/actions.ml | 37 +++++++++++++++++++++++++++++++++++--
gobject/Makefile.inc | 2 ++
lib/copy-in-out.c | 29
2017 Feb 14
0
[PATCH 06/10] copy-out: new 'excludes' optional argument
Add a new 'excludes' optional argument to copy-out, passing it straight
to tar-out: this way it is possible to exclude files when extracting a
directory from the guest.
---
generator/actions.ml | 16 ++++++++++++++--
gobject/Makefile.inc | 2 ++
lib/copy-in-out.c | 13 ++++++++++---
3 files changed, 26 insertions(+), 5 deletions(-)
diff --git a/generator/actions.ml
2017 Feb 14
1
Re: [PATCH 06/10] copy-out: new 'excludes' optional argument
On Tue, Feb 14, 2017 at 09:12:07AM +0100, Pino Toscano wrote:
> Add a new 'excludes' optional argument to copy-out, passing it straight
> to tar-out: this way it is possible to exclude files when extracting a
> directory from the guest.
> ---
> generator/actions.ml | 16 ++++++++++++++--
> gobject/Makefile.inc | 2 ++
> lib/copy-in-out.c | 13 ++++++++++---
> 3
2015 Feb 02
8
[PATCH 0/7 v2] Make copy_in & copy_out APIs, and use copy_in in customize
Hi,
attached there is the second version of the patch series adding
copy_in and copy_out in the library, mostly moving them from guestfish.
It also adds the copy_in usage in virt-customize, as aid in a new image
building.
Thanks,
Pino Toscano (7):
cmd: add a way to run (and wait) asynchronously commands
cmd: add a child-setup callback
cmd: add the possibility to get a fd to the process
2009 Jul 29
1
How could be "total transferred file size" more than "total file size" ?
Hi,
Please see below rsync-3.0.6 statistics.
Number of files: 109651
Number of files transferred: 7013
Total file size: 6426699145 bytes
Total transferred file size: 7531020054 bytes
Literal data: 2060328093 bytes
Matched data: 5472534579 bytes
File list size: 3209170
File list generation time: 0.120 seconds
File list transfer time: 0.000 seconds
Total bytes sent: 2073977452
Total bytes
2001 Oct 18
2
problems between different versions of rsync
Are there issues between different versions of rsync? Specifically I
have a 2.4.6 on solaris 8 pushing to a 2.3.0 on solaris 2.6 over
ssh(F-Secure version). The issue that I am seeing is that when I use
the following command:
rsync --delete -rlvp -e ssh2 $localdir user@host:remotedir
The user and group are different on both boxes(neither being root).
Any help would be appreciated.
--Jeff
2008 Jan 15
0
strange sar statistics: total CPU 90% in userspace, but CPU 0 and 1 only 1%
Hi Centos Users
The server (ProLiant DL380 G5, Centos 4.3) was not responsible anymore
(SSH), fans rotated at full power and the console was blank. After
restart it seems to be fine.
Now I am analyzing sar statistics (in system logs nothing special,
unusual). The hardware monitoring with HP tools didn't work.
# sar -P ALL
Linux 2.6.9-34.ELsmp (cent061) 01/15/2008
12:00:01 AM
2007 Nov 25
1
Total novice
Hi.
I want to remove one of three hard drives. But if I just remove the
disk, Linux
signals errors and enters administrative mode requesting corrective
actions which,
of course, I do not know. If I reconnect the drive, everything returns
to normality.
Can anyone help me?
Thanks in advance.
MLM
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Mar 20
1
Running total of a field in child records
What is the best way to get the running total of a number field in child
records. Let say I have an Order model, which has_many :line_items, and each
LineItem has an amount field. I would like to get the grand total of a
specific Order. Is it a good idea to add a ''total'' column in the ''orders''
table and update it every time a line_item is
2007 Mar 19
1
rebooting more often to stop fsck problems and total disk loss
Hi,
I run several hundred servers that are used heavily (webhosting, etc.)
all day long.
Quite often we'll have a server that either needs a really long fsck
(10 hours - 200 gig drive) or an fsck that evntually results in
everything going to lost+found (pretty much a total loss).
Would rebooting these servers monthly (or some other frequency) stop this?
Is it correct to visualize this as