similar to: High CPU utilization for smbd on AIX

Displaying 20 results from an estimated 1000 matches similar to: "High CPU utilization for smbd on AIX"

2005 Apr 12
7
Max filesize for rsync?
What the maximum filesize rsync can transfer? I'm trying to rsync one of my servers to another but the rsync is croaking on a file that's barely 1GB. Tips, hints, suggestions? rsync server is AIX 4.3.3 ML11 - rsync 2.6.3 rsync client is AIX 5.3 ML1 - rsync 2.6.4 Thanks -Jeff -- Jeff Schoby Unix/Network Admin City of Columbia, Missouri 573.874.6320
2019 Jan 19
0
sieve issue after upgrad
<!doctype html> <html> <head> <meta charset="UTF-8"> </head> <body> <div> <br> </div> <blockquote type="cite"> <div> On 19 January 2019 at 11:51 Tim Dickson via dovecot < <a href="mailto:dovecot@dovecot.org">dovecot@dovecot.org</a>> wrote: </div>
2019 Jan 19
4
sieve issue after upgrad
On 19/01/2019 08:01, Aki Tuomi wrote: > >> On 19 January 2019 at 02:07 Tim Dickson via dovecot < >> dovecot at dovecot.org <mailto:dovecot at dovecot.org>> wrote: >> >> >> i recently upgraded a server from dovecot 2.1 to 2.3 >> unfortunately sieve does not appear to be working. The user scripts have >> not changed, and neither has the
2003 May 06
1
Opening previous workspace in Windows (PR#2890) (fwd)
Filing the response on R-bugs. It's quite possible that uninstalling R will damage this, but I would have expected it to be removed entirely. -- Brian D. Ripley, ripley@stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272866
2002 Nov 01
1
init.data function error
We had been using R1.2.3 "print tip lowess function" as described by Terry Speed's group to normalize microarray data and up until this week the commands we were using were working fine. First, we load our data using arrayname<-read.table("filename", header=T) and then check that the table is OK. We format the data list using setup1<-init.data() and usually get a
2006 Jan 10
2
standardized residuals (rstandard & plot.lm) (PR#8468)
This bug is not quite fixed - the example from my original report now = works using R-2.2.1, but plot(Uniform, 6) does not. The bug is due to if (show[6]) { ymx <- max(cook, na.rm =3D TRUE) * 1.025 g <- hatval/(1 - hatval) # Potential division by zero here # plot(g, cook, xlim =3D c(0, max(g)), ylim =3D c(0, ymx),=20 main =3D main, xlab =3D
2004 Dec 31
3
Citation
Does anyone know R is to be cited in a publication? I've looked everywhere on the website and cannot find this. Thanks, Heather -- Heather Maughan Department of Ecology and Evolutionary Biology Biosciences West 310 University of Arizona Tucson, AZ 85701 Phone: 520-626-5108 Fax: 520-621-9190 hmaughan at u.arizona.edu
2016 Apr 28
1
polygon angle option perpendicular to axis
Thanks for the question. Here is a sample of the code for my plot: Top = c(34, 39, 42, 45, 46, 41, 41, 40, 43, 38, 33, 33) Bottom = c(24, 29, 32, 36, 32, 34, 32,41, 40, 39, 29, 24) plot(1,1, col = "white", xlim = c(1.3,11.7), ylim = c(0,80), axis = FALSE, xaxt = "n") axis(1, at = c(1:12)) polygon(c(c(1:12),c(12:1)), c(top, bottom), col =
2016 Apr 28
1
polygon angle option perpendicular to axis
The angle is not based on the polygon edges, but it can seem that way if you do not use the asp=1 argument in your plot. Try this example, > plot(1:10, 1:10, type='n') > x <- c(1, 3, 5, 3) > y <- c(3, 5, 3, 1) > polygon(x, y, angle=0, density=10) > polygon(x, y + 4.5, angle=45, density=10) > polygon(x + 4.5, y + 4.5, angle=90, density=10) > polygon(x + 4.5, y,
2005 Mar 14
0
FW: Package Installation in RGui (PR#7262)
I didn't load the package. I wasn't able to do that, since I wasn't successfull to install it in first place with install.packages. -----Original Message----- From: Uwe Ligges [mailto:ligges@statistik.uni-dortmund.de] Sent: pon 2005-03-14 15:34 To: Gorjanc Gregor Cc: r-devel@stat.math.ethz.ch Subject: Re: [Rd] Package Installation in RGui (PR#7262) Under Windows, you cannot update /
2006 Dec 12
1
modifying file permissions
Folks, I have smbd 2.2.7 running on a Redhat Linux 9.0 system from which I am mapping directories onto my Windows XP Professional system. For the most part everything is working fine. The one thing that doesn't seem to work is that of changing permissions on a file from Windows. I have a user grday in group developer on the linux system with home directory /home/grday. I have the
2009 Dec 07
4
Announce: edtdbg, integrating R's debug() with your text editor
I've just developed edtdbg, a small package that integrates R's debug() with one's text editor. Excerpt from the README file: Goal The debug() function in R is primitive. My goal was to make it more usable by integrating it with one's text editor. Hence I wrote the package here, edtdbg. Its features include: * As one steps from line to line of code
2005 Feb 17
2
Extracting values from linear models
Hello: I want to use values from the output of linear models done using permuted data to construct a random distribution. The problem I am having is the extraction of a value, say the p-value or the regression coefficient, from the summary of a linear model. When summarizing a linear model I get this: Call: lm(formula = fitness ~ mm) Residuals: Min 1Q Median 3Q Max
2004 Oct 05
2
Package Installation in RGui (PR#7262)
Full_Name: Heather Turner Version: 2.0.0 OS: Windows NT Submission from: (NULL) (137.205.8.2) I tried using the Packages menu to install the gam package and get the following output: > local({a <- CRAN.packages() + install.packages(select.list(a[,1],,TRUE), .libPaths()[1], available=a, dependencies=TRUE)}) trying URL `http://cran.r-project.org/bin/windows/contrib/2.0/PACKAGES' Content
2016 Apr 28
0
polygon angle option perpendicular to axis
Filling polygons with lines is a throwback to the time when the height of quality graphics was the mechanical pen plotter (a device that used a pen in a mechanical arm to draw the plot on a piece of paper). Computing and printing technology has advanced quite a bit from that day, so you may want to reconsider why you want polygons filled with lines instead of just a solid color (and I consider
2004 Aug 09
1
Verbose Logs?
Hello. I'm not quite sure what the problem with my samba is. Im running red hat 9 and samba 3.0 and my log has far too much information. this is my samba log: --------------------- samba Begin ------------------------ **Unmatched Entries** lib/util_sock.c:get_peer_addr(978) getpeername failed. Error was Socket operati on on non-socket : 2 Time(s)
2010 Feb 05
0
Quasi-binomial GLM and model selection
Hi, I'm using a GLM with a quasi binomial error distribution and I would like to do a model selection method similar to step(AIC) to carry out a restricted search for the "best" model. I would like to know which of my 5 predictor variables would be included in the "best" model if I start with a 'full' model (fullbinom in this case). However, AIC can't be
2012 Feb 14
0
cumsum formula to determine plankton phenology
Dear R-users -- -- Heather Anne ------------------------------------------- Heather A. Wright, PhD candidate Ecology and Evolution of Plankton Stazione Zoologica Anton Dohrn Villa Comunale 80121 - Napoli, Italy website<http://www.szn.it/SZNWeb/cmd/ShowArchiveItem?TYPE_ID=HUMANRESOURCE&ITEM_ID=21942&LANGUAGE_ID=2> Lab: +39 081 583 3201 Cell: +39 366 484 2196 Fax: +39 081 764 1355 *
2005 Oct 03
0
NewsForge reviews John Terpstra's book: "Samba-3 by Example", 2nd Ed.
This past Wed., 9/28/05, NewsForge [a website property of the Open Source Technology Group ((OSTG))], published a review of John Terpstra's new Second Edition, of "Samba-3 by Example: Practical Exercises to Successful Deployment". The review, written by Joe 'Zonker' Brockmeier, opens with this paragraph: "Too many technical books provide superficial coverage of their
2008 May 14
0
Cook's Distance in GLM (PR#9316)
Well I suppose a warning's not going to hurt. Even in a case like the occupationalStatus example where you know some points have been fitted exactly, it might be useful to be reminded that the standardised residuals for these points are then NaN and cannot be displayed. Of course when you don't know in advance that this issue will arise, there is even more reason to give a warning.