search for: carp

Displaying 20 results from an estimated 346 matches for "carp".

Did you mean: card
2007 Oct 19
2
AD Auth, but Unix users and groups
...ake it work by picking up the latest Blastwave distribution and I installed it with configurations like: ------------------------------------------------------------------------ -- [global] unix charset = LOCALE workgroup = ULTICOM realm = ULTICOM.COM netbios name = CARP server string = Carp -- a test instance of Corp interfaces = 172.25.0.9 bind interfaces only = Yes security = ADS smb passwd file = /etc/csw/samba/carp/private/smbpasswd private dir = /etc/csw/samba/carp/private log level = 1 syslog =...
2009 Mar 17
1
ipfw and carp
Hi all: Did any one use ipfw with CARP before? is there anything specific about ipfw configurations working with CARP? I have two servers and they configured with CARP. they are working fine except i can't turn on ipfw. I have the exact same configuration except ip addresses; those same rule sets of ipfw work on one server but not...
2007 Apr 18
2
[Bridge] bridge+filter+failover+rules&state sync+traffic shaping
hi list! i'm trying to find a convenient way to build a redundant filtering bridge under linux i looked at carp project, but carp doesn't support bridge now i thing the most appropriate way is using stp or rstp it seems that 2.6 kernel supports stp but what about rstp? I read some docs about stp, but they are rather outdated (2001 and kernel 2.2) there are several problems indeed: * rstp support * fw...
2013 Jul 22
2
FreeBSD LVS replacement
Hello, I'm looking for a functional FreeBSD replacement of the Linux LVS software? There is an LVS port for FreeBSD but it looks deat since 2005. Is there anything comparable or better? All best, mjb
2008 Mar 30
1
[LLVMdev] Compiling llvm-gcc on amd64 with 32 bits: assembler still carps
Hello, Joachim. > What's wrong? Looks like, it uses 64-bit assembler. Could you please check installed binutils? -- With best regards, Anton Korobeynikov. Faculty of Mathematics & Mechanics, Saint Petersburg State University.
2008 Mar 30
1
[LLVMdev] Compiling llvm-gcc on amd64 with 32 bits: assembler still carps
Hello, Joachim > This assembler was configured for a target of `x86_64-linux-gnu'. Hrm, try to check, how 'as' is invoked by llvm-gcc, you need jut to run the mentioned cmdline 'by hands': ./xgcc -B./ -B/home/jo/i686-pc-linux-gnu/bin/ -isystem /home/jo/i686-pc-linux-gnu/include -isystem /home/jo/i686-pc-linux-gnu/sys-include -L/home/jo/llvm-gcc-wrk/gcc/../ld -O2 -DIN_GCC
2008 Mar 30
0
[LLVMdev] Compiling llvm-gcc on amd64 with 32 bits: assembler still carps
Am Sonntag, den 30.03.2008, 12:23 -0400 schrieb Daniel Berlin: > To clarify, > > configure --host=i686-pc-linux-gnu --target=i686-pc-linux-gnu > --target=i686-pc-linux-gnu > > I do this all the time on my 4 core amd64 box and it works fine. There must be some other difference, as I'm doing exactly that: > > > export LLVM_GCC_SRC=$HOME/llvm-gcc-src > >
1998 Jan 16
0
mtp2R.pl
...l Public License is available via WWW at # http://www.gnu.org/copyleft/gpl.html. You can also obtain it by # writing to the Free Software Foundation, Inc., 675 Mass Ave, # Cambridge, MA 02139, USA. # Send any bug reports to Douglas Bates <bates@stat.wisc.edu> require 5.003; use strict; use Carp; for ( @ARGV ) { open( MTP, "< $_" ) || carp( "Unable to open $_ for reading: $!\n" ); s/\.mtp$/.R/i; open( R, "> $_" ) || carp( "Unable to open $_ for writing: $!\n" ); my $line = <MTP>; carp( "Input does...
2010 May 04
2
[PATCH 1/2] Config: NFC: always create and pass round a Config object
...mapping found for ". diff --git a/lib/Sys/VirtV2V/Converter.pm b/lib/Sys/VirtV2V/Converter.pm index 45038ee..a5b7e43 100644 --- a/lib/Sys/VirtV2V/Converter.pm +++ b/lib/Sys/VirtV2V/Converter.pm @@ -137,7 +137,7 @@ sub convert my ($g, $guestos, $config, $dom, $desc, $devices) = @_; carp("convert called without guestos argument") unless defined($guestos); - # config will be undefined if no config was specified + carp("convert called without config argument") unless defined($config); carp("convert called without dom argument") unless defined(...
2010 May 06
1
[PATCH v2v] Pre-convert Windows guests.
...c., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +package Sys::VirtV2V::Converter::Windows; + +use strict; +use warnings; + +use Data::Dumper; +use Locale::TextDomain 'virt-v2v'; + +use XML::DOM; +use XML::DOM::XPath; + +use Sys::VirtV2V::UserMessage qw(user_message); + +use Carp; + +=pod + +=head1 NAME + +Sys::VirtV2V::Converter::Windows - Pre-convert a Windows guest to run on KVM + +=head1 SYNOPSIS + + use Sys::VirtV2V::GuestOS; + use Sys::VirtV2V::Converter; + + my $guestos = Sys::VirtV2V::GuestOS->instantiate($g, $os); + Sys::VirtV2V::Converter->convert($vmm, $gue...
2009 Dec 21
4
Refactor virt-v2v to be more like a 'big script'
These patches combine HVSource and HVTarget into a single Converter. This should make it more obvious where to hack without losing any practical flexibility. GuestOS remains separate. GuestOS is now a misnomer, because it's really only a Linux distro abstraction. It will be useless for Windows, for example. Functions which you'd expect to be different on a non-RH distro should live in
2010 Feb 19
2
[PATCH 1/2] Fix remapping of block devices
...f->{devices} = \@devices; } =back diff --git a/lib/Sys/VirtV2V/Converter.pm b/lib/Sys/VirtV2V/Converter.pm index cba6db8..a306103 100644 --- a/lib/Sys/VirtV2V/Converter.pm +++ b/lib/Sys/VirtV2V/Converter.pm @@ -20,6 +20,8 @@ package Sys::VirtV2V::Converter; use strict; use warnings; +use Carp; + use Module::Pluggable sub_name => 'modules', search_path => ['Sys::VirtV2V::Converter'], require => 1; @@ -40,7 +42,7 @@ Sys::VirtV2V::Converter - Convert a guest to run on KVM use Sys::VirtV2V::Converter; my $guestos...
2008 Apr 01
1
[LLVMdev] Compiling llvm-gcc on amd64 with 32 bits: assembler still carps
*bump* Anybody got a clue? I can post a full transcript of a shell session that reproduces the error if that helps. To reiterate the original problem: I'm trying to compile LLVM-GCC on an Ubuntu 64-bit box, with a 32-bit target (to avoid potential problems with PIC and such). I get errors like Error: suffix or operands invalid for `push' as soon as the make process tries to assemble
2008 Mar 31
0
[LLVMdev] Compiling llvm-gcc on amd64 with 32 bits: assembler still carps
Am Sonntag, den 30.03.2008, 15:45 -0700 schrieb Tanya Lattner: > On Mar 30, 2008, at 12:39 PM, Joachim Durchholz wrote: > > > > > Am Sonntag, den 30.03.2008, 10:28 -0700 schrieb Tanya Lattner: > >> On Mar 30, 2008, at 10:07 AM, Joachim Durchholz wrote: > >>> Look at how $LLVM_CONFIGURE is built, the final value is > >>> > >>>
2009 Jul 24
2
[PATCH] Initial drop of virt-v2v
...r, Boston, MA 02110-1301 USA + +package Sys::Guestfs::GuestOS; + +use strict; +use warnings; + +use Module::Pluggable::Ordered sub_name => 'modules', + search_path => 'Sys::Guestfs::GuestOS', + require => 1; + +use Carp; + +=pod + +=head1 NAME + +Sys::Guestfs::GuestOS - Guest OS specific queries and manipulation + +=head1 SYNOPSIS + + use Sys::Guestfs::GuestOS; + + $guestos = Sys::Guestfs::GuestOS->get_instance($os, $distro, $version) + +=head1 DESCRIPTION + +Sys::Guestfs::GuestOS provides a mechanism for query...
2008 Mar 31
0
[LLVMdev] Compiling llvm-gcc on amd64 with 32 bits: assembler still carps
Am Montag, den 31.03.2008, 00:02 -0700 schrieb Tanya Lattner: > On Mar 30, 2008, at 11:22 PM, Joachim Durchholz wrote: > > > Am Sonntag, den 30.03.2008, 15:45 -0700 schrieb Tanya Lattner: > >> On Mar 30, 2008, at 12:39 PM, Joachim Durchholz wrote: > >> > >>> OK, I now have > >>> > >>> LLVM_VERSION_INFO=kurier-bootstrap
2006 Jul 06
5
What is protected?
In http://www.aidanf.net/rails_user_authentication_tutorial there is the string/method protected in the model. What does it do? Can''t find that in http://api.rubyonrails.org/. -- Posted via http://www.ruby-forum.com/.
2010 May 04
1
[PATCH] Converter: Don't die if we can't do guest-specific conversion
...) diff --git a/lib/Sys/VirtV2V/Converter.pm b/lib/Sys/VirtV2V/Converter.pm index a5b7e43..97c212e 100644 --- a/lib/Sys/VirtV2V/Converter.pm +++ b/lib/Sys/VirtV2V/Converter.pm @@ -136,7 +136,7 @@ sub convert my $class = shift; my ($g, $guestos, $config, $dom, $desc, $devices) = @_; - carp("convert called without guestos argument") unless defined($guestos); + # guestos may be undef if none was found carp("convert called without config argument") unless defined($config); carp("convert called without dom argument") unless defined($dom); c...
2004 Oct 23
3
DVD ISO
This script mkdvdiso.sh works for me to make and dvd iso image from the 3 cd's. You can download it from here ftp://people.redhat.com/ckloiber/mkdvdiso.sh
2008 Mar 30
0
[LLVMdev] Compiling llvm-gcc on amd64 with 32 bits: assembler still carps
Am Sonntag, den 30.03.2008, 10:28 -0700 schrieb Tanya Lattner: > On Mar 30, 2008, at 10:07 AM, Joachim Durchholz wrote: > > Look at how $LLVM_CONFIGURE is built, the final value is > > > > --prefix=/home/jo --enable-optimized --build=i686-pc-linux-gnu > > --host=i686-pc-linux-gnu --target=i686-pc-linux-gnu" > > > > This looks likes its missing some