Displaying 20 results from an estimated 20000 matches similar to: "question on IO error message.."
2002 Jan 15
3
Error in rsync that I don't understand..
[I wish the list archives were searchable, this most likely is a repeat
question]
We have a set of cron jobs that do regular rsyncs mirroring two trees. This
has been pretty stable. Over the weekend, almost all of them broke with this
message:
rresvport: bind: Permission denied
(15728) Error reading 4 bytes : EOF
Under what conditions does this error occur? It looks like it couldn't
bind
2001 Dec 04
1
question on permissions
I have a question regarding how rsync changes ownership when syncing two
areas. Currently, I have this situation:
I have two areas over a WAN, we are trying to mirror from one site to
another. One site is not controlled by us and has different unix
groups.
When we copy one to the other, we are running rsync on an account that
exists at both places (different UIDs though) In one area we have
2002 Jan 23
1
Wierd problem with rysnc.
Hi folks, I'm having a problem with my rsync between two areas between a WAN.
The problem is really odd. I have a script that runs every night. Lately,
we've been having problems with rsync. The source side is an ordinary file
while the destination side is a symlink. We've been having problems with rsync
deleting the symlink and repacing it with the source copy despite having it in
2007 Mar 08
5
Skipping hardlinks in a copy
Hi folks, I've been googling around for awhile but I can't seem to find
an answer to my question.
I have a number of filesystems that contain thousands of hard links due
to some bad organization of data. Rsync, cpio and various other
utilities fail to copy this data because I think there might be some
cycles in it. (you know you have troubles if cpio can't copy it!)
What I thought
2002 Sep 24
2
rsync to a symlink directory
Here is the structure of my servers :
Source :
/home/test1/link_dir
sub_dir1
file1
file2
...
sub_dir2
...
Destination:
/home/test2/real_dir
sub_dir1
file1
file2
...
subdir2
2008 Aug 27
3
Calculating total observations based on combinations of variable values
Hello:
As someone making the move from STATA to R, I'm finding it difficult at times to perform basic tasks in R, so forgive me if I've missed an obvious and easily obtained solution to my problem. I've searched the help guides and the archives and have not been able to find a solution that works.
I have a data frame with thousands of observations that looks something like this:
2017 Nov 04
2
Potential GSOC student interested in contributing to The Xapian project
Hi!
I'm currently a final year student of Informatics Institute of Technology
Sri Lanka affiliated with the University of Westminster, a successful GSOC
2017 participant
<https://summerofcode.withgoogle.com/projects/#6522320890888192>.
Witnessing the usage of machine learning and information retrieval I'm keen
to contribute to The Xapian project thus, enhancing my skills in machine
2012 Aug 20
3
samba 3.0.14a works with ldapsam backend but not 3.5.10-125.el6
we are migrating our standalone Samba sever (3.0.14a) on a Solaris 10 box to
an RHEL 6.3 box.
Testing shows that on Solaris 3.0.14a works with both the OpenLDAP server
we are currently using and the IPA2.2 server as LDAP backend. But 3.5.10-125.el6
on a RHEL 6.3 box does not work with either.
I can still map a share with 3.5 as owner of the shared directory, but secondary
group ownership does
2014 Apr 26
2
[LLVMdev] Drop the machine code while executing
That's a good point. But it's worth noting that recompileAndRelinkFunction() and freeMachineCodeForFunction() are both vestiges of the old JIT (i.e. the "JIT" as opposed to the "MCJIT"). The old JIT is no longer actively supported.
-Phil
On April 26, 2014 at 9:47:05 AM, Sri (emdcdeveloper at gmail.com) wrote:
Hi Fillip
Addition to my previous
2014 Apr 17
2
[LLVMdev] Importance of VMKit JIT function cache
Hi Gael
I am sorry that I couldn't explain what I was trying to say,
anyway I've got the answer :) . In the *parseFunction* method returns
*llvmfunction* pointer of compiled method and then it will be stored in
to cache. Could you please more elaborate on how those machine
instructions ( native functions) executing by llvm. I was trying trace
and I couldn't able to find
2011 Apr 26
1
ACPI: Unable to find RSDP problem with centos 5.5 but not 5.3
Two more observations: (adding to my previous below email)
1) Centos 5.6 also showing the same ACPI errors as in CentOS 5.5
2)BIOS-E820 map has a difference in the first line: (0000000000010000
instead of 0000000000000000)
================================
- Centos-5.3 BIOS-E820 memory map is:
BIOS-e820: 0000000000000000 - 000000000009e000 (usable)
BIOS-e820: 000000000009e000 - 00000000000a0000
2014 Apr 26
2
[LLVMdev] Drop the machine code while executing
Hi Filip
Thank you for your detailed explanation, I was actually
looking to implement an adaptive approach which is basically when some
function executed more frequently, I was trying to drop that function
and compiled and linked with new optimized function. I just did the
following -
whenever some function executed more times , I called-back
to program, so I that I
2015 Oct 26
2
How to pass march flag to GCC Assembler arch64-linux-gnu-as
I am trying to build chromium and at this moment, They see some issues with
internal one so recommended to use the flag -fno-integrated-as.
Here is my exact build command (with -v and --save-temps):
$ clang -Igen -I../../include -target aarch64-linux-gnu
-march=armv8-a+crypto -fno-integrated-as
--sysroot=./debian_jessie_arm64-sysroot -O2 -c MyFile.S -o MyFile.o -v
--save-temps
clang version
2016 Apr 21
2
Data reshaping with conditions
Hi Jim,
Thanks for your time. But somehow this code did not help me to achieve my
expected output.
Problems: 1) x, y are coming as logical rather than values as I mentioned
in my post
2) The values that I get for Max A and Max B not correct
3) It looks like a pretty big data, but I just need to
concatenate the values with a comma, the final output will be a character
2016 Apr 20
0
Data reshaping with conditions
Hi sri,
As your problem involves a few logical steps, I found it easier to
approach it in a stepwise way. Perhaps there are more elegant ways to
accomplish this.
svdat<-read.table(text="Count id name type
117 335 sally A
19 335 sally A
167 335 sally B
18 340 susan A
56 340 susan A
22 340 susan B
53 340 susan B
135 351 lee A
114 351 lee A
84 351 lee A
80 351 lee A
19 351 lee A
8 351 lee A
2014 Apr 16
3
[LLVMdev] Importance of VMKit JIT function cache
Hi
VMKit JIT has a function cache to store compiled IR code , so, as
soon as method is compiled , it will be stored in to function cache. My
question is , who will use this compiled information from function
cache. Since we are jitting , the llvm translate source code in to
native code and executing them . So, how we relates this function cache
with JIT ?
Thanks
Regards
Sri.
2014 Apr 07
2
[LLVMdev] LVLM runtime optimization during LLVM Analysis Passes.
Hi
Does current llvm support dynamic optimization level for
generated llvm IR which means , is it possible to monitor some
function's execution pattern during the runtime and apply different
optimization level for particular function using LLVM Analysis Passes.
Thanks
Regards
Sri.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2011 Feb 10
2
PAE kernel source code
Hi
I want to use 2.6.18-194.el5-PAE kernel source code.
Unable to find it over web.
Appreciate any pointers for that.
Thanks,
Sri
--
--
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20110210/6e76d0a8/attachment-0001.html>
2014 Apr 06
2
[LLVMdev] Using StartJnjvmWithJIT from jnjvm.cpp in VMKit
Hi
Does anybody use *StartJnjvmWithJIT* from jvjvm.cpp in VMKit?
Becuase , I am looking to use without JIT when we are running the Java
byte code. My concern is StartJnjvmWithJIT getting three argument *int
argc, char** argv, char* mainClass* - why we need to pass *argv and
mainclass* arguments here?
please help me on this.
Regards
Sri.
-------------- next part --------------
An
2014 Apr 25
4
[LLVMdev] Drop the machine code while executing
Hi
Currently , I have doing some experimental work by using llvm,
Is it possible to drop the machine code once it has been generated for
particular function while program executing. For example some *void
test(int)* function has been executed on native machine , I want to drop
the code before I start execute some other function in my long running
program.
Thanks.
With regards
Sri.