similar to: Rcmd install problem: "cannot open the connection" and "No such file or directory"

Displaying 20 results from an estimated 1000 matches similar to: "Rcmd install problem: "cannot open the connection" and "No such file or directory""

2014 Sep 18
3
samba 4 domain join to win 2008r2 level DC w/ a schema with exchange 2010 extensions: replication after the join is broken
I tried to join a samba4 to a win2008r2 level domain (OS level 2012) running exchange 2010. The join succeeds but the later replication is broken due to schema differences. In order to to find the cause, I started a test setup with: * a win2008r2 DC w/ minimal AD * upgraded the schema and the OS to 2012 (function level is still 2008r2) * and added a exchange server to the domain. And that is
2011 Apr 29
1
question of VECM restricted regression
Dear Colleague I am trying to figure out how to use R to do OLS restricted VECM regression. However, there are some notation I cannot understand. Please tell me what is 'ect', 'sd' and 'LRM.dl1 in the following practice: #OLS retricted VECM regression data(denmark) sjd <- denmark[, c("LRM", "LRY", "IBO", "IDE")] sjd.vecm<-
2013 Jan 02
4
Define 6.1 and 7.1 channel mappings
I apologize for the terribly long message, but here goes. ------------------------------------------------------------------------------------------------- First, regarding existing tools that I now about. libavcodec and users (e.g. HandBrake): - if there are 6 channels or less, the layout is set by the decoder as per the FLAC specification - if there are more than 6 channels, the layout is
2005 Apr 05
1
Install R 2.0 package on R 1.9.1
Hi, I'm wondering if it is possible to install a package for R 2.0 on R 1.9.1 on Mac OS X? I'm getting this error which seems to be known issue: library("quantreg") Error in firstlib(which.lib.loc, package) : couldn't find function "lazyLoad" In addition: Warning message: package quantreg was built under R version 2.0.1 Error in
2004 Apr 06
2
Problems with Rcmd INSTALL on Win32
Hello. When I try to use Rcmd INSTALL to install a package (whether my own or someone else's) for the Windows version of R, I get the following error: C:\>Rcmd INSTALL cluster_1.8.1.tar.gz ---------- Making package cluster ------------ adding build stamp to DESCRIPTION Fatal error: you must specify `--save', `--no-save' or `--vanilla' make[1]: *** [frontmatter] Error 2
2008 Feb 29
1
[PATCH] ioemu: fix xenfb slow case update
ioemu: fix xenfb slow case update Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com> diff -r 067d8f19e78a tools/ioemu/hw/xenfb.c --- a/tools/ioemu/hw/xenfb.c Thu Feb 28 13:55:37 2008 +0000 +++ b/tools/ioemu/hw/xenfb.c Fri Feb 29 15:25:17 2008 +0000 @@ -1072,7 +1072,7 @@ /* A convenient function for munging pixels between different depths */ #define
2004 Sep 10
2
Re: Lossless AMI ADPCM
I'm copying the flac-dev list to see if anyone has any feedback also... --- Juhana Sadeharju <kouhia@nic.funet.fi> wrote: > Hello again. I had time to check the paper out. I have filled the > steps given in the paper with formulae, and then written a piece of > C code. It is not complete code, but could be a reasonable start. > Maybe there is one typo in the paper -- I have
2006 Sep 29
1
Build error on Windows
Hi, I'm trying to build R-2.3.1 on windows, but make gives me following error while building pkg-base: ---------- Making package base ------------ adding build stamp to DESCRIPTION make[4]: *** [frontmatter] Error 1 make[3]: *** [all] Error 2 make[2]: *** [pkg-base] Error 2 make[1]: *** [rpackage] Error 2 make: *** [all] Error 2 Please note that R.exe, Rterm.exe, Rgui.exe, RCmd.exe are
2009 Aug 16
1
Installing quantreg package under Ubuntu
Does any have installation instructions for this? When I run install.packages('quantreg') I get: gcc -std=gnu99 -shared -o quantreg.so akj.o boot.o brute.o chlfct.o cholesky.o combos.o crq.o crqfnb.o dsel05.o etime.o extract.o idmin.o iswap.o kuantile.o mcmb.o penalty.o powell.o rls.o rq0.o rq1.o rqbr.o rqfn.o rqfnb.o rqfnc.o sparskit2.o srqfn.o srqfnc.o srtpai.o -llapack -lblas
2007 May 16
3
Reshape a sparse matrix
Hi, I'd like to reshape a sparse matrix generated from the Matrix package. I can't seem to do it with the command dim(A) <- c(6,9) which works perfectly with the base package matrices, but with the sparse matrices it errors with Error in dim(A) = c(6, 9) : dim<- : invalid first argument Manipulating the Dim attribute of the sparse Matrix does not produce the desired effect. A
2013 Apr 04
1
R CMD check --outdir=path gives unknown option '--outdir'
For 'R CMD check', it appears that option '--outdir' is not recognized and generates warning "unknown option '--outdir'". R CMD check --help says: Usage: R CMD check [options] pkgs [...] Options: [...] -o, --outdir=DIR directory used for logfiles, R output, etc. (default is 'pkg.Rcheck' in current directory,
2012 Sep 22
2
Define 6.1 and 7.1 channel mappings
On Fri Sep 21 16:31:21 2012, Stephen F. Booth wrote: > 6.1: L R C LFE Ls Rs Cs (MPEG 6.1 A layout) I'm confused. WAV puts the rear centre before everything but 'Front left of center' and 'Front right of center'. Are you saying you prefer the extra front channels to to side/rear surround, or that you prefer the MPEG order to the WAVE order? -r
2011 Jan 30
1
Extract subsets of different and unknown lengths from huge dataset
Dear prospective reader, I apologize for posting my problem but I've just no idea how to go on by processing this huge (over 70 MB) dataset. Thank you in advance for any help or comment! I do appreciate it! My textfile contains 1 column of interest (numbers/values only). The overall issue is to extract 'events', starting points of which are defined by at least 24 preceding values
2001 Aug 28
2
fitting a mixture of distributions with optim and max log likelihood ?
hi Suppose I have a mixture of 2 distributions generated by rtwonormals <- function(npnt,m1,s1,m2,s2,p2){ rv<-vector(npnt,mode="numeric") for( i in seq(1:npnt)){ if(runif(1,0,1)<=p2){ rv[i]<-rnorm(1,m2,s2) } else{ rv[i]<-rnorm(1,m1,s1) } } return(rv) } x <- rtwonormals(50000,0,100,500,500,0.05) #and I try to fit these with (based on thread: [R]
2007 May 21
3
an array of matrices
I'd like to have a three dimensional array of matrices. I thought I could construct a five dimensional array to have the three dimensional array of matrices. However, not all of the matrices in the array have the same dimensions, which seems to mean I can't use a five dimensional array. What I'd like is this: A = matrix(1:4,2,2) B = matrix(1:25,5,5) C = matrix(1,3,3) D =
2008 Oct 03
2
A strange behaviour of file.path in Windows? (PR#13119)
Full_Name: Enrico Pegoraro Version: 2.7.2 OS: Windows (Vista or Xp PRO) Italian Submission from: (NULL) (87.4.189.202) If you send these lines of code: outdir="c:/pippo" file.path(outdir,"pluto.html") R replies correctly: [1] "c:/pippo/pluto.html" But if you change the first steps to: outdir="" file.path(outdir,"pluto.html") R replies
2003 Jan 16
0
Samba Print error
Hello I'm new to samba and this list, hopefully someone can help me with this strange problem. Samba 2.2.3a-12 debian 2.2.20-idepci I have the following smb.conf: ---cut--- tux:/shr/pdfdropbox# more /etc/samba/smb.conf [global] workgroup = xxxxxx netbios name = tux server string = tux kernel oplocks = No encrypt passwords = Yes
2016 Jul 15
3
[PATCH 1/4] Create a simple project to create version.h to run before any other
Avoids trying to create and replace version.h more than once which led to file-locking errors with multicore builds. --- Makefile.am | 1 + win32/VS2015/celt.vcxproj | 48 +++++++++++++++++--------- win32/VS2015/generate_version.vcxproj | 65 +++++++++++++++++++++++++++++++++++ win32/VS2015/opus.sln | 32 ++++++++++++++++-
2013 May 20
1
R CMD check: unknown option ‘--outdir==RCHECK’
Dear R devel I am experiencing a problem using R CMD check. I tried to specify the argument outdir, but get every time the error message: Warning: unknown option ‘--outdir==RCHECK’ This happens both on R 2.15.2 Linux, as well as R 3.0.1 Windows, with latest Rtools. Is it just that I am not passing the argument the right way, or is there an issue with R CMD check? I tried to write the argument
2006 May 16
0
Re: [Astlinux-users] British English Female files ready for download
Mark, While these samples are pretty good they do not work "out of the box" - there are a couple of issues: 1. the samples are 44100 samples/second and Asterisk needs them to be at 8000 samples/second. This is what happens if you prune out all of the Amercian voicemail prompts and substitute yours: Asterisk 1.2.7, Copyright (C) 1999 - 2006 Digium, Inc. and others. Created by Mark