Displaying 20 results from an estimated 87 matches for "rdisted".
Did you mean:
disted
2012 Apr 27
15
puppet way of handling rdist and triggers
We have an existing "management system" of sorts, based on rdist. I''d like
to know the best way to migrate it to using puppet.
Currently, we have a local binaries tree, rdisted out nightly. We also
make use of rdist''s extra capability to trigger scripts when and if named
files are updated.
I''m not sure what the best method would be, of converting this to puppet.
I havent found any puppet method that seems clearly designed for,
"replicate this...
2003 Oct 17
1
ssh-agent and rdist
Hi,
I'm having a real difficulty here, and I'll keep this very short; ask
for needed details. I've got two nearly identically configured RedHat 8
systems, call them A and B. I've generated keys with passphrases on
both, added the public key for B to ~/.ssh/authorized_hosts on A and
vice versa.
On either machine, I can use ssh-agent with no problems. In particular,
if I run
2004 Feb 19
1
Rsync and rdist-like specials
Greetings,
We manage a large farm of systems and push changes, patches,
new software, etc. out to our clients using kerberized rdist. It's
clunky and slow but it's got the magic of specials. Using a special
one can tell rdist that if a particular file changes, preform this
command. So, if we make a change to httpd.conf, we can tell rsync
to bounce httpd. If httpd.conf hasn't change,
2017 May 19
0
[OT] how to give ssh options to rdist
Hello,
I'm trying to configure rdist over ssh so that it connects at target side
as a particular user.
I'm using CentOS 7.3 on both ends (I also tested with Fedora 25 with the
same behavor)
So I create at source side the file ~/.ssh/config under mysourceuser home
Host targetsrv.localdomain.local
HostName targetsrv.localdomain.local
User mytargetuser
Then, connected as
2001 Apr 16
1
openssh-2.3.0p1, Krb5 and rdist
Krb5-authentication and Kerb5-TGT-passing is working well with
openssh-2.3.0p1.
Question: Is there a solution using rdist -P "/usr/local/bin/ssh" without the
need for RhostRSAAuthentication, RSAAuthentication or using the Kerberos
r-command set?
The objective is to do away with ".rhosts/.shost" and private-key
authentication when Kerberos authentication is already in
2003 Jan 01
1
Simulating rdist?
rsync is great for syncing 2 directory trees, but I want to maintain
a master source tree on one machine and copy that to multiple
machines. i.e. basically what rdist does
The only way I can see of doing this with rsync is to have multiple
cron jobs
0 * * * * rsync ... machine1:...
0 * * * * rsync ... machine2:...
...and so on.
Is there a more elegant/compact way of doing this?
Thanks
2000 May 30
1
Unable to use rdist in parrellel mode with 2.1.0p2 ...
Morning all ...
using the following command to sync up the binaries on several
machines:
rdist -P /usr/slocal/bin/ssh -Rf /root/sync-systems
generates the following error message(s):
jasper: updating host jasper
hermes: updating host hermes
attila: updating host attila
hercules: updating host hercules
".rcules: LOCAL ERROR: Unexpected input from server: "Couldn't initialise
2004 Apr 04
1
How to improve this code?
Hi all,
I've got some functioning code that I've literally taken hours to
write. My 'R' coding is getting better...it used to take days :)
I know I've done a poor job of optimizing the code. In addition, I'm
missing an important step and don't know where to put it.
So, three questions:
1) I'd like the resulting output to be sorted on distance (ascending)
and
2004 Feb 26
1
Distance and Aggregate Data - Again...
I appreciate the help I've been given so far. The issue I face is
that the data I'm working with has 53000 rows, so in calculating
distance, finding all recids that fall within 2km and summing the
population, etc. - a) takes too long and b) have no sense of progress.
Below is a loop that reads each recid one at a time, calculates the
distance and identifies the recids that fall within 2
2011 Nov 07
1
How do I return to the row values of a matrix after computing distances
## Package Needed
library(fields)
## Assumptions
set.seed(123)
nsim<-5
p<-2
## Generate Random Matrix G
G <- matrix(runif(p*nsim),nsim,p)
## Set Empty Matraces dmax and dmin
dmax<- matrix(data=NA,nrow=nsim,ncol=p)
dmin<- matrix(data=NA,nrow=nsim,ncol=p)
## Loop to Fill dmax and dmin
for(i in 1:nsim) {
dmax[i]<- max(rdist(G[i,,drop=FALSE],G))
dmin[i]<-
2004 Apr 06
1
k nearest neighbours
I want to
1) Select for each of the n points in a matrix A, those of the m points
in B that lay within a given radius.
2) Of those points within the radius, select the k nearest ones.
What I now do is
1) Create an n*m matrix C were I put the distances from all the points
in B to the points in A and make NA those cells were the distance is
larger than the radius. (The points are geographical
2004 Aug 22
1
latitude longitude data
Dear R-helpers,
I get GPS readings with bug counts (bugs meaning
insects in this case) made along rows in crop fields
and use these to make maps of bug distribution. The
GPS readings are not quite accurate enough for my
purpose, so since I know what row each reading is made
in, I adjust the latitudinal coordinate using:
grd<-lm(lat~lon+Row,data)
2008 Oct 06
1
easier way to do this without a loop? (successive euclidean distances between points)
a <- c(1:10)
b <- c(.5, .6, .9, 10, .4, 3, 4, 9, 0, 11)
d <- c(21:30)
z <- data.frame(a,b,d)
library(fields)
results <- c()
for(i in 1:(length(rownames(z))-1)){
results[i] <- rdist(z[i,], z[(i+1),])
}
results.1 <- data.frame(results)
f <- rownames(z)
r <- f[-1]
rownames(results.1) <- r
colnames(results.1) <- f[1]
this does what I want it to do - is
2008 Oct 27
3
Hostbased authentication without known_hosts file?
Hi,
is there any way to use hostbased authentication without the need to
have the SSH host keys stored in a known_hosts file?
We run a large cluster where we need to have passwordless remote login
available. We currently do that with hostbased SSH authentication. But
it is error-prone and a lot of work to keep the known_hosts file up to
date on all hosts. (This is the same situation like DNS vs
2002 Jan 26
5
[PATCH] Connect timeout
The attached patch adds a new 'ConnectTimeout' option (man page updated
in patch) to avoid wasting time when the target host is down. I needed that
because I was using rsync/rdist over ssh for massive files update and the
default connect() took too long for my purpose.
The patch was tested on Linux only, but I used a similar one for ssh 1.2.XX
on Linux, Solaris and HP-UX without
2012 Oct 01
6
nlme: spatial autocorrelation on a sphere
I have spatial data on a sphere (the Earth) for which I would like to run an gls model assuming that the errors are autcorrelated, i.e. including a corSpatial correlation in the model specification.
In this case the distance metric should be calculated on the sphere, therefore metric = "euclidean" in (for example) corSpher would be incorrect.
I would be grateful for help on how to
1999 Jan 06
0
FW: SUGGESTION: allow TZ to be specified at time of mount (PR#124 25)
Dear John,
>Samba fully honours Unix timezone info. All my sites run their Linux
hardware clocks
>set at GMT. Under Red Hat Linux, or Caldera, SuSE, or PHT TurboLinux,
the Linux
>"timeconfig" command can be used to do this. The timezone for the
server is
>selected appropriately
I ran timezone and found it had hardware clock set to GMT and TZ set to
GB. Setting TZ to GMT had
2005 Apr 04
2
rsync is flaky going to Penang
Hello,
We are experiencing flaky behavior from rsync when attempting to rsync
directories/files to a server in Penang. Several times the job seems
to 'hang' and never completes. Penang then is therefore missing a lot
of required cad files. Have any of you experienced the same thing and
what did you do to fix the problem? Does anyone know of a better tool
to use? We chose
2005 Dec 30
5
rssh: root privilege escalation flaw
Affected Software: rssh - all versions prior to 2.3.0
Vulnerability: local user privilege escalation
Severity: *CRITICAL*
Impact: local users can gain root access
Solution: Please upgrade to v2.3.1
Summary
-------
rssh is a restricted shell which allows a system administrator to
limit users' access to a system via SSH to scp, sftp, rsync, rdist,
and cvs. It also allows the system
2004 Jul 13
0
Calculating sum of squares deviation between 2 similar matrices
Hi all,
I've got clusters and would like to match individual records to each
cluster based on a sum of squares deviation. For each cluster and
individual, I've got 50 variables to use (measured in the same way).
Matrix 1 is individuals and is 25000x50. Matrix 2 is the cluster
centroids and is 100x50. The same variables are found in each matrix
in the same order. I'd like to