similar to: More than one domain on one box

Displaying 20 results from an estimated 20000 matches similar to: "More than one domain on one box"

2014 Jul 09
2
[LLVMdev] More than one buildbots per box
Hi folks, I've got a 4-core machine which I want to use for more than one buildbot, but I'm not sure how it would behave. For example, I can see on slaves.py: create_slave("gribozavr1", properties={'jobs': 8}, max_builds=1), That slave has three bots: clang-x86_64-debian-fast, llvm-clang-lld-x86_64-debian-fast, lldb-x86_64-debian-clang Does that mean that *any* one
2012 Jun 29
3
xen sound card emulation
I have few instance of server 2008 running on xen. i want to configure them to redirect sound. I guess I need xen to emulate sound card, Somone had stated that they are working on patch that will support intel hda emulation was this ever acomplished? Xen supports ac97 is there 64 bit driver for ac97 on server 2008 ? _______________________________________________ Xen-users mailing list
2003 Sep 08
2
live monitoring
Hello, I've search through all of the lists and cannot find any descriptions of live monitoring (monitoring a phone call going on between an extension and a zaptel channel live from another extension while the monitoring phone is muted). I am aware of the monitor function which is actually a call recorder, but I'm looking for live monitoring from a muted extension. is this easily
2006 Apr 11
2
how to order by a related class???
Let''s suppose I have a books table and an authors table. A book belongs to an author (to put things simply) I want to browse the book list order by the author''s name. In sql it would be like this (to make it clear) select b.id, b.title, a.id as authors_id a.name as authors_name from books as b inner join authors as a on b.authors_id = a.id order by a.name the problem is that
2004 Jan 22
4
Fitting compartmental model with nls and lsoda?
Dear Colleagues, Our group is also working on implementing the use of R for pharmacokinetic compartmental analysis. Perhaps I have missed something, but > fit <- nls(noisy ~ lsoda(xstart, time, one.compartment.model, c(K1=0.5, k2=0.5)), + data=C1.lsoda, + start=list(K1=0.3, k2=0.7), + trace=T + ) Error in eval(as.name(varName), data) : Object
2015 Jan 20
0
Building Xen 4.4 rpms for centos7
On 01/20/2015 08:10 AM, Pasi K?rkk?inen wrote: > Hello, > > Now that the Xen 4.4.1 rpms + libvirt 1.2.10 rpms for CentOS 6 seem to be in good shape > it would be a good time to start experimenting with el7 builds aswell. > > I think it's best to start with the same set of packages we have for el6, > and just do the minimum required changes to get them working on centos7.
2006 Jan 06
3
Help Connecting server districts
I am working on a project to unite several local school districts. We will have 14 different districts, every district would have their own asterisk box on location. We all have fiber lines running to a central location at our isd. This provides connectivity to all the districts. 1. would it be wiser to install a asterisk box at the central location of the ISD and have all asterisk boxes
2015 Jan 20
1
Building Xen 4.4 rpms for centos7
On Tue, Jan 20, 2015 at 08:35:31AM -0600, Johnny Hughes wrote: > On 01/20/2015 08:10 AM, Pasi K?rkk?inen wrote: > > Hello, > > > > Now that the Xen 4.4.1 rpms + libvirt 1.2.10 rpms for CentOS 6 seem to be in good shape > > it would be a good time to start experimenting with el7 builds aswell. > > > > I think it's best to start with the same set of
2012 Feb 24
1
Telling plot() the max y value to expect when plotting one distribution and then using lines() to add more distributions
I am plotting three Pearson Type IV distributions. It looks like I have to plot the distribution with the highest value of y and then use lines() to add the two distributions that are shorter / have lower max values of y. The following code figures out which distribution has the max y value, plots it first and then uses lines for the other two distributions with a series of three if statements.
2001 Aug 16
1
ossh, S/Key AND password authentication
I've been trying to establish the following setup: * on port 22, a vanilla sshd that allows publickey and keyboard-interactive requests using only protocol v2 * on port 1022, a sshd that allows publickey, password and keyboard-interactive requests using both protocol 1 and 2 The first is meant to be open to the world, the second is accessible only from within the (firewalled) private
2011 Dec 20
6
Wine 1.0 on Fedora 16 64-bit
Hello I am trying to install Oblivion on Fedora 16 64-bit but am having problems with the install sheild crashing. I have read that this is because of the 64 bit wine so I am trying to build an older version of wine from source. However I am having problems with this aswell. I suspect that this is because of the 64-bit OS aswell. the reason I say this is that it appears 'make' is still
2007 Oct 17
3
thunderbird and email duplication
Hi all, I have recently switched over to Dovecot from CourierIMAP trying for some speedup, which I did get. Installation went OK, so all seemed fine. But suddenly I realised, that incoming emails are replicating themselves. This seems only to happen when connected with Thunderbird. I am also using Squirrelmail and KMail as clients which don't seem to show the behaviour. It seems to
2006 Jun 24
0
Sortable with sortables? this.destroy not a function O_o
Hi all I am creating sortable list with the builder. Now i want these sortables to be a sortable aswell. So i wrap a div around them and run sortable create on the main-container. I have it like so (simplified): var myLists = new Array(); // start a empty array for push var mainDiv = ''main''; // some already present div to carry all stuff. function newList() { var sortlist
2015 Jan 20
4
Building Xen 4.4 rpms for centos7
Hello, Now that the Xen 4.4.1 rpms + libvirt 1.2.10 rpms for CentOS 6 seem to be in good shape it would be a good time to start experimenting with el7 builds aswell. I think it's best to start with the same set of packages we have for el6, and just do the minimum required changes to get them working on centos7. That probably means fixing some dependencies in the spec file, and some changes
2013 Apr 25
3
Puppet and internal modules...
Afternoon/Evening all It looks like Puppet is starting to get some traction within my organisation, with several other teams asking what Puppet can do for them :-) The main use I''m getting asked about is one touch deployment of our products by Dev teams... On the surface it shouldn''t be too hard, and I''ve already got a model in mind. However one of the
2003 Aug 20
2
Method of L-BFGS-B of optim evaluate function outside of box constraints
Hi, R guys: I'm using L-BFGS-B method of optim for minimization problem. My function called besselI function which need non-negative parameter and the besselI will overflow if the parameter is too large. So I set the constraint box which is reasonable for my problem. But the point outside the box was test, and I got error. My program and the error follows. This program depends on CircStats
2005 Jun 15
2
Solution to smbldap-tools not adding sambaSAMAccount
Well I finally managed to get my machines added to my ldap/samba domain. The problem was that I had defined an ou each for Computers and Users. ie dc=base,dc=org | ------ ou = Users | ------ ou = Computers Now the problem was that the nss_ldap library was searching in Users only, and apparently the samba server needs to be able to resolve the Computers tree aswell to add the
2004 Sep 28
2
Icecast and Ices working nicely... but!
I have icecast 2.0.0 and ices 2.0.0 working nicely together with no apparent errors. I connect to the URL with winamp and it works get. Problems arise when I try to connect with any other computer other than my own. This includes other computers on my LAN and off it aswell. In the winamp window they get the message: [HTTP/1.0 200OK] http://www.feelthevibe . . . Any suggestions as to why my
2009 May 28
3
R connectivity with Oracle DB
Hi Friends, I am working on R-2.9.0 and i want to connect oracle through R, but i could not find ROracle (zip file for windows) on CRAN Packages. Can anyone suggest me how to connect Oracle from R in windows platform? I would be grateful if u can provide me code aswell. Thanks & Regards, Madan -- View this message in context:
2001 Dec 23
0
Need Help Sambaserver is not accessible
Here is the packet trace - ICMP seems to be coming from my SAMBA Server - see frame 3 Does the netstat output look correct in my first request for help? Joel Morrow jiram@aol.com TRACE Frame 1 (92 on wire, 92 captured) Arrival Time: Dec 22, 2001 09:36:08.333676000 Time delta from previous packet: 1.999444000 seconds Time relative to first packet: 2.000088000 seconds Frame