search for: nc1

Displaying 13 results from an estimated 13 matches for "nc1".

Did you mean: c1
2024 May 02
1
named wont start
...MBA_INTERNAL >> >> ?? systemctl restart samba-ad-dc.service >> >> nothing responds on port 53 for dns :( >> >> Peter > > oops I forgot to add "dns" to server services in smb.conf ok, but I am not getting resolution of the default records root at nc1:/etc/samba# host -t SRV _ldap._tcp.san***ent.local. Host _ldap._tcp.san***ent.local. not found: 3(NXDOMAIN) root at nc1:/etc/samba# host -t SRV _ldap._tcp.san***ent.local Host _ldap._tcp.san***ent.local not found: 3(NXDOMAIN) root at nc1:/etc/samba# samba-tool dns zonelist 127.0.0.1 -U peter ? 2...
2024 Apr 30
1
named wont start
...med service if I connect it with samba. brief history: I am having problems with named hanging, isc says step1 is to upgrade to the latest bind.? As soon as I upgrade to latest bind, it wont start.? Now the first step is to figure out which mailing list to talk to ?syslog: Apr 30 07:43:02 nc1 named[27557]: Loading 'AD DNS Zone' using driver dlopen Apr 30 07:43:02 nc1 named[27557]: free(): invalid pointer Apr 30 07:43:03 nc1 systemd[1]: named.service: Main process exited, code=killed, status=6/ABRT if I comment out the include it works include "/var/lib...
2005 Aug 22
2
problem building dendrograms to use with heatmap()
...(ans, 'height') <- height attr(ans, 'leaf') <- F attr(ans, 'midpoint') <- (members - 1)/2 attr(ans, 'class') <- 'dendrogram' ans } lc1 <- dendro.leaf('c1') lc2 <- dendro.leaf('c2') lc3 <- dendro.leaf('c3') nc1 <- dendro.merge(lc1, lc2, 0.1) nc2 <- dendro.merge(nc1, lc3, 0.2) plot(nc2) lr1 <- dendro.leaf('r1') lr2 <- dendro.leaf('r2') lr3 <- dendro.leaf('r3') nr1 <- dendro.merge(lr2, lr3, 0.1) nr2 <- dendro.merge(lr1, nr1, 0.3) plot(nr2) x <- matrix(seq(-1...
2003 Mar 28
1
overlapping pattern match (errata 2.0)
well! excuse me again but... your.string <- "aaacdf" nc1 <- nchar(your.string)-1 x <- unlist(strsplit(your.string, NULL)) ######## CORRECT x2 <- c() for (i in 1:nc1) x2 <- c(x2, paste(x[i], x[i+1], sep="")) ######## ERRATA 2 cat("ocurrences of <aa> in <your.string>: ", length(grep("aa", x2)), sep=&quo...
2010 Nov 17
1
Problem downloading and opening netcdf file
...line netcdf file. I'm using Windows XP and R 2.11.1 Here's my script library(ncdf) link <- "http://ibis.grdl.noaa.gov/SAT/SeaLevelRise/slr/slr_sla_gbl_free_all_66.nc" dest <- "C:/temp/slr_sla_gbl_free_all_66.nc" download.file(url=link,destfile=dest) nc1 <- open.ncdf(dest) The file appears in my C:/temp directory, however I can not open() it, I get this error message: > nc1 <- open.ncdf(dest) Error in open.ncdf(dest) : Error in open.ncdf trying to open file C:/temp/slr_sla_gbl_free_all_66.nc > I can manually download and save t...
2017 Aug 14
2
ncdf4: Why are NAs converted to _FillValue when saving?
...te a *.nc file containing three variables for Switzerland. All data outside of the country are NAs. The third variable is calculated from the first two variables. Basically there is no problem to do that. I copy the file with the data of the first variable, open this file with 'write=TRUE' (nc1 <- nc_open()), read the data to 'var1', open the other file (nc2 <- nc_open()), read the data to variable 'var2', put this variable to the file (nc1) and calculate the third variable based on var1 and var2. So far everything is fine. But I figured out that when I write the da...
2004 Aug 03
1
(PR#7152) Ops.ts returns non-ts object for univariate operations
...operator >> result <- NextMethod(.Generic) >> attributes(result) <- attributes(e1) >> result >> } else if(any(nchar(.Method) == 0)) { >> ## one operand is not a ts >> NextMethod(.Generic) >> } else { >> nc1 <- NCOL(e1) >> nc2 <- NCOL(e2) >> ## use ts.intersect to align e1 and e2 >> e12 <- .cbind.ts(list(e1, e2), >> c(deparse(substitute(e1))[1], >> deparse(substitute(e2))[1]), >>...
2011 Jul 11
3
NetCDF, open *.nc
...695.n4.nabble.com/Problem-downloading-and-opening-netcdf-file-td3046897.html#a3046965) library(ncdf) link <- "http://ibis.grdl.noaa.gov/SAT/SeaLevelRise/slr/slr_sla_gbl_free_all_66.nc" dest <- "C:/temp/slr_sla_gbl_free_all_66.nc" download.file(url=link,destfile=dest) nc1 <- open.ncdf(dest) Prof Brian Ripley advises to use *mode="wb": AFAIK.* *Where exactly should I insert this code? * *Thank you for your help!* -- View this message in context: http://r.789695.n4.nabble.com/NetCDF-open-nc-tp3659401p3659401.html Sent from the R help mailing list arch...
2017 Aug 14
0
ncdf4: Why are NAs converted to _FillValue when saving?
...containing three variables for Switzerland. All data outside of the country > are NAs. The third variable is calculated from the first two variables. > Basically there is no problem to do that. I copy the file with the data of > the first variable, open this file with 'write=TRUE' (nc1 <- nc_open()), > read the data to 'var1', open the other file (nc2 <- nc_open()), read the > data to variable 'var2', put this variable to the file (nc1) and calculate > the third variable based on var1 and var2. > > So far everything is fine. But I figured out...
2024 Jan 26
1
permission denied with windows acls
...= yes winbind enum groups = no winbind enum users = no apply group policies = yes #======================= Share Definitions ======================= [Test] ??? path = /data/test ??? comment = test ??? writable = yes then set SeDiskOperatorPrivilege root at nc1:~# net rpc rights list privileges SeDiskOperatorPrivilege -U carlson\\peter Password for [CARLSON\peter]: SeDiskOperatorPrivilege: ? CARLSON\Domain Admins CARLSON\peter at fs1:/data$ getfacl test # file: test # owner: root # group: CARLSON\\videousers user::rwx...
2009 Aug 07
3
[Bridge] [evb] RE: [PATCH][RFC] net/bridge: add basic VEPA support
.../start;_ylc=X3oDMTJwdjNqdTNiBF9TAzk3MzU5NzE0BF9wAzMEZ3JwSWQDMjM4OTY0NDcEZ3Jwc3BJZAMxNzA1MDA0NzUwBHNlYwNuY21vZARzbGsDZ3JvdXBzMgRzdGltZQMxMjQ5NjcxNTEw> in 3 easy steps. Connect with others. . <http://geo.yahoo.com/serv?s=97359714/grpId=23896447/grpspId=1705004750/msgId=212/stime=1249671510/nc1=1/nc2=2/nc3=3> __,_._,___ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.linux-foundation.org/pipermail/bridge/attachments/20090807/a97fd94f/attachment-0001.htm
2009 Aug 07
3
[Bridge] [evb] RE: [PATCH][RFC] net/bridge: add basic VEPA support
.../start;_ylc=X3oDMTJwdjNqdTNiBF9TAzk3MzU5NzE0BF9wAzMEZ3JwSWQDMjM4OTY0NDcEZ3Jwc3BJZAMxNzA1MDA0NzUwBHNlYwNuY21vZARzbGsDZ3JvdXBzMgRzdGltZQMxMjQ5NjcxNTEw> in 3 easy steps. Connect with others. . <http://geo.yahoo.com/serv?s=97359714/grpId=23896447/grpspId=1705004750/msgId=212/stime=1249671510/nc1=1/nc2=2/nc3=3> __,_._,___ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.linux-foundation.org/pipermail/bridge/attachments/20090807/a97fd94f/attachment-0001.htm
2009 Aug 07
3
[Bridge] [evb] RE: [PATCH][RFC] net/bridge: add basic VEPA support
.../start;_ylc=X3oDMTJwdjNqdTNiBF9TAzk3MzU5NzE0BF9wAzMEZ3JwSWQDMjM4OTY0NDcEZ3Jwc3BJZAMxNzA1MDA0NzUwBHNlYwNuY21vZARzbGsDZ3JvdXBzMgRzdGltZQMxMjQ5NjcxNTEw> in 3 easy steps. Connect with others. . <http://geo.yahoo.com/serv?s=97359714/grpId=23896447/grpspId=1705004750/msgId=212/stime=1249671510/nc1=1/nc2=2/nc3=3> __,_._,___ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.linux-foundation.org/pipermail/bridge/attachments/20090807/a97fd94f/attachment-0001.htm