search for: distrotest

Displaying 2 results from an estimated 2 matches for "distrotest".

Did you mean: distrotech
2017 May 19
0
[OT] how to give ssh options to rdist
...r at targetsrv.localdomain.local's password: So far so good as expected. But if I create a small distfile to distribute a file on targetsrv.localdomain.local and execute rdist on it, I receive the prompt of mysourceuser password, not mytargetuser one.... $ rdist -P /usr/bin/ssh -f ./distfile distrotest mysourceuser at targetsrv.localdomain.local's password: It seems the config file is not honored. I tried different combinations but none worked eg creating a wrapper script that runs ssh -F config_file "$@" I can workaround the problem using inside the distfile "mytargetuser at...
2019 Jul 18
3
Gráfico tiempos de supervivencia
Hola, te vale esto? Es forma estandar de representar graficos supervivencia Basado en esto: https://rviews.rstudio.com/2017/09/25/survival-analysis-with-r/ set.seed(20) DATOS <- data.frame ( ID = c (1:10) , TIEMPO = sample(1:40, 10, replace=F) , DEF = sample(0:1, 10, replace=T) ) DATOS library(survival) DATOS$DEF <- as.numeric(DATOS$DEF) DATOS$TIEMPO <-