Displaying 20 results from an estimated 10000 matches similar to: "rsync between mac and network drive"
2003 Aug 19
1
exit status 12 with large files
Hello.
I use rsync version 2.4.6, protocol version 24 on a RH7.2 machine. The
purpose is mirroring a Red Hat repository.
All works fine, *except* for really big files. ISO images (~650MB) are a
good example. Whenever I don't exclude *.iso, I get the following:
==================================================================
receiving file list ... done
sending sums for 1408
2007 Mar 28
2
Destination Permissions on Windows XP
Hello all,
This is my first post to the group, so please go easy on me.
I've setup a cwRsync server on a Windows 2003 Server and an XP client.
I have setup rsync to copy a directory from the server to the client,
and the files transfer perfectly. The only problem is that the
permissions on the destination are wrong. I want the permissions on the
destination to end up being the
2007 Oct 10
3
Rsync on 3 places
Hi all,
I'm newbie with rsync so I would like to ask more
experienced users for help. I have following task:
I have 3 places (A,B and C). Place A is "main" place.
I want to use rsync to synchronize all data from place
A to places B and C (only one-way from A to B and C).
I tried to write simple command but it looks bad. Just
for imagination place A have over 50 GB of data. I
know
2007 Jan 28
2
Timeout, server not responding
I have several WinXP laptops which have been backing up to a FreeBSD 6.0
server via rsync for a good while now. Now one laptop is giving me
grief. I am running cwRsync and invoking a remote rsync daemon via a
shell command:
cmd /K "rsync.exe -avr --rsh=ssh --progress --stats --delete /cygdrive/d/"My
Documents" user@server::user_data"
I get this error locally:
Quote:
2015 Apr 03
2
Disk space usage with mdbox
Shot in the dark here...haven't tried it myself so no promises. There's
probably a much better way to do this but sometimes a little "brute
force" helps.
Theoretical steps:
1. Stop all mail processes - both SMTP and IMAP.
2. Use "doveadm sync" to backup the user mailbox, e.g.,
doveadm backup -u user mdbox:/tmp/usermail
3. Verify /tmp/usermail looks reasonable
2015 Apr 02
2
Disk space usage with mdbox
Yes I have done it, it is the third command I have run, without any change.
a.
On 02/04/2015 09:53 ??, Urban Loesch wrote:
> Did you "purged" the deleted mails for this user?
> On mdbox you must run "doveadm purge -u $USER" to whipe out any as deleted marked mails etc.
>
> Details: http://wiki2.dovecot.org/Tools/Doveadm/Purge
>
> I use a nightly cronjob wor
2006 Oct 03
10
Are you PRO on RoR?
Do you want to get in...
...and got what it takes?
I''m working as it-responsible (diplomatic service) for the Republic of
Cyprus. Now I want to move on, I know that I have the next big thing in
the dot com biz.
It all begun from a dream that became a businessplan and also later on
was nominated by UN World Summit Awards and won the title as best
initiative in category ICT.
In a few
2018 Aug 10
2
llvm MemorySSA def-use chains
Hi,
try adding some alias analysis to the pipeline: see examples in
llvm/test/Analysis/MemorySSA/*.ll
for example assume.ll has
; RUN: opt -aa-pipeline=basic-aa -passes='print<memoryssa>,verify<memoryssa>'
without basic-aa the memory ssa will safely assume that the stores to
%a and %d alias which may be proven disjoint by one of the alias
analyses.
On Thu, Aug 9, 2018 at 8:37
2007 Nov 26
3
xm top
Hello everybody!
I´d like to know where "xm top" gets its information from. I want to get
those informations (cpu-load, mem etc. from the domUs) and display them
with php in a browser. So are the informations stored and updated in a
textfile or something like that? Can anybody help me with this?
Regards
Alexandros
_______________________________________________
Xen-users mailing
2007 Oct 24
1
Unexpected error: exceptions.OSError - Setting up Windows XP HVM
Hello everybody,
i have a problem setting up a DomU with Windows XP. I get the following
error:
xen:/etc/xen# xm create windows.hvm
Using config file "./windows.hvm".
VNC= 1
Unexpected error: exceptions.OSError
Please report to xen-devel@lists.xensource.com
Traceback (most recent call last):
File "/usr/lib/xen-3.1-1/bin/xm", line 7, in ?
main.main(sys.argv)
File
2015 Apr 01
2
Disk space usage with mdbox
Hello,
I am using dovecot with mdbox+sis and I notice an ever increasing disk
space usage since I converted mailboxes from Maildir to mdboxes. I have
checked with a user and while it actually uses only 65K, his mdbox files
on disk are more than 6G. The backup of his mailbox is just 64K. Any
suggestions ?
Below are some relevant commands:
[root at mail ~]# doveadm quota get -u test
Quota
2009 Mar 06
3
PCA and categorical data
Hi all,
I' m trying to figure out if it is appropriate to do a PCA having only categorical data (not ordinal). I have only find the following quote:
One method to find such relationships is to select appropriate variables and
to view the data using a method like Principle Components Analysis (PCA) [4].
This approach gives us a clear picture of the data using KL-plot of the PCA.
However, the
2011 Sep 09
2
Attacking Dovecot
Hello,
I am using Dovecot ver.1.0.7 on an x86 server with RedHat Linux Enterprise 5
and the following configuration:
# 1.0.7: /etc/dovecot.conf
protocols: pop3
login_dir: /var/run/dovecot/login
login_executable: /usr/libexec/dovecot/pop3-login
mail_location: mbox:~/mail:INBOX=/var/mail/%u
mail_executable: /usr/libexec/dovecot/pop3
mail_plugin_dir: /usr/lib/dovecot/pop3
2010 Jun 11
10
Slow TCP performance between Windows Vista and Xen PV-on-HVM guest
I am running a Xen HVM guest with netfront PV drivers. This is running SLES10 SP3 inside the guest. The Dom0 is also SLES10 SP3.
Now I am trying to communicate from that HVM guest to a Windows Visa or also Windows 7 machine and I am getting really poor TCP performance. When tracing on the network traffic, I can see that no packets are dropped or missing or anything, but what happens is that the
2018 Aug 09
2
llvm MemorySSA def-use chains
Hi,
I have a question about how llvm MemorySSA works, as seems I misunderstand something.
Consider following code snippet and corresponding IR with MemorySSA annotations (got with opt -print-memoryssa)
void foo(int* b) {
int a = 0;
int d = 12;
if (b) {
a = 42;
d = 32;
}
int c = a;
int e = d;
}
; Function Attrs: noinline nounwind optnone uwtable
2018 May 04
2
RFC: Are auto-generated assertions a good practice?
Hello llvm-dev,
On a recent code review I was asked to auto-generate assertion checks for my unit test. I wasn't aware that this was even possible. I am referring to the python `update` scripts under `utils` directory. My first reaction was wow! I found it very practical and useful. It saves you significant amount of time when writing a regression test. So I gave it a try. The generated
2008 Nov 10
1
Current status of --inplace?
In the 3.0.4 version of the man pagem dated June 29, 2008, it still
states:
"""
(5) the efficiency of rsync?s delta-transfer algorithm may be reduced if
some data in the destination file is overwritten before it can be copied
to a position later in the file
"""
Also, I know I have read somewhere in the past that the limitation stems
from the fact that "rsync
2007 Apr 03
1
SDP bug
>> The call that gets dropped had a retransmission of INVITE from UAC
>> to UAS (and therefore retransmission of 200 OK from UAS to UAC).
>> There is nothing wrong with the re-transmission as such, but I
>> noticed a potential bug in Asterisk in the way it responds to an
>> INVITE retransmission. Asterisk is bumping up the session version
>> number in
2010 Mar 17
2
define F-ratio computations with aov
Greetings to all,
This is my model: aov.fit<-aov(Y~A+B+C+D+E+A:C+A:E)
In summary(aov.fit) all F values are comptuted by eg MS(A)/MS(Residuals). This is not correct (or what I want), except for F(B) and F(A:E). I suppose P values are not correct either.
Is it possible with aov to define the way F computations will be done? I 'd like them to be like this: F(A)=MS(A)/MS(E),
2005 Jul 15
3
Samba File Server with 2 NICs, only one is used
Hello all,
We have a Mandrake 10.1 server with Samba 3.0.13. The box has 2 NICs,
2 IPs and our DNS servers have both entries (same name for 2 IPs).
Since kerberos is not working around here (tried to fix it for about 3
weeks, then gave up) I found my workaround: I use NetBIOS alias for my
server, all clients use this alias for samba access and they
authenticate thgrough SSPI.
My problem is that