search for: calliope

Displaying 8 results from an estimated 8 matches for "calliope".

2018 May 24
3
Cannot ping subnet hosts
...T routers. The link seems to work, the ping between the two routers is ok, but I can't ping hosts between the subnets behind the routers. This is the configuration: ======== SITE 1 (CLIENT) - polimnia (subnet 192.168.4.0/24, gw 192.168.4.1) tinc.conf ------------- Name = polimnia ConnectTo = calliope hosts/polimnia --------------------- Subnet = 172.16.0.4/32 Subnet = 192.168.4.0/24 tinc-up script ------------------- #!/bin/sh ip link set $INTERFACE up ip addr add 172.16.0.4/24 dev $INTERFACE ip route add 192.168.2.0/24 dev $INTERFACE ======== SITE 2 (SERVER) - calliope (subnet 192.168.2.0/...
2018 May 24
1
Cannot ping subnet hosts
...9;t ping hosts between the subnets behind the routers. >> >> This is the configuration: >> >> ======== SITE 1 (CLIENT) - polimnia (subnet 192.168.4.0/24, gw >> 192.168.4.1) >> >> tinc.conf >> ------------- >> Name = polimnia >> ConnectTo = calliope >> >> hosts/polimnia >> --------------------- >> Subnet = 172.16.0.4/32 >> Subnet = 192.168.4.0/24 >> >> >> tinc-up script >> ------------------- >> #!/bin/sh >> ip link set $INTERFACE up >> ip addr add 172.16.0.4/24 dev $INTER...
1997 Oct 09
0
R-alpha: [sboker@calliope.psych.nd.edu: Re: S-PLUS on UNIX plans]
--Multipart_Thu_Oct__9_10:41:03_1997-1 Content-Type: text/plain; charset=US-ASCII In case you did not realize how much this is related to R : --Multipart_Thu_Oct__9_10:41:03_1997-1 Content-Type: message/rfc822 Return-Path: s-sender@utstat.toronto.edu From: "Steven M. Boker" <sboker@calliope.psych.nd.edu> Date: Wed, 8 Oct 97 16:37:05 -0500 To: s-news@utstat.toronto.edu Subject: Re: S-PLUS on UNIX plans My apologies for sending this out in non-ascii text format. (blush) Here is the message. On Tue, 7 Oct 1997, Gregory R. Warnes wrote: >I applaud MathSoft's interest in porti...
2018 May 24
0
Cannot ping subnet hosts
...the two routers is ok, > but I can't ping hosts between the subnets behind the routers. > > This is the configuration: > > ======== SITE 1 (CLIENT) - polimnia (subnet 192.168.4.0/24, gw > 192.168.4.1) > > tinc.conf > ------------- > Name = polimnia > ConnectTo = calliope > > hosts/polimnia > --------------------- > Subnet = 172.16.0.4/32 > Subnet = 192.168.4.0/24 > > > tinc-up script > ------------------- > #!/bin/sh > ip link set $INTERFACE up > ip addr add 172.16.0.4/24 dev $INTERFACE > ip route add 192.168.2.0/24 dev $INTER...
2006 Apr 25
8
Permissions for share
opensuse 10/find / samba-3.0.20b-3.3 I'm trying to change directory permissions on a share so all users can modify files in the share and when I do as suggested in Ch15 of Samba Howto the following happens $ find `directory_name' -type d -exec chown nobody:users {}\; find: missing argument to `-exec' Chris Boyd Systems Engineer USIT 19-21 Aston Quay Dublin 2 Ireland Tel: +353 1
2009 Jul 09
2
How to Populate List
...hem. Thanks! Cheers, Mark ------------------------------ Message: 80 Date: Wed, 8 Jul 2009 14:31:49 -0400 (EDT) From: Rebecca Sela <rsela@stern.nyu.edu> Subject: [R] \dQuote in packages To: r-help <r-help@r-project.org> Message-ID:     <31158951.1855241247077909779.JavaMail.root@calliope.stern.nyu.edu> Content-Type: text/plain; charset=utf-8 I am in the process of submitting a package to CRAN.  R CMD check ran successfully on the package on my local computer, using R version 2.1.1.  However, on the computers for CRAN (with version 2.10.0), the following errors occurred: Warnin...
2009 Jun 01
1
installing sn package
...------------------------------ Message: 76 Date: Wed, 27 May 2009 13:36:41 -0400 (EDT) From: Rebecca Sela <rsela@stern.nyu.edu> Subject: [R] "Error: package/namespace load failed" To: r-help <r-help@r-project.org> Message-ID:     <24291478.7471501243445801339.JavaMail.root@calliope.stern.nyu.edu> Content-Type: text/plain; charset="utf-8" I am writing my first R package, and I have been getting the following series of errors when I run R CMD check: * checking S3 generic/method consistency ... WARNING Error: package/namespace load failed for 'REEMtree' Ca...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.