Crypto error

Can anyone tell me was this error means? We are running encrypted GRE tunnels router to router. AES 256
Apr  4 16:09:41.349 EDT: %CRYPTO-4-PKT_REPLAY_ERR: decrypt: replay check failed
        connection id=7357, sequence number=1860336

HTH
I am not seeing a lot of these. I will keep an eye on it though.
Thank you
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Doug Bradfield
Network Analyst Ld
TSYS Network Services / Network Engineering
706-644-3559
From: rburts
To: Douglas Bradfield ,
Date: 04/07/2012 04:15 PM
Subject: - Re: Crypto error
Home
Re: Crypto error
created by Richard Burts in VPN - View the full discussion
Douglas
As part of the IPSec implementation of the encrypted GRE tunnel it checks
on packets received to make sure that it has not seen that packet before.
In this case it believes that it has seen this packet before. It looks
like, for some reason, something along the path has re-transmitted this
packet. I see this kind of message with some frequency and as long as
there are not a lot of them I do not think that it is a big problem. Are
you seeing a few or a lot of these?
HTH
Rick
Reply to this message by going to Home
Start a new discussion in VPN at Home

Similar Messages

  • SSL: Connection reset by peer ; Failed to enable crypto error while calling the report using bing API with SOAP client

    Hi,
    I am trying to fetch report using bing API and making a SOAP call for fetching the data. I get the following error:
    [Warning] fopen(): SSL: Connection reset by peer [file] /var/www/sites/psmedia/perfectstormmedia/tools/class/msn_api.class.php [line] 780
    02-04-2015 10:17:41 (BST) : [Warning] fopen(): Failed to enable crypto [file] /var/www/sites/psmedia/perfectstormmedia/tools/class/msn_api.class.php [line] 780
    02-04-2015 10:17:41 (BST) : [Warning] fopen(https://download.api.bingads.microsoft.com/ReportDownload/Download.aspx?q=rzr63XFt5qJduddohoIRyOYAP%2f1%2ftsnhk8L%2bzBmUpdU2CQlcUB98RpY%2bbOaLFFGMqAC4IUUadC%2fNdNnJqeVCY%2f%2bpy6noVsVA%2fMJp47a3Xb1VjABfKhcdKy6vqpgEdcQg%2fQZ7QcEpZ3bEloJjUtGpDquFk53BnkeHEPVWZkDYcsQegRz%2fpG4t4w6gKCCRmhArd6osr6ZU9CMJ3lbxtGXjcQEMPvP2apNyr9P%2fc8niyfWA2aBcm1aEmOLX2KL3aRJ4rz9N7gG7uBslVZH%2b4rUjHdB7CMkbb%2fHyHwvPTqGPbPCHnicefr%2b%2fDP70hlkBEGfyOOswK67%2bl1zh7CyIv%2bcMlaDsuDX1HeFf4uORfD41H1z7):
    failed to open stream: operation failed [file] /var/www/sites/psmedia/perfectstormmedia/tools/class/msn_api.class.php [line] 780
    Whenever I execute my script. Can you please let me know what we can do to solve this issue. The version of PHP we are using is 5.3.3 with open ssl. 

    Hi Shobha,
    I can't confirm what version of PHP you are using, but to err on the side of caution please use the version specified in the sample/SDK:
    PHP 5.4.14 has been installed from PHP.
    Here is our code examples:
    https://msdn.microsoft.com/en-US/library/bing-ads-overview-getting-started-php-with-web-services.aspx
    Thanks,
    Itai

  • Crypto errors CTM ERROR: Failed to allocate x bytes of memory

    Hi There.
    I am currently getting a strange error when trying to use and crypto services on our ASA 5520 (8.0.3)
    Initially I observed that a connected VPN had dropped.
    Then when I attempted to use ASDM or SSH I was blocked.
    In the end I opened telnet as a test and this was successful. Syslog also shows that traffic is passing as normal.
    The only obvious error I can see when observing various debug traces is this;
    FW02# CTM: rsa session with no priority allocated @ 0xCF1FBBA0
    CTM: Session 0xCF1FBBA0 uses a nlite (Nitrox Lite) as its hardware engine
    CTM: rsa context allocated for session 0xCF1FBBA0
    CTM: rsa session with no priority allocated @ 0xCE7A5EA8
    CTM: Session 0xCE7A5EA8 uses a nlite (Nitrox Lite) as its hardware engine
    CTM: rsa context allocated for session 0xCE7A5EA8
    CTM: rsa session with no priority allocated @ 0xCEF249D0
    CTM: Session 0xCEF249D0 uses a nlite (Nitrox Lite) as its hardware engine
    CTM: rsa context allocated for session 0xCEF249D0
    CTM: dh session with no priority allocated @ 0xCEF249D0
    CTM: Session 0xCEF249D0 uses a nlite (Nitrox Lite) as its hardware engine
    CTM: dh context allocated for session 0xCEF249D0
    CTM ERROR: Failed to allocate 279 bytes of memory, ctm_nlite_generate_dh_key_pair:183
    Has anyone seen anything like this before as I am lost?
    Mike

    Thanks for that. It does look like its out of crypto memory...
    DMA memory:
       Unused memory:                 23849516 bytes (30%)
       Crypto reserved memory:        20537556 bytes (26%)
         Crypto free:                       0 bytes ( 0%)
         Crypto used:                20537556 bytes (26%)
       Block reserved memory:         34669024 bytes (44%)
         Block free:                 30734752 bytes (39%)
         Block used:                  3934272 bytes ( 5%)
       Used memory:                     185120 bytes ( 0%)
    Unless there is a way to specifically restart only the crypto engine or clear crypto memory then I guess I am looking at a reload?
    Mike

  • JC 3.0 crypto error when running the simulator from Netbeans

    Hi all
    I'm writing some crypto code using Netbeans 6.7 with the JC plug-ins and I have a problem when trying to run the applet from netbeans. The code is compiled without problems, but when trying to run it I get the NO_ALGORITHM exception.
    I'm not using a real card, I'm just using the virtual JC provided by the JCDK and Netbeans. Could it be that the Reference Implementation that is shipped with JCDK 3.0 does not support MD5 or SHA-1? Or is it a configuration problem, and I must configure some policy file in order to be able to use crypto capabilities? My code without the crypto part is running ok. Here's an excerpt of the code:
    MessageDigest md5;
    try{
    md5 = MessageDigest.getInstance(MessageDigest.ALG_MD5, false);
    catch(CryptoException e)
    // I always get to this part...
    Did any of you get to run a crypto application using Netbeans 6.7 and JC3.0?
    Thanks in advance.
    A_Martin

    Hi again
    After doublechecking the JC 3.0.1 documentation, I've found the following statement (user guide, page 128):
    "The implementation of security and cryptography in version 3.0.1 of the RI supports the use of the following classes:"
    And then a list of classes and supported algorithms is included. Shouldn't that mean that SHA1 (which is on the list) should work with the virtual JC?
    Best regards.
    A_Martin

  • CTM ERROR: ASA hardware accelerator init failed

    Hi Guys,  I have bought a refurbished firewall and upon reloading I see the following error from console.  Is something that I can rectify?
    Loading disk0:/asa904-k8.bin... Booting...
    Platform ASA5510
    Loading...
    IO memory blocks requested from bigphys 32bit: 13264
    dosfsck 2.11, 12 Mar 2005, FAT32, LFN
    Starting check/repair pass.
    Starting verification pass.
    /dev/hda1: 104 files, 12459/63613 clusters
    dosfsck(/dev/hda1) returned 0
    Processor memory 864026624, Reserved memory: 62914560
    Total SSMs found: 0
    Total NICs found: 7
    mcwa i82557 Ethernet at irq 11  MAC: d0d0.fd1d.5d57
    mcwa i82557 Ethernet at irq  5  MAC: 0000.0001.0001
    i82547GI rev00 Gigabit Ethernet @ irq11 dev 1 index 05 MAC: 0000.0001.0002
    i82546GB rev03 Ethernet @ irq09 dev 2 index 03 MAC: d0d0.fd1d.5d5b
    i82546GB rev03 Ethernet @ irq09 dev 2 index 02 MAC: d0d0.fd1d.5d5a
    i82546GB rev03 Ethernet @ irq09 dev 3 index 01 MAC: d0d0.fd1d.5d59
    i82546GB rev03 Ethernet @ irq09 dev 3 index 00 MAC: d0d0.fd1d.5d58
    Verify the activation-key, it might take a while...
    Running Permanent Activation Key: 0x6122cb5d 0xc06c1a74 0xec92a120 0xbd44e8e8 0x8e372a8a 
    Licensed features for this platform:
    Maximum Physical Interfaces       : Unlimited      perpetual
    Maximum VLANs                     : 100            perpetual
    Inside Hosts                      : Unlimited      perpetual
    Failover                          : Active/Active  perpetual
    Encryption-DES                    : Enabled        perpetual
    Encryption-3DES-AES               : Enabled        perpetual
    Security Contexts                 : 2              perpetual
    GTP/GPRS                          : Disabled       perpetual
    AnyConnect Premium Peers          : 2              perpetual
    AnyConnect Essentials             : Disabled       perpetual
    Other VPN Peers                   : 250            perpetual
    Total VPN Peers                   : 250            perpetual
    Shared License                    : Disabled       perpetual
    AnyConnect for Mobile             : Disabled       perpetual
    AnyConnect for Cisco VPN Phone    : Disabled       perpetual
    Advanced Endpoint Assessment      : Disabled       perpetual
    UC Phone Proxy Sessions           : 2              perpetual
    Total UC Proxy Sessions           : 2              perpetual
    Botnet Traffic Filter             : Disabled       perpetual
    Intercompany Media Engine         : Disabled       perpetual
    Cluster                           : Disabled       perpetual
    This platform has an ASA 5510 Security Plus license.
    CTM ERROR: ASA hardware accelerator init failed, cause: boot_init completion timeout, ctm_nlite_boot_init:2284
    CTM ERROR: ASA hardware accelerator init failed, cause: boot initialization failure, ctm_nlite_download:3342
    CRYPTO ERROR: Microcode download failure, boot instance 0
    Cisco Adaptive Security Appliance Software Version 9.0(4) 
    Thanks in advance

    Hi Mike,
    Thanks for your reply.  Considering it was at an early stage I had asked the supplier to replace it.
    Regards
    Stefan

  • Air App file damaged

    I am getting the message that the Air app (tried several)
    cannot install because the Air file is damaged. I have uninstalled
    and reinstalled Air. I’ve had this problem with my previous
    Mac (PowerPC). Just got a new Intel Mac - migrated my apps and
    still cannot install Adobe Air apps. Adobe Air installs fine - but
    not the apps. Here is my log file:
    Starting app install of
    file:///Users/christinedattilo/Desktop/TweetDeck_0_19_3.air
    UI SWF load is complete
    UI initialized
    Unpackaging to
    /private/var/folders/9c/9c2l9zRf2RWQ1++BYv7eNU+++TQ/TemporaryItems/FlashTmp0
    failed while unpackaging: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="internal crypto
    error" errorID=0]
    starting cleanup of temporary files
    application installer exiting
    Can someone help - there are so many good Air apps I’d
    like to use.

    hi... I've been reading a number of threads on this
    frustrating issue & feel that some may be in a form of denial
    over it... having successfully downloaded adobe mediaplayer I
    subsequently received error messages on start-up saying that the
    adobe air file was damaged, even though adobe media still worked
    ok.. eventually, & more out of tidiness than anything else, I
    decided to uninstall AIR & reinstall it & thence came the
    problems... no matter where I downloaded it from I got the same
    error message as everyone else, about the file being damaged...
    anyway, being basically lazy I couldn't be doing with all the
    recommended logging of installation files, removal of certificates,
    etc & decided to move the AIR installation file to my
    C:/Program Files/Adobe folder & try installing it from there..
    well, (cue fanfare) it worked! Obviously I can't guarantee it'll
    work for everyone or all intended uses but give it a go before you
    try all the other suggestions & you might save yourself an
    awful lot of heartache... cheers

  • Integration of BI Publisher with presentation services

    Hello,
    I have installed and configured OBI Answers and Publisher in a Linux infrastructure and configured thro' Websphere/IHS. Answers/Dashboards is working fine. I am trying to integrate BI publisher with OBI answers/dashboards. This is working fine through OC4J but when I try to integrate through Websphere, I get a crypto error.
    I have to deployed a plug-in in web server and tried to integrate BI publisher with presentation services through "cryptotools" and configuring it through instance config. When I hit http://myserver:port/xmlpserver I get "Error 500: com.phaos.crypto.CipherException ". Similarly when I select more products/BI Publisher through OBI Dashboards/Answers, I get the following
    Reporting Login: java.lang.NoClassDefFoundError: com.phaos.crypto.CipherException; nested exception is: java.lang.NoClassDefFoundError: com.phaos.crypto.CipherException
    I feel this is a common issue across both the end points. Has anyone come across this type of issue or similar issue ?
    Help is greatly appreciated.
    thx
    Dinesh

    I'm installing 10.1.3.4 and YES, i have installed BIP war in Websphere.
    I think I may have resolved my original problem but faced with a different one now. I am able to logon to BI publisher standalone and integrated with OBI Answers (thro websphere). But when i click the dashboards link from BI Publisher, its going to the default OC4J installation and not my websphere. The similar re-direction works fine from OBI - Publisher but not from Publisher - OBI.
    I need to find out, how its finding the server name and port to redirect from BIP -> OBI. Can you guys help please ?
    thx
    dinesh Veera

  • Installing openssl on solaris 10

    I am trying to install openssl-1.0.0g.tar.gz on solaris 10 but I got this error;
    root@sun1 # cd /usr/local/openssl-1.0.0f
    root@sun1 # make
    making all in crypto...
    cc -I. -I.. -I../include -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFC
    N_H -xtarget=ultra -xarch=v8plus -xO5 -xstrconst -xdepend -Xa -DB_ENDIAN -DBN_DI
    V2W -DOPENSSL_BN_ASM_MONT -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DAES_ASM -c cr
    yptlib.c
    sh: cc: not found
    *** Error code 1
    make: Fatal error: Command failed for target `cryptlib.o'
    Current working directory /usr/local/openssl-1.0.0f/crypto
    *** Error code 1
    The following command caused the error:
    dir=crypto; target=all; if expr " crypto ssl engines apps test tools " : ".* $di
    r " >/dev/null 2>&1; then if [ -d "$dir" ]; then ( cd $dir && echo "making
    $target in $dir..." && TOP= && unset TOP ${LIB+LIB} ${LIBS+LIBS} ${INCLU
    DE+INCLUDE} ${INCLUDES+INCLUDES} ${DIR+DIR} ${DIRS+DIRS} ${SRC+SRC}
    ${LIBSRC+LIBSRC} ${LIBOBJ+LIBOBJ} ${ALL+ALL} ${EXHEADER+EXHEADER} ${
    HEADER+HEADER} ${GENERAL+GENERAL} ${CFLAGS+CFLAGS} ${ASFLA
    GS+ASFLAGS} ${AFLAGS+AFLAGS} ${LDCMD+LDCMD} ${LDFLAGS+LDFLAGS}
    ${SHAREDCMD+SHAREDCMD} ${SHAREDFLAGS+SHAREDFLAGS} ${SHARED_LIB+SH
    ARED_LIB} ${LIBEXTRAS+LIBEXTRAS} && make -e PLATFORM='solaris-sparcv9-cc' PROCES
    SOR='' CC='cc' CFLAG='-DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H
    -xtarget=ultra -xarch=v8plus -xO5 -xstrconst -xdepend -Xa -DB_ENDIAN -DBN_DIV2W
    -DOPENSSL_BN_ASM_MONT -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DAES_ASM'
    AS='cc' ASFLAG='-DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN
    H -xtarget=ultra -xarch=v8plus -xO5 -xstrconst -xdepend -Xa -DBENDIAN -DBN_DIV
    2W -DOPENSSL_BN_ASM_MONT -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DAES_ASM -c'
    AR='ar r' NM='nm' RANLIB='/usr/ccs/bin/ranlib' CROSS_C
    OMPILE='' PERL='/usr/bin/perl' ENGDIRS='ccgost' SDIRS='objects
    md4 md5 sha mdc2 hmac ripemd whrlpool des aes rc2 rc4 idea bf cast camellia se
    ed modes bn ec rsa dsa ecdsa dh ecdh dso engine buffer bio stack lhash rand er
    r evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 cms pque
    ue ts' LIBRPATH='/usr/local/ssl/lib' INSTALL_PREFIX='' INSTALL
    TOP='/usr/local/ssl' OPENSSLDIR='/usr/local/ssl' LIBDIR='lib'
    MAKEDEPEND='$${TOP}/util/domd $${TOP} -MD makedepend' DEPFLAG=
    '-DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_GMP -DOPENSSL_NO_JPAKE -DOPENSSL_NO_MD2 -D
    OPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779 -DOPENSSL_NO_STORE' MAKEDEPPROG='makedepend
    ' SHARED_LDFLAGS='-G -dy -z text' KRB5_IN
    CLUDES='' LIBKRB5='' ZLIB_INCLUDE='' LIBZLIB='' EXE_EXT='' SHARED_LIBS=
    '' SHLIB_EXT='.so.1.0.0' SHLIB_TARGET='solaris-shared' PEX_LIBS='' EX_
    LIBS='-lsocket -lnsl -ldl' CPUID_OBJ='sparcv9cap.o sparccpuid.o'
    BN_ASM='bn-sparcv9.o sparcv9-mont.o sparcv9a-mont.o' DES_ENC='des_enc-s
    parc.o fcrypt_b.o' AES_ENC='aes_core.o aes_cbc.o aes-sparcv9.o' CMLL_ENC='
    camellia.o cmll_misc.o cmll_cbc.o' BF_ENC='bf_enc.o' CAST_ENC='c_enc.o'
    RC4_ENC='rc4_enc.o rc4_skey.o' RC5_ENC='rc5_enc.o' SHA1_ASM_OBJ='sha1-spar
    cv9.o sha256-sparcv9.o sha512-sparcv9.o' MD5_ASM_OBJ=''
    RMD160_ASM_OBJ='' WP_ASM_OBJ='wp_block.o'
    PERLASM_SCHEME='void' THIS=${THIS:-build_crypto} MAKE
    FILE=Makefile MAKEOVERRIDES= TOP=.. DIR=$dir $target ) || exit 1; fi; fi
    make: Fatal error: Command failed for target `build_crypto'
    root@sun1 #
    I run make report and got the following:
    root@sun1 # make report
    Use of uninitialized value in pattern match (m//) at util/selftest.pl line 52.
    Use of uninitialized value in pattern match (m//) at util/selftest.pl line 53.
    Use of uninitialized value in string eq at util/selftest.pl line 54.
    Can't exec "cc": No such file or directory at util/selftest.pl line 54.
    Use of uninitialized value in substitution (s///) at util/selftest.pl line 55.
    Use of uninitialized value in substitution (s///) at util/selftest.pl line 56.
    Use of uninitialized value in scalar chomp at util/selftest.pl line 57.
    Use of uninitialized value in concatenation (.) or string at util/selftest.pl li
    ne 76.
    Checking compiler...
    Can't exec "cc": No such file or directory at util/selftest.pl line 83.
    Can't exec "./cctest": No such file or directory at util/selftest.pl line 84.
    Use of uninitialized value in pattern match (m//) at util/selftest.pl line 84.
    OpenSSL self-test report:
    OpenSSL version: 1.0.0f
    Last change: Nadhem Alfardan and Kenny Paterson have discovered an e...
    Options: no-gmp no-jpake no-krb5 no-md2 no-rc5 no-rfc3779 no-shared no
    -store no-zlib no-zlib-dynamic static-engine
    OS (uname): SunOS bio1 5.10 Generic_144488-01 sun4v sparc SUNW,SPARC-Enter
    prise-T5120
    OS (config): sun4v-whatever-solaris2
    Target (default): solaris-sparcv9-cc
    Target: solaris-sparcv9-cc
    Compiler:
    Compiler doesn't work.
    Please ask your system administrator/vendor for more information.
    [Problems with your operating system setup should not be reported
    to the OpenSSL project.]
    Test report in file testlog
    when I run gcc -version I got the command not found but I check with pkginfo -i gcc and it is installed . I also add /usr/local/bin to the ./profile path but same problem.
    any idea please.
    Edited by: Hani on Jan 20, 2012 11:37 AM

    I have installed openssl-1.0.0e-sol10-sparc-local in my hosts and it is working, this can be installed with pkgadd.

  • Still can't upgrade the system smoothly

    First of all, I'd like to apologize for disturbing you guys again about the wretched glibc update. I tried everything according to the wiki
    The grep '^lib/' /var/lib/pacman/local/*/files command gives me :-
    [hellknight@AX-64 ~]$ grep '^lib/' /var/lib/pacman/local/*/files
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/ld-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/ld-linux-x86-64.so.2
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libBrokenLocale-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libBrokenLocale.so.1
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libSegFault.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libanl-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libanl.so.1
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libc-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libc.so.6
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libcidn-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libcidn.so.1
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libcrypt-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libcrypt.so.1
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libdl-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libdl.so.2
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libm-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libm.so.6
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libmemusage.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnsl-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnsl.so.1
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_compat-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_compat.so.2
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_db-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_db.so.2
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_dns-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_dns.so.2
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_files-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_files.so.2
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_hesiod-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_hesiod.so.2
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_nis-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_nis.so.2
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_nisplus-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libnss_nisplus.so.2
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libpcprofile.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libpthread-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libpthread.so.0
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libresolv-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libresolv.so.2
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/librt-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/librt.so.1
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libthread_db-1.0.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libthread_db.so.1
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libutil-2.16.so
    /var/lib/pacman/local/glibc-2.16.0-1/files:lib/libutil.so.1
    [hellknight@AX-64 ~]$
    And, find /lib -exec pacman -Qo -- {} + command gives me
    error: cannot determine ownership of directory '/lib'
    error: cannot determine ownership of directory '/lib/firmware'
    error: No package owns /lib/firmware/sihp1018.dl
    error: cannot determine ownership of directory '/lib/modules'
    error: cannot determine ownership of directory '/lib/modules/2.6.36-ARCH'
    error: cannot determine ownership of directory '/lib/modules/2.6.36-ARCH/kernel'
    error: cannot determine ownership of directory '/lib/modules/2.6.36-ARCH/kernel/misc'
    error: cannot determine ownership of directory '/lib/modules/2.6.36-ARCH/misc'
    error: No package owns /lib/modules/2.6.36-ARCH/misc/vboxnetadp.ko
    error: No package owns /lib/modules/2.6.36-ARCH/misc/vboxdrv.ko
    error: No package owns /lib/modules/2.6.36-ARCH/misc/vboxnetflt.ko
    error: cannot determine ownership of directory '/lib/modules/3.2.6-1-ARCH'
    error: No package owns /lib/modules/3.2.6-1-ARCH/modules.builtin.bin
    error: No package owns /lib/modules/3.2.6-1-ARCH/modules.softdep
    error: No package owns /lib/modules/3.2.6-1-ARCH/modules.dep.bin
    error: No package owns /lib/modules/3.2.6-1-ARCH/modules.dep
    error: No package owns /lib/modules/3.2.6-1-ARCH/modules.symbols.bin
    error: No package owns /lib/modules/3.2.6-1-ARCH/modules.alias
    error: No package owns /lib/modules/3.2.6-1-ARCH/modules.devname
    error: No package owns /lib/modules/3.2.6-1-ARCH/modules.alias.bin
    error: No package owns /lib/modules/3.2.6-1-ARCH/modules.symbols
    error: cannot determine ownership of directory '/lib/modules/3.2.6-2-ARCH'
    error: No package owns /lib/modules/3.2.6-2-ARCH/modules.builtin.bin
    error: No package owns /lib/modules/3.2.6-2-ARCH/modules.softdep
    error: No package owns /lib/modules/3.2.6-2-ARCH/modules.dep.bin
    error: No package owns /lib/modules/3.2.6-2-ARCH/modules.dep
    error: No package owns /lib/modules/3.2.6-2-ARCH/modules.symbols.bin
    error: No package owns /lib/modules/3.2.6-2-ARCH/modules.alias
    error: No package owns /lib/modules/3.2.6-2-ARCH/modules.devname
    error: No package owns /lib/modules/3.2.6-2-ARCH/modules.alias.bin
    error: No package owns /lib/modules/3.2.6-2-ARCH/modules.symbols
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight'
    error: No package owns /lib/modules/2.6.37-hellknight/modules.builtin.bin
    error: No package owns /lib/modules/2.6.37-hellknight/modules.softdep
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/arch'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/arch/x86'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/arch/x86/kernel'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/arch/x86/kernel/cpu'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/arch/x86/kernel/cpu/cpufreq'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/arch/x86/kernel/cpu/cpufreq/p4-clockmod.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/arch/x86/kernel/cpu/cpufreq/powernow-k8.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/arch/x86/kernel/cpu/cpufreq/mperf.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/arch/x86/kernel/cpu/cpufreq/speedstep-lib.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/ext4'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/ext4/ext4.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/quota'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/quota/quota_tree.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/dlm'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/dlm/dlm.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/configfs'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/configfs/configfs.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/ocfs2'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/ocfs2/ocfs2_stackglue.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/ocfs2/dlmfs'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/ocfs2/dlmfs/ocfs2_dlmfs.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/ocfs2/cluster'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/ocfs2/cluster/ocfs2_nodemanager.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/ocfs2/ocfs2.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/fat'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/fat/vfat.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/fat/fat.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/fat/msdos.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/jbd2'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/jbd2/jbd2.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/fuse'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/fuse/fuse.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/mbcache.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/jbd'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/jbd/jbd.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/ext3'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/ext3/ext3.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/gfs2'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/gfs2/gfs2.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/fs/nls'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/fs/nls/nls_cp437.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/crypto'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/crypto/sha1_generic.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/crypto/crc32c.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/crypto/hmac.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/synth'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/synth/snd-util-mem.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/synth/emux'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/synth/emux/snd-emux-synth.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/core'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/snd.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/snd-timer.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/snd-page-alloc.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/core/oss'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/oss/snd-pcm-oss.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/oss/snd-mixer-oss.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/snd-rawmidi.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/core/seq'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/seq/snd-seq-midi-emul.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/seq/snd-seq.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/seq/snd-seq-midi.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/seq/snd-seq-virmidi.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/seq/snd-seq-dummy.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/core/seq/oss'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/seq/oss/snd-seq-oss.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/seq/snd-seq-midi-event.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/seq/snd-seq-device.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/snd-hrtimer.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/snd-pcm.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/core/snd-hwdep.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-als4000.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-via82xx.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/cs5535audio'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/cs5535audio/snd-cs5535audio.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-sonicvibes.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/rme9652'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/rme9652/snd-hdsp.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/rme9652/snd-hdspm.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/rme9652/snd-rme9652.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-maestro3.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/lx6464es'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/lx6464es/snd-lx6464es.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/ice1712'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/ice1712/snd-ice17xx-ak4xxx.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/ice1712/snd-ice1724.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/ice1712/snd-ice1712.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/ymfpci'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/ymfpci/snd-ymfpci.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/ca0106'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/ca0106/snd-ca0106.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-intel8x0.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/emu10k1'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/emu10k1/snd-emu10k1x.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/emu10k1/snd-emu10k1-synth.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/emu10k1/snd-emu10k1.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-ad1889.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-atiixp.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-bt87x.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/nm256'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/nm256/snd-nm256.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-via82xx-modem.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/trident'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/trident/snd-trident.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-cmipci.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-rme32.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/pcxhr'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/pcxhr/snd-pcxhr.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-cs4281.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-intel8x0m.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/ac97'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/ac97/snd-ac97-codec.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/korg1212'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/korg1212/snd-korg1212.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/ctxfi'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/ctxfi/snd-ctxfi.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/hda'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-codec-cirrus.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-codec.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-codec-idt.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-codec-analog.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-codec-si3054.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-codec-conexant.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-codec-hdmi.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-intel.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-codec-via.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-codec-realtek.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-codec-cmedia.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/hda/snd-hda-codec-ca0110.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-azt3328.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-ens1371.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-es1968.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-cs5530.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-es1938.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/asihpi'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/asihpi/snd-asihpi.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-atiixp-modem.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-indigoiox.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-mia.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-mona.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-darla24.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-indigoio.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-gina20.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-indigo.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-layla20.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-indigodjx.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-layla24.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-indigodj.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-echo3g.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-darla20.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/echoaudio/snd-gina24.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/oxygen'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/oxygen/snd-oxygen-lib.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/oxygen/snd-oxygen.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/oxygen/snd-hifier.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/oxygen/snd-virtuoso.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/mixart'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/mixart/snd-mixart.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/riptide'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/riptide/snd-riptide.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/ali5451'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/ali5451/snd-ali5451.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-als300.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-fm801.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/au88x0'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/au88x0/snd-au8810.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/au88x0/snd-au8830.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/au88x0/snd-au8820.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/cs46xx'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/cs46xx/snd-cs46xx.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-ens1370.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pci/vx222'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/vx222/snd-vx222.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pci/snd-rme96.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/isa'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/isa/sb'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/isa/sb/snd-sb16-dsp.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/isa/sb/snd-sb-common.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/ac97_bus.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/soc'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/soc/snd-soc-core.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/usb'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/usb/usx2y'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/usb/usx2y/snd-usb-us122l.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/usb/usx2y/snd-usb-usx2y.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/usb/caiaq'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/usb/caiaq/snd-usb-caiaq.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/usb/snd-usb-audio.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/usb/snd-usbmidi-lib.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/usb/misc'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/usb/misc/snd-ua101.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/soundcore.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/i2c'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/i2c/snd-cs8427.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/i2c/other'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/i2c/other/snd-pt2258.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/i2c/other/snd-tea575x-tuner.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/i2c/other/snd-ak4113.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/i2c/other/snd-ak4114.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/i2c/other/snd-ak4xxx-adda.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/i2c/other/snd-ak4117.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/i2c/snd-i2c.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/drivers'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/drivers/snd-virmidi.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/drivers/opl3'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/drivers/opl3/snd-opl3-synth.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/drivers/opl3/snd-opl3-lib.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/drivers/vx'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/drivers/vx/snd-vx-lib.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/drivers/mpu401'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/drivers/snd-dummy.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pcmcia'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pcmcia/pdaudiocf'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pcmcia/pdaudiocf/snd-pdaudiocf.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/sound/pcmcia/vx'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/sound/pcmcia/vx/snd-vxpocket.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/misc'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/acpi'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/acpi/thermal.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/acpi/processor.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/acpi/button.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/acpi/container.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/parport'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/parport/parport_pc.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/parport/parport.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/pci'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/pci/hotplug'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/pci/hotplug/shpchp.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/pci/hotplug/pci_hotplug.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/common'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/tuner-simple.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/tuner-xc2028.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/tda18271.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/xc5000.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/tea5761.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/tda827x.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/mxl5005s.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/mt20xx.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/tda8290.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/tuner-types.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/mc44s803.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/tea5767.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/common/tuners/tda9887.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/video'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/btcx-risc.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/v4l1-compat.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/video/em28xx'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/em28xx/em28xx.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/em28xx/em28xx-alsa.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx18'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx18/cx18.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx18/cx18-alsa.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx231xx'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx231xx/cx231xx.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx231xx/cx231xx-alsa.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/videobuf-dma-sg.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx2341x.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/v4l2-compat-ioctl32.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/video/tlg2300'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/tlg2300/poseidon.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/video/saa7134'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/saa7134/saa6752hs.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/saa7134/saa7134-empress.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/saa7134/saa7134.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/saa7134/saa7134-alsa.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx88'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx88/cx88-alsa.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx88/cx8800.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx88/cx88xx.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/v4l2-common.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/videobuf-dvb.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/tuner.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/tveeprom.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/videodev.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx25840'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cx25840/cx25840.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/videobuf-vmalloc.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/v4l2-int-device.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/cs5345.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/video/videobuf-core.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/IR'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/IR/ir-common.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/IR/lirc_dev.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/IR/ir-core.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/dvb'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/dvb/frontends'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/dvb/frontends/s5h1409.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/media/dvb/dvb-core'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/media/dvb/dvb-core/dvb-core.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/hid'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-logitech.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-belkin.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-chicony.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-ezkey.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-monterey.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-a4tech.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-kensington.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-apple.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/hid/usbhid'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/usbhid/usbhid.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-kye.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-cypress.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-microsoft.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hid/hid-cherry.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/usb'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/usb/core'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/usb/core/usbcore.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/usb/host'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/usb/host/ehci-hcd.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/usb/host/ohci-hcd.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/usb/storage'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/usb/storage/usb-storage.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/usb/gadget'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/usb/gadget/g_audio.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/usb/gadget/net2280.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/ata'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/ata/libahci.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/ata/libata.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/ata/ahci.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/ata/pata_acpi.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/ata/pata_atiixp.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/ata/ahci_platform.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/edac'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/edac/edac_mce_amd.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/edac/edac_core.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/hwmon'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/hwmon/k10temp.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/uio'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/uio/uio.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/video'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/video/via'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/video/via/viafb.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/cdrom'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/cdrom/cdrom.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/i2c'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/i2c/busses'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/i2c/busses/i2c-piix4.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/i2c/algos'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/i2c/algos/i2c-algo-bit.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/i2c/i2c-core.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/platform'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/platform/x86'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/platform/x86/wmi.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/input'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/input/evdev.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/input/misc'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/input/misc/pcspkr.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/input/ff-memless.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/cpufreq'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/cpufreq/cpufreq_ondemand.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/cpufreq/cpufreq_stats.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/cpufreq/freq_table.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/staging'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/staging/line6'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/staging/line6/line6usb.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/staging/tm6000'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/staging/tm6000/tm6000.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/staging/tm6000/tm6000-alsa.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/staging/cx25821'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/staging/cx25821/cx25821.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/staging/cx25821/cx25821-alsa.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/staging/go7007'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/staging/go7007/go7007.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/ide'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/ide/ide-core.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/ide/ide-cd_mod.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/pcmcia'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/pcmcia/pcmcia_rsrc.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/pcmcia/pcmcia_core.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/pcmcia/pcmcia.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/net'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/net/cnic.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/net/mii.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/net/bnx2.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/net/r8169.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/block'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/block/pktcdvd.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/scsi'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/scsi/scsi_transport_iscsi.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/drivers/scsi/bnx2i'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/scsi/bnx2i/bnx2i.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/scsi/sr_mod.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/scsi/scsi_mod.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/scsi/sd_mod.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/scsi/scsi_wait_scan.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/scsi/scsi_transport_fc.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/scsi/libiscsi.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/drivers/scsi/sg.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/net'
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/net/sctp'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/net/sctp/sctp.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/net/ipv6'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/net/ipv6/ipv6.ko
    error: cannot determine ownership of directory '/lib/modules/2.6.37-hellknight/kernel/lib'
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/lib/libcrc32c.ko
    error: No package owns /lib/modules/2.6.37-hellknight/kernel/lib/crc16.ko
    error: No package owns /lib/modules/2.6.37-hellknight/modules.builtin
    error: No package owns /lib/modules/2.6.37-hellknight/modules.dep.bin
    error: No package owns /lib/modules/2.6.37-hellknight/modules.dep
    error: No package owns /lib/modules/2.6.37-hellknight/modules.symbols.bin
    error: No package owns /lib/modules/2.6.37-hellknight/modules.pcimap
    error: No package owns /lib/modules/2.6.37-hellknight/source
    error: No package owns /lib/modules/2.6.37-hellknight/modules.alias
    error: No package owns /lib/modules/2.6.37-hellknight/modules.devname
    error: No package owns /lib/modules/2.6.37-hellknight/modules.ccwmap
    error: No package owns /lib/modules/2.6.37-hellknight/modules.usbmap
    error: No package owns /lib/modules/2.6.37-hellknight/modules.ieee1394map
    error: No package owns /lib/modules/2.6.37-hellknight/modules.alias.bin
    error: No package owns /lib/modules/2.6.37-hellknight/modules.isapnpmap
    error: No package owns /lib/modules/2.6.37-hellknight/modules.seriomap
    error: No package owns /lib/modules/2.6.37-hellknight/modules.symbols
    error: No package owns /lib/modules/2.6.37-hellknight/modules.ofmap
    error: No package owns /lib/modules/2.6.37-hellknight/build
    error: No package owns /lib/modules/2.6.37-hellknight/modules.inputmap
    error: No package owns /lib/modules/2.6.37-hellknight/modules.order
    error: cannot determine ownership of directory '/lib/modules/3.1.9-2-ARCH'
    error: No package owns /lib/modules/3.1.9-2-ARCH/modules.pcimap
    error: No package owns /lib/modules/3.1.9-2-ARCH/modules.ccwmap
    error: No package owns /lib/modules/3.1.9-2-ARCH/modules.usbmap
    error: No package owns /lib/modules/3.1.9-2-ARCH/modules.ieee1394map
    error: No package owns /lib/modules/3.1.9-2-ARCH/modules.isapnpmap
    error: No package owns /lib/modules/3.1.9-2-ARCH/modules.seriomap
    error: No package owns /lib/modules/3.1.9-2-ARCH/modules.ofmap
    error: No package owns /lib/modules/3.1.9-2-ARCH/modules.inputmap
    error: cannot determine ownership of directory '/lib/modules/3.0-ARCH'
    error: cannot determine ownership of directory '/lib/modules/3.0-ARCH/misc'
    error: No package owns /lib/modules/3.0-ARCH/misc/vboxnetadp.ko
    error: No package owns /lib/modules/3.0-ARCH/misc/vboxdrv.ko
    error: No package owns /lib/modules/3.0-ARCH/misc/vboxnetflt.ko
    error: No package owns /lib/modules/3.0-ARCH/misc/vboxpci.ko
    [hellknight@AX-64 ~]$
    Please help. I can't seem to understand what to delete and what not.

    did you care to read the appropriate wiki page completely?
    you compiled your own kernel, if you still want to use it, you need to rebuild it, If not, then simply delete it.

  • Cant install any AIR apps

    I've tried many different things to get AIR apps to run on my
    10.5.5 machine including uninstalling and reinstalling AIR,
    removing the /var/folders/zz folder, repairing permissions, with no
    luck.
    Whenever I try to start any AIR app installer I receive the
    following message:
    The application could not be installed because the AIR file
    is damaged. Try obtaining a new AIR file from the application
    author.
    Any thoughts on where to go next? Really hoping to avoid
    reinstalling the OS.
    Brett

    Hi Ted,
    The example log below is from the Yammer air app, but I have
    others from internal teams within my company that run fine on other
    machines and not my own.
    The log reads:
    Starting app install of
    file:///Users/bkizner/Desktop/Yammer.air
    UI SWF load is complete
    UI initialized
    Unpackaging to
    /private/var/folders/s-/s-E2M0WqFtSi7v40D3BMYE+++TM/TemporaryItems/FlashTmp0
    failed while unpackaging: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="internal crypto
    error" errorID=0]
    starting cleanup of temporary files
    application installer exiting
    I've tried clearing the /var/folders directory and giving
    myself read/write access with no luck.
    BK

  • Failed to start service 'Web Farm Controller Service (WebFarmService)'

    Hi,
    Has any one had a similar issue when trying to set up the Web Site Cloud REST point?
    I am trying to install the 'Web Sites service and third party dependencies' but I get the following error when trying to set up this feature:
    500 Internal Server Error - Failed to configure databases and services: Failed to start service 'Web Farm Controller Service (WebFarmService)'. 
    The event logs show the following:
    Service cannot be started. Microsoft.Web.Farm.WebFarmException: The type 'HostingController.HostingConfigManager' could not be loaded. The configuration settings may not be valid ---> System.Reflection.TargetInvocationException: Exception has been
    thrown by the target of an invocation. ---> Microsoft.Web.Hosting.WebHostingObjectNotFoundException: No default connection string was found.
       at Microsoft.Web.Hosting.SiteManager.GetDefaultConnectionString()
       at Microsoft.Web.Hosting.SiteManager..ctor(RetryPolicy retryPolicy)
       at HostingController.HostingConfigManager.ControllerHealthCheck()
       at HostingController.HostingConfigManager..ctor(WaitCallback changeCallback)
      --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle._InvokeConstructor(Object[] args, SignatureStruct& signature, IntPtr declaringType)
       at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.RuntimeType.CreateInstanceImpl(BindingFlags bindin...
    everything is running using a domain admin account, I have tried to start the service manually but it fails with the following error message:
    Windows could not start the Web Farm Controller Service service on Local Computer: Error 0x80131500: 0x80131500
    Any Help would be appreciated.
    Thanks
    Doug

    I uninstalled the Web Farm Framework and reinstalled it from the Web Platform Installer. That worked. The next error was:
    Could not find stored procedure 'runtime.hostingConfigurations_getHostingConfiguration_v25' and to fix that I set the connection string to find the Hosting database with this PowerShell
    Import-ModuleWebSites
    Set-WebSitesConnectionString -ConnectionString "Server=denalidue;User Id=sa;Password=xxxxxx;Initial Catalog=Hosting" -Type Hosting
    now Web Sites service completes and then in Management Server I am getting crypto errors (Unexpected
    cryptographic
    exception
    occurred) even when I run the simple PowerShell:
    Get-WebSitesServer
    -ServerType
    Controller

  • Hi, is there plans Firefox for Android to work with .p12 certificates like desktop versions for Windows, MAC and Linux?

    I used Firefox 26 at Android 4.2.1 and try to sign docs in bank application but receive a message ”window.crypto Error:undefined, TypeError: window.crypto.signText is not a function”.

    Hello Philipp, thank you for your answer.
    I used this addon and i have certificate in the browser, i can choose it, but when try to sign docs with it, i receive this message ”window.crypto Error:undefined, TypeError: window.crypto.signText is not a function”.
    My be 'window.crypto.signText' function is not supported in Firefox for Android, so question is there plans browser to work with this function or how it can be enabled.

  • I'm trying to use import com.adobe.crypto.* on Windows version of my App but get error 1172:Definition com.adobe.crypto could not be found

    The Mac version of my Air app works fine, so does the iPad version, but the PC version has been a bit of a nightmare.
    I keep getting the error "1172:Definition com.adobe.crypto could not be found", when I publish it.
    Basically the 'com' folder is in the same directory as the app I am publishing and within that is 'adobe' and within that is 'crypto' within that is a series of .as files.
    I've added C:\Users\Gary\Documents\My_Applications\My_App_folder\com\adobe\crypto to source path list (I have no idea if that's right).
    But that just gives me a different error 5001: The name of package com.adobe.crypto does not reflect the location of this file. Please change the package definitions name inside the file.......
    I didn't have to include this source in the Mac version... but someone seemed to suggest it on a forum.
    I'm basically stabbing in the dark at the mount, something I seem to be doing a lot of these days. :-(
    Any help would be greatly appreciated.
    Many Thanks
    Gary

    I've figured it out
    Turns out I needed to add a source path (in the Actionscript 3 settings click on the Source File Tab) that exactly matches the directory the app and com folder is inside of. I wrongly assumed that Adobe Air could figure out where it was for itself, but no.... it needs to be told where to look for the com folder even though it's staring it right in its face. (Don't set the path to the 'com' folder itself, but to the enclosing folder that the .fla and the com is in).
    The Mac version doesn't seem to need that, it just finds the com folder if it's inside the same folder.
    Now I've got another massive error:-
    When I test the app, it works fine sending to Air for Desktop, however when I publish with embedded runtime for Windows.... It comes up with this error.
    Any ideas ?

  • Error while installing crypto in Linux

    Hi everyone,
    I've literally checked all posts in google and this forum is my very last resort. I've downloaded the end-user software for Linux from the following site:
    http://www.cryptocard.com/products/crypto%2Dmas/end%2Dusersoftware/
    When I try to install it on my PCLinuxOS, I get the following errors:
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    awk: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    hostname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    Launching installer...
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /tmp/install.dir.6080/Linux/resource/jre/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    Any help would be greatly appreciated. Thanks in advance.

    Dear All,
    I am tring to install Oracle9i(Database Release 2
    (9.2.0.4.0) for Linux x86) in Fedora Core 6. While iI don't think Oracle9i is certify with Fedora Core. Check Oracle's Certification Matrices
    Virag

  • Import javax.crypto not found error

    Hi,
    I have just installed the JDK1.7 on a windows machine.
    Whenever I try to compile my module, I get an error on the import javax.crypto line. It tells me that it can't the javax\Crypto\Cipher.class.
    I have the jdk installed on d:\glassfish3 and am pointing the classpath to d:\glassfish3\jdk7 (also tried d:\glassfish3\jdk7\jre as well) with no luck.
    Any help would be greatly appreciated.
    Thanks,
    Drew Nathanson
    Technical Synergy, Inc.

    Thanks. Maybe I should explain a little better.
    I am using JBuilder 2006 to my IDE. This environment requires that you put in the path to the JRE/JDK.
    I have uninstalled and downloaded the jdk again and this time i'm getting a strange error:
    "test.java": cannot access javax.crypto.Cipher; bad class file: D:\Program Files\Java\jre7\lib\jce.jar\javax\crypto\Cipher.class, class file has wrong version 51.0, should be 49.0, Please remove or make sure it appears in the correct subdirectory of the classpath. at line 19, column 21
    Now this is strange because i'm using the right library.
    Is there something that I'm missing here?
    Again, thanks for your help.
    Drew Nathanson

Maybe you are looking for

  • Unable to install ADOBE Digital Edition 2.0.1 on Windows 7

    Hi My current installation of Windows 7 contains Framework NET 4.0 Full. It is up-tp-date with this. I'm unable to install ADOBE Digital Edition 2.0.1 on this system, because of the prerequisite required to install this packege. ADOBE Digital Edition

  • Sony Bravia high pitched ringing

    I just bought a brand new Sony Bravia 32' model KDL32EX500 yesterday and everything appeared to be in working order except for a very high pitched ringing sound that comes from the television. I figured this was normal as it is powered on, but it als

  • Does the recent Airport update help connectivity issues?

    I always have issues with my D-link router, which I haven't been able to test since the update. Are people still having connectivity issues and dropped signals since updating?

  • Computer Sleeps While Syncing Photos

    Hi Guys, iPhone 3GS current software iTunes Current software Windows 7 64bit current updates My computer is set to NEVER sleep regardless of battery power or plugged in.  If I select a folder to sync that is around 400+ images, once I hit the sync bu

  • Unbalanced hierarchies in OBIEE+

    Hi everyone, We're starting to research and learn OBIEE+ in an effort to see if it can compliment what we're currently doing with the Hyperion toolset and the first stumbling block that I've encountered is with unbalanced (ragged) hierarchies. Does O