similar to: Problem with installation of littler-0.0.10. under Free BSD 6.2

Displaying 20 results from an estimated 1000 matches similar to: "Problem with installation of littler-0.0.10. under Free BSD 6.2"

2007 Jul 11
2
Music on hold stops on blind transfer
Asterisk 1.4.6 at FreeBSD6.2-RELEASE Client hears pure silence when waiting for call answer. Music on hold stops when transferer pics a number and client doesn't even hear ringing. Is this normal behaviour? How to change this? Log says everything, MOH should stop after call pickup, not before Dial. -- Executing [113 at firma:1] Dial("SIP/zytek-08737000",
2007 Aug 17
1
Problem on displaying groupquota info
Gentleman, I have samba-3.0.25a working on a FreeBSD6.2 server. It was been compiled with-quota support. It was supposed to be working well with userquota and groupquota. Actually it is ok with userquotas. But it is passing wrong information about groupquota. On the server, 'quota -g sti' shows Disk quotas for group sti (gid 1001): Filesystem usage quota limit grace
2007 May 18
1
[LLVMdev] 2.0-prerelease build errors
On Thu, May 17, 2007 at 03:15:09PM -0700, Tanya M. Lattner wrote: > > Should configure also error out if perl isn't installed? > > Yes. Reid has changed this so that perl is now required. > > Thanks so much for reporting these! You're welcome! I'm still working on the "method four" testing that you requested. The "make check" is done, results
2007 Nov 07
1
Incomplete dir listing (ext2fs / FreeBSD)
Hi, I moved a disk with ext2fs from a Linux box (SuSE) into my FreeBSD6.2 box. Some directories on that disk are shared to my Windows boxes via v3.0.26a (according to smbd -V). A couple of directories contain a large number of files (hundreds to thousands). The list of files is incomplete using Windows clients or smbclient on FreeBSD. If I copy the directories to a disk using ufs, the file
2006 Oct 05
1
littler release 0.0.6
What ? ------ We are pleased to announce version 0.0.6 of littler What's new ? ------------ This version includes a bug fix or two as well as a number of small enhancements to the documentation. For OS X and the r/R confusion, our recommended suggestion is to call configure using either the --program-suffix=X or --program-prefix=Y option to have the binary and manual
2007 Nov 17
1
littler usage
Hi, I've been using r (the little, but sweet one!), and recently found out about the magic argv vector of the rest of arguments passed to it. How can we process an argument that represents elements of a vector: $ r littler_ex.R 14 '3, 2' Error in ff * ss : non-numeric argument to binary operator where: ,-----[ cat ~/scripts/R/littler_ex.R ] | ff <- as.numeric(argv[1]) | ss
2007 Jan 04
1
littler+dget+stdin -> segmentation fault
Hi, I'm trying to write a series of pipes using littler, and I get the following behaviour: Sorry if I'm just doing something witless, I'm new to R. I'm using the latest versions from debian testing (2.4.0 and 0.0.8). $ r -e 'a<-dget(file=stdin()); print(a)' ?list(a=2) Segmentation fault In R itself this works: > dget(file=stdin()) ?list(a=2) $a [1] 2 As do (from
2011 Dec 12
1
littler: Use for batch processing of data sets: How to pass filename?
Dear R folks, I have several data sets I want to process automatically using R. I found littler [1] and thought this will do the trick. 1. Read in data file to a data frame using `scan()`. 2. Do linear regression. 3. Write the data and the coefficients back to a file. #!/usr/bin/env r if (is.null(argv) | length(argv)!=1) { cat("Usage:
2009 Jun 01
1
piping to littler
Hi, This code used to work well until a few months ago (I haven't used it since), but now it's giving this: ---<--------------------cut here---------------start------------------->--- $ cat <<EOF | r - locs <- read.csv(list.files(pattern="ds_.+_.+\\.csv"), colClasses=c(rep("character", 2), "numeric", "character",
2014 Aug 14
1
littler autoloader issue
Hi, I'm not sure when this started occurring, but now I get: ---<--------------------cut here---------------start------------------->--- $ r -e 'quantile(rnorm(1e5))' Error in (function (name, package, ...) : autoloader did not find 'quantile.default' in 'stats' ---<--------------------cut here---------------end--------------------->--- I'm using
2007 Jan 08
1
scripts with littler
Hi, I'm trying to write R scripts using littler (under Debian), and was originally using the shebang line: #!/usr/bin/env r However this picks up any .RData file that happens to be lying around, which I find a little disturbing, because it means that the script may not behave the same way on successive invocations. If you drop the /usr/bin/env trick then #!/usr/bin/r --vanilla seems to
2008 May 06
0
Announcement: support of littler, rkward and rpy on Debian/Ubuntu
Dear useRs, This is to announce that the maintainers of the various distributions have decided to provide "experimental" up-to-date versions of the following R related packages on Debian stable and Ubuntu (i386 and amd64 architectures): littler rkward python-rpy (not on Ubuntu Dapper) python-rpy-doc (not on Ubuntu Dapper) By "experimental" we mostly mean that
2008 May 06
0
Announcement: support of littler, rkward and rpy on Debian/Ubuntu
Dear useRs, This is to announce that the maintainers of the various distributions have decided to provide "experimental" up-to-date versions of the following R related packages on Debian stable and Ubuntu (i386 and amd64 architectures): littler rkward python-rpy (not on Ubuntu Dapper) python-rpy-doc (not on Ubuntu Dapper) By "experimental" we mostly mean that
2012 Aug 27
2
littler and rJava
Hello list, I'm having some difficulty getting rJava to load in littler. Even after a R CMD javareconf and a reinstall of littler, I get this: jlaing at xenon:~$ r -e "require(rJava)" Loading required package: rJava Loading required package: methods Error : .onLoad failed in loadNamespace() for 'rJava', details: call: dyn.load(file, DLLpath = DLLpath, ...) error: unable
2007 Jan 08
1
scripts with littler / subroutines
Hi (again), Another difficulty I'm having is creating a common function (foo, say) to share between two scripts. I've tried making a third file containing the function and then sourcing it with source ("foo.R"), but that only works if you run the script in the directory where "foo.R" is. (or if the scripts know where they're installed) The other solutions that
2006 Sep 26
4
New project: littler for GNU R
What ? ====== littler - Provides hash-bang (#!) capability for R (www.r-project.org) Why ? ===== GNU R, a language and environment for statistical computing and graphics, provides a wonderful system for 'programming with data' as well as interactive exploratory analysis, often involving graphs. Sometimes, however, simple scripts are desired. While GNU R can be used
2011 Jul 29
4
scripting/littler: How to call function named iteratively (`f1`, `f2`, …)?
Dear R folks, wanting to compare different implementations of a solution I want to script it to iterate over the different implementations. Is there a way to do this in the R shell/command line? $ more /tmp/iterf.r f1 <- function(n = 100000, l = 100000) { z = n + l } f2 <- function(n = 100000,
2007 Dec 31
4
1.1b13 build in FreeBSD fails using 'make'; 'gmake' apparently required
hi, i'm doing a 1st build of dovecot in a freebsd 62R jail. following instructions at http://wiki.dovecot.org/CompilingSource ./configure make sudo make install after an OK 'configure', @ 'make', i get make make all-recursive Making all in src Making all in lib make: don't know how to make unicodemap.c. Stop *** Error code 1 Stop in
2006 Jun 12
1
Dovecot fails to start after enabling "deliver" executable settings to config file
On Mon, 2006-06-12 at 10:29 -0400, My BSD wrote: > dovecot: Jun 12 10:08:53 Error: auth(default): bind > (/opt/var/run/dovecot/auth-client) failed: No such file or directory Does /opt/var/run/dovecot/ directory exist? And you haven't tried to chroot auth process? -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type:
2009 Mar 17
3
rndc: connect failed: 127.0.0.1#953: connection refused
My BIND9.6.0 on FreeBSD 6.2 works fine when I manually start with: root@ns2# named -4 -S 1024 -c /etc/namedb/named.conf But it won't start on boot and no error messages or log. And it won't start using rndc, it cause error message. Why does the error shows port 953 when I specified for port 53 in the config? rndc: connect failed: 127.0.0.1#953: connection refused Below are