Sponsored Content
Operating Systems AIX Misconfiguration detected Adapter interface name en 3 Adapter offset 0 Post 303035892 by hicksd8 on Friday 7th of June 2019 04:44:38 AM
Old 06-07-2019
Firstly, let me say that I'm not familiar with your specific hardware platform so this is a generic answer.

What kind of hardware problem did you have? Did it result in changing the motherboard (mobo)?

If so, did you put the add-on adapters into the same slots as on the old one?

Is there a BIOS or other configuration program that allows you to set the bus address and IRQs for those slots?

If so, and they're now set differently then that's probably your issue.

Last edited by hicksd8; 06-07-2019 at 06:50 AM..
 

10 More Discussions You Might Find Interesting

1. IP Networking

LAN Adapter

Im newest in unix, Please, give me solution for installing lan adapter if driver not found in the list of ethernet drivers ihave unix driver in a dos diskete please give me the other solution and tell me where the domain of unix class online, so ican read from it. Thank's very much (3 Replies)
Discussion started by: ade_muhdiat
3 Replies

2. Solaris

Which SCSI Adapter?

Hi. I need to find a simple SCSI adapter card for a Sun Ultra 5 workstation. I don't need the type w/ ethernet attached (e.g. X1032) as I already have ethernet onboard & they are more spendy. I know Adaptec is out, but what unit would work? I am attaching an external SCSI tape unit to this... (4 Replies)
Discussion started by: Plain Person
4 Replies

3. Solaris

Creator 3D Video Adapter

Hi everyone, it's me the Solaris novice once again. Here's my situation. - I bought a Sun Ultra 10 Creator 3D Workstation and Sony 19" SVGA Monitor package deal. - The system has the Creator 3D Video Adapter installed but I could not use it because the adapter has a 13w3 connection and my... (5 Replies)
Discussion started by: jbarbuto
5 Replies

4. HP-UX

what is an adapter?

Hi , Hi what is an adapter?what is its use ? How to log into a tibco server from unix home directory. (1 Reply)
Discussion started by: megh
1 Replies

5. UNIX for Dummies Questions & Answers

Simulated driver for Network Interface Adapter

Hi all, I got sort of a task to do. I have to write in C "simulated network driver". What does it mean? - It has to run on all network adapters - It has to be as simple as it can be - It has to run on all linux distributions (or at least most of them) - It does not have to run a network... (4 Replies)
Discussion started by: Chrisdot
4 Replies

6. SCO

Installing LAN adapter

I inserted a PCI Realtek RTL8139 network adapter on a PC running SCO Openserver 5.0.6. I successfully loaded drivers and I'm trying to install the card with netconfig command, unfortunately without success. Here are the steps I follow to install the card: I run netconfig, from menu 'hardware'... (2 Replies)
Discussion started by: kampus
2 Replies

7. Hardware

SCSI Ultra320 80->68 adapter

I need to connect 80pin SCA Ultra320 SCSI hdd to 68pin. There are rumors that some bad "passive" adapters with problematic termination can fry the HDD. The adapter we got is Assmann ABSCA-2. Hard drive is 'Fujitsu MAW3073NC' Do we need to set any jumpers before turning it on? We already had... (0 Replies)
Discussion started by: orange47
0 Replies

8. AIX

Dedicate graphics adapter ?

Hello, Runing VIO and couple lpars on POWER blade. I want to dedicate graphics adapter(ati0) to one lpar. Is that possible ? I tried to do that using IVM (I/O Adapter Management->View/Modify Physical Adapters->Modify partition assignment): Failed to remove adapter U78A6.001.WIH4088-P2-C8... (1 Reply)
Discussion started by: vilius
1 Replies

9. AIX

Vscsi and npiv on same adapter

Hi, I want to change from vscsi to npiv. Is it possible to use both on the same adapter, so we can change the systems one by one, or must we place a second FC adapter in the VIO servers? Thanks, Ronald (2 Replies)
Discussion started by: ronaldm60
2 Replies

10. Red Hat

Ethernet Adapter not detected.

Hi, I have installed Oracle Enterprise Linux 5 in my PC. After the installation the Ethernet Card is not got detected. But I could able to get the details using the command lspci -a: 01:00.0 Ethernet controller: Attansic Technology Corp. L1 Gigabit Ethernet Adapter (rev b0). But I could... (4 Replies)
Discussion started by: chidhu.anu
4 Replies
Log::Any::Adapter(3pm)					User Contributed Perl Documentation				    Log::Any::Adapter(3pm)

NAME
Log::Any::Adapter -- Tell Log::Any where to send its logs VERSION
version 0.07 SYNOPSIS
use Log::Any::Adapter; # Use Log::Log4perl for all categories # Log::Log4perl::init('/etc/log4perl.conf'); Log::Any::Adapter->set('Log4perl'); # Use Log::Dispatch for Foo::Baz # use Log::Dispatch; my $log = Log::Dispatch->new(outputs => [[ ... ]]); Log::Any::Adapter->set( { category => 'Foo::Baz' }, 'Dispatch', dispatcher => $log ); # Use Log::Dispatch::Config for Foo::Baz and its subcategories # use Log::Dispatch::Config; Log::Dispatch::Config->configure('/path/to/log.conf'); Log::Any::Adapter->set( { category => qr/^Foo::Baz/ }, 'Dispatch', dispatcher => Log::Dispatch::Config->instance() ); # Use your own adapter for all categories # Log::Any::Adapter->set('+My::Log::Any::Adapter', ...); DESCRIPTION
The "Log-Any-Adapter" distribution implements Log::Any class methods to specify where logs should be sent. It is a separate distribution so as to keep "Log::Any" itself as simple and unchanging as possible. You do not have to use anything in this distribution explicitly. It will be auto-loaded when you call one of the methods below. ADAPTERS
In order to use a logging mechanism with "Log::Any", there needs to be an adapter class for it. Typically this is named Log::Any::Adapter::something. The following adapters are available on CPAN as of this writing: o Log::Any::Adapter::Log4perl - work with log4perl o Log::Any::Adapter::Dispatch - work with Log::Dispatch or Log::Dispatch::Config You may also find other adapters on CPAN by searching for "Log::Any::Adapter", or create your own adapter. See Log::Any::Adapter::Development for more information on the latter. SETTING AND REMOVING ADAPTERS
Log::Any::Adapter->set ([options, ]adapter_name, adapter_params...) This method sets the adapter to use for all log categories, or for a particular set of categories. adapter_name is the name of an adapter. It is automatically prepended with "Log::Any::Adapter::". If instead you want to pass the full name of an adapter, prefix it with a "+". e.g. # Use My::Adapter class Log::Any::Adapter->set('+My::Adapter', arg => $value); adapter_params are passed along to the adapter constructor. See the documentation for the individual adapter classes for more information. An optional hash of options may be passed as the first argument. Options are: category A string containing a category name, or a regex (created with qr//) matching multiple categories. If not specified, all categories will be affected. lexically A reference to a lexical variable. When the variable goes out of scope, the adapter setting will be removed. e.g. { Log::Any::Adapter->set({lexically => my $lex}, ...); # in effect here ... } # no longer in effect here "set" returns an entry object, which can be passed to "remove". Log::Any::Adapter->remove (entry) Remove an entry previously returned by "set". MULTIPLE ADAPTER SETTINGS
"Log::Any" maintains a stack of entries created via "set". When you get a logger for a particular category, "Log::Any" will work its way down the stack and use the first matching entry. Whenever the stack changes, any "Log::Any" loggers that have previously been created will automatically adjust to the new stack. For example: my $log = Log::Any->get_logger(); $log->error("aiggh!"); # this goes nowhere ... { Log::Any::Adapter->set({ local => my $lex }, 'Log4perl'); $log->error("aiggh!"); # this goes to log4perl ... } $log->error("aiggh!"); # this goes nowhere again SEE ALSO
Log::Any COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Jonathan Swartz. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-02-22 Log::Any::Adapter(3pm)
All times are GMT -4. The time now is 09:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy