search for: version2

Displaying 20 results from an estimated 48 matches for "version2".

Did you mean: version
2020 May 03
2
Understanding VDO vs ZFS
...ilable : 37213500 used percent : 11 saving percent : 9 SECOND copy CentOS-7-x86_64-Minimal-2003.iso (1.1G) to vdoas form source outside vdo volume #cp /root/CentOS-7-x86_64-Minimal-2003.iso /mnt/vdomounts/CentOS-7-x86_64-Minimal-2003-version2.iso 1K-blocks used : 5239012 1K-blocks available : 36695836 used percent : 12 saving percent : 52 THIRD copy CentOS-7-x86_64-Minimal-2003.iso (1.1G) to vdoas form inside vdo volume to inside vdo volume 1K-...
2007 May 31
1
linksys pap2 version2 ata DTMF issue
My asterisk box doesn't recognize DTMF from my analog phone, plugged into my ATA(linksys pap2 version2). I can make/receive calls fine... it's just that, for example, I cannot login to my asterisk voicemail. Softphones (such as x-lite) are fine. I've turned up a few articles via google where some people have this trouble, but have not seen suggestions on how to fix. I presume this is...
2020 May 03
0
Understanding VDO vs ZFS
...0 > used percent : 11 > saving percent : 9 > >SECOND copy CentOS-7-x86_64-Minimal-2003.iso (1.1G) to vdoas form >source >outside vdo volume >#cp /root/CentOS-7-x86_64-Minimal-2003.iso >/mnt/vdomounts/CentOS-7-x86_64-Minimal-2003-version2.iso > 1K-blocks used : 5239012 > 1K-blocks available : 36695836 > used percent : 12 > saving percent : 52 > >THIRD copy CentOS-7-x86_64-Minimal-2003.iso (1.1G) to >vdoas form inside vdo volum...
2007 Mar 04
1
My last post buggered - FWD about patch version2
No idea why my last post buggered, so here's what I meant to send (attached is his actual patch): Hi! I made a little patch I'd like to see integrated (if appropriate) which makes Compiz usable in desktop+TV-out setups. It adds the --only-current-screen option to compiz which tell it to only manage the screen defined by $DISPLAY and leave the others alone. With
2017 Aug 18
0
"How to convert .rdata file into .csv or something else?" [SOLVED:Corrected version2]
Dear mailing list members, Sorry for the repeated posting, but I have to add two more things. 1) I changed the .Rdata into .rdata in the subject to avoid misunderstanding of readers. 2) To save data in csv file; > write.csv(WV6_Data_R, "input/ch2/WV6_Data_R_v_2016_01_01.csv") Best regards, Yohei Tanaka ===========the following is the copy of my last message=========== A member
2007 Feb 08
1
Diffrerence in "%in%" function to boundry setting via <>
...e the difference but it's critical! Because obviuosly when I have a set of numeric values (ALL have three digits) and to boundry values lb/up, a lower and an upper boundry, I could (from what I thought until now) chosse between: Version1: > small.set <- set[set %in% seq(lb,up,by=0.001)] Version2: > small.set <- set[set >= lb & set <= up] Unfortunately with my data I used I got around 8000 values from my set with version1 but about 24000 with version2. IS there some main diffrence I didn't take into account or is my system just behaving irrational (that's what I thi...
2008 Mar 18
4
Solaris 10 x86 + ZFS / NFS server "cp" problem with AIX
Friends, I have recently built a file server on x2200 with solaris x86 having zfs (version4) and running NFS version2 & samba. the AIX 5.2 & AIX 5.2 client give error while running command "cp -R <zfs_nfs_mount_source> <zfs_nfs_mount_desticantion> as below: cp: 0653-440 directory/1: name too long. cp: 0653-438 cannot read directory directory/1. and the cp core dumps in AIX. Can someone...
2012 Dec 26
1
[LLVMdev] Compile error "YAMLTraits.cpp" for C++ member detector function
Hi All, I am trying to compile latest llvm code using xlc 12.1 on AIX and got the following error. I am trying to debug the issue. Has anybody seen the issue on linux/gcc or is it just xlc specific ? [ 0%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/YAMLTraits.cpp.o "/llvm/version2/llvm/include/llvm/Support/YAMLTraits.h", line 264.20: 1540-0118 (S) A class name is expected in the base specifier. 1540-0700 (I) The previous message was produced while processing "struct llvm::yaml::has_FlowTraits<const class llvm::StringRef,1>::Derived". "/llvm/version2...
2008 Nov 14
2
GAM and Poisson distribution
...;m running a GAM with 7 explanatory variables with a Poisson error structure. All of the variables are continuous so I'm getting error messages in R. cod.fall.full.gam.model<-gam(Kept.CPUE~s(HOUR)+s(LAT_dec)+s(LONG_dec)+s(meantemp_C)+s(meandepth_fa)+s(change_depth)+s(seds), data=cod.fall.version2,family=poisson) In dpois(y, mu, log = TRUE) ... : non-integer x = 5.325517 Thanks Sally -- View this message in context: http://www.nabble.com/GAM-and-Poisson-distribution-tp20508604p20508604.html Sent from the R help mailing list archive at Nabble.com.
2010 Jul 26
2
easy debugging
...keep the original values. version 1: equated<-11 result<-11 equated<-c(111.0,112.06, 112.9, 113.8, 115.0, 116.2, 117.0, 118.0, 120.5, 120.5, 120.5) for (i in 1:11){ if (equated > 120) result[i]<-120 if (equated < 120) result[i]<-equated[i] result<-result result } result version2: if (equated > 120) result<-120 if (equated < 120) result<-equated If any of you can help, I would appreciate that. G [[alternative HTML version deleted]]
2008 Oct 09
1
YALAQ - Yet Another LApply Question
...a below): 1) Why does the first form of command1 add the name of y _after_ the str() output rather than before as does the second (preferred) form? # command1 version1 invisible(lapply(ls(pattern='bn'), function(y) cat(y, "\n", str(get(y)), "\n") )) # command1 version2 (preferred output) invisible(lapply(ls(pattern='bn'), function(y) { cat(y, "\n") ; str(get(y)) ; cat("\n") } )) 2) Why does the same method as command1 version2 above not work with the summary() command as does the second (preferred) set of commands? # command2 ve...
2006 Jul 18
2
MIB browser
Hi looking for mib browser once i used mbrowse in my Fedora 5, but now i installed CENTOS 4.3 in my laptop instead of Fedora 5 (wich is still in my Desktop) i found this http://lists.centos.org/pipermail/centos/2005-December/057991.html is it true that CENTOS does not have mbrowse in none repo? thanks regards, Guillermo. -------------- next part -------------- An HTML attachment was
2020 May 03
9
Understanding VDO vs ZFS
Folks I'm looking for a solution for backups because ZFS has failed on me too many times. In my environment, I have a large amount of data (around 2tb) that I periodically back up. I keep the last 5 "snapshots". I use rsync so that when I overwrite the oldest backup, most of the data is already there and the backup completes quickly, because only a small number of files have
2010 Apr 09
1
dovecot2: protocols = ... changed ?
hello, to use dovecot 1.2 only for sasl authentication I could set "protocols = none" in dovecont.conf. In Version2 this gave me an error. Instead I had to write "protocols =" into the configfile. I wonder about a key without value in the conf ... should the wiki2.dovecot.org be updated? -- Andreas Schulze Internetdienste | P532 DATEV eG 90329 N?rnberg | Telefon +49 911 319-0 | Telefax +49 911 319-...
2005 Mar 11
1
CNAM for Asterisk
...TCP/IP connection. We would like to provide the same capability to Asterisk. I installed Asterisk on Fedora 2.0 and did reading about AGI and AGI application at http://www.voip-info.org/tiki-index.php?page=Asterisk+AGI, http://www.voip-info.org/wiki-Asterisk+Manager+API, and The Asterisk Handbook Version2 but still not clear on how to interface a new application to Asterisk. At first I would like to interface a simple client application in C that connects to an IP and Port number. The application receives a phone number from Asterisk (???), connects to our server, sends the phone number, receives...
2013 Jan 08
6
Fwd: HOW TO USE SSL IN SAVON
...L in the SAVON gem, but I am facing the below error while trying to access the soap services. client = Savon.client(wsdl: "https://xxx?WSDL") client.operations HTTPI GET request to xxxxx (curb) HTTPI::SSLError: Curl::Err::SSLPeerCertificateError In the Savon site <http://savonrb.com/version2.html#globals-ssl> I found that options to pass the SSL certificate file, but I didin''t understand it, since why do we need to have the ssl certificate to consume the API? Also let me know the way to consume the SOAP service with SSL. regards, Loganathan Mob: +91 7760780741 | +91 994441...
2023 Jan 28
1
Init SSL without certificate database
Hello, Also note that NUT project does not currently issue packages, and I have a hard time guessing what distro might ship a "driver.version: DSM7-1-1-42930-workplus-version2-repack-42930-220712". Ask them what NUT version (release or snapshot) they use, and if they would consider shipping a newer one? Sometime recently (after 2.8.0 release) an option was added to quiesce this particular message by setting an envvar, NUT_QUIET_INIT_SSL=true (e.g. in scripts or s...
2007 Sep 22
2
[LLVMdev] LLVM 2.1 Pre-release Version 2 Online
LLVMers, The LLVM 2.1 pre-release version2 is now available: http://llvm.org/prereleases/2.1/version2/ You can help test this pre-release by doing one of the following: 1) Download llvm-2.1, llvm-test-2.1, and the appropriate llvm-gcc4.0 binary. Run "make check" and the full llvm-test suite (make TEST=nightly report). 2) Down...
2023 Jun 21
1
PJSIP not performing outbound authentication
...lio respond with a 407 which will cause Asterisk > to authenticate? > > Twilio has a nice technical document to setup a trunk with PJSIP. It includes an example for a pjsip_wizard.conf https://assets.cdn.prod.twilio.com/documents/TwilioElasticSIPTrunking-AsteriskPBX-Configuration-Guide-Version2-1-FINAL-09012018.pdf Maybe that helps. And make sure for your outgoing calls to set the callerid to a valid caller Id which ist authorized with your twilio account. It will not allow outgoing calls if the number is not recognized by twilio -H -- Henning Follmann | hfollmann at itcfo...
2001 May 14
2
openssh-2.9p1
Hi, 1. I think you should apply the attached patch to openssh-2.9p1, otherwise ssh-keyscan on linux boxes with glibc-2.1 will experience enormous timeout delays. 2. Is there a program like ssh-keyscan for the Version2 (dsa and rsa) keys?? regards Peter Breitenlohner <peb at mppmu.mpg.de> -------------- next part -------------- diff -ur openssh-2.9p1.orig/ssh-keyscan.c openssh-2.9p1/ssh-keyscan.c --- openssh-2.9p1.orig/ssh-keyscan.c Wed Mar 14 19:37:13 2001 +++ openssh-2.9p1/ssh-keyscan.c Sun May 13 01:39:...