Displaying 20 results from an estimated 1000 matches similar to: "handling duplicate names deterministically and adding alternative checksum algorithms"
2005 Jun 27
5
adding a new log-format escape
I'm adding a new escape to log-format, %s, to print out the checksum
of a file, and I've got a couple problems. They've got to be simple
bugs, but I haven't been able to figure them out. The following patch
gives me a broken pipe and a bus error when I test it. Note that I've
applied the md5 patch beforehand.
diff -Naur rsync-2.6.5-md5/log.c rsync-2.6.5/log.c
---
2005 Jun 20
2
linux kernel, git, and stateful sync
I just read an article on Kernel Trap that mentioned that rsync wasn't
quite meeting the needs of the linux kernel developers and I was
wondering if H. Peter Anvin or Nathan Laredo had expressed their needs
to the rsync developers?
I didn't see anything in the mail archives.
====
...
While the public portion of the Linux Kernel Archives is served by the
hardware described above, there is
2016 Apr 19
2
Merge sort
Hello everyone,
I am learning R since recently, and as a small exercise I wanted to
write a recursive mergesort. I was extremely surprised to discover that
my sorting, although operational, is deeply inefficient in time. Here is
my code :
> merge <- function(x,y){
> if (is.na(x[1])) return(y)
> else if (is.na(y[1])) return(x)
> else if (x[1]<y[1])
2016 Apr 19
0
Merge sort
On 19/04/2016 3:39 PM, Gaston wrote:
> Hello everyone,
>
> I am learning R since recently, and as a small exercise I wanted to
> write a recursive mergesort. I was extremely surprised to discover that
> my sorting, although operational, is deeply inefficient in time. Here is
> my code :
>
>> merge <- function(x,y){
>> if (is.na(x[1])) return(y)
>>
2016 Apr 20
1
Merge sort
I indeed used is.na() to check length, as I was not sure weather
lenght() was a simple query or would go through the whole vector to
count the elements.
So to sum up, function calls are expensive, therefore recursion should
be avoided, and growing the size of a vector (which is probably
reassigning and copying?) is also expensive.
Thank you for your help!
On 04/19/2016 11:51 PM, Duncan
2004 Aug 25
4
bugfix: indeterministic file choice from multiple sources
Hello,
some time ago I reported a bug, where we saw indeterministic behaviour of
rsync (all versions since 2.5), when having the same file appearing in
multiple sources. Sometimes the file in the first source was copied, other
times the file was copied from one of the other sources.
The attached mstest.tgz contains a test to reproduce the behaviour under
darwin and solaris.
The bug did
2007 Jul 18
1
Neuman-Keuls
hello,
I have programmed this function to calculate the Neuman-Keuls test but I have a problem the function return an empty list and I don't know why.
summary(fm1)
E <- sqrt((summary(fm1)[[1]]["Residuals","Mean Sq"])/length(LR))
lst <- list()
lst1 <- list()
lst2 <- list()
NK <- function (x) {
if (length(x) == 2) {
Tstudent <- t.test(subset(exple,
2000 Feb 13
1
Windows 2000 and TNG
Hello all:
I just recieved Windows 2000 Professional Final Release. I am currently
running Samba in order to serve my Windows 95 & Windows 98 Machines. From
my understanding, I needed to get something called TNG. I read instructions
on CVS and it downloaded TNG onto my computer. Then I went on and did
"./configure", "./make", and am about to do "./make
2007 Jan 12
2
puppetd port issues
I configured my rsync daemon to be restarted when the rsyncd configuration
file changes.
When the rsync daemon gets restarted by puppet, it listens on the same port
puppetd does, so running puppetd again results in an error.
The init script for rsync is small and can not be changed from puppet (all
variables are declared within the init script and it only searches for the
path where the rsync
2002 Aug 27
1
rsync problem in systemimager
Hello,
I'm working on the oscar-1.3 release with my Linux Itanium's cluster to
test cloning process via systemimager.
After having succeeded to boot my client node via the network, when
running the following script : /var/lib/systemimager/scripts/ced1.sh
rsync is able to get small files (e.g : mkdosfs). However, when the
script tries to rsync the whole oscar image in the following way :
2019 Oct 11
7
[Bug 3082] New: Add support for deterministically derived keys
https://bugzilla.mindrot.org/show_bug.cgi?id=3082
Bug ID: 3082
Summary: Add support for deterministically derived keys
Product: Portable OpenSSH
Version: 8.1p1
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: ssh-keygen
Assignee: unassigned-bugs
2009 Apr 01
1
include/exclude tutorial
Maybe I am tired. I have been reading man page, and these messages, and
the website, I just dont understand how include/exclude works.
Is there a decent tutorial on the subject, I missed, for some reason?
all I want is to take /var/tmp/*.conf files. I dont want to recurse down
thru directories (but, for reasons hard to explain, I must have the
recursive option on)
Reminds me when I tried to
2006 Jun 25
0
Same disk image to boot inside QEMU and Xen?
Hi all,
during the last months I''ve been using Xen quite regularly, but always using an
image from jailtime.org and then modifying it myself. At this point I need to
create my own image, and actually I would need to create an image that is
bootable both with QEMU and with Xen, but I''m not getting very far yet. Has
anyone succeeded doing this?
I want to do this because I would
2010 May 02
0
Puppet and systemimager
Hi,
I''ve written a small tutorial on how to deploy images for puppet using
systemimager. Please check it out:
http://linuxdatacenter.blogspot.com/2010/05/systemimager-puppet.html
-Linuxdatacenter
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To
2008 Oct 08
4
question from Braun/Murdoch book
Hi R People:
I am looking at the Braun/Murdoch book, " A First Course in
Statistical Programming in R", and I have a question about a function
there. It's on page 52, Example 4.5; the sieve of Erastosthenes.
There is a line:
primes <- c()
Is there a difference between using that and
primes <- NULL
please?
When you put in primes <- c(), primes comes back as NULL.
Is
2006 Jun 02
3
[PATCH] --omit-dir-changes, qsort<>mergesort issues
Hi all,
I recently ran into some problems with rsync. My plan is to renew some of
our old administration concepts from early 90's, I already replaced rdist
with rsync a few years ago.
Because of the rdist legacy, the current method requires synchronizing
files into 6 different locations, {/alt,/usr/alt}/{hostdep,sysdep,hutdep},
which in turn are prioritized by a tool that just symlinks
2005 Apr 22
1
Newbie Question
Dear All,
I have installed Red Hat Enterprise 3 on one Intel-32 bit machine. I
have
installed all systemimager/systeminstaller/flamethrower RPMS that machine. I
would like to install OS through PXE boot on another Athlon machine.
When I execute mkssimage for creating a image master
# mksiimage --Add --name image1 --path
/var/lib/systemimager/images/image1 --filename
/root/rpmlist
2003 Jun 07
0
Query on permissions
I have a question related to the use of -p (or -a which includes -p)
to set remote file / directory permissions.
I am using rsync along with System Imager to manage the "master image" of
a number of compute nodes in a cluster. I have more than one cluster,
so each head node has a copy of the "master image" (for the compute
nodes in its cluster). I want to make sure that all
2003 Jul 20
2
Rolling Checksum Algorithms
Hi,
Where can I get good pointers on the rolling checksum algorithm used in rsync?
I need an 8-bit or 12-bit rolling checksum too. Any place where "rolling"
checksum algorithms are discussed?
Seun Osewa
-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/
2003 Jun 18
2
RH8.0 kernel lockup with PXELinux on x440
Howdy. We've got a couple IBM x440 (Summit) 8-way Xeon systems that I've
been trying to get netbooting for a while.
Since we use Kickstart and SystemImager to load OSes on our systems, a
system has to be able to netboot before it can be made available to folks
for project use.
System BIOS is the current one, v1.08. They're booting from a planar
BroadCom Tigon3 adapter. BIOS