Kodo 3.0.3 fails when detaching package local classes

When I try to detach a class that is package local to enforce usage of
factories and interfaces Kodo
throws the following exception:
kodo.util.UserException: Cannot access the detached state of class "class
xxx.core.model.competitor.CompetitorImpl". Ensure that the class has the
"detachable" metadata extension, and the the class has been re-enhanced.
NestedThrowables:
java.lang.IllegalAccessException: Class kodo.runtime.KodoHelper can not
access a member of class xxx.core.model.competitor.CompetitorImpl with
modifiers "public final"
at kodo.runtime.KodoHelper.setDetachedState(KodoHelper.java:496)
at kodo.runtime.DetachManager.setDetachedVariables(DetachManager.java:231)
at kodo.runtime.DetachManager.detach(DetachManager.java:168)
at kodo.runtime.DetachManager.detach(DetachManager.java:55)
at
kodo.runtime.PersistenceManagerImpl.detach(PersistenceManagerImpl.java:3073)
at
xxx.core.model.competitor.CompetitorImplTest.doCheckPersistent(CompetitorImp
lTest.java:798)
at xxx.core.model.DatabaseTest.checkPersistent(DatabaseTest.java:133)
at xxx.core.model.DatabaseTest.testPersistence(DatabaseTest.java:74)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
..java:25)
at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22)
at junit.extensions.TestSetup$1.protect(TestSetup.java:19)
at junit.extensions.TestSetup.run(TestSetup.java:23)
at com.intellij.rt.execution.junit2.IdeaJUnitAgent.doRun(Unknown Source)
at
com.intellij.rt.execution.junit.TextTestRunner2.startRunnerWithArgs(Unknown
Source)
at
com.intellij.rt.execution.junit2.JUnitStarter.prepareStreamsAndStart(Unknown
Source)
at com.intellij.rt.execution.junit2.JUnitStarter.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
..java:25)
at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
Caused by: java.lang.IllegalAccessException: Class kodo.runtime.KodoHelper
can not access a member of class xxx.core.model.competitor.CompetitorImpl
with modifiers "public final"
at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:57)
at kodo.runtime.KodoHelper.invoke(KodoHelper.java:625)
at kodo.runtime.KodoHelper.setDetachedState(KodoHelper.java:491)
... 38 more
NestedThrowablesStackTrace:
java.lang.IllegalAccessException: Class kodo.runtime.KodoHelper can not
access a member of class xxx.core.model.competitor.CompetitorImpl with
modifiers "public final"
at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:57)
at kodo.runtime.KodoHelper.invoke(KodoHelper.java:625)
at kodo.runtime.KodoHelper.setDetachedState(KodoHelper.java:491)
at kodo.runtime.DetachManager.setDetachedVariables(DetachManager.java:231)
at kodo.runtime.DetachManager.detach(DetachManager.java:168)
at kodo.runtime.DetachManager.detach(DetachManager.java:55)
at
kodo.runtime.PersistenceManagerImpl.detach(PersistenceManagerImpl.java:3073)
at
xxx.core.model.competitor.CompetitorImplTest.doCheckPersistent(CompetitorImp
lTest.java:798)
at xxx.core.model.DatabaseTest.checkPersistent(DatabaseTest.java:133)
at xxx.core.model.DatabaseTest.testPersistence(DatabaseTest.java:74)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
..java:25)
at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22)
at junit.extensions.TestSetup$1.protect(TestSetup.java:19)
at junit.extensions.TestSetup.run(TestSetup.java:23)
at com.intellij.rt.execution.junit2.JUnitStarter.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
..java:25)
at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
Seems that KodoHelper tries to access something per reflection and fails
because the class is
not public and setAccessible(true) is not used.
When the class is changed to be public detaching seems to work fine.

Werner-
You are correct: Kodo is using reflection to set the detached state in
the object. We will make a note of this in the documentation. For the
time being, the object will need to be public (you can help enforce a
factory pattern by having a protected constructor).
This will be addressed when we implement the final version of JDO 2.0,
which will have a more well-defined specification for how detachment is
to work.
In article <[email protected]>, werner wrote:
When I try to detach a class that is package local to enforce usage of
factories and interfaces Kodo
throws the following exception:
kodo.util.UserException: Cannot access the detached state of class "class
xxx.core.model.competitor.CompetitorImpl". Ensure that the class has the
"detachable" metadata extension, and the the class has been re-enhanced.
NestedThrowables:
java.lang.IllegalAccessException: Class kodo.runtime.KodoHelper can not
access a member of class xxx.core.model.competitor.CompetitorImpl with
modifiers "public final"
at kodo.runtime.KodoHelper.setDetachedState(KodoHelper.java:496)
at kodo.runtime.DetachManager.setDetachedVariables(DetachManager.java:231)
at kodo.runtime.DetachManager.detach(DetachManager.java:168)
at kodo.runtime.DetachManager.detach(DetachManager.java:55)
at
kodo.runtime.PersistenceManagerImpl.detach(PersistenceManagerImpl.java:3073)
at
xxx.core.model.competitor.CompetitorImplTest.doCheckPersistent(CompetitorImp
lTest.java:798)
at xxx.core.model.DatabaseTest.checkPersistent(DatabaseTest.java:133)
at xxx.core.model.DatabaseTest.testPersistence(DatabaseTest.java:74)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)
at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22)
at junit.extensions.TestSetup$1.protect(TestSetup.java:19)
at junit.extensions.TestSetup.run(TestSetup.java:23)
at com.intellij.rt.execution.junit2.IdeaJUnitAgent.doRun(Unknown Source)
at
com.intellij.rt.execution.junit.TextTestRunner2.startRunnerWithArgs(Unknown
Source)
at
com.intellij.rt.execution.junit2.JUnitStarter.prepareStreamsAndStart(Unknown
Source)
at com.intellij.rt.execution.junit2.JUnitStarter.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)
at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
Caused by: java.lang.IllegalAccessException: Class kodo.runtime.KodoHelper
can not access a member of class xxx.core.model.competitor.CompetitorImpl
with modifiers "public final"
at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:57)
at kodo.runtime.KodoHelper.invoke(KodoHelper.java:625)
at kodo.runtime.KodoHelper.setDetachedState(KodoHelper.java:491)
... 38 more
NestedThrowablesStackTrace:
java.lang.IllegalAccessException: Class kodo.runtime.KodoHelper can not
access a member of class xxx.core.model.competitor.CompetitorImpl with
modifiers "public final"
at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:57)
at kodo.runtime.KodoHelper.invoke(KodoHelper.java:625)
at kodo.runtime.KodoHelper.setDetachedState(KodoHelper.java:491)
at kodo.runtime.DetachManager.setDetachedVariables(DetachManager.java:231)
at kodo.runtime.DetachManager.detach(DetachManager.java:168)
at kodo.runtime.DetachManager.detach(DetachManager.java:55)
at
kodo.runtime.PersistenceManagerImpl.detach(PersistenceManagerImpl.java:3073)
at
xxx.core.model.competitor.CompetitorImplTest.doCheckPersistent(CompetitorImp
lTest.java:798)
at xxx.core.model.DatabaseTest.checkPersistent(DatabaseTest.java:133)
at xxx.core.model.DatabaseTest.testPersistence(DatabaseTest.java:74)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)
at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22)
at junit.extensions.TestSetup$1.protect(TestSetup.java:19)
at junit.extensions.TestSetup.run(TestSetup.java:23)
at com.intellij.rt.execution.junit2.JUnitStarter.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)
at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
Seems that KodoHelper tries to access something per reflection and fails
because the class is
not public and setAccessible(true) is not used.
When the class is changed to be public detaching seems to work fine.
Marc Prud'hommeaux
SolarMetric Inc.

Similar Messages

  • DTEXEC does not fail when SSIS package fails

    I need to run my SSIS 2012 packages through the catalog with DTEXEC. This works very well, except that if my SSIS package fails, DTEXEC does not fail. I need DTEXEC to fail, so my scheduler knows that there is an error.
    I use the following command:
    dtexec /ISServer "\SSISDB\MyFolder\MyProject\MyPackage.dtsx" /Ser MyServer /Par $Package::Partition;201412 /Env 5
    When I check the status of the run in the Catalog, it is failed.
    When I used SSIS 2008, I had no problem getting DTEXEC to fail when the packages failed.

    I've had the same problem, and come up with the following prototype for a SQL Script which I run in our JAMS Enterprise Scheduler. It uses SSISDB stored procedures to start the SSIS package and polls every 5 seconds to report any messages, and final
    status code of the package. JAMS parameters are delimited by << >> symbols, and will need to be changed for your scheduler/batch process. I guess the script could be converted to a stored procedure. I'm also hoping it will work with SQL High
    Availability groups to ensure the SSIS package runs on the server that's hosting the active database.
    DECLARE @execution_id BIGINT
    DECLARE @status INT= 1
    DECLARE @Event_Message_id BIGINT= 0
    DECLARE @Last_Event_Message_id BIGINT= 0
    DECLARE @message_time DATETIME2(7)
    DECLARE @message NVARCHAR(MAX)
    --Create a SSIS execution for the required SSIS package and return the execution_id
    EXEC [SSISDB].[catalog].[create_execution] @package_name = N'<<pPackageName>>.dtsx',
        @execution_id = @execution_id OUTPUT, @folder_name = N'<<pSSISFolderName>>',
        @project_name = N'<<pSSISProjectName>>', @use32bitruntime = <<p32Bit>>, @reference_id = NULL
    RAISERROR('Starting SSIS package <<pPackageName>> with execution_id %I64d on server %s',0,0,@execution_id,@@SERVERNAME) WITH NOWAIT
    --Set the logging level 0-none, 1-basic (recommended), 2-performance, 3-verbose
    EXEC [SSISDB].[catalog].[set_execution_parameter_value] @execution_id,
        @object_type = 50, @parameter_name = N'LOGGING_LEVEL',
        @parameter_value = <<pLogging_Level>>
    --Start the package executing
    EXEC [SSISDB].[catalog].[start_execution] @execution_id
    WHILE @status IN ( 1, 2, 5, 8 ) --created (1), running (2), canceled (3), failed (4), pending (5), ended unexpectedly (6), succeeded (7), stopping (8), and completed (9).
        BEGIN
            WAITFOR DELAY '00:00:05'
        --Get the status to see later if we've finished
            SELECT  @status = status
            FROM    SSISDB.catalog.executions
            WHERE   execution_id = @execution_id 
        --Are there any event messages since we last reported any?
            DECLARE curEventMessages CURSOR FAST_FORWARD
            FOR
                SELECT  event_message_id ,
                        message_time ,
                        message
                FROM    SSISDB.catalog.event_messages
                WHERE   operation_id = @execution_id
                        AND event_message_id > @Last_Event_Message_id;
            OPEN curEventMessages
            FETCH NEXT FROM curEventMessages INTO @Event_Message_id, @message_time,
                @message
            WHILE @@FETCH_STATUS = 0
                BEGIN
            --We've found a message, so display it - watch out for % signs in the message, they'll cause an error if we don't replace them
                    SET @message = CONVERT(NVARCHAR(MAX), @message_time, 113)
                        + ' ' + replace(@message,'%',' percent')
                    RAISERROR(@message,0,0) WITH NOWAIT
                    SET @Last_Event_Message_id = @Event_Message_id --Make a note that we've reported this message
                    FETCH NEXT FROM curEventMessages INTO @Event_Message_id,
                        @message_time, @message
                END
            CLOSE curEventMessages
            DEALLOCATE curEventMessages
        END
    --@Status indicates that package execution has finished, so let's look at the outcome, and error if there's a problem
    IF @status = 7
        RAISERROR('Package Succeeded',0,0)
    ELSE
        IF @status = 9
            RAISERROR('Package completed',0,0)
        ELSE
            IF @status = 3
                RAISERROR('Package Cancelled',16,1)
            ELSE
                IF @status = 4
                    RAISERROR('Package failed (see error message above)',16,1)
                ELSE
                    IF @status = 6
                        RAISERROR('Package ended unexpectedly',16,1)
                    ELSE
                        RAISERROR('Package ended with unknown status %i',16,1,@status)

  • When debugging package, local variables always listed as 'null'

    When I'm debugging a package procedure, if I try to inspect any local variables by hovering the mouse cursor over them, the floating text that appears always says they're set to null - even though I know (because the procedure works as expected) that there must be a value there. Also, local variables don't appear in the 'Data' debug tab; and if I drag the local variables into the 'Watch' tab, their value is listed as null.
    Using v1.1.2.25 against a 9.2.0.6 db - anyone have any ideas..?
    Cheers,
    James

    Local variables should be used whenever you need a value only in a single method and don't need to remember it's value between two invocations of that method.
    A perfect example would be the counter in a for-loop.

  • Flash Player v9 MSI installation fails when running as "Local System"

    Hi,
    I'm going to distribute Adobe Flash Player 9 via SMS.
    I’m using Adobe’s own msi package:
    “install_flash_player_active_x.msi”. All browsers are
    IE6 (Internet Explorer v6). All systems are running Windows XP SP2
    + all updates.
    I’m well aware of ISScript 10.50’s issue with the
    DCom RUNAS keys.
    The MSI-package works fine as long as it is executed by a
    User with Admin rights (running in user environment).
    But as it is installed by SMS (running as “Local
    System”), it fails.
    I have tried to execute it as “Local System” with
    User Interface. I get the following error message:
    The wizard was interrupted before Adobe Flash Player 9 Active
    X could be completely installed.
    Your system has not been modified. To complete installation
    at another time, please run setup again.
    Click Finish to exit the wizard.

    I dropped the original Adobe MSI-package. Made a new, and
    working, using the FlashPlayer Merge Module.

  • When is it best to use Local Classes..?

    Hi All,
           We all know that a global class creation is very helpful wherein the class can be reused by multiple programs.In contrast when is it best to use a local class within the program...?
    Can anyone please share the sample scenarios where we need to make use of a local class...?
    Cheers
    Nishanth

    Hi Nishanth,
    First of all, there will be a few cases when creating a local class in your program is mandatory. For example,
    if you're using an ALV Grid on your screen using the OO Approach, then you <b>must</b> declare a class locally in
    your program if you want to handle the events. You cannot use a subroutine in this case.
    Secondly, if you are looking for an explanation that is more introductory in nature, then the ABAP Programming
    help has got some good documentation. Here are the links which explain the concepts with an example as a
    transition from function groups to classes -
    http://help.sap.com/saphelp_nw04/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    Regards,
    Anand Mandalika.

  • "Failed to open package file ..." when modifying job step on remote server

    I have SSIS package setup on a remote SQL Server to run on schedule via SQL Server Agent. It was setup initially by remote desktop-ing to the server and connecting to it via SSMS running on the same machine where SQL Server is running. Package source is
    "File System" and absolute path is specified (D:\Folder1\Package1.dtsx). There is just one step in the job - to run SSIS package. Everything works as it should.
    Now I want to modify this job - change number of retry on failure attempts. I can successfully connect to this SQL Server instance via SSMS from my developer workstation. I can then go to "Advanced Settings" for this job step and change "Retry attempts"
    to some other number. However, when I press "OK" I get this error message:
    TITLE: SSIS Execution Properties
    Failed to open package file "D:\Folder1\Package1.dtsx" due to error 0x80070003 "The system cannot find the path specified.".  This happens when loading a package and the file cannot be opened or loaded correctly into the XML document. This can
    be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorrect format.
     ({105912C7-6345-42B4-99B4-58566291867B})
    ADDITIONAL INFORMATION:
    Failed to open package file "D:\Folder1\Package1.dtsx" due to error 0x80070003 "The system cannot find the path specified.".  This happens when loading a package and the file cannot be opened or loaded correctly into the XML document. This can
    be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorrect format.
     ({105912C7-6345-42B4-99B4-58566291867B})
    Interestingly enough, in spite of this error message the number of retries is successfully changed.
    I understand it happens because SSMS tries to locate package on my local hard drive and the same folder doesn't exist on my development PC. It still doesn't make sense to me. Does SSMS not know I am accessing remote server? How come I don't get any errors
    when I just execute this job via SSMS when SSMS runs on my development PC?

    Hi, Am facing same issue, but I am trying run SSIS package via C# code, I have given full access to all the folder in which the package is available.
    In the below line am getting error,
    using Microsoft.SqlServer.DTS.Runtime;
    Application app=new Application();
    Package package=null;
    package=app.LoadPackage("PackageFullPath",null) --error line
    Failed to open package file "C:\SSIS\Package.dtsx" due to error 0x800C0006 "The system
    cannot locate the object specified.".  This occurs when loading a
    package and the file cannot be opened or loaded correctly into the XML document
    full access to which account? also trying to run from where? In the same machine where package resides?
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Known issue: Speech APIs fail when an x86 package is run on an x64 desktop (Windows 10 Insider Preview SDK and tools, April 2015 release)

    When building an app for the x86 platform, speech APIs fail when the x86 package is run on the desktop of an x64 system. You may see an error with the message "mod not found".

    Use the Visual Studio Configuration Manager to retarget the app to x64 when running on an x64 system.

  • SSIS package works in development environment but fails when job scheduler executes, file path invalid

    SIS package works in development environment but fails when job scheduler executes, file path invalid
    Relatively simple package to get OLE-DB connection to MS FoxPro 9.0 DB
    The failure in the job log states that the path is invalid its a network path (\\192.168.1.xxx\foldername) this has been run several ways with the remote computer being mapped as a network drive and through the \\ notation described above.
    Thinking it was a security issue between the SQL agent account and my account I tested by subsitution myself as a proxy account for the agent when running this job, again same result failed on network path.
    One issue I see is that the remote computer is running Server 2000 (legacy software incompatable with newer versions) 
    Is it possible that this is a security issue, since if i understand correctly the current MS domain security model didn't exist until Server 2003.

    Hi REIData,
    Have you got the issue resolved? Based on your description, please make sure the target folder is shared properly. If the computer on which the SQL Server Agent job runs doesn’t join the domain as the server that hosts the shared folder, you have to share
    the folder with everyone by adding “Everyone” to the people list on the File Sharing page of the folder and assign "Read/Write" permission to it.
    Regards,
    Mike Yin
    TechNet Community Support

  • SSIS package fails when Configuration value has value saved into the package

    when a package is migrated from dev to QA and to PROD sometimes it fails since the variables have values in them saved into the package.
    what we do is clear these values manually and restart the job.
    Is there a way we can clear the variables when saving the package or at least programmatically?
    eddy.a

    Hello Arthur
    Thank you for your response. I should start by apologizing by not making myself clear. We do use indirect configuration that work cross environments however this is the issue that we have:
    when the package is first created say you create a DB Variable called A and you enter value A in the variable to test the package. After the package development is tested, you change the configuration values to fetch data whether from an excel file or from
    an XML.
    when you run on environment A the package runs fine however when you move over to environment B it seems that first it validates against A then overwrites B - if environment A is not there anymore the package sometimes fails.
    we are changing these manually for now but I was wondering if there's a way to prevent it.
    thanks
    eddy.a

  • MPR testing is passed, but failed when upload Result Package to verify.

    Hi,
    I am attempting to certify our application using MPR-Test-Tool v4.6 for Windows Server 2012 R2.
    The MPR tool shows the testing Pass, and generated a .zip Result Package.
    But it's failed when uploads the .zip Result Package to verify in MPR web-site "Test My Apps" page, both Silver and Gold level are failed.
    In the "Test My Apps" page, I couldn't find the reason, error message or some hint for the failure.
    I am appreciate any help,
    Regards.
    Regards,

    Hello,
    Please check if you import the certificate into the Exchange server "Trusted Root Certificates".
    If there is a CA server in your domain, you also need to import your certificate into the trusted root certificates on the CA server.
    Cara Chen
    TechNet Community Support

  • Automate email notification when data package fails

    We have an transaction data load from BI to BPC using data manager. We have automated it to run once in a day by scheduling the data manager.
    But this load some times fails when the master data maintainance is not done.
    Can we send an e mail (with error message) to the user if the load fails for some reason. Presently, we need to go to the view status and find out the issue message.
    Thanks,
    Swetha

    Hi,
    I was refering to the How to documetn - "HOW TO EMAIL A BPC DATA MANAGER LOG TO A TEAM - FILES".
    Donu2019t we require any configuration settings for this? The document does not mention any thing about this. Please suggest.
    Also, kindly let us know if there is any updated version of this as we are on 7.5 version.
    Not sure how to reach "rich heilman" (author) directly. Rich, please suggest on above
    Regards,
    Swetha

  • [solved] Makepkg fails to sign package w/o asking password.

    I'm not sure when exactly this issue really started happening, but it was somewhere around the time that the new versions of Pacman and gnupg came out (a few weeks).
    I have a local ~/.makepkg.conf configured to sign any package I build with my key. The issue is that once any package completes building, and it is ready to be signed, I will sometimes be presented with a Pinentry screen to enter my password for signing the package and sometimes it will just fail to sign the package without ever asking for my password. There is no indication as to why it failed in the terminal output nor in the journal.
    This is happening on both of my Arch systems, so I know it's not just a localized issue with my one computer.
    Linux Betelgeuse 3.18.2-2-ARCH #1 SMP PREEMPT Fri Jan 9 07:37:51 CET 2015 x86_64 GNU/Linux
    Pacman, gnupg, and pinentry versions:
    [gilmoreja@Betelgeuse lib32-allegro]$ pacman -Qi pacman gnupg pinentry
    Name : pacman
    Version : 4.2.0-6
    Description : A library-based package manager with dependency support
    Architecture : x86_64
    URL : http://www.archlinux.org/pacman/
    Licenses : GPL
    Groups : base base-devel
    Provides : pacman-contrib
    Depends On : bash glibc libarchive>=3.1.2 curl>=7.39.0 gpgme pacman-mirrorlist
    archlinux-keyring
    Optional Deps : None
    Required By : cower pkgfile
    Optional For : None
    Conflicts With : pacman-contrib
    Replaces : pacman-contrib
    Installed Size : 4.22 MiB
    Packager : Allan McRae <[email protected]>
    Build Date : Sun 11 Jan 2015 11:44:40 PM CST
    Install Date : Mon 26 Jan 2015 07:13:41 AM CST
    Install Reason : Explicitly installed
    Install Script : No
    Validated By : Signature
    Name : gnupg
    Version : 2.1.1-1
    Description : Complete and free implementation of the OpenPGP standard
    Architecture : x86_64
    URL : http://www.gnupg.org/
    Licenses : GPL
    Groups : None
    Provides : dirmngr gnupg2=2.1.1
    Depends On : npth libgpg-error libgcrypt libksba libassuan pinentry bzip2 readline
    gnutls
    Optional Deps : libldap: gpg2keys_ldap [installed]
    libusb-compat: scdaemon [installed]
    Required By : gpgme
    Optional For : None
    Conflicts With : dirmngr gnupg2
    Replaces : dirmngr gnupg2
    Installed Size : 8.32 MiB
    Packager : Gaetan Bisson <[email protected]>
    Build Date : Tue 16 Dec 2014 01:39:55 PM CST
    Install Date : Wed 24 Dec 2014 06:17:22 PM CST
    Install Reason : Installed as a dependency for another package
    Install Script : Yes
    Validated By : Signature
    Name : pinentry
    Version : 0.9.0-1
    Description : a collection of simple PIN or passphrase entry dialogs which utilize the Assuan
    protocol
    Architecture : x86_64
    URL : http://gnupg.org/related_software/pinentry/
    Licenses : GPL
    Groups : None
    Provides : None
    Depends On : ncurses libcap>=2.16
    Optional Deps : gtk2: for gtk2 backend [installed]
    qt4: for qt4 backend [installed]
    Required By : gnupg
    Optional For : None
    Conflicts With : None
    Replaces : None
    Installed Size : 329.00 KiB
    Packager : Tobias Powalowski <[email protected]>
    Build Date : Wed 12 Nov 2014 05:43:08 AM CST
    Install Date : Wed 24 Dec 2014 06:17:21 PM CST
    Install Reason : Installed as a dependency for another package
    Install Script : Yes
    Validated By : Signature
    makepkg output:
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "lib32-allegro"...
    -> Generating .PKGINFO file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Signing package...
    ==> WARNING: Failed to sign package file.
    ==> Leaving fakeroot environment.
    ==> Finished making: lib32-allegro 5.0.11-1 (Mon Jan 26 08:00:43 CST 2015)
    ==> Installing package lib32-allegro with pacman -U...
    Password:
    loading packages...
    error: '/home/gilmoreja/sources/lib32-allegro/lib32-allegro-5.0.11-1-x86_64.pkg.tar.xz': package missing required signature
    ==> WARNING: Failed to install built package(s).
    ==> Cleaning up...
    Current boot's journal:
    -- Logs begin at Wed 2014-12-24 18:48:34 CST, end at Mon 2015-01-26 08:02:04 CST. --
    Jan 26 07:01:14 Betelgeuse systemd-journal[106]: Runtime journal is using 6.2M (max allowed 49.8M, trying to leave 74.8M free of 492.6M available → current limit 49.8M).
    Jan 26 07:01:14 Betelgeuse systemd-journal[106]: Permanent journal is using 272.0M (max allowed 1.9G, trying to leave 2.9G free of 8.8G available → current limit 1.9G).
    Jan 26 07:01:16 Betelgeuse systemd-journal[106]: Time spent on flushing to /var is 1.569419s for 2 entries.
    Jan 26 07:01:16 Betelgeuse kernel: Initializing cgroup subsys cpuset
    Jan 26 07:01:16 Betelgeuse kernel: Initializing cgroup subsys cpu
    Jan 26 07:01:16 Betelgeuse kernel: Initializing cgroup subsys cpuacct
    Jan 26 07:01:16 Betelgeuse kernel: Linux version 3.18.2-2-ARCH (builduser@tobias) (gcc version 4.9.2 20141224 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Jan 9 07:37:51 CET 2015
    Jan 26 07:01:16 Betelgeuse kernel: Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=9fba7516-1115-4d75-a604-841e18996568 rw
    Jan 26 07:01:16 Betelgeuse kernel: tseg: 0000000000
    Jan 26 07:01:16 Betelgeuse kernel: e820: BIOS-provided physical RAM map:
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003ffcffff] usable
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x000000003ffd0000-0x000000003ffdefff] ACPI data
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x000000003ffdf000-0x000000003fffffff] ACPI NVS
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x00000000fff80000-0x00000000ffffffff] reserved
    Jan 26 07:01:16 Betelgeuse kernel: NX (Execute Disable) protection: active
    Jan 26 07:01:16 Betelgeuse kernel: SMBIOS 2.3 present.
    Jan 26 07:01:16 Betelgeuse kernel: DMI: Magnell / , BIOS 1.04 01/21/2005
    Jan 26 07:01:17 Betelgeuse kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jan 26 07:01:17 Betelgeuse kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00:00: AGP bridge
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00.0: AGP aperture [bus addr 0xe0000000-0xe1ffffff] (old size 32MB)
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00.0: AGP aperture [bus addr 0xe0000000-0xe7ffffff] (128MB, APSIZE 0xf20)
    Jan 26 07:01:17 Betelgeuse kernel: e820: last_pfn = 0x3ffd0 max_arch_pfn = 0x400000000
    Jan 26 07:01:17 Betelgeuse kernel: MTRR default type: uncachable
    Jan 26 07:01:17 Betelgeuse kernel: MTRR fixed ranges enabled:
    Jan 26 07:01:17 Betelgeuse kernel: 00000-9FFFF write-back
    Jan 26 07:01:17 Betelgeuse kernel: A0000-EFFFF uncachable
    Jan 26 07:01:17 Betelgeuse kernel: F0000-FFFFF write-protect
    Jan 26 07:01:17 Betelgeuse kernel: MTRR variable ranges enabled:
    Jan 26 07:01:17 Betelgeuse kernel: 0 base 0000000000 mask FFC0000000 write-back
    Jan 26 07:01:17 Betelgeuse kernel: 1 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 2 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 3 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 4 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 5 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 6 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 7 disabled
    Jan 26 07:01:17 Betelgeuse kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jan 26 07:01:17 Betelgeuse kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
    Jan 26 07:01:17 Betelgeuse kernel: Scanning 1 areas for low memory corruption
    Jan 26 07:01:17 Betelgeuse kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Jan 26 07:01:17 Betelgeuse kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x00000000-0x000fffff] page 4k
    Jan 26 07:01:17 Betelgeuse kernel: BRK [0x01b36000, 0x01b36fff] PGTABLE
    Jan 26 07:01:17 Betelgeuse kernel: BRK [0x01b37000, 0x01b37fff] PGTABLE
    Jan 26 07:01:17 Betelgeuse kernel: BRK [0x01b38000, 0x01b38fff] PGTABLE
    Jan 26 07:01:17 Betelgeuse kernel: init_memory_mapping: [mem 0x3fc00000-0x3fdfffff]
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x3fc00000-0x3fdfffff] page 2M
    Jan 26 07:01:17 Betelgeuse kernel: init_memory_mapping: [mem 0x3c000000-0x3fbfffff]
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x3c000000-0x3fbfffff] page 2M
    Jan 26 07:01:17 Betelgeuse kernel: init_memory_mapping: [mem 0x00100000-0x3bffffff]
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x00100000-0x001fffff] page 4k
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x00200000-0x3bffffff] page 2M
    Jan 26 07:01:17 Betelgeuse kernel: init_memory_mapping: [mem 0x3fe00000-0x3ffcffff]
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x3fe00000-0x3ffcffff] page 4k
    Jan 26 07:01:17 Betelgeuse kernel: BRK [0x01b39000, 0x01b39fff] PGTABLE
    Jan 26 07:01:17 Betelgeuse kernel: RAMDISK: [mem 0x373b4000-0x379d1fff]
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Early table checksum verification disabled
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: RSDP 0x00000000000F7090 000014 (v00 ACPIAM)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: RSDT 0x000000003FFD0000 000030 (v01 A M I OEMRSDT 01000521 MSFT 00000097)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: FACP 0x000000003FFD0200 000081 (v02 A M I OEMFACP 01000521 MSFT 00000097)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: DSDT 0x000000003FFD03F0 003A1B (v01 258KA 258KA000 00000000 INTL 02002026)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: FACS 0x000000003FFDF000 000040
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: APIC 0x000000003FFD0390 000054 (v01 A M I OEMAPIC 01000521 MSFT 00000097)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: OEMB 0x000000003FFDF040 000108 (v01 A M I AMI_OEM 01000521 MSFT 00000097)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Local APIC address 0xfee00000
    Jan 26 07:01:17 Betelgeuse kernel: Scanning NUMA topology in Northbridge 24
    Jan 26 07:01:17 Betelgeuse kernel: No NUMA configuration found
    Jan 26 07:01:17 Betelgeuse kernel: Faking a node at [mem 0x0000000000000000-0x000000003ffcffff]
    Jan 26 07:01:17 Betelgeuse kernel: NODE_DATA(0) allocated [mem 0x3ffcc000-0x3ffcffff]
    Jan 26 07:01:17 Betelgeuse kernel: [ffffea0000000000-ffffea0000ffffff] PMD -> [ffff88003e600000-ffff88003f5fffff] on node 0
    Jan 26 07:01:17 Betelgeuse kernel: Zone ranges:
    Jan 26 07:01:17 Betelgeuse kernel: DMA [mem 0x00001000-0x00ffffff]
    Jan 26 07:01:17 Betelgeuse kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 26 07:01:17 Betelgeuse kernel: Normal empty
    Jan 26 07:01:17 Betelgeuse kernel: Movable zone start for each node
    Jan 26 07:01:17 Betelgeuse kernel: Early memory node ranges
    Jan 26 07:01:17 Betelgeuse kernel: node 0: [mem 0x00001000-0x0009efff]
    Jan 26 07:01:17 Betelgeuse kernel: node 0: [mem 0x00100000-0x3ffcffff]
    Jan 26 07:01:17 Betelgeuse kernel: Initmem setup node 0 [mem 0x00001000-0x3ffcffff]
    Jan 26 07:01:17 Betelgeuse kernel: On node 0 totalpages: 261998
    Jan 26 07:01:17 Betelgeuse kernel: DMA zone: 64 pages used for memmap
    Jan 26 07:01:17 Betelgeuse kernel: DMA zone: 21 pages reserved
    Jan 26 07:01:17 Betelgeuse kernel: DMA zone: 3998 pages, LIFO batch:0
    Jan 26 07:01:17 Betelgeuse kernel: DMA32 zone: 4032 pages used for memmap
    Jan 26 07:01:17 Betelgeuse kernel: DMA32 zone: 258000 pages, LIFO batch:31
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PM-Timer IO Port: 0x808
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Local APIC address 0xfee00000
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    Jan 26 07:01:17 Betelgeuse kernel: IOAPIC[0]: apic_id 1, version 2, address 0xfec00000, GSI 0-23
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 low level)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: IRQ0 used by override.
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: IRQ10 used by override.
    Jan 26 07:01:17 Betelgeuse kernel: Using ACPI (MADT) for SMP configuration information
    Jan 26 07:01:17 Betelgeuse kernel: smpboot: Allowing 1 CPUs, 0 hotplug CPUs
    Jan 26 07:01:17 Betelgeuse kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
    Jan 26 07:01:17 Betelgeuse kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Jan 26 07:01:17 Betelgeuse kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    Jan 26 07:01:17 Betelgeuse kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    Jan 26 07:01:17 Betelgeuse kernel: e820: [mem 0x40000000-0xfff7ffff] available for PCI devices
    Jan 26 07:01:17 Betelgeuse kernel: Booting paravirtualized kernel on bare hardware
    Jan 26 07:01:17 Betelgeuse kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:1 nr_node_ids:1
    Jan 26 07:01:17 Betelgeuse kernel: PERCPU: Embedded 30 pages/cpu @ffff88003fc00000 s82880 r8192 d31808 u2097152
    Jan 26 07:01:17 Betelgeuse kernel: pcpu-alloc: s82880 r8192 d31808 u2097152 alloc=1*2097152
    Jan 26 07:01:17 Betelgeuse kernel: pcpu-alloc: [0] 0
    Jan 26 07:01:17 Betelgeuse kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 257881
    Jan 26 07:01:17 Betelgeuse kernel: Policy zone: DMA32
    Jan 26 07:01:17 Betelgeuse kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=9fba7516-1115-4d75-a604-841e18996568 rw
    Jan 26 07:01:17 Betelgeuse kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: AGP: Checking aperture...
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00:00: AGP bridge
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00.0: AGP aperture [bus addr 0xe0000000-0xe1ffffff] (old size 32MB)
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00.0: AGP aperture [bus addr 0xe0000000-0xe7ffffff] (128MB, APSIZE 0xf20)
    Jan 26 07:01:17 Betelgeuse kernel: AGP: Node 0: aperture [bus addr 0xe0000000-0xe7ffffff] (128MB)
    Jan 26 07:01:17 Betelgeuse kernel: Memory: 1013368K/1047992K available (5478K kernel code, 908K rwdata, 1720K rodata, 1160K init, 1184K bss, 34624K reserved)
    Jan 26 07:01:17 Betelgeuse kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Jan 26 07:01:17 Betelgeuse kernel: Preemptible hierarchical RCU implementation.
    Jan 26 07:01:17 Betelgeuse kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 26 07:01:17 Betelgeuse kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 26 07:01:17 Betelgeuse kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=1.
    Jan 26 07:01:17 Betelgeuse kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
    Jan 26 07:01:17 Betelgeuse kernel: NR_IRQS:8448 nr_irqs:256 0
    Jan 26 07:01:17 Betelgeuse kernel: spurious 8259A interrupt: IRQ7.
    Jan 26 07:01:17 Betelgeuse kernel: Console: colour dummy device 80x25
    Jan 26 07:01:17 Betelgeuse kernel: console [tty0] enabled
    Jan 26 07:01:17 Betelgeuse kernel: allocated 4194304 bytes of page_cgroup
    Jan 26 07:01:17 Betelgeuse kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 26 07:01:17 Betelgeuse kernel: tsc: Fast TSC calibration using PIT
    Jan 26 07:01:17 Betelgeuse kernel: tsc: Detected 798.222 MHz processor
    Jan 26 07:01:17 Betelgeuse kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 1597.96 BogoMIPS (lpj=2660740)
    Jan 26 07:01:17 Betelgeuse kernel: pid_max: default: 32768 minimum: 301
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Core revision 20140926
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: All ACPI Tables successfully acquired
    Jan 26 07:01:17 Betelgeuse kernel: Security Framework initialized
    Jan 26 07:01:17 Betelgeuse kernel: Yama: becoming mindful.
    Jan 26 07:01:17 Betelgeuse kernel: Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: Initializing cgroup subsys memory
    Jan 26 07:01:17 Betelgeuse kernel: Initializing cgroup subsys devices
    Jan 26 07:01:17 Betelgeuse kernel: Initializing cgroup subsys freezer
    Jan 26 07:01:17 Betelgeuse kernel: Initializing cgroup subsys net_cls
    Jan 26 07:01:17 Betelgeuse kernel: Initializing cgroup subsys blkio
    Jan 26 07:01:17 Betelgeuse kernel: mce: CPU supports 5 MCE banks
    Jan 26 07:01:17 Betelgeuse kernel: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
    Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
    Jan 26 07:01:17 Betelgeuse kernel: Freeing SMP alternatives memory: 20K (ffffffff81a07000 - ffffffff81a0c000)
    Jan 26 07:01:17 Betelgeuse kernel: ftrace: allocating 20920 entries in 82 pages
    Jan 26 07:01:17 Betelgeuse kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jan 26 07:01:17 Betelgeuse kernel: smpboot: CPU0: AMD Athlon(tm) 64 Processor 3400+ (fam: 0f, model: 04, stepping: 0a)
    Jan 26 07:01:17 Betelgeuse kernel: Performance Events: AMD PMU driver.
    Jan 26 07:01:17 Betelgeuse kernel: ... version: 0
    Jan 26 07:01:17 Betelgeuse kernel: ... bit width: 48
    Jan 26 07:01:17 Betelgeuse kernel: ... generic registers: 4
    Jan 26 07:01:17 Betelgeuse kernel: ... value mask: 0000ffffffffffff
    Jan 26 07:01:17 Betelgeuse kernel: ... max period: 00007fffffffffff
    Jan 26 07:01:17 Betelgeuse kernel: ... fixed-purpose events: 0
    Jan 26 07:01:17 Betelgeuse kernel: ... event mask: 000000000000000f
    Jan 26 07:01:17 Betelgeuse kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jan 26 07:01:17 Betelgeuse kernel: x86: Booted up 1 node, 1 CPUs
    Jan 26 07:01:17 Betelgeuse kernel: smpboot: Total of 1 processors activated (1597.96 BogoMIPS)
    Jan 26 07:01:17 Betelgeuse kernel: devtmpfs: initialized
    Jan 26 07:01:17 Betelgeuse kernel: PM: Registering ACPI NVS region [mem 0x3ffdf000-0x3fffffff] (135168 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: pinctrl core: initialized pinctrl subsystem
    Jan 26 07:01:17 Betelgeuse kernel: RTC time: 13:01:08, date: 01/26/15
    Jan 26 07:01:17 Betelgeuse kernel: NET: Registered protocol family 16
    Jan 26 07:01:17 Betelgeuse kernel: cpuidle: using governor ladder
    Jan 26 07:01:17 Betelgeuse kernel: cpuidle: using governor menu
    Jan 26 07:01:17 Betelgeuse kernel: node 0 link 0: io port [1000, ffffff]
    Jan 26 07:01:17 Betelgeuse kernel: TOM: 0000000040000000 aka 1024M
    Jan 26 07:01:17 Betelgeuse kernel: node 0 link 0: mmio [a0000, bffff]
    Jan 26 07:01:17 Betelgeuse kernel: node 0 link 0: mmio [40000000, ffffffff]
    Jan 26 07:01:17 Betelgeuse kernel: bus: [bus 00-ff] on node 0 link 0
    Jan 26 07:01:17 Betelgeuse kernel: bus: 00 [io 0x0000-0xffff]
    Jan 26 07:01:17 Betelgeuse kernel: bus: 00 [mem 0x000a0000-0x000bffff]
    Jan 26 07:01:17 Betelgeuse kernel: bus: 00 [mem 0x40000000-0xfcffffffff]
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: bus type PCI registered
    Jan 26 07:01:17 Betelgeuse kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Jan 26 07:01:17 Betelgeuse kernel: PCI: Using configuration type 1 for base access
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Added _OSI(Module Device)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Added _OSI(Processor Device)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Actual Package length (202) is larger than NumElements field (4), truncated
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Interpreter enabled
    Jan 26 07:01:17 Betelgeuse kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140926/hwxface-580)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140926/hwxface-580)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: (supports S0 S3 S4 S5)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 26 07:01:17 Betelgeuse kernel: PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    Jan 26 07:01:17 Betelgeuse kernel: [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: host bridge window [mem 0x40000000-0xffffffff] (ignored)
    Jan 26 07:01:17 Betelgeuse kernel: PCI: root bus 00: hardware-probed resources
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
    Jan 26 07:01:17 Betelgeuse kernel: PCI host bridge to bus 0000:00
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:00: root bus resource [mem 0x40000000-0xfcffffffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:00.0: [1039:0755] type 00 class 0x060000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:00.0: reg 0x10: [mem 0xe0000000-0xe7ffffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:01.0: [1039:0002] type 01 class 0x060400
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.0: [1039:0008] type 00 class 0x060100
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.0: Enabling SiS 96x SMBus
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.1: [1039:0016] type 00 class 0x0c0500
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.1: reg 0x20: [io 0x0c00-0x0c1f]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: [1039:5513] type 00 class 0x010180
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: reg 0x20: [io 0xffa0-0xffaf]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: legacy IDE quirk: reg 0x14: [io 0x03f6]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: legacy IDE quirk: reg 0x1c: [io 0x0376]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: [1039:7013] type 00 class 0x070300
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: reg 0x10: [io 0xe400-0xe4ff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: reg 0x14: [io 0xe000-0xe07f]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: PME# supported from D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: System wakeup disabled by ACPI
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: [1039:7012] type 00 class 0x040100
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: reg 0x10: [io 0xe800-0xe8ff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: reg 0x14: [io 0xec00-0xec7f]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: PME# supported from D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: System wakeup disabled by ACPI
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.0: [1039:7001] type 00 class 0x0c0310
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.0: reg 0x10: [mem 0xdfffd000-0xdfffdfff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.1: [1039:7001] type 00 class 0x0c0310
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.1: reg 0x10: [mem 0xdfffe000-0xdfffefff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.3: [1039:7002] type 00 class 0x0c0320
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.3: reg 0x10: [mem 0xdffff000-0xdfffffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: [1039:0900] type 00 class 0x020000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: reg 0x10: [io 0xd800-0xd8ff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: reg 0x14: [mem 0xdfffc000-0xdfffcfff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: reg 0x30: [mem 0xdffc0000-0xdffdffff pref]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: System wakeup disabled by ACPI
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:06.0: [104c:8023] type 00 class 0x0c0010
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:06.0: reg 0x10: [mem 0xdfffb800-0xdfffbfff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:06.0: reg 0x14: [mem 0xdfff4000-0xdfff7fff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:06.0: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:06.0: PME# supported from D0 D1 D2 D3hot
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.0: [1217:7114] type 02 class 0x060700
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.0: reg 0x10: [mem 0x00000000-0x00000fff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.0: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.1: [1217:7114] type 02 class 0x060700
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.1: reg 0x10: [mem 0x00000000-0x00000fff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.1: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.1: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.2: [1217:7110] type 00 class 0x088000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.2: reg 0x10: [mem 0xdfffa000-0xdfffafff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.2: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.2: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:0b.0: [1814:0201] type 00 class 0x028000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:0b.0: reg 0x10: [mem 0xdfff8000-0xdfff9fff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:18.0: [1022:1100] type 00 class 0x060000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:18.1: [1022:1101] type 00 class 0x060000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:18.2: [1022:1102] type 00 class 0x060000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:18.3: [1022:1103] type 00 class 0x060000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: [1002:4e50] type 00 class 0x030000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: reg 0x10: [mem 0xd0000000-0xd7ffffff pref]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: reg 0x14: [io 0xc800-0xc8ff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: reg 0x18: [mem 0xdfef0000-0xdfefffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: reg 0x30: [mem 0xdfec0000-0xdfedffff pref]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:01.0: bridge window [mem 0xdfe00000-0xdfefffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:01.0: bridge window [mem 0xcfd00000-0xdfcfffff pref]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.0: bridge configuration invalid ([bus 00-00]), reconfiguring
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.1: bridge configuration invalid ([bus 00-00]), reconfiguring
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 05
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 09
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:00: on NUMA node 0
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 *11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 *11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 *10 11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 7 10 11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 *11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 7 10 11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled.
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 7 10 11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI : EC: GPE = 0xb, I/O: command/status = 0x66, data = 0x62
    Jan 26 07:01:17 Betelgeuse kernel: vgaarb: setting as boot device: PCI:0000:01:00.0
    Jan 26 07:01:17 Betelgeuse kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 26 07:01:17 Betelgeuse kernel: vgaarb: loaded
    Jan 26 07:01:17 Betelgeuse kernel: vgaarb: bridge control possible 0000:01:00.0
    Jan 26 07:01:17 Betelgeuse kernel: PCI: Using ACPI for IRQ routing
    Jan 26 07:01:17 Betelgeuse kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 26 07:01:17 Betelgeuse kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Jan 26 07:01:17 Betelgeuse kernel: e820: reserve RAM buffer [mem 0x3ffd0000-0x3fffffff]
    Jan 26 07:01:17 Betelgeuse kernel: NetLabel: Initializing
    Jan 26 07:01:17 Betelgeuse kernel: NetLabel: domain hash size = 128
    Jan 26 07:01:17 Betelgeuse kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 26 07:01:17 Betelgeuse kernel: NetLabel: unlabeled traffic allowed by default
    Jan 26 07:01:17 Betelgeuse kernel: Switched to clocksource refined-jiffies
    Jan 26 07:01:17 Betelgeuse kernel: pnp: PnP ACPI init
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP030b (active)
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:02: Plug and Play ACPI device, IDs SYN0801 SYN0800 PNP0f13 (active)
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:03: [dma 1]
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:03: Plug and Play ACPI device, IDs NSC6001 (active)
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:04: [dma 0 disabled]
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0401 (active)
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [io 0x0480-0x048f] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [io 0x04d0-0x04d1] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [io 0x0800-0x087f] could not be reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [io 0x0880-0x08ff] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [io 0x0c00-0x0c1f] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [mem 0xfff80000-0xffffffff] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [mem 0xffe80000-0xffefffff] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [mem 0xfed00000-0xfed003ff] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 07:01:17 Betelgeuse kernel: system 00:06: [mem 0xfec00000-0xfec00fff] could not be reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:06: [mem 0xfee00000-0xfee00fff] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 07:01:18 Betelgeuse kernel: system 00:07: [mem 0x00000000-0x0009ffff] could not be reserved
    Jan 26 07:01:18 Betelgeuse kernel: system 00:07: [mem 0x000c0000-0x000d0fff] could not be reserved
    Jan 26 07:01:18 Betelgeuse kernel: system 00:07: [mem 0x000e0000-0x000fffff] could not be reserved
    Jan 26 07:01:18 Betelgeuse kernel: system 00:07: [mem 0x00100000-0x3fffffff] could not be reserved
    Jan 26 07:01:18 Betelgeuse kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jan 26 07:01:18 Betelgeuse kernel: pnp: PnP ACPI: found 8 devices
    Jan 26 07:01:18 Betelgeuse kernel: Switched to clocksource acpi_pm
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: BAR 0: assigned [mem 0x40000000-0x40000fff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: BAR 15: assigned [mem 0x44000000-0x47ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: BAR 16: assigned [mem 0x48000000-0x4bffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: BAR 0: assigned [mem 0x4c000000-0x4c000fff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: BAR 15: assigned [mem 0x50000000-0x53ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: BAR 16: assigned [mem 0x54000000-0x57ffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: BAR 13: assigned [io 0x1000-0x10ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: BAR 14: assigned [io 0x1400-0x14ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: BAR 13: assigned [io 0x1800-0x18ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: BAR 14: assigned [io 0x1c00-0x1cff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:01.0: bridge window [mem 0xdfe00000-0xdfefffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:01.0: bridge window [mem 0xcfd00000-0xdfcfffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: CardBus bridge to [bus 02-05]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: bridge window [io 0x1000-0x10ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: bridge window [io 0x1400-0x14ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: bridge window [mem 0x44000000-0x47ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: bridge window [mem 0x48000000-0x4bffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: CardBus bridge to [bus 06-09]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: bridge window [io 0x1800-0x18ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: bridge window [io 0x1c00-0x1cff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: bridge window [mem 0x50000000-0x53ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: bridge window [mem 0x54000000-0x57ffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:00: resource 6 [mem 0x40000000-0xfcffffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:01: resource 1 [mem 0xdfe00000-0xdfefffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:01: resource 2 [mem 0xcfd00000-0xdfcfffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:02: resource 0 [io 0x1000-0x10ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:02: resource 1 [io 0x1400-0x14ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:02: resource 2 [mem 0x44000000-0x47ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:02: resource 3 [mem 0x48000000-0x4bffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:06: resource 0 [io 0x1800-0x18ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:06: resource 1 [io 0x1c00-0x1cff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:06: resource 2 [mem 0x50000000-0x53ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:06: resource 3 [mem 0x54000000-0x57ffffff]
    Jan 26 07:01:18 Betelgeuse kernel: NET: Registered protocol family 2
    Jan 26 07:01:18 Betelgeuse kernel: TCP established hash table entries: 8192 (order: 4, 65536 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: TCP: Hash tables configured (established 8192 bind 8192)
    Jan 26 07:01:18 Betelgeuse kernel: TCP: reno registered
    Jan 26 07:01:18 Betelgeuse kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: NET: Registered protocol family 1
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:01:00.0: Video device with shadowed ROM
    Jan 26 07:01:18 Betelgeuse kernel: PCI: CLS 64 bytes, default 64
    Jan 26 07:01:18 Betelgeuse kernel: Unpacking initramfs...
    Jan 26 07:01:18 Betelgeuse kernel: Freeing initrd memory: 6264K (ffff8800373b4000 - ffff8800379d2000)
    Jan 26 07:01:18 Betelgeuse kernel: microcode: AMD CPU family 0xf not supported
    Jan 26 07:01:18 Betelgeuse kernel: Scanning for low memory corruption every 60 seconds
    Jan 26 07:01:18 Betelgeuse kernel: futex hash table entries: 256 (order: 2, 16384 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: Initialise system trusted keyring
    Jan 26 07:01:18 Betelgeuse kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 26 07:01:18 Betelgeuse kernel: zpool: loaded
    Jan 26 07:01:18 Betelgeuse kernel: zbud: loaded
    Jan 26 07:01:18 Betelgeuse kernel: VFS: Disk quotas dquot_6.5.2
    Jan 26 07:01:18 Betelgeuse kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: msgmni has been set to 1991
    Jan 26 07:01:18 Betelgeuse kernel: Key type big_key registered
    Jan 26 07:01:18 Betelgeuse kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 26 07:01:18 Betelgeuse kernel: io scheduler noop registered
    Jan 26 07:01:18 Betelgeuse kernel: io scheduler deadline registered
    Jan 26 07:01:18 Betelgeuse kernel: io scheduler cfq registered (default)
    Jan 26 07:01:18 Betelgeuse kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jan 26 07:01:18 Betelgeuse kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Jan 26 07:01:18 Betelgeuse kernel: vesafb: mode is 1024x768x32, linelength=4096, pages=0
    Jan 26 07:01:18 Betelgeuse kernel: vesafb: scrolling: redraw
    Jan 26 07:01:18 Betelgeuse kernel: vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    Jan 26 07:01:18 Betelgeuse kernel: vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90000200000, using 3072k, total 3072k
    Jan 26 07:01:18 Betelgeuse kernel: Console: switching to colour frame buffer device 128x48
    Jan 26 07:01:18 Betelgeuse kernel: fb0: VESA VGA frame buffer device
    Jan 26 07:01:18 Betelgeuse kernel: GHES: HEST is not enabled!
    Jan 26 07:01:18 Betelgeuse kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 26 07:01:18 Betelgeuse kernel: platform serial8250: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 921600) is a NS16550A
    Jan 26 07:01:18 Betelgeuse kernel: Linux agpgart interface v0.103
    Jan 26 07:01:18 Betelgeuse kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
    Jan 26 07:01:18 Betelgeuse kernel: rtc_cmos 00:00: alarms up to one month, 114 bytes nvram
    Jan 26 07:01:18 Betelgeuse kernel: ledtrig-cpu: registered to indicate activity on CPUs
    Jan 26 07:01:18 Betelgeuse kernel: TCP: cubic registered
    Jan 26 07:01:18 Betelgeuse kernel: NET: Registered protocol family 10
    Jan 26 07:01:18 Betelgeuse kernel: NET: Registered protocol family 17
    Jan 26 07:01:18 Betelgeuse kernel: Loading compiled-in X.509 certificates
    Jan 26 07:01:18 Betelgeuse kernel: registered taskstats version 1
    Jan 26 07:01:18 Betelgeuse kernel: Magic number: 15:262:29
    Jan 26 07:01:18 Betelgeuse kernel: rtc_cmos 00:00: setting system clock to 2015-01-26 13:01:09 UTC (1422277269)
    Jan 26 07:01:18 Betelgeuse kernel: PM: Hibernation image not present or could not be loaded.
    Jan 26 07:01:18 Betelgeuse kernel: Freeing unused kernel memory: 1160K (ffffffff818e5000 - ffffffff81a07000)
    Jan 26 07:01:18 Betelgeuse kernel: Write protecting the kernel read-only data: 8192k
    Jan 26 07:01:18 Betelgeuse kernel: Freeing unused kernel memory: 656K (ffff88000155c000 - ffff880001600000)
    Jan 26 07:01:18 Betelgeuse kernel: Freeing unused kernel memory: 328K (ffff8800017ae000 - ffff880001800000)
    Jan 26 07:01:18 Betelgeuse kernel: random: systemd-tmpfile urandom read with 2 bits of entropy available
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Initialized drm 1.1.0 20060810
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon kernel modesetting enabled.
    Jan 26 07:01:18 Betelgeuse kernel: checking generic (d0000000 300000) vs hw (d0000000 8000000)
    Jan 26 07:01:18 Betelgeuse kernel: fb: switching to radeondrmfb from VESA VGA
    Jan 26 07:01:18 Betelgeuse kernel: Console: switching to colour dummy device 80x25
    Jan 26 07:01:18 Betelgeuse kernel: [drm] initializing kernel modesetting (RV350 0x1002:0x4E50 0x1584:0x2324).
    Jan 26 07:01:18 Betelgeuse kernel: [drm] register mmio base: 0xDFEF0000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] register mmio size: 65536
    Jan 26 07:01:18 Betelgeuse kernel: [drm:radeon_agp_init] *ERROR* Unable to acquire AGP: -19
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Forcing AGP to PCI mode
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Generation 2 PCI interface, using max accessible memory
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: VRAM: 128M 0x00000000D0000000 - 0x00000000D7FFFFFF (128M used)
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: GTT: 512M 0x00000000B0000000 - 0x00000000CFFFFFFF
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Detected VRAM RAM=128M, BAR=128M
    Jan 26 07:01:18 Betelgeuse kernel: [drm] RAM width 128bits DDR
    Jan 26 07:01:18 Betelgeuse kernel: [TTM] Zone kernel: Available graphics memory: 510898 kiB
    Jan 26 07:01:18 Betelgeuse kernel: [TTM] Initializing pool allocator
    Jan 26 07:01:18 Betelgeuse kernel: [TTM] Initializing DMA pool allocator
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: 128M of VRAM memory ready
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: 512M of GTT memory ready.
    Jan 26 07:01:18 Betelgeuse kernel: [drm] GART: num cpu pages 131072, num gpu pages 131072
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: power management initialized
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
    Jan 26 07:01:18 Betelgeuse kernel: [drm] PCI GART of 512M enabled (table at 0x0000000037980000).
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: WB enabled
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x00000000b0000000 and cpu addr 0xffff88003791e000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Driver supports precise vblank timestamp query.
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: irq initialized.
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Loading R300 Microcode
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: ring at 0x00000000B0001000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] ring test succeeded in 2 usecs
    Jan 26 07:01:18 Betelgeuse kernel: [drm] ib test succeeded in 0 usecs
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Panel ID String: Samsung LTN154X1 WXGA
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Panel Size 1280x800
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Radeon Display Connectors
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Connector 0:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] VGA-1
    Jan 26 07:01:18 Betelgeuse kernel: [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Encoders:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] CRT1: INTERNAL_DAC1
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Connector 1:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] LVDS-1
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Encoders:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] LCD1: INTERNAL_LVDS
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Connector 2:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] SVIDEO-1
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Encoders:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] TV1: INTERNAL_DAC2
    Jan 26 07:01:18 Betelgeuse kernel: [drm] fb mappable at 0xD0040000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] vram apper at 0xD0000000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] size 4096000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] fb depth is 24
    Jan 26 07:01:18 Betelgeuse kernel: [drm] pitch is 5120
    Jan 26 07:01:18 Betelgeuse kernel: fbcon: radeondrmfb (fb0) is primary device
    Jan 26 07:01:18 Betelgeuse kernel: Console: switching to colour frame buffer device 160x50
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: registered panic notifier
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Initialized radeon 2.40.0 20080528 for 0000:01:00.0 on minor 0
    Jan 26 07:01:18 Betelgeuse kernel: i8042: PNP: PS/2 Controller [PNP030b:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Jan 26 07:01:18 Betelgeuse kernel: i8042: Detected active multiplexing controller, rev 1.0
    Jan 26 07:01:18 Betelgeuse kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 26 07:01:18 Betelgeuse kernel: serio: i8042 AUX0 port at 0x60,0x64 irq 12
    Jan 26 07:01:18 Betelgeuse kernel: serio: i8042 AUX1 port at 0x60,0x64 irq 12
    Jan 26 07:01:18 Betelgeuse kernel: serio: i8042 AUX2 port at 0x60,0x64 irq 12
    Jan 26 07:01:18 Betelgeuse kernel: serio: i8042 AUX3 port at 0x60,0x64 irq 12
    Jan 26 07:01:18 Betelgeuse kernel: SCSI subsystem initialized
    Jan 26 07:01:18 Betelgeuse kernel: ACPI: bus type USB registered
    Jan 26 07:01:18 Betelgeuse kernel: usbcore: registered new interface driver usbfs
    Jan 26 07:01:18 Betelgeuse kernel: usbcore: registered new interface driver hub
    Jan 26 07:01:18 Betelgeuse kernel: usbcore: registered new device driver usb
    Jan 26 07:01:18 Betelgeuse kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci: EHCI PCI platform driver
    Jan 26 07:01:18 Betelgeuse kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci: OHCI PCI platform driver
    Jan 26 07:01:18 Betelgeuse kernel: libata version 3.00 loaded.
    Jan 26 07:01:18 Betelgeuse kernel: firewire_ohci 0000:00:06.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci 0000:00:03.3: EHCI Host Controller
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci 0000:00:03.3: new USB bus registered, assigned bus number 1
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci 0000:00:03.3: cache line size of 64 is not supported
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci 0000:00:03.3: irq 23, io mem 0xdffff000
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci 0000:00:03.3: USB 2.0 started, EHCI 1.00
    Jan 26 07:01:18 Betelgeuse kernel: hub 1-0:1.0: USB hub found
    Jan 26 07:01:18 Betelgeuse kernel: hub 1-0:1.0: 6 ports detected
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.0: OHCI PCI host controller
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.0: new USB bus registered, assigned bus number 2
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.0: irq 20, io mem 0xdfffd000
    Jan 26 07:01:18 Betelgeuse kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jan 26 07:01:18 Betelgeuse kernel: hub 2-0:1.0: USB hub found
    Jan 26 07:01:18 Betelgeuse kernel: hub 2-0:1.0: 3 ports detected
    Jan 26 07:01:18 Betelgeuse kernel: pata_sis 0000:00:02.5: version 0.5.2
    Jan 26 07:01:18 Betelgeuse kernel: pata_sis 0000:00:02.5: SiS 962/963 MuTIOL IDE UDMA133 controller
    Jan 26 07:01:18 Betelgeuse kernel: scsi host0: pata_sis
    Jan 26 07:01:18 Betelgeuse kernel: scsi host1: pata_sis
    Jan 26 07:01:18 Betelgeuse kernel: ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
    Jan 26 07:01:18 Betelgeuse kernel: ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.1: OHCI PCI host controller
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.1: new USB bus registered, assigned bus number 3
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.1: irq 21, io mem 0xdfffe000
    Jan 26 07:01:18 Betelgeuse kernel: hub 3-0:1.0: USB hub found
    Jan 26 07:01:18 Betelgeuse kernel: hub 3-0:1.0: 3 ports detected
    Jan 26 07:01:18 Betelgeuse kernel: ata1.00: ATA-6: TOSHIBA MK1032GAX, AB211A, max UDMA/100
    Jan 26 07:01:18 Betelgeuse kernel: ata1.00: 195371568 sectors, multi 16: LBA48
    Jan 26 07:01:18 Betelgeuse kernel: ata1.00: limited to UDMA/33 due to 40-wire cable
    Jan 26 07:01:18 Betelgeuse kernel: ata1.00: configured for UDMA/33
    Jan 26 07:01:18 Betelgeuse kernel: scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK1032GA 1A PQ: 0 ANSI: 5
    Jan 26 07:01:18 Betelgeuse kernel: usb 1-3: new high-speed USB device number 3 using ehci-pci
    Jan 26 07:01:18 Betelgeuse kernel: ata2.00: ATAPI: Slimtype DVDRW SOSW-852S, PSX3, max UDMA/33
    Jan 26 07:01:18 Betelgeuse kernel: ata2.00: configured for UDMA/33
    Jan 26 07:01:18 Betelgeuse kernel: scsi 1:0:0:0: CD-ROM Slimtype DVDRW SOSW-852S PSX3 PQ: 0 ANSI: 5
    Jan 26 07:01:18 Betelgeuse kernel: sd 0:0:0:0: [sda] 195371568 512-byte logical blocks: (100 GB/93.1 GiB)
    Jan 26 07:01:18 Betelgeuse kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 26 07:01:18 Betelgeuse kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 26 07:01:18 Betelgeuse kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jan 26 07:01:18 Betelgeuse kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
    Jan 26 07:01:18 Betelgeuse kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jan 26 07:01:18 Betelgeuse kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Jan 26 07:01:18 Betelgeuse kernel: firewire_core 0000:00:06.0: created device fw0: GUID 00030d5325828ec4, S400
    Jan 26 07:01:18 Betelgeuse kernel: tsc: Refined TSC clocksource calibration: 798.238 MHz
    Jan 26 07:01:18 Betelgeuse kernel: sda: sda1 sda2 sda3 < sda5 sda6 >
    Jan 26 07:01:18 Betelgeuse kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 26 07:01:18 Betelgeuse kernel: usb 2-1: new low-speed USB device number 2 using ohci-pci
    Jan 26 07:01:18 Betelgeuse kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Jan 26 07:01:18 Betelgeuse kernel: usbcore: registered new interface driver usbhid
    Jan 26 07:01:18 Betelgeuse kernel: usbhid: USB HID core driver
    Jan 26 07:01:18 Betelgeuse kernel: input: Microsoft Microsoft® Comfort Mouse 4500 as /devices/pci0000:00/0000:00:03.0/usb2/2-1/2-1:1.0/0003:045E:076C.0001/input/input5
    Jan 26 07:01:18 Betelgeuse kernel: microsoft 0003:045E:076C.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Microsoft® Comfort Mouse 4500] on usb-0000:00:03.0-1/input0
    Jan 26 07:01:18 Betelgeuse kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    Jan 26 07:01:18 Betelgeuse kernel: Switched to clocksource tsc
    Jan 26 07:01:18 Betelgeuse kernel: random: nonblocking pool is initialized
    Jan 26 07:01:18 Betelgeuse systemd[1]: systemd 218 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
    Jan 26 07:01:18 Betelgeuse systemd[1]: Detected architecture 'x86-64'.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Set hostname to <Betelgeuse>.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Remote File Systems.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Reached target Remote File Systems.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Encrypted Volumes.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Reached target Encrypted Volumes.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Expecting device dev-sda2.device...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Root Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Created slice Root Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting User and Session Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Created slice User and Session Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on Journal Audit Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Device-mapper event daemon FIFOs.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting udev Control Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on udev Control Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting LVM2 metadata daemon socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on LVM2 metadata daemon socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting System Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Created slice System Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Slices.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Reached target Slices.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting system-getty.slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Created slice system-getty.slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting udev Kernel Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on udev Kernel Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Expecting device dev-sda6.device...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Journal Socket (/dev/log).
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on Journal Socket (/dev/log).
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Journal Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on Journal Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Journal Service...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting Huge Pages File System...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Setup Virtual Console...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started File System Check on Root Device.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting Debug File System...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting udev Coldplug all Devices...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Remount Root and Kernel File Systems...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting POSIX Message Queue File System...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting Temporary Directory...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting system-systemd\x2dfsck.slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Created slice system-systemd\x2dfsck.slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Delayed Shutdown Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on Delayed Shutdown Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Expecting device dev-sda1.device...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Create list of required static device nodes for the current kernel...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Set Up Additional Binary Formats...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Load Kernel Modules.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounted FUSE Control File System.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Apply Kernel Variables...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting Configuration File System...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 117 (systemd-binfmt)
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting Arbitrary Executable File Formats File System...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Create list of required static device nodes for the current kernel.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started udev Coldplug all Devices.
    Jan 26 07:01:18 Betelgeuse kernel: EXT4-fs (sda5): re-mounted. Opts: data=ordered
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Remount Root and Kernel File Systems.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Load/Save Random Seed...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Rebuild Dynamic Linker Cache.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started First Boot Wizard.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Create System Users.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Starting Create Static Device Nodes in /dev...
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Rebuild Hardware Database.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted Arbitrary Executable File Formats File System.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted Debug File System.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted Huge Pages File System.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted POSIX Message Queue File System.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted Configuration File System.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted Temporary Directory.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Apply Kernel Variables.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Load/Save Random Seed.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Set Up Additional Binary Formats.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Create Static Device Nodes in /dev.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Starting udev Kernel Device Manager...
    Jan 26 07:01:19 Betelgeuse systemd[1]: Starting Local File Systems (Pre).
    Jan 26 07:01:19 Betelgeuse systemd[1]: Reached target Local File Systems (Pre).
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Setup Virtual Console.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started udev Kernel Device Manager.
    Jan 26 07:01:19 Betelgeuse kernel: tsc: Marking TSC unstable due to TSC halts in idle
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: acpi_idle registered with cpuidle
    Jan 26 07:01:19 Betelgeuse kernel: Switched to clocksource acpi_pm
    Jan 26 07:01:19 Betelgeuse kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/device:03/PNP0C0D:00/input/input6
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Lid Switch [LID]
    Jan 26 07:01:19 Betelgeuse kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Sleep Button [SLPB]
    Jan 26 07:01:19 Betelgeuse kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Power Button [PWRB]
    Jan 26 07:01:19 Betelgeuse kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input9
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Power Button [PWRF]
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: AC Adapter [AC0] (on-line)
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Battery Slot [BAT0] (battery present)
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    Jan 26 07:01:19 Betelgeuse kernel: [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    Jan 26 07:01:19 Betelgeuse kernel: acpi device:02: registered as cooling_device1
    Jan 26 07:01:19 Betelgeuse kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/device:00/LNXVIDEO:00/input/input10
    Jan 26 07:01:19 Betelgeuse kernel: parport_pc 00:04: reported by Plug and Play ACPI
    Jan 26 07:01:19 Betelgeuse kernel: parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE,EPP]
    Jan 26 07:01:19 Betelgeuse kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Thermal Zone [THRM] (75 C)
    Jan 26 07:01:19 Betelgeuse kernel: sis96x_smbus 0000:00:02.1: SiS96x SMBus base address: 0x0c00
    Jan 26 07:01:19 Betelgeuse kernel: NET: Registered protocol family 23
    Jan 26 07:01:19 Betelgeuse kernel: agpgart-amd64 0000:00:00.0: AGP bridge [1039/0755]
    Jan 26 07:01:19 Betelgeuse kernel: agpgart-amd64 0000:00:00.0: AGP aperture is 128M @ 0xe0000000
    Jan 26 07:01:19 Betelgeuse systemd-journal[106]: Journal started
    Jan 26 07:01:15 Betelgeuse systemd-udevd[143]: starting version 218
    Jan 26 07:01:19 Betelgeuse systemd[1]: Starting Flush Journal to Persistent Storage...
    Jan 26 07:01:20 Betelgeuse systemd[1]: Found device TOSHIBA_MK1032GAX 1.
    Jan 26 07:01:20 Betelgeuse systemd[1]: Starting File System Check on /dev/sda1...
    Jan 26 07:01:20 Betelgeuse systemd[1]: Started Journal Service.
    Jan 26 07:01:20 Betelgeuse kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, chip->init
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, Found chip at base=0x02e
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, driver loaded (Dag Brattli)
    Jan 26 07:01:20 Betelgeuse kernel: nsc_ircc_open(), can't get iobase of 0x2f8
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, Found chip at base=0x02e
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, driver loaded (Dag Brattli)
    Jan 26 07:01:20 Betelgeuse kernel: nsc_ircc_open(), can't get iobase of 0x2f8
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, chip->init
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, Found chip at base=0x02e
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, driver loaded (Dag Brattli)
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc 00:03: disabled
    Jan 26 07:01:20 Betelgeuse kernel: sis900.c: v1.08.10 Apr. 2 2006
    Jan 26 07:01:20 Betelgeuse kernel: mousedev: PS/2 mouse device common for all mice
    Jan 26 07:01:20 Betelgeuse kernel: snd_intel8x0 0000:00:02.7: intel8x0_measure_ac97_clock: measured 52717 usecs (2536 samples)
    Jan 26 07:01:20 Betelgeuse kernel: snd_intel8x0 0000:00:02.7: clocking to 48000
    Jan 26 07:01:20 Betelgeuse kernel: 0000:00:04.0: Realtek RTL8201 PHY transceiver found at address 1.
    Jan 26 07:01:20 Betelgeuse kernel: 0000:00:04.0: Using transceiver found at address 1 as default
    Jan 26 07:01:20 Betelgeuse kernel: eth0: SiS 900 PCI Fast Ethernet at 0x000000000001d800, IRQ 19, 00:03:0d:32:21:af
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.0: CardBus bridge found [1584:3005]
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.0: O2: enabling read prefetch/write burst. If you experience problems or performance issues, use the yenta_socket parameter 'o2_speedup=off'
    Jan 26 07:01:20 Betelgeuse kernel: input: PC Speaker as /devices/platform/pcspkr/input/input11
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.0: ISA IRQ mask 0x0a38, PCI irq 17
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.0: Socket status: 30000820
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.1: CardBus bridge found [1584:3005]
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.1: ISA IRQ mask 0x0a38, PCI irq 17
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.1: Socket status: 30000006
    Jan 26 07:01:20 Betelgeuse kernel: MCE: In-kernel MCE decoding enabled.
    Jan 26 07:01:20 Betelgeuse kernel: EDAC MC: Ver: 3.0.0
    Jan 26 07:01:20 Betelgeuse kernel: AMD64 EDAC driver v3.4.0
    Jan 26 07:01:20 Betelgeuse kernel: EDAC amd64: DRAM ECC enabled.
    Jan 26 07:01:20 Betelgeuse kernel: EDAC amd64: K8 revE or earlier detected (node 0).
    Jan

    Ok, thanks. My confusion was because I was unaware that makepkg was simply a bash script.
    I did what you suggested, and copied it to my home directory, edited the create_signature section to add the --verbose option and changed it to output to stdout. I added --verbose, --debug-level guru, and --log-file options to my gpg-agent.conf file. I ran the makepkg process twice, and as expected it asked for a password the first attempt and failed immediately on the second attempt. When it should be loading a cached password, it is bombing out with a "Broken pipe" error.
    Terminal output of build 1:
    [gilmoreja@Betelgeuse pulseaudio-ctl]$ ~/makepkg -fics
    ==> WARNING: Cannot find the sudo binary. Will use su to acquire root privileges.
    ==> Making package: pulseaudio-ctl 1.59-2 (Mon Jan 26 15:10:51 CST 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found pulseaudio-ctl-1.59.tar.xz
    ==> Validating source files with sha256sums...
    pulseaudio-ctl-1.59.tar.xz ... Passed
    ==> Extracting sources...
    -> Extracting pulseaudio-ctl-1.59.tar.xz with bsdtar
    ==> Removing existing $pkgdir/ directory...
    ==> Starting build()...
    Setting version
    ==> Entering fakeroot environment...
    ==> WARNING: Cannot find the sudo binary. Will use su to acquire root privileges.
    ==> Starting package()...
    Installing main script, initd and config...
    install -Dm755 common/pulseaudio-ctl "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/bin/pulseaudio-ctl"
    install -Dm644 common/config.skel "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/pulseaudio-ctl/config.skel"
    Installing manpage...
    install -Dm644 doc/pulseaudio-ctl.1 "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/man/man1/pulseaudio-ctl.1"
    gzip -9 "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/man/man1/pulseaudio-ctl.1"
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "pulseaudio-ctl"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Signing package...
    gpg: no running gpg-agent - starting '/usr/bin/gpg-agent'
    gpg: waiting for the agent to come up ... (5s)
    gpg: connection to agent established
    gpg: writing to '/home/gilmoreja/sources/pulseaudio-ctl/pulseaudio-ctl-1.59-2-any.pkg.tar.xz.sig'
    gpg: RSA/SHA256 signature from: "7397C1D5 James A. Gilmore II (Unknown Zombie) <[email protected]>"
    -> Created signature file /home/gilmoreja/sources/pulseaudio-ctl/pulseaudio-ctl-1.59-2-any.pkg.tar.xz.sig.
    ==> Leaving fakeroot environment.
    ==> Finished making: pulseaudio-ctl 1.59-2 (Mon Jan 26 15:10:58 CST 2015)
    ==> Installing package pulseaudio-ctl with pacman -U...
    Password:
    ==> ERROR: Aborted by user! Exiting...
    Terminal output of build 2:
    [gilmoreja@Betelgeuse pulseaudio-ctl]$ ~/makepkg -fics
    ==> WARNING: Cannot find the sudo binary. Will use su to acquire root privileges.
    ==> Making package: pulseaudio-ctl 1.59-2 (Mon Jan 26 15:11:03 CST 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found pulseaudio-ctl-1.59.tar.xz
    ==> Validating source files with sha256sums...
    pulseaudio-ctl-1.59.tar.xz ... Passed
    ==> Extracting sources...
    -> Extracting pulseaudio-ctl-1.59.tar.xz with bsdtar
    ==> Removing existing $pkgdir/ directory...
    ==> Starting build()...
    Setting version
    ==> Entering fakeroot environment...
    ==> WARNING: Cannot find the sudo binary. Will use su to acquire root privileges.
    ==> Starting package()...
    Installing main script, initd and config...
    install -Dm755 common/pulseaudio-ctl "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/bin/pulseaudio-ctl"
    install -Dm644 common/config.skel "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/pulseaudio-ctl/config.skel"
    Installing manpage...
    install -Dm644 doc/pulseaudio-ctl.1 "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/man/man1/pulseaudio-ctl.1"
    gzip -9 "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/man/man1/pulseaudio-ctl.1"
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "pulseaudio-ctl"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Signing package...
    gpg: writing to '/home/gilmoreja/sources/pulseaudio-ctl/pulseaudio-ctl-1.59-2-any.pkg.tar.xz.sig'
    gpg: signing failed: Broken pipe
    gpg: signing failed: Broken pipe
    ==> WARNING: Failed to sign package file.
    ==> Leaving fakeroot environment.
    ==> Finished making: pulseaudio-ctl 1.59-2 (Mon Jan 26 15:11:04 CST 2015)
    ==> Installing package pulseaudio-ctl with pacman -U...
    Password:
    ==> ERROR: Aborted by user! Exiting...
    [gilmoreja@Betelgeuse pulseaudio-ctl]$
    gpg-agent.log file for build 1:
    2015-01-26 15:10:52 gpg-agent[10408] listening on socket '/home/gilmoreja/.gnupg/S.gpg-agent'
    2015-01-26 15:10:52 gpg-agent[10409] gpg-agent (GnuPG) 2.1.1 started
    2015-01-26 15:10:53 gpg-agent[10409] handler 0x7f88cc221700 for fd 5 started
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK Pleased to meet you, process 10406
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- RESET
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION ttyname=/dev/pts/0
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION ttytype=xterm
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION display=:0.0
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION xauthority=/home/gilmoreja/.Xauthority
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION lc-ctype=en_US.UTF-8
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION lc-messages=en_US.UTF-8
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION allow-pinentry-notify
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION agent-awareness=2.1.0
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- AGENT_ID
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> ERR 67109139 Unknown IPC command <GPG Agent>
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- HAVEKEY 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847 316BA63D673F62666176D0B2896B145BDABD9733
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- KEYINFO 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847
    2015-01-26 15:10:53 gpg-agent[10409] DBG: agent_get_cache '2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847' (mode 2) ...
    2015-01-26 15:10:53 gpg-agent[10409] DBG: ... miss
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> S KEYINFO 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847 D - - - P - - -
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- RESET
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- SIGKEY 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- SETKEYDESC Please+enter+the+passphrase+to+unlock+the+OpenPGP+secret+key:%0A%22James+A.+Gilmore+II+(Unknown+Zombie)+<[email protected]>%22%0A2048-bit+RSA+key,+ID+7397C1D5,%0Acreated+2012-06-04.%0A
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- SETHASH 8 BEEA84C75FC026299EBB643F8FB19AEC25D5722936A59DB29DBD95C299B9A3C6
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- PKSIGN
    2015-01-26 15:10:53 gpg-agent[10409] DBG: agent_get_cache '2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847' (mode 2) ...
    2015-01-26 15:10:53 gpg-agent[10409] DBG: ... miss
    2015-01-26 15:10:53 gpg-agent[10409] starting a new PIN Entry
    2015-01-26 15:10:53 gpg-agent[10409] DBG: connection to PIN entry established
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> INQUIRE PINENTRY_LAUNCHED 10411
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- END
    2015-01-26 15:10:58 gpg-agent[10409] DBG: agent_put_cache '2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847' (mode 2) requested ttl=0
    2015-01-26 15:10:58 gpg-agent[10409] DBG: skey: (private-key
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (rsa
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (n #00C230CAD4C56184746321E1333BA70F10DFC93A6F6F4CFD4074111FD46E8C9774E9F42ACB30A02074322705FEF1BF3A0D21C9D9A3E26EEB37C25FDBE18B057BDBAA8AAA44C7E109CA1164EA051062C5DA14DEF16CC40DC9A832438E5068C70B580CD22744ED6D98CAE9F4A69817FC11775FF3A06ABE870E12A4ACFB1F49480D602903E2CE85DADAF0CAAA5A5E4264956736BC7CBE71C7D5AC402FE594AE6E04B0ACCFB5EAD9CA26C7EDE89AD69811CDF9735FA1EAB7984FC731913D12F500ACF3ABEED2DFE589DC27EABE117421069A6432A609EF794B69B2CDA1E32DF0CEE11B53D89750624DAEC0D731DB447837CC696B77F427F0BD9FBB2A276D6618D0DF0F#)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (e #010001#)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (d #1D170513799C01A513C29C033A40ECE358BAC2CBB5AF2152F9F024C60467803ACDDF3B57E3E960E3372E1C5A542992CF2BCC1A93CFD450DD31FB7D2B5CD18DFBDAA0DA1FE297660984B08AD4065FDD86AD50B676D629C097372C6291CE185F2D2A02834A728CD3F235B8E609EBB1E185F1F443882A117E3CB1B98E06E249EE62C1FF7687CCA650976001757D1D210581538F8252F12731B5F75E5B2B0C6C2478059E9D9D2BE8D9F402B139EC3385730D00CB95114C02B0DEC2D4234E8FA610C307487E0F89BC373726317E7CF09DACA54505C01BDA0E9AF1435A0A01008E1C116B104D0EB56B4E4138C87F0E6EF406BFB518F8DD18BD08FAB629FA971B094BDD#)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (p #00D95A0315DA1A1177A0C0018EBB94887BA3FA454F17603AA8BB67C59796A1F102011BF676A3290437F03CD1AA9EA5F25CB22138DDDBE1048501F8294204E3AA639CBB1803B1F85E1BF57921B581DBD6201A83B333A1A93A13E372501CB55F5E2DFF991F41C1B3800E1C9DD3E303356FCF2382A7C80D6433780BC6C4E66D371493#)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (q #00E4B879C556CED294F545C4E4AF22B1C9F908566D6C9377FD598370AB7FC8672C49FAAB0E1CD6FC3C092A117EC0EFE0D0D1C2B9148C721422A7AE174E1DCB831D490302DE30435B75E822E71A288ED3783DDD8C15152C7ABFB29235D4F8217D3A8FFB6862A1A51A8A70CA74111A9E43A0FFE7E576DBB7FB3E2C6D711929A77515#)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (u #00B2BF39C398644392803548A393068F7F7226F147FB95B9C6CF72C12A626CF698D028694E3FDC1AA217132068906FABC2CA9F7CBB2A47B8B09DF5FDCFD34872C2074F4E2FAC358C0F61C8A32BEFEB9D8862A042BD3DADE6001C39B70D9574FC8B9CCD1DA012959CF2BBD4258A2A339FF99C3200E4CA36F2D623BEE4E6245551EC#)))
    2015-01-26 15:10:58 gpg-agent[10409] DBG: hash: (data
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (flags pkcs1)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (hash sha256 #BEEA84C75FC026299EBB643F8FB19AEC25D5722936A59DB29DBD95C299B9A3C6#))
    2015-01-26 15:10:58 gpg-agent[10409] DBG: PKCS#1 block type 1 encoded data:+01ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffff003031300d060960864801650304020105000420be \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ea84c75fc026299ebb643f8fb19aec25d5722936a59db29dbd95c299b9a3c6
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign data:+01ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffff003031300d060960864801650304020105000420be \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ea84c75fc026299ebb643f8fb19aec25d5722936a59db29dbd95c299b9a3c6
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign n:+c230cad4c56184746321e1333ba70f10dfc93a6f6f4cfd4074111fd46e8c9774 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: e9f42acb30a02074322705fef1bf3a0d21c9d9a3e26eeb37c25fdbe18b057bdb \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: aa8aaa44c7e109ca1164ea051062c5da14def16cc40dc9a832438e5068c70b58 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 0cd22744ed6d98cae9f4a69817fc11775ff3a06abe870e12a4acfb1f49480d60 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 2903e2ce85dadaf0caaa5a5e4264956736bc7cbe71c7d5ac402fe594ae6e04b0 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: accfb5ead9ca26c7ede89ad69811cdf9735fa1eab7984fc731913d12f500acf3 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: abeed2dfe589dc27eabe117421069a6432a609ef794b69b2cda1e32df0cee11b \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 53d89750624daec0d731db447837cc696b77f427f0bd9fbb2a276d6618d0df0f
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign e:+010001
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign d:+1d170513799c01a513c29c033a40ece358bac2cbb5af2152f9f024c60467803a \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: cddf3b57e3e960e3372e1c5a542992cf2bcc1a93cfd450dd31fb7d2b5cd18dfb \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: daa0da1fe297660984b08ad4065fdd86ad50b676d629c097372c6291ce185f2d \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 2a02834a728cd3f235b8e609ebb1e185f1f443882a117e3cb1b98e06e249ee62 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: c1ff7687cca650976001757d1d210581538f8252f12731b5f75e5b2b0c6c2478 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 059e9d9d2be8d9f402b139ec3385730d00cb95114c02b0dec2d4234e8fa610c3 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 07487e0f89bc373726317e7cf09daca54505c01bda0e9af1435a0a01008e1c11 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 6b104d0eb56b4e4138c87f0e6ef406bfb518f8dd18bd08fab629fa971b094bdd
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign p:+d95a0315da1a1177a0c0018ebb94887ba3fa454f17603aa8bb67c59796a1f102 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 011bf676a3290437f03cd1aa9ea5f25cb22138dddbe1048501f8294204e3aa63 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 9cbb1803b1f85e1bf57921b581dbd6201a83b333a1a93a13e372501cb55f5e2d \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ff991f41c1b3800e1c9dd3e303356fcf2382a7c80d6433780bc6c4e66d371493
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign q:+e4b879c556ced294f545c4e4af22b1c9f908566d6c9377fd598370ab7fc8672c \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 49faab0e1cd6fc3c092a117ec0efe0d0d1c2b9148c721422a7ae174e1dcb831d \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 490302de30435b75e822e71a288ed3783ddd8c15152c7abfb29235d4f8217d3a \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 8ffb6862a1a51a8a70ca74111a9e43a0ffe7e576dbb7fb3e2c6d711929a77515
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign u:+b2bf39c398644392803548a393068f7f7226f147fb95b9c6cf72c12a626cf698 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: d028694e3fdc1aa217132068906fabc2ca9f7cbb2a47b8b09df5fdcfd34872c2 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 074f4e2fac358c0f61c8a32befeb9d8862a042bd3dade6001c39b70d9574fc8b \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 9ccd1da012959cf2bbd4258a2a339ff99c3200e4ca36f2d623bee4e6245551ec
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign res:+c1dd570db98531a7b86260e0a122377b462c1b827d1f4406091dfcb4b8f6b26f \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 35c098eb70ebd6adc8abfce8d44185c5ac9c503f45037cf1adaf82b07fb63f69 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 13592df46b34381788a618c73db29a3fc0282d6ccfc957d4638a339d83b315bd \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ff70ab17b658f99ebfaba934f7ef1409e8300b362176458d805faa86bc6150b1 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 389f8148c045c64baf5a794d3f1319b090d7aeba2a11598b250943b51f4d26e5 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: cdfe9c6558694e5ea3268ea343001a160e0276241b330af00f28404b82840961 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: aabbf16aebbb0d7d2278bcaa028f7b59b2c2d8cedb9afe3a146936af8bf1154f \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 92bfbedec50777b1be1dd813618f9ed681ea7cebc554ae0e0fa1f52d421ffe52
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign => Success
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rslt: (sig-val
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (rsa
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (s #C1DD570DB98531A7B86260E0A122377B462C1B827D1F4406091DFCB4B8F6B26F35C098EB70EBD6ADC8ABFCE8D44185C5AC9C503F45037CF1ADAF82B07FB63F6913592DF46B34381788A618C73DB29A3FC0282D6CCFC957D4638A339D83B315BDFF70AB17B658F99EBFABA934F7EF1409E8300B362176458D805FAA86BC6150B1389F8148C045C64BAF5A794D3F1319B090D7AEBA2A11598B250943B51F4D26E5CDFE9C6558694E5EA3268EA343001A160E0276241B330AF00F28404B82840961AABBF16AEBBB0D7D2278BCAA028F7B59B2C2D8CEDB9AFE3A146936AF8BF1154F92BFBEDEC50777B1BE1DD813618F9ED681EA7CEBC554AE0E0FA1F52D421FFE52#)))
    2015-01-26 15:10:58 gpg-agent[10409] DBG: chan_5 -> [ 44 20 28 37 3a 73 69 67 2d 76 61 6c 28 33 3a 72 ...(277 byte(s) skipped) ]
    2015-01-26 15:10:58 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:58 gpg-agent[10409] DBG: chan_5 <- [eof]
    2015-01-26 15:10:58 gpg-agent[10409] handler 0x7f88cc221700 for fd 5 terminated
    gpg-agent.log file for build 2:
    2015-01-26 15:11:04 gpg-agent[10409] handler 0x7f88cc221700 for fd 5 started
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK Pleased to meet you, process 10656
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- RESET
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION ttyname=/dev/pts/0
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION ttytype=xterm
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION display=:0.0
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION xauthority=/home/gilmoreja/.Xauthority
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION lc-ctype=en_US.UTF-8
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION lc-messages=en_US.UTF-8
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION allow-pinentry-notify
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION agent-awareness=2.1.0
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- AGENT_ID
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> ERR 67109139 Unknown IPC command <GPG Agent>
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- HAVEKEY 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847 316BA63D673F62666176D0B2896B145BDABD9733
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- KEYINFO 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847
    Last edited by gilmoreja (2015-01-26 23:08:59)

  • Failed to open package file due to error 0x800C0006 "The system cannot locate the file in C# code.

    Hi, Am facing issue when I try to run SSIS package via C# code, I have given full access to all the folder in which the package is available.
    In the below line am getting error,
    using Microsoft.SqlServer.DTS.Runtime;
    Application app=new Application();
    Package package=null;
    package=app.LoadPackage("PackageFullPath",null) --error line
    Failed to open package file "C:\SSIS\Package.dtsx" due to error 0x800C0006 "The system
    cannot locate the object specified.".  This occurs when loading a
    package and the file cannot be opened or loaded correctly into the XML document

    Are you trying to run this code from job or something? Check if account executing the package has access to the path. Also check if path value passed is correct. If its a remote system path pass it in UNC format (ie //machine/...)
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Package load Failed! Invalid package Title, manifest file cannot be found

    Greetings. I am new to UPK and am seeking guidance on an upgrade to 11.1.
    A little background on what we are trying to do:
    We have two machines:
    Windows 2003 machine in domain 'X' | UPK 11.0.0.1.
    Windows 2008 R2 virtual machine in domain 'Y' | UPK 11.0 on the new machine first, install the 11.0.0.1 patch, and then upgrade to 11.1.
    We are using the same database as the old machine. Developer Server is Standard Authentication, Knowledge Center is Windows authentication.
    ==========================================================================================
    So far we have installed 11.1 with the respective database upgrades, but are lost as to how to migrate the old Content Root data. We have copied all the content to the new Content Root, added it to IIS like the old machine, and verified that the UPK database Content Root path is correct and working.
    For the rest of the post, I am remoted into the server from my local workstation, and then using IE to access KCenter on the server's FQDN, not via localhost.
    Since I am green, so I presumed that I would need to import the titles under Manager in KCenter. I zipped each content folder individually (they are named "1", "9", etc), and then attempted to import each zip file.
    NOTE: At this stage sometimes we are prompted to authenticate again. When it does, sometimes the credentials that we know work, get rejected and we are prompted again. This will repeat until we get a 401 and we have to start over. We have verified that the Windows account currently in session with the site is valid and has administrator authority within KC.
    NOTE2: On the first few tries, .NET complained that maxRequestLength was not large enough. I had our servers team increase it on the actual server in order for us to proceed.
    Provided we don't have to authenticate again, or that it actually accepts our credentials, we get to the 30% mark and then receive the error: *"Package load Failed! Invalid package Title, manifest file cannot be found"*
    Does anyone have any wisdom for this process? The title importation section in the deployment manual is not helping, and the administrator from whom I am taking over this software has not had to deal with this before.
    Thank you,
    Ian
    Edited by: 986290 on Feb 5, 2013 10:21 AM

    Hi Marc, thanks for the post,
    I have gone through an extensive troubleshooting process with Oracle, including their development team, in order to fully complete our project setup. As a supplemental bit of information, we also were having connection errors when attempting to publish directly to the knowledge center.
    As far as the context of this post, here is the solution in brief:
    1) Verify that the package being imported was published from the same version of the Developer Client as the Knowledge Center installation's.
    2) Check for database consistency issues. In our case we were using a database that was built in another domain. After numerous attempts with Oracle support on the line to determine the inconsistency, it was decided to completely reinstall and build a new database from scratch in the new domain.
    3) Check application pool identities and access (while we had some inconsistencies here, correcting them did not change the behavior of the import/publish errors)
    In review, a lot of what we had setup was correct. Our primary point of failure, we feel, was using the old database. Technically this should not have been a problem, but Murphy likes to get his way sometimes.
    Cheers,
    Ian

  • Creation of InitialContext fails when i hot-deploy scheduler-service.xml

    Creation of InitialContext fails when i hot-deploy scheduler-service.xml
    I configured scheduler-service as follows in Jboss 3.2:
    scheduler-service.xml
    <mbean code="org.jboss.varia.scheduler.Scheduler"
         name=":service=Scheduler">
    <attribute name="StartAtStartup">true</attribute>
    <attribute name="SchedulableClass">com.beta.my.utils.FMScheduler</attribute>
    <attribute name="SchedulableArguments">Schedulabe Test,12345</attribute>
    <attribute name="SchedulableArgumentTypes">java.lang.String,int</attribute>
    <attribute name="InitialStartDate">0</attribute>
    <attribute name="SchedulePeriod">10000</attribute>
    <attribute name="InitialRepetitions">-1</attribute>
    </mbean>
    Schedulable Class
    package com.beta.my.utils;
    import java.util.Date;
    import org.jboss.varia.scheduler.Schedulable;
    public static class FMScheduler
    implements Schedulable
    private String mName;
    private int mValue;
    public FMScheduler(String pName,int pValue)
    mName = pName;
    mValue = pValue;
    public void perform(Date pTimeOfCall,long pRemainingRepetitions)
    try {
              Context context = new InitialContext();//properties taken from jndi.properties file
              } catch (Exception e){
                   e.printStackTrace();
    I started my jboss..,FMScheduler created successfully, perform method in FMScheduler called succesfully after SchedulePeriod(1000)
    The problem occurs(NullPointerException) while i changed SchedulePeriod time and hot-deployed(just saved scheduler-service.xml).
    The following Exception occures due to InitialContext creation fails*(Context context = new InitialContext();)* in FMScheduler.
    17:46:27,361 ERROR [STDERR] java.lang.NullPointerException
    17:46:27,361 ERROR [STDERR] at org.jboss.mx.loading.UnifiedClassLoader.findR
    esources(UnifiedClassLoader.java:374)
    17:46:27,361 ERROR [STDERR] at java.lang.ClassLoader.getResources(ClassLoade
    r.java:825)
    17:46:27,361 ERROR [STDERR] at com.sun.naming.internal.VersionHelper12$5.run
    (VersionHelper12.java:145)
    17:46:27,361 ERROR [STDERR] at java.security.AccessController.doPrivileged(N
    ative Method)
    17:46:27,377 ERROR [STDERR] at com.sun.naming.internal.VersionHelper12.getRe
    sources(VersionHelper12.java:142)
    17:46:27,377 ERROR [STDERR] at com.sun.naming.internal.ResourceManager.getAp
    plicationResources(ResourceManager.java:468)
    17:46:27,377 ERROR [STDERR] at com.sun.naming.internal.ResourceManager.getIn
    itialEnvironment(ResourceManager.java:159)
    17:46:27,377 ERROR [STDERR] at javax.naming.InitialContext.init(InitialConte
    xt.java:215)
    17:46:27,377 ERROR [STDERR] at javax.naming.InitialContext.<init>(InitialCon
    text.java:195)
    17:46:27,377 ERROR [STDERR] at com.beta.my.utils.FMScheduler.perform
    (FMScheduler.java:42)
    17:46:27,392 ERROR [STDERR] at org.jboss.varia.scheduler.Scheduler$Listener.
    handleNotification(Scheduler.java:1263)
    17:46:27,392 ERROR [STDERR] at org.jboss.mx.server.NotificationListenerProxy
    .handleNotification(NotificationListenerProxy.java:69)
    17:46:27,392 ERROR [STDERR] at javax.management.NotificationBroadcasterSuppo
    rt.sendNotification(NotificationBroadcasterSupport.java:95)
    17:46:27,392 ERROR [STDERR] at javax.management.timer.Timer.sendNotification
    s(Timer.java:441)
    17:46:27,392 ERROR [STDERR] at javax.management.timer.Timer.access$000(Timer
    .java:31)
    17:46:27,408 ERROR [STDERR] at javax.management.timer.Timer$RegisteredNotifi
    cation.doRun(Timer.java:612)
    17:46:27,408 ERROR [STDERR] at org.jboss.mx.util.SchedulableRunnable.run(Sch
    edulableRunnable.java:164)
    17:46:27,408 ERROR [STDERR] at org.jboss.mx.util.ThreadPool$Worker.run(Threa
    dPool.java:225)
    please help me if u have any idea,thanks

    Hi Hamsa,
    Did you also create and configure an "Execution Destination"?
    You can test the Metadata destination configuration on Web Service Navigator.
    On the web service navigator (http://hostname:portnumber/wsnavigator) search in the metatda destination you have created for the service you imported in web dynpro as a model. If you can find it there test it on the ws navigator.
    Best regards,
    Yasar

Maybe you are looking for

  • Payment run for debit balances

    Hey Folks: How to block the invoice payments for vendors who has debit balances more than payments. Debit balance > invoice amount. Can someone please throw the light on  the configuration I need to perform in Vendor Master and Payment Run config. Ap

  • I must have made some change to my Pages preferences.

    I am working on a book using Pages (iWork 09).  I have had no problem with opening two Pages documents I have created and have then both display on the desktop.  I readjust their sizes and they sit there side by side.  I don't remember making any cha

  • Apple tv error 32

    i just download the new apple tv actualization and when i want to make de airplay, tell me that i have the error 32, i dont know why, and i wanna know, who can tell how i can fix that problem thank u very much

  • Graph from For Loop

    hello, I have a problem with one of my applications I am developing. I calculate a timeSeries and I need to graph it on linechart. The timeSeries is calculated through an iteration of For Loop I have tried to write in an array, but it didn't work sin

  • Pictures from different sites doesnt show, it has small question mark sign at the center, why???? Please help.

    Please help, i cant see any pictures on any web pages, it has small question mark at the center only.