search for: e1be

Displaying 9 results from an estimated 9 matches for "e1be".

2005 Mar 09
0
Call through. with 2xT1 .configuration
Hello all, It 's dificult to explain; The system I need is an box option (based on *), that I would add to an existing PABX (ie: Nortel with 600 ext). I need two E1/T2 card to plug the system between Telco (FT) and PABX (Nortel)! One card for France Telecom Side (E1a) and one other to Nortel Side (E1b). --------- -------- ----------- Telco FT
2008 Jun 06
1
How to force two regression coefficients to be equal but opposite in sign?
Is there a way to set up a regression in R that forces two coefficients to be equal but opposite in sign? I'm trying to setup a model where a subject appears in a pair of environments where a measurement X is made. There are a total of 5 environments, one of which is a baseline. But each observation is for a subject in only two of them, and not all subjects will appear in each
2008 Jun 09
1
Systemfit (was RE: How to force two regression coefficients to be equal but opposite in sign?)
Thank you, Greg, and also to Scott Ellison, who replied privately. I am in the process of trying out both suggestions. After I sent my initial message, I came across the Systemfit package, which allows specification of constraints on parameters. In theory, this should solve my problem perfectly. However, I was not able to get it to work with my data, as every attempt yielded the following
2012 Dec 20
0
smbd -F: standard input is not a socket, assuming -D option
...Does anyone know the meaning of this error message? In fact "man smbd" tells that "smbd -F" is the proper way to start a server under a supervisor, such as systemd, upstart or launchd... Thanks in advance, -- Leonid Isaev GnuPG key: 0x164B5A6D Fingerprint: C0DF 20D0 C075 C3F1 E1BE 775A A7AE F6CB 164B 5A6D -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 490 bytes Desc: not available URL: <http://lists.samba.org/pipermail/samba/attachments/20121220/f5a88df0/attachment.pgp>
2007 Apr 18
1
[Bridge] Man-in-the-middle scenario within vmware - problem
...within VMWare seem to be working. If I give each NIC on PCMITM an IP address (with no bridge on PCMITM), I can transfer data from PC1 to PCMITM (and vice versa) and from PC2 to PCMITM (and vice versa). Patrick. -- Key ID: 0x86E346D4 ? ? ? ? ? ?http://patrick-nagel.net/key.asc Fingerprint: 7745 E1BE FA8B FBAD 76AB 2BFC C981 E686 86E3 46D4 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://lists.linux-foundation.org/pipermail/bridge/attachments/20061210/75e542c2/attach...
2010 Nov 02
8
remote hot site, IMAP replication or cluster over WAN
Taking a survey. 1. How many of you have a remote site hot backup Dovecot IMAP server? 2. How are you replicating mailbox data to the hot backup system? A. rsync B. DRBD+GFS2 C. Other Thanks. -- Stan
2007 Sep 02
4
Performance Issues
My apology for cross posting We have a DELL6850 with 8Gbytes of memory, four 3.2Ghz CPU's , perc 4 raid controller, with fourteen 300Gbyte 10Krpm disk on a powervault 220s, And a powervault 124T LTO-3 tape systems on a separate 160Mbyte/sec adaptec SCSI card. The disks are configured as two 2Tbyte raid 0 partitions using the perc 4 hardware. The problem is - reading from the disk, and
2004 Jan 27
0
Server Report [Incident: 040126-000715]
Your question has been received. You should expect a response from us by the next business day. You may also update this question by replying to this message. Because your reply will be automatically processed, you MUST enter your reply in the space below. Text entered into any other part of this message will be discarded. [=3D=3D=3D> Please enter your reply below this line <=3D=3D=3D]
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.