search for: something2

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

Did you mean: something
2006 Nov 29
1
Extract some character from a character vector of length 1
the content of th character vector (of length 1) is as follows: a <- "something2 ....pat1 name1 pat2 something2....pat1 name2 pat2....pat1 name3 pat2 " I would like to extract the character bewteen pat1 and pat2. That's to say, I would like to get a vecter of c("name1", "name2","name3"). What I did is use strsplit() twise. But I wonder...
2004 Sep 06
5
Newby question. Basic structure
Hi all. I've being reading posts from the list since yesterday and I feel this question was answered a lot time ago, but the list archives are a mess (yet). I hope some one is willing to help me out. I want to set up this: caller ----- PSTN ---- (SOMETHING1) ------ VoIP --------- (SOMETHING2) ---- PSTN I think this must be a very basic architecture, but I'm not sure wat SOMETHING1 and SOMETHING2 are. I've been on this for a while now (around two months) and till yesterday I haven't find Asterisk. Can you help me? I need to know hardware and software needs for this. I...
2007 Nov 16
1
channels to destroy
Hello, In a couple of Asterisks, after type "sip show channels" we have a lot of these: IP_PEER dst_number something 00102/00103 unkn No (d) Rx: BYE IP_PEER dst_number2 something2 00102/00103 unkn No (d) Rx: BYE We are using ASterisk 1.2.x When I say "a lot" I mean more than 180, more than 230, etc. Is it normal? How we can remove it? Thank you very much, -- Carles Pina i Estany GPG id: 0x8CBDAE64 http://pinux.info Manresa - Barcelona
2008 Feb 12
1
RE: Delegation of authentication (S4U) and SAMBA
Hello, Does samba support the use of S4U? What do we need to configure in SAMBA or krb5 to support getting a ticket obtained by S4U. We are using 3.0.25 and krb5-1.4.1 We are getting the following error: decode_pac_data: Name in PAC [username@something1.something2.realmname] does not match principal name in ticket The ticket could be different than the PAC name because the ticket was obtained using S4U extension. Any help will be really appreciated. Cheers, Ephi Background: http://searchwindowssecurity.techtarget.com/news/article/0,28914...
2013 Dec 31
1
Setting CDR variables for all linked channels
Hi, when one does "Set(CDR(var)=value)" in dialplan, the value is only set for one record in the cdr table, but not the linked ones (the ones with the same linkedid). E.g. if you do something like same => n, Set(CDR(var)=value) same => n,Dial(Local/something&Local/something2) like only the original CDR record with have "var" set to "value", but the ones created from "Dial" won't. Is it possible to set the CDR variables in all the linked channels? P.S. And is it possible to find out by the CDR logs, if the originating call is in prog...
2005 May 12
6
[Bug 1039] Incomplete application of HostKeyAlias in ssh
http://bugzilla.mindrot.org/show_bug.cgi?id=1039 Summary: Incomplete application of HostKeyAlias in ssh Product: Portable OpenSSH Version: 4.0p1 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: ssh AssignedTo: bitbucket at mindrot.org ReportedBy: cdmclain
2015 Jun 24
0
Anecdote: File folder "conflict"
...t" and save it in /share/folder/HELLO but it would only be seen in /share/folder/Hello; or maybe not seen anywhere in either directory. I could ssh into the samba server and see the file in /share/folder/hello but nowhere else. While logged in as root on the samba server, I could create file something2.txt in /share/folder/hello and then see it in all three directories or sometimes only 2 of the 3 directories. At first, I thought it had something to do with the windows clients possibly caching some folder contents and it conflicted with the new share content; but that didn't explain all thes...
2011 Jan 11
5
A question on dummy variable
Dear all, I would like to ask one question related to statistics, for specifically on defining dummy variables. As of now, I have come across 3 different kind of dummy variables (assuming I am working with Seasonal dummy, and number of season is 4): > dummy1 <- diag(4) > for(i in 1:3) dummy1 <- rbind(dummy1, diag(4)) > dummy1 <- dummy1[,-4] > > dummy2 <- dummy1 >