Displaying 9 results from an estimated 9 matches for "sun5".
Did you mean:
sun
2001 Mar 07
1
syskern
...can no doubt abandon some versions. However,
R has now evolved to the point where it actually deals with most of the
operating system differences (at least the ones that there is much hope
of dealing with).
My main use of the operating system determination has been with Splus to
distinguish Sun4, Sun5, and MSwindow in order to load the appropriate
compiled code. I don't think this is an issue in R, but I haven't tried
to load a windows dll so I don't really know. The point of the syskern
code is to have a function is.Sun5() that works in R and in S and looks
after the fact that the R...
1997 Dec 02
1
R-alpha: compatability functions
...ate info on a file, starting another
process, getting host name info, or sending mail (from an R/S program). I can
use machine() to define is.Win32 and is.Win16 in R, but does anyone know how to
do this in Splus?
2/ In S it is fairly easy to get information to define functions like
is.Linux(), is.Sun5(), but most of the time I just want to be able to use
is.unix(). I have two approaches, neither of which I like. One is to default to
unix if I don't identify Windows, and the other is to identify all the different
types of unix and then "or" them. Can anyone suggest a better way to...
1997 Aug 25
0
R-alpha: Re: missing' BB functions
...is.Splus() && ((system.info()$major+.1*system.info()$minor) < 3.3)
}
is.Linux <- function(){system.info()$os == "linux"}
is.MSwindows <- function(){system.info()$os == "MS Windows"}
is.Sun4 <- function(){"SunOS4" == system.info()$OSversion }
is.Sun5 <- function(){"SunOS5" == system.info()$OSversion }
is.unix <- function(){is.Linux() | is.Sun5() | is.Sun4() |
(system.info()$os == "Unix")} # ???
if(is.unix())
{if(is.R()) unix <- function(cmd) system(cmd, intern=T)
sleep <- function(n)...
2002 Oct 04
0
Strange windows error writing to samba share:
...======
[global]
remote announce = 162.70.219.21
wins server = 162.70.219.21
dns proxy = no
security = user
encrypt passwords = yes
server string = Samba Server
workgroup = MYGROUP
socket options = TCP_NODELAY
netbios name = cacssun5
log level = 5
log file = /var/log/smbd.%m
load printers = no
netbios aliases = sun5
max log size = 50
socket options = TCP_NODELAY
[software]
path = /export/home/cm/software
level2 oplocks = yes
force directory mode =...
1997 Aug 22
0
R-alpha: RHOME
.....
> * The main question is, how is the right platform determined at runtime?
> ...
There seems to be an assumption here that RHOME will be the same no
matter what machine you are running on. I would set RHOME depending on
the machine, eg.
RHOME=/usr/local/lib/R-Sun4
RHOME=/usr/local/lib/R-Sun5
RHOME=/usr/local/lib/R-Linux386
and then use links to the XDR files and other files which are not
machine dependent, so they do not have to be duplicated.
Determining the platform universally may be fairly difficult, but at a
given site there is usually a fairly small mix of machines and it is
po...
1998 Apr 21
1
R-beta: R make problem
...rom /usr/include/sys/vnode.h:37,
from /usr/include/sys/stream.h:21,
from /usr/include/netinet/in.h:38,
from /usr/include/rpc/auth_kerb.h:14,
from /usr/include/rpc/rpc.h:39,
from saveload.c:243:
/home/res/public/gnu/sun5/lib/gcc-lib/sparc-sun-solaris2.4/2.7.1/include/sys/param.h:185:
warning: `NBBY' redefined
/usr/include/sys/select.h:45: warning: this is the location of the previous
definition
In file included from /usr/include/sys/stream.h:26,
from /usr/include/netinet/in.h:38,...
1997 Nov 04
0
R-alpha: compatibility functions
...<- function(){machine() == "Macintosh" }
is.unix <- function(){machine() == "Unix" }
# Other is.xxx() should be added here.
# determining Unix flavours doesn't seem to be too important but ...
is.Sun4 <- function() {OSversion() == "SunOS4" }
is.Sun5 <- function() {OSversion() == "SunOS5" }
is.Linux <- function(){OSversion() == "linux"}
OSversion <- function()
{paste(unix("uname -s"), unix("uname -r | sed -e 's/\\.\.\*//'"),
sep="") }
#####################################...
1998 Aug 31
0
isolating R/S and operating system differences
...rn ("unkown")
}
}
}
else OSversion <- function() "unknown"
}
# Other is.xxx() should be added here.
# determining Unix flavours doesn't seem to be too important but ...
is.Sun4 <- function() {is.unix() && OSversion() == "SunOS4" }
is.Sun5 <- function() {is.unix() && OSversion() == "SunOS5" }
is.Linux <- function(){is.unix() && OSversion() == "linux"}
# Windows flavours may be more important but these are untested !!!
is.Win3.1 <- function(){is.MSwindows() && OSversion() == "...
2003 Dec 01
0
No subject
...<enterrottacher@lrz.tu-muenchen.de>
Delivered-To: samba@samba.org
Received: from mailrelay1.lrz-muenchen.de (mailrelay1.lrz-muenchen.de
[129.187.254.101]) by lists.samba.org (Postfix) with ESMTP id
F300D421C for <samba@samba.org>; Thu, 12 Jul 2001 05:17:20 -0700 (PDT)
Received: from sun5.lrz-muenchen.de by mailrelay1.lrz-muenchen.de with
ESMTP for samba@samba.org; Thu, 12 Jul 2001 14:20:30 +0200
Received: from localhost (tbb03ar@localhost) by sun5.lrz-muenchen.de
(8.8.8+Sun/8.8.8) with ESMTP id OAA09944 for <samba@samba.org>; Thu,
12 Jul 2001 14:20:28 +0200 (MET DST)
X-...