Displaying 20 results from an estimated 1000 matches similar to: "problem with --delete if I sync part of a dir"
2002 Aug 11
2
How to rsync selective subdirectories
Hi
My directory structure is something like following:
List of files in /abc/dir/
20020811
20020812
20020814
20020815
(where directory name above is the date, and daily changes i.e.
directories are added and deleted)
list of files in /abc/dir/20020811
toid
toil
etd
dt
(all the date directories contain the directories as above and
2008 May 16
2
Existing files don't show up in share, new files do
I am suddenly no longer able to see any existing files on one of my
shares, from my Windows clients.
I have a Linux server (Fedora Core 8) which used to be my firewall and
router as well as file and print server. There are two Samba shares on
it I have mounted on various Windows clients: my home directory and a
multimedia directory with my music and videos, etc. I mount the former
as H: on all my
2012 Jun 05
1
data analysis problem
Dear R users,
I have data on 4 types of interest rates. These rates evolve over
time and across regions of countries . So for each type of interest
rates I want to run a regression of rates on some other variables.
So my regression for one type of interest rate will be I_{ij}_t= a
+regressors +error term.
where I_{ij}_t is the absolute difference in rates between two
locations i and j at time
2004 Dec 12
2
Help : generating correlation matrix with a particular structure
Hi,
I would like to generate a correlation matrix with a
particular structure. For example, a 3n x 3n matrix :
A_(nxn) aI_(nxn) bI_(nxn)
aI_(nxn) A_(nxn) cI_(nxn)
aI_(nxn) cI_(nxn) A_(nxn)
where
- A_(nxn) is a *specified* symmetric, positive
definite nxn matrix.
- I_(nxn) is an identity matrix of order n
- a, b, c are (any) real numbers
Many attempts have been unsuccessful because a
2002 Jul 29
1
problems preserving permissions -
Hi All,
I recently installed Rsync to perform backup features - this
includes backing up a /home dir and keeping ownerships/permissions
intact is obviously very important....
However when I perform.
(current working path is /home)
rsync -azv --progress --stats * andrew@192.168.0.2::tmp/home
and on the server side of things... I have it setup like so -
motd file = /etc/rsyncd.motd
2006 Mar 08
2
"humanizing" model attributes presentation
Given a field in database defined as "discount_rate numeric(3,1)" I
found it not very usable for presenting it directly. For example, if
there''s a value 5.00 it will render in
<%= text_field ''model'', ''discount_rate %>
as "0.5E1" which is not very friendly to user. All I do is that I write
kind of proxy accessors (prefixing with
2003 Aug 13
4
Question on --include-from option.
Hello list,
I am running rsync 2.5.5 on some Solaris 7 and 8 boxes.
I'd like to sync different directories from one box to another.
This is my include file:
ppukweb2% more rsync-include-file
/tmp/loris/testrsync1
/tmp/loris/testrsync2
/tmp/loris/testrsync3
This is the command I run:
rsync -azv -e ssh --stats --include-from=/tmp/rsync-include-file
ppukweb8:/tmp/loris
and this is the
2011 Jul 11
1
Spectral Coherence
Greetings,
I would like to estimate a spectral coherence between
two timeseries. The stats : spectrum() returns a coh matrix
which estimates coherence (squared).
A basic test which from which i expect near-zero coherence:
x = rnorm(500)
y = rnorm(500)
xts = ts(x, frequency = 10)
yts = ts(y, frequency = 10)
gxy = spectrum( cbind( xts, yts ) )
plot( gxy $ freq, gxy $
2008 Jun 21
5
recommendations for copying large filesystems
I need to copy over 100TB of data from one server to another via network.
What is the best option to do this? I am planning to use rsync but is there
a better tool or better way of doing this?
For example, I plan on doing
rsync -azv /largefs /targetfs
/targetfs is a NFS mounted filesystem.
Any thoughts?
TIA
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2002 Oct 30
1
upload to rsync server syntax problems
What I'm trying to do: upload files from my local machine to an rsync server
running on a remote host.
What I don't know: syntax on how to do this.
I initially set the conf file so that I could download from the remote
machine to my local machine, the syntax:
rsync -azv --delete rsync://user@remote.machine.com:12923:blah destdir
This worked fine. So then, I wanted to go the other
2014 Mar 04
3
[LLVMdev] [cfe-dev] C++11 reverse iterators (was C++11 is here)
On Mon, Mar 3, 2014 at 12:26 AM, Chris Lattner <sabre at nondot.org> wrote:
>
> On Mar 2, 2014, at 8:53 PM, Renato Golin <renato.golin at linaro.org> wrote:
>
> > On 3 March 2014 12:32, Pete Cooper <peter_cooper at apple.com> wrote:
> >> Would those work with a foreach construct? Perhaps I forgot to mention
> that was what I'm trying to work out
2002 Apr 21
3
ports/36998: rsync requires -O2 on BSD to avoid segv?
On 21 Apr 2002, Anders Nordby <anders@fix.no> wrote:
> # rsync -azv \
> rsync://sunsite.dk/ftp//mirrors/mysql/Downloads/Contrib/MyAccess.mda .
Works fine for me using rsync's upstream HEAD and 2.5.5 release. So
it seems like it must be either something in BSD's patches, or
something about your compiler, or possibly something else.
Could you please try building from upstream
2002 Jun 09
1
Rsync of filesystems with sym-links to other hosts
HI,
I have a scenario where a filesystem i.e /fs13/m6.uecommon.1/wmt8/utils is
residing on a fileserver i.e. fs13. Contents of this filesystem are as
follows:
# ls -l /fs13/m6.uecommon.1/wmt8/utils
lrwxrwxrwx ........ include-> /fs12/m6.uecommon.1/utils/include
lrwxrwxrwx ........ tool_utils-> /fs12/m6.uecommon.1/utils/tool_utils
The filesystems being pointed to i.e
2011 Aug 02
0
[LLVMdev] clang: Manual unfolding doesn't match automatic unfolding
Here's the code and compilation steps:
#include <stdint.h>
typedef unsigned int uint128_t __attribute__((mode(TI)));
typedef struct{
uint64_t l[5];
} s;
void f(s * restrict r, const s * restrict x, const s * restrict y) {
uint128_t t[5] = {0, 0, 0, 0, 0};
#define BODY(i,j) { int i_ = i < j ? i : j; int j_ = i < j ? j :
i; uint128_t m = (uint128_t) x->l[i_] *
2020 Mar 25
4
Need help to fix bug in rsync
Hi,
I've discovered a bug in rsync which leads to increased CPU usage and
slower transfers in many situations.
When syncing with compression (-z), certain file types should not be
compressed during the transfer because they are already compressed. The
file types which are not to be compressed can be seen in the man page
section --skip-compress.
Unfortunately skipping the default file types
2016 Jan 04
2
[BUG] 2.2.21 Panic: file imap-client.c: line 841 (client_check_command_hangs): assertion failed: (!have_wait_unfinished || unfinished_count > 0)
Hi,
I'm seeing the following in my logs. Twice so far, no idea what caused
it. I do however have the core dump if that is of any use.
> Jan 4 11:14:11 karif dovecot[20876]: imap(username): Panic: file imap-client.c: line 841 (client_check_command_hangs): assertion failed: (!have_wait_unfinished || unfinished_count > 0)
> Jan 4 11:14:11 karif dovecot[20876]: imap(username): Error:
2011 Jul 28
0
[LLVMdev] Spills and values present in both registers & stack
On Tue, Jul 26, 2011 at 11:35 AM, Taral <taralx at gmail.com> wrote:
>
> One piece of code I'm writing has a lot of intermediates, and I'm
> trying to optimize down the number of memory accesses. Here's a
> snippet from the start of the function, where I think there is some
> low-hanging fruit:
>
> # BB#0:
> pushq %rbp
> pushq %r15
2001 Sep 27
1
Passing an R matrix to a C program
Hello,
I'm starting to write a C function that gets
a list and a matrix from R. I'm using .Call
because I've undertood that this is recommended
to handle lists (am I wrong?). My problem is that I
can pass the matrix as a vector, but not as a 2D array.
For example, in the following simple C program:
#include <R.h>
#include <Rdefines.h>
SEXP printListElement(SEXP list,
2003 Oct 15
1
Verbose logging
Hello All,
I have a simple question I think. I have been using rsync for a year now and
all is going well. I have it set up in my cron.daily with the -azv option.
When I receive the email upon completion of the cron is there any options I
am not aware of that will also show me the size of the file being transfered?
Thanks for any help.
Amy A.
2011 Jul 20
0
Is it possible to save raster data as a bitmap?
Hi all,
I intend to use R for some image manipulations/analysis. It's relatively straightforward to read and manipulate image files in R, but I also would like to store the resulting image (after manipulation) as a bitmap image with the same resolution as the original image. Here is a simplified version of what I'm working on:
# Start example
require("RImageJ")
# first open