similar to: daemon sizes

Displaying 20 results from an estimated 1400 matches similar to: "daemon sizes"

2007 Jan 15
2
rsync load problem
Hi all! Can someone tell me please why rsync -avt --whole-file -O --safe-links causes huge load on receiver. As i know, the only main load causes are compression (-z) and the deltas calculating (disabled iin my case by --whole-file). -- View this message in context: http://www.nabble.com/rsync-load--problem-tf3013151.html#a8367649 Sent from the Samba - rsync mailing list archive at Nabble.com.
2007 Jan 08
3
strange file sizes in log
Hello everyone, I'm getting strange module sizes in the logs. (2.6.9) This is the command: rsync -anr --delete --omit-dir-times --stats -e "ssh -i access.key -l pluto -p 22" --files-from=config\templist "/cygdrive/C/" sv_rs@192.168.10.49::Accounts After updating all the files on the "Accounts" module, the size is reported correctly on the receiver log file
2009 May 14
3
--fuzzy question
Hi, I have a file that changes slightly in size every day and has the timestamp appended to it.. for example on the 14th may: MybackedUpFileBlabla_200905140219.bak This is transferred by rsync to another server. The next day that file is deleted and substituted by a new file on the sender.. the new file would be named for example (15th May): MybackedUpFileBlabla_200905150221.bak The new file
2007 Feb 22
2
Number of files to be transferred?
I'm writing a wrapper around a large number of rsyncs that need to happen, and it would be great if I could parse the output of a running rsync and find out how far along it is. To do this, I would need to know how many files the rsync is going to transfer. If I run 'rsync -avz --progress', it tells me how many files it is considering, but not how many it actually needs to update.
2009 Sep 24
1
weak checksum
Hi, I'm curious if anybody knows the exact reason why the weak checksum calculation is slightly different to the standard adler-32 checksum as seen for example here http://en.wikipedia.org/wiki/Adler-32 ? Thanks Julian -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.samba.org/pipermail/rsync/attachments/20090924/c4ed210b/attachment.html>
2008 Aug 18
2
Can the rsync password be automated?
Is there a way to automate the rsync password or maybe disable? I am currently running rsync from a Windows command prompt and would like to run it from a .bat file. I have read through the config man pages but not sure if my ssh_config file is even being used. I tried passwordauthentication = no but it still asked for password. I have seen a option for --password-file= but I believe this does not
2007 Aug 27
3
rsync out of memory at 8 MB although ulimit is 512MB
Hello again, I encountered something amazing. First I thought there is not enough memory allowed through ulimit. ulimit is now set to (almost) 512MB but rsync still gets out fo memory at 8MB. Can anyone tell me why? That's my configuration: rsync version 2.6.2 from AIX 5.3 to SuSE Linux 9 (also has rsync 2.6.2) ulimit -a (AIX) ulimit -a AIX (source): -------------------------
2014 Dec 08
2
CRAN packages mis-using \donttest : falsy
Hi all, anyone has an idea how I could fix this? \donttest{ ## Set colors from colorspace package with a fallback col <- try(colorspace::rainbow_hcl(5), silent = TRUE) %||% rainbow(5) } The problem is that this makes R CMD check freak out (http://www.r-project.org/nosvn/R.check/r-devel-linux-x86_64-debian-clang/falsy-00check.html) if the colorspace package is not declared as a dependency.
2014 Jan 15
3
Missing option in samba-tool user add
Hello, I am trying to create a user with the samba-tool. With this user i a want to login in a windows system and linux shell. I can set everthing i need with samba-tool user add except unixHomeDirectory path. Is there an easy why to do this? Rene.
2018 Mar 16
0
Bug 1442983 on 3.10.11 Unable to acquire lock for gluster volume leading to 'another transaction in progress' error
Have sent a backport request https://review.gluster.org/19730 at release-3.10 branch. Hopefully this fix will be picked up in next update. On Fri, Mar 16, 2018 at 4:47 PM, Marco Lorenzo Crociani < marcoc at prismatelecomtesting.com> wrote: > Hi, > I'm hitting bug https://bugzilla.redhat.com/show_bug.cgi?id=1442983 > on glusterfs 3.10.11 and oVirt 4.1.9 (and before on glusterfs
2018 Mar 16
3
Bug 1442983 on 3.10.11 Unable to acquire lock for gluster volume leading to 'another transaction in progress' error
Hi, I'm hitting bug https://bugzilla.redhat.com/show_bug.cgi?id=1442983 on glusterfs 3.10.11 and oVirt 4.1.9 (and before on glusterfs 3.8.14) The bug report says fixed in glusterfs-3.12.2-1 Is there a plan to backport the fix to 3.10.x releases or the only way to fix is upgrade to 3.12? Regards, -- Marco Crociani
2009 Apr 12
2
Convert string to time
One variable contains values (1.30 - one hour and thirty minutes, 1.2 (which is supposed to be 1.20 - one hour and twenty minutes)). I would like to convert to a minute variable so 1.2 is converted to 80 minutes. How?
2012 Apr 11
3
Lion OS X tinc issues.
Hi Folks, This has been driving me nuts all day. I've been unable to google myself out of it. Maybe someone here can help? I followed the instructions from: http://www.tinc-vpn.org/examples/macbook-install/ Ubuntu server <-> Ubuntu server works just fine with the same config. Ubuntu server <-> Mac laptop not so much. The error I'm getting is: 2012-04-10 21:48:44
2008 Sep 08
3
Support for different Architectures
Dear All, I am new to FLAC. I have to port FLAC on sh4 architecture. Can somebody please let me know which architectures FLAC supports today? Also if somebody has an idea about the functionality of the code written in assembly, it would be of great help. Thanks and Regards Divyahaas Bhatia Senior Technical Leader Pace Micro Technology (India) Private Limited Bringing Technology
2009 Jun 22
12
GPLPV 0.10.0.69 Blue Screen 0x0000007B
Trying to install them on Xen 3.4.0, Intel E5345 Processors, Server 2008 64bit. I get the BSoD on boot with the 0x0000007B stop message. I''ve got a bunch of 2003 32bits running on the same host with the 0.10.0.69 drivers and those are totally happy. I tried the boot once with NOGPLPV idea mentioned in another thread, that didn''t do the trick. Ideas anyone? pace
2007 Apr 01
2
commandArgs usage and --args invokation
Dear R experts: I am a bit stymied by how the argument picking-off works in R batch file usage. $ cat commandArgs.R cat(" Command Line Arguments were ", commandArgs(), "\n"); $ /usr/bin/R CMD BATCH commandArgs.R --args 1 2 3 $ /usr/bin/R --args 1 CMD BATCH commandArgs.R ... I am now getting into interactive mode ?! I guess it really is skipping the rest of the command line
2004 Dec 05
3
boot package
Hi, I using the boot package 1.2-20 on R 2.0.1. My statistics function estimates 6 parameters. In a small percentage of resampled data sets my statistics function doesn't produce an estimate for one parameter and the boot function stops with an error. I can write an ifelse(exists('parameter.estimate'), parameter.estimate, NA) statement within the statistic function to substitute
2008 Feb 20
1
DNAcopy package output data
Hello R Developers I am using DNACopy package http://bioconductor.org/packages/1.9/bioc/html/DNAcopy.html I am not able to figure out how to (if at all possible) to modify output format, namely, I am getting the following: "ID" "chrom" "loc.start" "loc.end" "num.mark" "seg.mean" Is it a way to get also median and standard deviation?
2005 Sep 28
3
xyplots
Hi All, I have a four panel xyplot. I wish to plot each point as an open or filled circle depending on the value of an indicator variable. I assume I need to use panel.superpose(), but I can't figure out the syntax from lattice documentation. Running R 2.1 under Mac OS X 10.4.2. Any suggestions would be appreciated. Nathan Nathan Leon Pace, MD, MStat University of Utah Salt Lake
2017 Jul 18
2
Sporadic Bus error on mmap() on FUSE mount
Hi, I need to use rrdtool on top of a Gluster FUSE mount, rrdtool uses memory-mapped file IO extensively (I know I can recompile rrdtool with mmap() disabled, but that is just a workaround). I have three FUSE mount points on three different servers, on one of them the command "rrdtool create test.rrd --start 920804400 DS:speed:COUNTER:600:U:U RRA:AVERAGE:0.5:1:24" works fine, on