similar to: Storage requirement for KVM

Displaying 20 results from an estimated 20000 matches similar to: "Storage requirement for KVM"

2010 Mar 04
1
Regarding SPICE
Hi, I have set up KVM on FC12. I was wondering if its possible to Display the VM using spice + libvirt? As in, if I can define my domain with graphics like: <graphics type='spice' port='-1' autoport='yes' listen='0.0.0.0'/> or <graphics type='spice' port='5903' '
2008 Mar 13
3
Local network access to VPN
Hi, I have a linux box with vpn client. shorewall version 3.4.0 I can connect to a remote vpn network with the nortel vpn client. Can I allow local machines on my network to access remote vpn using Linux box as a gateway? Thanks and Regards Anuj ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges.
2010 Sep 02
5
Re: Exclude ActiveRecord in Rails3
What''s the best way to exclude ActiveRecord in Rails3? In Rails2, one could just do: *config.frameworks -= [ :active_record ]* in the configuration block in environment.rb. Is it possible in Rails3? Thanks. Anuj -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To post to this group, send email to
2006 Feb 17
3
dansguardian+squid masquerading not working
Hello Everyone! I am using shorewall-3.0.5 on suse linux. Recently we have implemented dansguardian running on 8080 and squid on port 3128. Previously (before dans guardian) masquerading was working fine but after the implementation of dansguardian masquerading is not working. My rules file has entry Previous entry was ACCEPT loc:192.192.192.3 net REDIRECT loc 8080 tcp
2007 Mar 08
1
Guest installation problem.
Hi, I am a newbie to Xen and so this doubt may baffle a few. Anyways, I installed xen 3.0.3 from the tarball on Ubuntu Dapper Drake. I even configured a guest file of the same kernel, only the xenU verison. It worked fine and I was given a sh prompt. My problem now is that I want to get some other kernel as guest. I did try fc6 since that''s the other OS I have on my box. However, I got
2009 Mar 04
3
best fit line
Dear R Community, I am plotting this simple x-y plot (raw data & plot attached). I cant fit a linear regression line to it. I have to figure out what is the best fit for this graph. Is there a way to tell which regression to use for this kind of data? Also, after selecting the best fit model, I need to extrapolate what could be the other possible data points. I am new to R. Could anyone
2011 Feb 18
1
Rails plugins new official maintainers
Hey guys, This is the final list of the new maintainers of each plugin. We need two more things to do: First please the owners of the repos add the rest of the maintainers. Second I will add a note on each rails/plugin mentioning this repos updates. So from now on, if someone else is interested in helping/contributing please send a message to the appropriate repo owner. verification
2006 Feb 21
1
Traffic shaping for squid users
suse-10 , shorewall version 3.0.5 I have squid installed (i have a user named squid in /etc/passwd) file. the squid is authentication based, now i want to control the traffic generated by squid. If I can control the squid traffic then is it possible to control the traffic of users with an account in squid and not on the fw machine? Thanks and regards Anuj -- ============ Linux Rocks
2010 Apr 30
1
using shared storage with libvirt/KVM?
Hello, I've spent a few days googling and reading documentation, but I'm looking for clarification and advise on setting up KVM/libvirt with shared storage. I have 2 (for now) Ubuntu Karmic systems with KVM/virsh/virt-manager set up and running. I have a storage server that can do NFS/iSCSI/samba/ etc. I am trying to figure out the best way to set things up so that I can run
2012 Jun 19
1
Basic shared storage + KVM
Hi, I am trying to set up a shared iscsi storage to serve 6 kvm hypervisors running centos 6.2. I export an LVM from iscsi and configured virt-manager to see the iscsi space as LVM storage (a single storage pool). I can create space on this LVM storage pool directly from virt-manager and I am already running a couple of sample VMs, that do migrate from one hv to the other. This configuration
2019 Feb 20
3
code for sum function
Dear Tomas, Where do I find these files? Do they contain the code for the sum function? What do you mean exactly with your point on long doubles? Where can I find documentation on this? Cheers, Rampal On Mon, Feb 18, 2019, 15:38 Tomas Kalibera <tomas.kalibera at gmail.com wrote: > See do_summary() in summary.c, rsum() for doubles. R uses long double > type as accumulator on systems
2010 Dec 13
1
[Qemu-devel] SCSI Command support over VirtIO Block device
On Dec 13, 2010 5:14 AM, "????" <anuj01 at gmail.com> wrote: > > Hi > > I am trying to implement VirtIO support for a proprietary OS. And It > would be great if I am able to process SCSI commands over VirtIO Block > device. > > I tried to execute INQUIRY command but the status returned is UNSUPPORTED. > If anyone provide example VirtIO SCSI Command
2010 Dec 13
1
[Qemu-devel] SCSI Command support over VirtIO Block device
On Dec 13, 2010 5:14 AM, "????" <anuj01 at gmail.com> wrote: > > Hi > > I am trying to implement VirtIO support for a proprietary OS. And It > would be great if I am able to process SCSI commands over VirtIO Block > device. > > I tried to execute INQUIRY command but the status returned is UNSUPPORTED. > If anyone provide example VirtIO SCSI Command
2019 Feb 14
5
code for sum function
Hello, I am trying to write FORTRAN code to do the same as some R code I have. I get (small) differences when using the sum function in R. I know there are numerical routines to improve precision, but I have not been able to figure out what algorithm R is using. Does anyone know this? Or where can I find the code for the sum function? Regards, Rampal Etienne
2019 Feb 21
1
code for sum function
Specifically: https://svn.r-project.org/R/trunk/src/main/summary.c And if you don't want to deal with Subversion, you can look at the read-only github mirror: https://github.com/wch/r-source/blob/e5b21d0397c607883ff25cca379687b86933d730/src/main/summary.c#L115-L131 On Thu, Feb 21, 2019 at 11:57 AM David Winsemius <dwinsemius at comcast.net> wrote: > > > On 2/20/19 2:55 PM,
2019 Feb 19
4
code for sum function
The algorithm does make a differece. You can use Kahan's summation algorithm (https://en.wikipedia.org/wiki/Kahan_summation_algorithm) to reduce the error compared to the naive summation algorithm. E.g., in R code: naiveSum <- function(x) { s <- 0.0 for(xi in x) s <- s + xi s } kahanSum <- function (x) { s <- 0.0 c <- 0.0 # running compensation for lost
2011 May 05
9
[threadsafe] Arel ToSql visitor is not threadsafe
Hey, We hit a bug today because Arel::Visitors::ToSql is not threadsafe. Here is what is happening: Arel::Visitors::ENGINE_VISITORS is a cache of visitors instances. These instances are not inherently threadsafe because it contains state ''@last_column'', ''@connection'' that is shared between threads. The other variables ''@pool'',
2010 May 12
8
Trouble developing Rails plugins/gems with generators
Hi, I''ve been trying to develop a Rails gem/plugin with generators for Rails 3. I first had a separate gem project with a gem statement in my Gemfile with a :path option to point at it. But then I had to run $ rake install on each change in my gem to have Rails pick up on it. I have now instead put my generators inside RAILS_ROOT/lib so they are easier to test/develop. lib/generators -
2014 Jun 30
2
Sieve seems to break mailbody during automatic redirection
Hi, I have a strange problem with sieve. After upgrading to 2.2.13 sieve seems to break the mailbody during automatic redirection. I have the following configuration. - User A sends mail to User B. - User B has an automatic redirect to User C - User C geht the mailbody broken I did some debugging. This is a part of the mailbody which i grabbed from the mailqueue before the mail gets
2013 Feb 10
1
Patch to add gpg support to logcheck.
Enjoy, Based mostly of the man page for mime-construct. # free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied