Displaying 13 results from an estimated 13 matches for "27695".
Did you mean:
2769
2014 Mar 17
2
Samba 4.1.6 + RPC Problem + DNS + RSAT
...l error
Same error we get on command line with this command: samba-tool dns query ad01.domain.test domain.test @ ALL -UAdministrator
netstat before connecting :
netstat -anp | grep '88\|135\|389\|464\|636\|1024\|3268\|3269\|53' | grep -i listen
tcp 0 0 0.0.0.0:464 0.0.0.0:* LISTEN 27695/samba
tcp 0 0 10.30.0.2:53 0.0.0.0:* LISTEN 26519/named-sdb
tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN 26519/named-sdb
tcp 0 0 0.0.0.0:88 0.0.0.0:* LISTEN 27695/samba
tcp 0 0 127.0.0.1:953 0.0.0.0:* LISTEN 26519/named-sdb
tcp 0 0 0.0.0.0:636 0.0.0.0:* LISTEN 27693/samba
tcp 0 0 0.0.0.0:1024 0.0.0....
2008 Jan 03
1
cluster suite & gfs problem since update
...tarts itself. What I
am seeing in /var/log/messages is:
Jan 3 11:17:47 engrfs1 clurgmgrd: [5614]: <err> nfsclient:skynet_disted
is missing!
Jan 3 11:17:47 engrfs1 clurgmgrd[5614]: <notice> status on
nfsclient:skynet_disted returned 1
(generic error)
Jan 3 11:17:47 engrfs1 bash: [27695]: <info> Removing export:
129.119.113.108:/mnt/disted
Jan 3 11:17:47 engrfs1 bash: [27695]: <info> Adding export:
129.119.113.108:/mnt/disted (rw)
It does this for every client definition on the service. After it gets
to the last one, it then restarts the serivce:
Jan 3 11:16:25...
2006 Jul 16
3
bug in 1.0RC2?
...simon 24.43.241.184]
juha 1376 0.0 0.2 1936 2212 ?? I 12:25PM 0:01.36 imap
[juha 203.114.146.110]
n 26989 0.0 0.1 1060 1292 ?? I 2:18PM 0:00.47 imap
[n 85.201.63.39]
n 30256 0.0 0.5 5124 5300 ?? I 3:34PM 23:29.59 imap
[n 85.201.63.39]
n 27695 0.0 0.1 1020 1284 ?? I 3:39PM 0:00.26 imap
[n 85.201.63.39]
n 24109 0.0 0.1 960 1328 ?? I 3:57PM 0:00.18 imap
[n 85.201.63.39]
n 20018 0.0 0.1 948 1288 ?? I 4:00PM 0:00.28 imap
[n 85.201.63.39]
n 12715 0.0 0.1 900 1240 ?? I 4:...
2008 Jul 07
1
Xen 3.3 unstable on OpenSUSE 10.3 - initrd problem
...gure out the
proper syntax for the mkinitrd command.
Any help will be greatly appreciated.
Bill Morris
Bill Morris (bill_morris@ncsu.edu)
Operations and Systems Analyst
Campus Novell Services
Office of Information Technology
North Carolina State University
2620 Hillsborough Street
Raleigh, NC 27695-7209
(919) 513-1800
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2005 Feb 02
1
Error when changing from AR 1.0.1 to 1.6
Hello,
I have the following output when changing form Active Record 1.0.1 to
ActiveRecord 1.6:
[error] C:/dev/ruby/lib/ruby/gems/1.8/gems/actionpack-1.4.0/lib/action_controller/support/dependencies.rb:24:in `depend_on'': uninitialized constant ActiveRecord::Mixins (ScriptError)\r
[error] \tfrom
2005 Feb 14
1
64 Bit R Background Question
...e physical limitations of 64 BIT R that would make intalling it
on a grid (http://www.ncsu.edu/itd/hpc/Hardware/Hardware.php) a wasted
effort? We have the memory and drive space to do this.
Thanks for any advice
Tom Colson
Center for Earth Observation
North Carolina State University
Raleigh, NC 27695
(919) 515 3434
(919) 673 8023
tom_colson at ncsu.edu
Online Calendar:
http://www4.ncsu.edu/~tpcolson
2011 Jan 14
1
Survfit: why different survival curves but same parameter estimates?
...odel1) are plausible but not the results from survfit(model2).
I would very much welcome any comments or suggestions.
--
Denis
------------------------------------------------
Denis Pelletier
Department of Economics
Poole College of Management
North Carolina State University
Box 8110
Raleigh, NC 27695-8110, USA
phone: (+1) 919 513 7408
fax: (+1) 919 515 5613
http://www4.ncsu.edu/~dpellet
2012 Aug 15
0
color-coding of biplot points for varimax rotated factors (from PCA)
...bg="Grey90")
### scale the plot parameters
rrr<-apply(fit$scores[,1:2],2, range)
(abs(rrr)+.1)*sign(rrr)
par(usr=as.vector(rrr))
### now include the colored points
points(fit$scores[,c(1,2)], col=collab, pch=20)
--
Barbara Doll
NC Sea Grant
Box 8605, NC State University
Raleigh NC 27695-8605
919-515-5287
919-515-7095 fax
bdoll at ncsu.edu
2010 Aug 11
3
Running something without a loop when the result from the previous iteration is require for the current iteration
...h of the post, but I thought it best to try to explain
what I was doing first, before diving into my question
Thanks in advance!
Adrienne Wootten
Graduate Research Assistant/Environmental Meteorologist
M.S. Atmospheric Science
NC State University
State Climate Office of North Carolina
Raleigh, NC 27695
[[alternative HTML version deleted]]
2005 Feb 18
2
bivariate empirical cdf
Dear R users,
I'm trying to write a small function in order to compute empirical cumulative density function.All seems to work but when I try to plot the function, I always get error messages.
This is the function I use
mecdf<-function(u,v,z) {
u=sort(u)
v=sort(v)
n=length(u)
nb=0
for (i in seq(1,n)) {
if (u[i]<z & v[i]<z) {
nb<-nb+1
}
}
nb=nb/n
2011 Dec 15
2
Data Manipulation - make diagonal matrix of each element of a matrix
Dear R list,
I have the following data:
set.seed(1)
n <- 5 # number of subjects
tt <- 3 # number of repeated observation per subject
numco <- 2 # number of covariates
x <- matrix(round(rnorm(n*numco),2), ncol=numco) # the actual covariates
x
> x
[,1] [,2]
[1,] -0.63 -0.82
[2,] 0.18 0.49
[3,] -0.84 0.74
[4,] 1.60 0.58
[5,] 0.33 -0.31
I need to form a matrix
2009 Dec 09
4
binary string conversion to a vector (PR#14120)
Full_Name: Franc Brglez
Version: R 2.9.1 GUI 1.28 Tiger build 32-bit (5444)
OS: MacOSX -- 10.6.2
Submission from: (NULL) (24.148.163.114)
I am demonstrating what may be a bug or my lack of experience. Please review as
it would help to hear from someone.
MANY THANKS -- Franc Brglez
The function "binS2binV" returns what I consider a wrong value -- see the
terminal output
binS2binV =
2011 Dec 16
0
Wine release 1.3.35
...1 crash while install ICBC_FT_UShield2_Install.exe ( unimplemented function msvcp60.dll.??0?$basic_ostringstream at GU?$char_traits at G@std@@V?$allocator at G@2@@std@@QAE at H@Z )
27367 widl: gcc warns about pointer mismatch when calling pfnFree
27371 crash while install 360chrome browser
27695 Need for speed underground 1 DEMO: Keys Num_Lock and Pause are swapped
27730 Arcanum hangs on exit
27755 Can't log in with yahoo! messenger 11
27922 iexplore crashes on windows.microsoft.com
28047 IAudioClock_GetPosition must not depend on buffering (ALSA/Pulse)
28204 Starfleet...