similar to: A question about connection refused

Displaying 20 results from an estimated 1000 matches similar to: "A question about connection refused"

2004 May 18
4
A question about rsync
Hi: I really want to know how rsync works. Once it synchronize a file. Does rscync first create a temporary in the remote machine first and then rename it? Or it direct write the difference into the dest-file? Could you please tell me what will happen to the dest-file when a rsync process interrupted by some problems(network problem etc ...)? Thanks for your help Best Regards
2002 Nov 13
4
getaddrinfo: Host not found problem
Hello, I am trying to use rsync (version 2.5.5) in a server client model to distribute software files. When I kick off the rsync client on an AIX 4.3.3 pwr3 platform, I get the following error message. We are in a real bind to get this protocol going; any help/insight/suggestions would be "greatly" appreciated. rsync: getaddrinfo: grp4c 873: Host not found rsync error: error in
2008 Jun 05
1
rsync to mirror
Hello All, I am running mirror of a website i update my mirror using rsync but when i run rsync -avvvvvvzC --timeout=600 --delete --delete-after rsync.voip-info.org::voipmirror voip-info/ I get this error opening tcp connection to rsync.voip-info.org port 873 rsync: failed to connect to rsync.voip-info.org: Connection timed out (110) _exit_cleanup(code=10, file=clientserver.c, line=94):
2004 Jun 01
1
what does lp_log_file mean??
I have some problems when I read the code of the rsync. There are many reference such as lp_log_file, lp_uid, lp_include_from, etc. in the file clientserver.c and log.c . Who can tell what do they mean? Are they functions? Where I can find the particular information about them? Thanks! _________________________________________________________________ Ãâ·ÑÏÂÔØ MSN Explorer:
2003 Mar 02
1
rsync2.5.6 can't find system config file
I had rsync2.5.5 running fine ona RedHat Linux 8 system. I downloaded the rsync2.5.6 code and it compiled with no problems. However, operations which worked before are now failing. Here is my rsyncd.conf file uid = nobody gid = nobody # use chroot = no max connections = 4 syslog facility = local5 pid file = /var/run/rsyncd.pid motd file = /etc/rsyncd.motd [ftp] path = /var/ftp/pub
2006 Jan 11
1
issues with security=domain
Hi Dear Samba Gurus, We're planing to migrate the old samba server to a new samba server. But the person who maintain old samba server have left, so we need to figure out the configuration steps from the old config file. Now the things that confused me now is the setting with "security=domain", the old samba server config global sections are: log level = 3 netbios
2006 Dec 18
4
How to install IE6 correctly?
I tried to use google to find how, but i failed. All i get is a white window. my wine version is 0.9.27, can any one tell me how, or show me a link to a detailed method? i'm new here, and i guess this subject has been asked so many times, but i dont know how to search, i wish some one can give me a answer. thank you in advance.
2004 Oct 05
6
group change causing failure
OK, I searched through the archives and didn't find anything so I must be doing something stupid. I just compiled 2.6.3 and am trying to get it to run on linux 2.6.8.1 kernel with a more or less fedora core2 environment. I was trying between two systems but I have narrowed it down to what I believe is a pretty simple case. Here is my setup/test: Last login: Mon Oct 4 19:30:49 2004
2004 Nov 02
3
n-th power of a matrix
Hello all, To calculate the power of a matrix, I used the command "mtx.exp(X, n)", but there is an error saying "Error: couldn't find function "mtx.exp"". How can I deal with this problem? Jing
2008 Oct 13
2
rsync error: Error in socket IO(code 10) at clientserver.c(122)
Hi, I am using cwrsync ver 2.1.5 over SSH to connect to myproj@sourceforge.net and facing some problems and not sure how to go about it. Below is the full text of the result when I run the batch file. Was wondering if anyone has seen any similar issue. Any thoughts/help is much appreciated. ------------------------------------------------ Tunnel: ssh Command to run: "C:\Program
2013 Mar 18
9
how to create a full-virtualization xen VM with autoyast
Hi. I want to create a full-virtualization xen VM with autoyast installation. how can i do that? and how does the configuration file to be configured? I use suse linux 11 SP2. looking forward your replay. Jing. -- View this message in context: http://xen.1045712.n5.nabble.com/how-to-create-a-full-virtualization-xen-VM-with-autoyast-tp5714901.html Sent from the Xen - User mailing
2019 Jun 21
4
Calculation of e^{z^2/2} for a normal deviate z
Hello, Well, try it: p <- .Machine$double.eps^seq(0.5, 1, by = 0.05) z <- qnorm(p/2) pnorm(z) # [1] 7.450581e-09 1.228888e-09 2.026908e-10 3.343152e-11 5.514145e-12 # [6] 9.094947e-13 1.500107e-13 2.474254e-14 4.080996e-15 6.731134e-16 #[11] 1.110223e-16 p/2 # [1] 7.450581e-09 1.228888e-09 2.026908e-10 3.343152e-11 5.514145e-12 # [6] 9.094947e-13 1.500107e-13 2.474254e-14 4.080996e-15
2006 Apr 06
2
deleting partition does not effect superblock?
Hi, I am using kernel 2.6.15.4. On my system, I first created a partition with EXT3 and put some data on it. Later, I deleted the partition, and re-created another partition with the same starting block number and a higher ending block number. I intended to format it with another filesystem, but surprisingly (or maybe just to me), the superblock of the partition had not changed. I could still
2019 Jun 21
4
Calculation of e^{z^2/2} for a normal deviate z
You may want to look into using the log option to qnorm e.g., in round figures: > log(1e-300) [1] -690.7755 > qnorm(-691, log=TRUE) [1] -37.05315 > exp(37^2/2) [1] 1.881797e+297 > exp(-37^2/2) [1] 5.314068e-298 Notice that floating point representation cuts out at 1e+/-308 or so. If you want to go outside that range, you may need explicit manipulation of the log values. qnorm()
2006 Mar 16
4
problem for wtd.quantile()
Dear R-users, I don't know if there is a problem in wtd.quantile (from library "Hmisc"): -------------------------------- x <- c(1,2,3,4,5) w <- c(0.5,0.4,0.3,0.2,0.1) wtd.quantile(x,weights=w) ------------------------------- The output is: 0% 25% 50% 75% 100% 3.00 3.25 3.50 3.75 4.00 The version of R I am using is: 2.1.0 Best,Jing
2006 May 07
3
Rsync backups over the internet
All I am use rsync to backup a large filesystem over the internet. I do an incremental backup of the 2 file systems once a day to keep an offsite backup. However, this backup takes about 60 minutes. Are there some tweaks I can do to speed up the backup? Here is the command I run via cron every day: rsync --exclude-from=/home/backups/rsync/attachments-exclude.lst --delete -ave ssh
2003 Jan 28
2
rsync 2.5.6 fails on Tru64 v5.0 with rsync://<hostname>/
I've just compiled 2.5.6 release on Tru64 V5.0A (configure detects alphaev67-dec-osf5.0, gcc release is a 3.1.1). rsync fails using rsync://<hostname>/ syntax. > lct@goliath(32) [rsync-2.5.6]$ ./rsync rsync://stitch/ > rsync: getaddrinfo: stitch 873: servname not supported for ai_socktype > rsync error: error in socket IO (code 10) at clientserver.c(83) Is there anyone else
2008 Feb 07
5
pnorm
Dear R list, I calculated a two-sided p values according to 2*(1-pnorm(8.104474)), which gives 4.440892e-16. However, it appears to be 5.30E-16 by a colleague and 5.2974E-16 from SAS. I tried to get around with mvtnorm package but it turns out to be using pnorm for univariate case. I should have missed some earlier discussions, but for the moment is there any short answer for a higher
2012 Feb 20
3
How to determine a subset of a binary strings?
Hi, I need some neat ways of determing a subset of binary strings. For example, x=c(0,0,1), y=c(0,1,1), z=c(0,1,0). So x is a subset of y and z is also a subset of y, but x is not a subset of z. I tried to search R functions and packages but no hits. Any ideas? Best, Jing -- Jing Tang, PhD Senior Researcher Finnish Institute of Molecular Medicine (FIMM) FI-00014 University of
2005 Aug 25
1
unable to open configuration file rsyncd.conf
Hello, Rsync is working great for me right now, using version 2.6.5 on two Solaris 9 V100 servers. Box A is the source and box B is the destination, and also box B is my rsync server box. Box A is a rsync client. Yesterdar from Box B I pulled 250 meg just fine from box A with rsync. Today from the client I want to just copy over to the server what files have changed today. So my command