similar to: problems building R-2.9.0 on solaris

Displaying 20 results from an estimated 400 matches similar to: "problems building R-2.9.0 on solaris"

2009 Nov 10
1
compiling R-2.10.0 on solaris - lib_I_dbg_gen.so.1: version `DBG_GEN_5.1' not found
Hi, I'm having trouble compiling R-2.10.0 (R-patched_2009-11-02.tar.gz) on solaris 10 and am hoping for some advice. I'm getting errors about having the wrong version of lib_I_dbg_gen.so.1 ("version `DBG_GEN_5.1' not found"), when it gets to the step of compiling recommended packages (cluster). I think we do have the right version of lib_I_dbg_gen.so.1 on the
2007 Dec 21
0
RMySQL installation
Hi, I am having trouble getting RMySQL running on a solaris machine. [43] bedrock:/home/jayoung/source_codes/R/other_packages> uname -a SunOS bedrock 5.10 Generic_118833-36 sun4v sparc SUNW,Sun-Fire-T200 I thought I had finally managed to get it installed, albeit with some warnings that I didn't understand (it took me a while to find where our mysql libraries were), but when I tried
2010 Jan 14
0
installing RCurl when libcurl is in non-standard location
Hi, I'm struggling to install RCurl for 32-bit linux and am hoping for some suggestions. I obtained RCurl_1.3-1.tar.gz from CRAN today, and am using a very recent version of R: R version 2.10.1 Patched (2010-01-12 r50970). I'm not the sysadmin for this system (disclaimer: my sysadmin skills are not very good, I'm afraid). curl is available centrally on the system but
2009 Apr 22
1
Installation fails (PR#13669)
Full_Name: Dieter Kadelka Version: 2.9.0 OS: Linux Submission from: (NULL) (129.13.115.98) Hallo, my system is Linux mspcka3 2.6.5-7.276-default #1 Mon Jul 24 10:45:31 UTC 2006 i686 GNU/Linux with gcc-4.3.3 Installation of R-2.9.0 fails, R-2.8.1 is o.k. After configure make I get ... WARNING: ignoring environment value of R_HOME >>> Building/Updating help pages for package
2008 Nov 08
0
geeglm crashes if there are no datapoints in predictor's first level (PR#13266)
Hi, I managed to make R core dump (linux and Mac OSX versions), but I think I've figured out why. First, here's the message I get on core dump (on linux - no message on Mac): R: ../inst/include/tnt/fmat.h:529: TNT::Vector<T> TNT::matmult(const TNT::Fortran_Matrix<T>&, const TNT::Vector<T>&) [with T = double]: Assertion `A.num_cols() == x.dim()'
2009 Oct 27
1
tk_choose.files without multiple selection?
Dear all, I compared tk_choose.files on linux with choose.files or tk_choose.files on windows and found that tk_choose.files does not allow multiple selection on linux - independent on keyword setting "multi". > tk_choose.files(default=paste(path.original,"",sep=""),caption="Select file(s)") On linux I get the error message: File <list of
2017 Oct 20
0
Permission denied with tk_choose.dir
Dear R Help list, I'm facing a problem with "tk_choose.dir", I try to find an explanation and a solution. I use :rm(list=ls(all=TRUE)) datawd<-"/mnt/3-Biot/data_input/" setwd(datawd) files<-tk_choose.files(filters = matrix(c("/*.csv",".csv"),1, 2, byrow = TRUE),caption ="Select file with csv format") If I change the name of the folder
2018 Sep 07
1
rsyslog listening on high port
On Thu, 2018-09-06 at 15:10 -0400, Mike Burger wrote: > On 2018-09-06 14:06, Adam Tauno Williams wrote: > > Attempting to lookup why rsyslogd is listening on the high port > > UDP/51427.????Have not succeeded in what this port is used for and > > what directive controls what interface it binds to. > > [root at bedrock ~]# netstat --listen --inet --program --numeric |
2006 Mar 13
3
validation and update
Hi, I have validation working in a situation similar to the following. (Please forgive any minor typos below) class Department < ActiveRecord::Base has_many :people end class Person < ActiveRecord::Base belongs_to :department validates_presence_of :name end @department = Department.new(:name=>"bedrock") @department.people << Person.new(:name=>"fred")
2005 Feb 07
3
root user in smbldap...how to change home
Hi, I finally have my profiles problem squared away.... I've done away with the Administrator user in smbldap-tools by running smbldap-populate -a root instead of just plain smbldap-populate Thus root is now the samba admin. BUT....when I run getent passwd my system shows the home directory as /home/root instead of /root....how can I change this...or better yet how can I have my cake
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
Hi Roy (& others) Many thanks for the advice - well taken. Thanks also to the others who have responded so quickly - I thought I might have to wait days!! :-) I'm on a Linux (Mint) machine. Below, I document three attempts, two using officer and the last now using textreadr My attempts so far using 'officer': ################## (1) First Attempt: # Load libraries
2023 Dec 30
3
Help request: Parsing docx files for key words and appending to a spreadsheet
An update: Running this block of code: # Load libraries library(tcltk) library(tidyverse) library(officer) filepath <- setwd(tk_choose.dir()) filename <- "Now they want us to charge our electric cars from litter bins.docx" #full_filename <- paste0(filepath, filename) full_filename <- paste(filepath, filename, sep="/") if (!file.exists(full_filename)) { ?
2011 May 20
0
Patent attack on Linux kernel
RHEL is mentioned in this attack on Google's use of the Linux kernel in back-end servers. <http://www.theregister.co.uk/2011/04/21/texas_jury_says_google_infringed_linux_patent/> > At least some of those sued were using Red Hat Enterprise Linux (RHEL) on > the back-end. Google apparently uses its own version of Linux across its > famously distributed infrastructure. >
2001 Nov 05
0
security = SERVER - Problem
Hi Samba List, Iam new to this list and want to describe my *little* Problem. We are using in our company an Network with roundabout 200 Clients running W2k/SP2. Our PDC is an W2k Server with Active Directory enabled. Any User is connected to the Active Directory fine , and holds his Profile on this PDC. As Home Share and one Public Share we use an Linux Box with SuSE 7.3 (kernel 2.4.10, samba
2007 Jun 06
2
lookup in CSV recipe
I await Luke''s node settings implementation with interest. At the moment however, I have this sort of ugliness: $site = $hostname ? { fred => "opsera", barney => "bedrock", default => "unknown site", ... } So I''ve knocked up this little function to use CSV files instead. Now I can just do: $site =
2023 Dec 30
2
Help request: Parsing docx files for key words and appending to a spreadsheet
Hi Eric Thanks for that. That seems to fix one problem (the lack of a separator), but introduces a new one when I complete the function Calum proposed:Error in docx_summary() : argument "x" is missing, with no default The whole code so far looks like this: # Load libraries library(tcltk) library(tidyverse) library(officer) filepath <- setwd(tk_choose.dir()) filename <-
2009 Jun 02
1
getting elements out of list automatically
o <- (structure(list(sand.silt = structure(list(statistic = structure(185, .Names = "W"), parameter = NULL, p.value = 0.0478835773838087, null.value = structure(0, .Names = "location shift"), alternative = "two.sided", method = "Wilcoxon rank sum test with continuity correction", data.name = ".column by site"), .Names =
2012 Jan 04
1
tcltk on linux/rhel6
Dear All, I've seen posts to the effect that.. 1) choose.dir is only available for windows, and 2) tk_choose.dir would be the linux equivalent. I'm still having trouble with the subject package on linux/rhel6. I've specified --with-tcltk during ./configure, and I still get the response... > install.packages("tcltk") Installing package(s) into
2012 Nov 28
2
choose folder interactively
Dear users, I am looking for a function to choose a folder interactively, just like file.choose() but for a folder. I have found tcltk::tk_choose.dir() but R hangs when I try to do anything and I have to force exit. I've tried to reinstall tcltk with install.packages(), but "package ?tcltk? is not available (for R version 2.15.2)" even though it's already installed on my
2012 Nov 28
2
choose folder interactively
Dear users, I am looking for a function to choose a folder interactively, just like file.choose() but for a folder. I have found tcltk::tk_choose.dir() but R hangs when I try to do anything and I have to force exit. I've tried to reinstall tcltk with install.packages(), but "package ?tcltk? is not available (for R version 2.15.2)" even though it's already installed on my