Displaying 20 results from an estimated 3000 matches similar to: "Equivalent to Solaris Zones?"
2007 Oct 31
1
handling kernel panics
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I have a problem with a couple of my centos servers hitting a kernel
panic about once a week or so.
I find them sitting at a panic screen like this:
http://img228.imageshack.us/img228/1044/screenshotoakpanicma4.jpg (58k)
Two questions:
1) How do I make it reboot after a panic instead of sitting in a hung state?
2) How do I turn on logging so
2009 Jul 21
4
ntp time server
Currently, my time server is a Sun v240 with a 32-pci gps card (with a
proprietary Solaris driver) attached to our gps receiver via an sma
cable up to the roof of my building. As I'm migrating almost all of
our Solaris servers and services over to CentOS, I'd like to know what
other people are using for time server hardware. Any suggestions?
--
Andy Harrison
public key: 0x67518262
2005 Sep 03
13
acts_as_taggable v2 - Tagging on Steroids
Hi folks,
Thanks to the community feedback on the 1st version, I''ve come up with a
much improved version of the acts_as_taggable mixin.
There´s some piece of the action here:
http://dema.ruby.com.br/articles/2005/09/03/tagging-on-steroids-with-rails
Cheers
Dema
--
http://dema.ruby.com.br - Rails from a .NET perspective
2006 Feb 26
2
auto_complete on steroids
I am trying to get more out of auto_complete than it apparently was
designed to deliver.
My problems seem to be two fold.
1 - I use aggregations on
names... :first_name, :middle_initial, :last_name and then aggregate
them using a composed_of :wholename thing
auto_complete_for seems to be wired to only use table columns directly
and gags on the aggregate form.
2 - foreign table columns -
2013 Feb 06
3
[LLVMdev] LLVM Coverage GCDA Flush API
Ah, my mistake. So this already works. I guess that bug is out of date,
since this feature works already.
--
John Harrison
On Wed, Feb 6, 2013 at 10:00 AM, Joshua Cranmer <pidgeot18 at gmail.com> wrote:
> On 2/6/2013 11:43 AM, John Harrison wrote:
>
>> The way `-ftest-coverage -fprofile-arcs` works at the moment it only
>> flushes via `atexit()`. This patch allows you
2013 Feb 06
0
[LLVMdev] LLVM Coverage GCDA Flush API
Why does __gcov_flush only flush the current compilation unit? For gcc
__gcov_flush flushes all of the loaded files.
Is there a way to have __gcov_flush flush everything?
--
John Harrison
On Wed, Feb 6, 2013 at 10:24 AM, John Harrison <ash.gti at gmail.com> wrote:
> Ah, my mistake. So this already works. I guess that bug is out of date,
> since this feature works already.
>
2013 Feb 07
1
[LLVMdev] LLVM Coverage GCDA Flush API
Yikes! It only flushes the counts for the current compilation unit? That sounds like a terrible bug. Can you file a bugzilla report, please?
On Feb 6, 2013, at 12:05 PM, John Harrison <ash.gti at gmail.com> wrote:
> Why does __gcov_flush only flush the current compilation unit? For gcc __gcov_flush flushes all of the loaded files.
>
> Is there a way to have __gcov_flush flush
2003 May 27
4
multihost master.passwd sync
-----BEGIN PGP SIGNED MESSAGE-----
Just wondered if anyone had any suggestions about syncing up master.passwd
files between multiple machines that didn't involve allowing root login
remotely? The users need to be able to log in remotely and own files on the
different machines.
~~
Andy Harrison
ah##@httpsite.com
ICQ: 123472 AIM/Y!: AHinMaine
[full headers for details]
-----BEGIN PGP
2009 Sep 09
4
Tagging recommendation - acts_as_taggable_on_steroids best?
hey all
What''s the most popular tagging plugin/gem these days? Is it
acts_as_taggable_on_steroids? Or is something else better?
I''d like to basically replicate flickr''s tagging as much as possible, eg
allowing multi-word tags to be denoted by quotes or seperated by commas.
thanks
max
--
Posted via http://www.ruby-forum.com/.
2014 Apr 03
2
OpenVZ variant
Greetings,
I was reading the LWN article from today (free to non-subscribers next Thursday). Here's a subscriber link for those who might want to see it now:
CentOS and Red Hat - http://lwn.net/SubscriberLink/592723/485ea802859f6c36/
I saw that Xen was mentioned as an area where CentOS went beyond RHEL with CentOS 6... and being that I'm deeply in the OpenVZ community, I thought it
2011 Oct 10
5
no connection driver available for openvz:///system
dears.
I can not solved the problem:
vzctl works. But how do I connect to Virtuozzo? Using the openvz
>> > driver
>> > it doesn't work out of the box:
>> > virsh # connect openvz:///system
>> > error: Failed to connect to the hypervisor
>> > error: no connection driver available for openvz:///system
Why can not I connect to the openvz???
please
2008 Aug 11
6
Class dependency question
So I have two classes for openvz setup. The first is openvz::setup
and it sets up the box for OpenVZ.. then another class (in same .pp
file) called openvz::master sets up the config for the main system (as
opposed to a VE). The error I see is that the openvz::master class is
executed (and fails) becuase it doesn''t seem to load up the setup
class?
debug: Calling puppetmaster.getconfig
2013 Feb 19
4
AWS OpsWorks announcement using Chef
I wonder if PuppetLabs will work with Amazon to try to add Puppet as an
option to OpsWorks as well ?
I don''t think people using Puppet with AWS in a stable fashion would try to
move to OpsWorks and migrate everything to Chef, but new customers/startups
would think twice in choosing Puppet if the service offered in AWS OpsWorks
is based on Chef.
I haven''t tried OpsWorks yet,
2006 Nov 09
7
Weird Samba upload performance on Gigabit network
Here's a weird one that may have nothing to do with Samba and more to
do with network frame sizes.
I have recently upgraded the network infrastructure to support
gigabit speeds.
- OSX Tiger to OSX Tiger file transfers operate at gigabit speeds.
- Samba 3.0.23C (Suse 10) to OSX Tiger file transfers operate at
gigabit speeds.
- BUT OSX Tiger to Samba 3.0.23C (Suse 10) file transfers
2013 Feb 06
2
[LLVMdev] LLVM Coverage GCDA Flush API
Hi,
I ran into the bug/feature request that you cannot flush gcov buffers while
the app is running. They are only called when you exit the program, since
the flush functions are registered with atexit(). This is the bug report:
http://llvm.org/bugs/show_bug.cgi?id=12144
I have what I think is a basic implementation of the `__gcov_flush` call,
although I called this version `__llvm_gcov_flush`.
2003 Feb 11
1
Dynamic Linear Models for Times Series - Implemented?
Hi,
I was wondering whether a package that can perform dynamic linear models on
times series data was available for R?
Many Thanks,
Gavin Simpson
%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%
Gavin Simpson [T] +44 (0)20 7679 5522
ENSIS Research Fellow [F] +44 (0)20 7679 7565
ENSIS Ltd. & ECRC [E] gavin.simpson at
2013 Aug 27
1
error installing ggm package
I'm new to R and trying to use the ggm package and I get the following
message:
> library("ggm",
lib.loc="/Library/Frameworks/R.framework/Versions/3.0/Resources/library")
Loading required package: graph
Error: package ‘graph’ could not be loaded
In addition: Warning message:
In library(pkg, character.only = TRUE, logical.return = TRUE, lib.loc =
lib.loc) :
there is no
2015 Apr 07
6
OpenVZ with asterisk 13
Dear all,
Is anyone has experience making Asterisk server with virtual server OPEN-VZ
(in proxmox 3.4 box) ?
My boss want to build a production server with it, and it will have +/- 300
sip user (concurrent call maybe < 150 call)
Is it good to go, or not ?
I really hope someone who have experience with it willing to share with
me...
Thanks in advance...
Best Regards,
Ikka - Jakarta,
2015 Apr 07
4
OpenVZ with asterisk 13
Dear Mitul,
I already told my boss about it, I really want a single box, no virtual,
but my boss insist.
He said that openvz use less resource then KVM (or other virtual for cloud).
I really need a solid analysis to argue with him.
On the other hand, dahdi cannot be installed in openvz virtual server.
I dont have any experience with openvz at all.
Thx,
On Tue, Apr 7, 2015 at 8:47 PM, Ikka
2014 Aug 13
1
Support live migration of OpenVZ container
Hi libvirt team,
I was trying to migrate an OpenVZ domain from one host to another host. It
seems that the live migration of OpenVZ container is there (
https://openvz.org/Migration_from_one_HN_to_another), but it haven't been
integrated to libvirt yet. In particular, I ran the following commands and
it failed:
$ sudo virsh migrate --live --verbose --undefinesource 101 openvz+ssh://