Displaying 20 results from an estimated 400 matches similar to: "rsync out of memory problem"
2020 Jan 12
2
Why are the arguments supplied for the command run through ssh interpreted by shell before they are passed to the command on the server side?
On Sun, 12 Jan 2020, Yuri wrote:
> This was English, not German, BTW.
For some values of English, perhaps.
> You would lose the ability to redirect I/O in an immediate way, but you would
> always be able to run a shell command like "/bin/sh" "-c" "any-command | tee
> cmd.log | process-further" which would regain the ability to do everything
> that a
2023 May 27
2
command [argument ...] in ssh(1): a footgun
On Sat, 27 May 2023, raf wrote:
>So, perhaps this could be added to the existing
>sentence/paragraph:
>
> "so any spaces in individual arguments must be
Must they? No, a single space will do just fine.
> quoted using the syntax of the destination
> user's login shell".
? keeping in mind the source shell?s quoting as well.
>If an example were needed,
2006 Jan 31
1
rsync using ssh get stuck
Hi,
We started working with rsync to sync data between remote sites.
We started seeing many stuck rsync processes.
Usually it happens in the ssh stage while the ssh issues a "select"
syscall on fd #4 while it is long gone.
Here is an example:
root@ptsl2171:/root# ps -efwww |grep ekrimer
ekrimer 28619 4979 0 Jan28 ? 00:00:00
2008 May 16
1
64-bit R and cache memory
Dear all,
I have a few questions regarding the 64 bit version of R and the cache
memory R uses.
-----------------------------------
Computer & software info:
OS: kUbuntu Feasty Fawn 7.04 (64-bit)
Processor: AMD Opteron 64-bit
R: version 2.7.0 (64-bit)
Cache memory: currently 16 GB (was 2 GB)
Outcome of 'limit' command in shell: cputime unlimited, filesize
unlimited, datasize
2003 Apr 08
2
[Patch] Require extra --stats to emit heap statistics
Since the heap statistics were added, I have viewed thousands of rsync
reports (with --verbose and --stats), and not once have I had a need
for them. So for me, they're just noise.
Here is a 3-part patch to v2.5.6 that treats --stats in a similar
fashion to --verbose in that additional --stats will get you more
statistics. For this initial case, there's only one additional level
of
2003 Mar 15
1
Dirvish, --link-dest and permissions
(I'm not sending this to dirvish@pegasus because I think that this message
applies more to rsync's --link-dest option than to just dirvish.)
I recently noticed a huge spike in dirvish network usage and traced it to
files whose permissions had been changed. (with rsync v2.5.6)
I understand and agree that a --link-dest copy of a source file cannot be
hardlinked to, but couldn't a
2006 Mar 29
7
sshd config parser
Hi All.
For various reasons, we're currently looking at extending (or even
overhauling) the config parser used for sshd_config.
Right now the syntax I'm looking at is a cumulative "Match" keyword that
matches when all of the specified criteria are met. This would be
similar the the Host directive used in ssh_config, although it's still
limiting (eg you can't easily
2003 Feb 19
2
rsync/cygwin - strange behavior with VFAT-formatted USB-disk
Hi,
we do a nightly backup using rsync (v2.5.6 as server on RedHat 7.3 and rsync
2.5.5 on Windows 2000/Cygwin). The backup media connected to the
Windows-Client is a VFAT-formatted Maxtor USB-Disk.
Everytime I run rsync from the windows-client, the following error occurs:
--- <snip> ---
rsync.exe -avzr --compress --stats --delete --timeout=240 --modify-window=2
rsync@server::development
2003 Nov 20
1
Large RAM (> 4G) and rsync still dies?
Hello. Hopefully someone can shed some light on this:
We've got a production server with _LOTS_ of files on it. The system is a dual
XEON with 4GB of RAM. During the evening, the load is very low. Linux shows
(via 'top') that approximately 3G of RAM is cached RAM, and 500M is buffered.
That, if my understanding is correct, should leave us with 3.5G of available
memory to draw
2013 Jul 19
4
[LLVMdev] Disable vectorization for unaligned data
What is the proper solution to disable auto-vectorization for unaligned
data?
I have an out of tree target and I added this:
bool OpusTargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast)
const {
if (VT.isVector())
return false;
....
}
After that, I could see that vectorization is still done on unaligned data
except that llvm will copy the data back and forth from the source
2020 Jan 12
2
Why are the arguments supplied for the command run through ssh interpreted by shell before they are passed to the command on the server side?
On Sun, 12 Jan 2020, Yuri wrote:
> dedicated argument, for example -z. The specification can be like this:
The wording could need some translation by a native speaker, but the
idea of this feature request is certainly sound.
Of course you?d lose the ability to run multiple commands, redirect
I/O, etc. when using your proposed flag.
bye,
//mirabilos
--
tarent solutions GmbH
Rochusstra?e
2008 Sep 18
2
[LLVMdev] store addrspace qualifier
Mon Ping,
Thanks for the tip, but I can't for the life of me seem to get the
Value from a StoreSDNode. From looking at the SelectionDAGNodes header
file, the only class that has the getValue function call is
SrcValueSDNode that returns a Value type. The only class that has
getType is a ConstantPoolSDNode. I don't think that ConstantPoolSDNode
is what I want and when I try to cast the
2010 Apr 09
2
How to enable core dump?
Dear all, I encountered a core dump like this,
(R:24072): Gdk-CRITICAL **: gdk_drawable_get_display: assertion
`GDK_IS_DRAWABLE (drawable)' failed
*** caught segfault ***
address 0x78, cause 'memory not mapped'
Possible actions:
1: abort (with core dump, if enabled)
2: normal R exit
3: exit R without saving workspace
4: exit R saving workspace
Selection: 1
aborting ...
Segmentation
2007 Oct 02
3
scp -t . - possible idea for additional parameter
How difficult would it be to add an additional parameter to the -t that would *lock* the user at that directory level. say -T instead of -t...
By locking, I mean translating /path/to/file as ./path/to/file, or ../../../path/../../../path/to/file as ./path/to/file.
Basically set a root point as the current home directory, then build the pathing based on that, any "../" would become
2023 May 28
1
command [argument ...] in ssh(1): a footgun
On Sat, May 27, 2023 at 02:45:34AM +0200, Thorsten Glaser <t.glaser at tarent.de> wrote:
> On Sat, 27 May 2023, raf wrote:
>
> >So, perhaps this could be added to the existing
> >sentence/paragraph:
> >
> > "so any spaces in individual arguments must be
>
> Must they? No, a single space will do just fine.
They do if you want the receiving shell
2003 Jun 17
2
rsync error: error in rsync protocol data stream (Broken pipe)
I'm experiencing some unexpected behavior with rsync v2.5.6. After
looking around it seems like several people have experienced similar
problems in the past, but those appear to be old bugs that are solved now.
Also doesn't appear to be any direct bugfixes made for this issue since
2.5.6.
The strange thing is that things seem to work when I use ssh for
transport. However now I need to
2003 May 02
1
rsync+ssh2 from Tru64 unix to linux has intermittent hangs.
This is odd:
We're using rsync to mirror multiple directories from a server to
two clients. The server is running Tru64 v5.1a, client A is running
Redhat Linux 8.0, and client B is running Tru64 v4.0g.
The mirrors for both clients are running at the same time interval
(10 minutes, offset by 5 minutes).
All machines are running rsync v2.5.6, and using ssh2 v3.2.3 as the
2007 Sep 17
2
No subject
Hi, when trying to install openssh I get the following errors. Any
idea of why?
This is on a mac 10.4.10 system, and with the 4.7p1 version.
Appreciate any tips.
Thanks,
Anil
if test ! -z ""; then \
/usr/bin/perl ./fixprogs ssh_prng_cmds ; \
fi
(cd openbsd-compat && make)
make[1]: Nothing to be done for `all'.
gcc -g -O2 -Wall -Wpointer-arith -Wuninitialized
2011 Oct 26
1
[LLVMdev] AddressSpace question
Hellp
One of the data members of class PointerType is [unsigned] AddressSpace
What is its role? I didn`t find sufficient description about it in the
LLVM documentation. Could someone please point me where can I get
description about different AddressSpaces?
What I saw that address spaces may affect how optimizations are
performed –Where can I get more information about this issue.
Thank you
2010 May 13
1
[LLVMdev] How to create Global Variables using LLVM API?
I am using llvm-2.6.
In the online documentation, the signature is
GlobalVariable::GlobalVariable ( const Type * Ty,
bool isConstant,
LinkageTypes Linkage,
Constant * Initializer = 0,
const Twine & Name = "",
bool ThreadLocal = false,
unsigned AddressSpace = 0
)
the link to the documenation is