Packager fails to package JavaBean

Packager fails to package JavaBean when used from
command line or when used GUI and register the
registry file option selected.
Error messages:
Command line:
Typelib and Reg file generation begins
Typelib and Reg file generation finished
Generation status : Packaging failed
GUI:
option pane with "Packaging failed" message
I use Windows 2000 Advanced Server and I am
administrator. If my memory doesn't fail me
the problem is actual in Windows 2000 Professional.
Work around:
Run GUI version of packager,
unselect register the registry file option
and add the registry file to the register
manually.
Did anybody face this problem?
Thanks,
Alexander

Sorry, there is no problem under
Windows 2000 Professional,
but there is under
Windows 2000 Advanced Server.

Similar Messages

  • Where to place the class file of the java bean when using the packager

    I am using the activex bridge in j2se 1.5.0_06
    now i have created the jar file for my bean but where do i place the class file?
    i.e the bean..if i keep it in jdk\bin the packager gives me an error..i created a folder in my public jre jre\axbridge\bin and placed the class file there too but even this didnt work
    Kindly tell me what is the fully qualified package bean name if i have placed all my files under jdk\bin..

    D:\Java\jdk1.5.0_06\bin>packager -reg d:\java\jdk1.5.0_06\bin\PersonBean.jar Per
    son
    Processing D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\\Person.idl
    Person.idl
    Processing D:\PROGRA~1\MICROS~2\VC98\INCLUDE\oaidl.idl
    oaidl.idl
    Processing D:\PROGRA~1\MICROS~2\VC98\INCLUDE\objidl.idl
    objidl.idl
    Processing D:\PROGRA~1\MICROS~2\VC98\INCLUDE\unknwn.idl
    unknwn.idl
    Processing D:\PROGRA~1\MICROS~2\VC98\INCLUDE\wtypes.idl
    wtypes.idl
    Registration failed:
    The packaged JavaBean is not located under the directory <jre_home>\axbridge\bin
    this is the error i get

  • Packaging a JSP in a JAR

    Hi everyone,
    I tried to package a simple JSP in a JAR but it doesn't seem o work correctly. I was wondering if you have to create a manifest file (like we do to package JavaBeans) or something like that. If anyone already tried that his (or her) advise would be very helpfull. By the way, I need to do this because I want to include a JSP in an Oracle portal...
    Thanx
    Didier Klein

    try this command from the command prompt
    make sure about the path of ur input file(s).
    jar cf jar-file input-file(s)

  • Getting error while passing implicit request object from JSP to JavaBean

    Hi,
    I am getting error while passing implicit object ie( request object)
    from within JSP to JavaBean.
    Following is source for JSP, JavaBean and Error message I am getting.
    vaLookup.jsp Source
    <jsp:useBean id="db" class="advisorinsight.javabeans.DisplayPages"
    scope="request">
    <jsp:setProperty name="db" property="request" value="<%= request %>"
    />
    </jsp:useBean>
    <jsp:getProperty name="db" property="totalrecords" />
    JAVABEAN DisplayPages.java source
    package javabeans;
    import java.io.Serializable;
    import javax.servlet.http.HttpServletRequest;
    public final class DisplayPages implements Serializable {
    private String totalrecords;
    private HttpServletRequest request;
    public void setRequest(HttpServletRequest req){
    this.request = req;
    public java.lang.String getTotalrecords()
    this.totalrecords =
    this.request.getParameter("totalrecords");
    return this.totalrecords;
    public DisplayPages(){
    totalrecords = "";
    request = null;
    error after executing vaLookup.jsp
    [30/Nov/2001 11:56:04:5] info: EXTMGR-006: GXExtensionManager: Extension
    service JavaExtData successfully loaded
    [30/Nov/2001 11:56:04:5] info: EXTMGR-006: GXExtensionManager: Extension
    service LockManager successfully loaded
    [30/Nov/2001 11:56:04:5] info: EXTMGR-006: GXExtensionManager: Extension
    service RLOPManager successfully loaded
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:7] info: ENGINE-ready: ready: 10819
    [30/Nov/2001 11:56:46:0] info: --------------------------------------
    [30/Nov/2001 11:56:46:0] info: JSPRunnerSticky: init
    [30/Nov/2001 11:56:46:0] info: --------------------------------------
    [30/Nov/2001 11:56:51:7] error: Exception: SERVLET-compile_failed:
    Failed in compiling template: /va/valookup.jsp, javac error:
    c:\iplanet\ias6\ias\APPS\variabl
    S\va\valookup.java:76: Undefined variable: JSP_8
    db.setRequest(_JSP__8);
    ^
    1 error
    Exception Stack Trace:
    java.lang.Exception: javac error:
    c:\iplanet\ias6\ias\APPS\variableannuity\va\WEB-INF\compiled_jsp\jsp\APPS\va\valookup.java:76:
    Undefined variable: JSP_8
    db.setRequest(_JSP__8);
    ^
    1 error
    at
    com.netscape.server.servlet.jsp.JSPCompiler.compileJSP(Unknown Source)
    at
    com.netscape.server.servlet.jsp.JSPCompiler.compileOrLoadJSP(Unknown
    Source)
    at
    com.netscape.server.servlet.jsp.JSPCompiler.compileInstance(Unknown
    Source)
    at
    com.netscape.server.servlet.jsp.JSPCompiler.compileInstance(Unknown
    Source)
    at
    com.netscape.server.servlet.platformhttp.PlatformHttpServletResponse.callJspCompiler(Unknown
    Source)
    at
    com.netscape.server.servlet.platformhttp.PlatformHttpServletResponse.callUri(Unknown
    Source)
    at
    com.netscape.server.servlet.platformhttp.PlatformHttpServletResponse.callUriRestrictOutput(Unknown
    Source)
    at
    com.netscape.server.servlet.platformhttp.PlatformRequestDispatcher.forward(Unknown
    Source)
    at com.netscape.server.servlet.jsp.JSPRunner.service(Unknown
    Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unknown
    Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)

    The only thing that I see that looks funny to me is when you pass the request object into the method using <%=request%>, Im not sure whats going to happen here because that is suppose to print the results. Have you tried simply using <%request%>?

  • Tomcat couldn't file my import Bean... HELP!!

    How to set the class path to tell Tomcat where's my bean's package starting point.
    Here is my bean....
    package JavaBeans.MyBeanDir
    class myFirstBean
    Here is my JSP page
    <%@page language="java" %>
    <%@page import="JavaBeans.MyBeanDir.myFirstBean" %>
    <jsp:useBean id="utilBean" scope="session" class="myFirstBean" />
    Result... I got exception throw by Tomcat as error message show below:
    C:\Program Files\Apache Group\Tomcat 4.1\work\Standalone\localhost\_\ExcelLinks\AASystem\Protected\Basic\JSP\JSPTest_jsp.java:7:
    package ExcelLinks.JavaBeans does not exist import ExcelLinks.JavaBeans.ExcelLinksUtilBean;

    Hi,
    I tried it and seems getting little better. But still had below error:
    Did I do something wrong???? Please help. Thanks
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: ExcelLinksUtilBean
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:553)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2417)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:193)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:781)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:549)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:589)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:666)
         at java.lang.Thread.run(Unknown Source)
    root cause

  • EL expressions showing up in my jsp textboxes

    I am trying to create a simple jsp model 1 architecture example. The application s a jsp page that posts to itself after using a javabean to calculate the roots of the quadratic equation based upon user input values for a, b, and c. However, when I load the page and click the submit button the EL expressions in the jsp file are showing up in the text boxes visable to the user.
    Any suggestions?
    here is the jsp page:
    <jsp:useBean id="lb" scope="page" class="JavaBeans.Quad" />
    <jsp:setProperty name="lb" property="*" />
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
    <html>
    <body>
    <form method="post" action="project1.jsp">
    <h1>Quadratic Equation Root Calculator</h1>
    <p>This form calculates the quadratic equation roots based upon
    the values you provide.</p>
    <p><b>Quadratic Equation:</b> ax<sup>2</sup> + bx + c = 0</p>
    <p>Enter your values for root calculation below:<br>
    <b><label for="a">a</label></b>=<input type="text" id="a" size="1" value="${lb.a}">  <b><label for="b">b</label></b>=<input type="text" id="b" size="1" value="${lb.b}">  <b><label for="c">c</label></b>=<input type="text" id="c" size="1" value="${lb.c}">
    <p>
    <input type="submit" value="Calculate">
    </form>
    <p>
    <p>Answer: ${lb.r}</p>
    <c:if test="{lb.a==0}"><p>Answer: ${lb.r}</p></c:if>
    <c:if test="{lb.a>0}"><p>Answer: +/${lb.r}</p></c:if>
    </body>
    </html>
    here is the bean:
    package JavaBeans;
    import java.util.*;
    public class Quad {
    int a = 0;
         int b = 0;
         int c = 0;
         double r = 0.0;
         public Quad(){
         public void setA(int x){
         a=x;
    calRoots();
         public void setB(int x){
         b=x;
    calRoots();
         public void setC(int x){
         c=x;
    calRoots();
         public int getA() {return a;}
         public int getB() {return b;}
         public int getC() {return c;}
         public double getR() {return r;}
         private void calRoots(){
         double d = Math.pow(b,2)-(4*(a*c));     
         if (d==0.0) {
         r = b/(2*a);     
         } else {
         double r1 = (-b + (Math.sqrt(b))/(2*a));
    r = Math.abs(r1);
    }

    This little line in the jsp file helps:
    <%@ page isELIgnored="false" %>
    . . . now for figuring out how to post the input to the bean . . .

  • [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)

  • Adobe Creative Cloud package fails to Install - Mac OSX Mavericks

    I've been trying to get the Adobe Creative Cloud package that I had built with the Creative Cloud Packager installed onto a staff member's Mac but it always ends with "The Installation Failed" (No error code or explanation). If I watch the Application folders while it's running, Dreamweaver CC 2014 and Flash Builder 4.6 pop up but then get removed and then the installation fails. I have already run the Creative Cloud Cleaner Tool, renamed the OOBE folder, and tried the installation with a newly created admin account. The package installs just fine on other Macs, but this one did have older versions of Adobe Software from CS5 and CS4 installed. I uninstalled them but my guess is that there's left over files somewhere causing a conflict.
    Any help would be greatly appreciated,
    Thank You!

    I managed to find a solution to the problem. I ended up uninstalling every Adobe related application and then went through the user/library and system/library and removed everything Adobe from the Application Support and Preferences folders. Unfortunately, I do not know what application or file was ultimately causing the issue.
    Thanks again!

  • Adobe Creative Cloud Packager for macintosh fails

    Adobe Creative Cloud Packager for macintosh fails.
    The error log says "[ERROR] AdobePackageBuilder -  AdobePackageBuilder : SendPacket returned error : -1".
    I tried 4-5 times.
    Everything is downloaded (took about 14 Gb).
    I now have only 12Gb free space on my disk. Can that be the reason (will the packager need to make a copy of the downloaded stuff?).
    When I am done, how do I reclaim the space eaten by the packager?
    Seems like it is caching it at ~/Library/Application Support/Adobe/CCP, but will I manually have to delete that cache?
    I cannot find a menu entrance for doing so.
    Would be nice if the packager could use a mounted network disk as destination, but it seems not to discover these.
    /Peter Andersen

    Wanted to join in and say this has been happening to me too. I wiped every adobe file I could find, and used the cleaner too. Started over from scratch in a brand new user account.
    It's been about 7 days and I cannot get CCP to actually build a package. I've gotten a variety of messages but everything single time something fails. The new thing is that it says it fails on individual applications. So I disable them, and the error jumps to a new app. I can see that the .dmg's are fine and intact in ~/Library/Application Support/Adobe/CCP/
    Given the amount of time this has cost me I really wish I had purchased CS6 Master Collection for every workstation. From my perspective, Creative Cloud has been nothing more then a giant waste of time and effort. It's genuinely bad product from an IT management perspective. Why push off the job of building and installer onto the customer? I should just be able to download the full Master Collection dmg, and then turn on and off the apps I want. Instead I am stuck with a workstation down, and everyone using CC trials to work.

  • CS 5.5 Install fails with package created by Adobe Application Manager

    Hi all:
    I'm trying to install Adobe CS 5.5 on a 10.6.4 machine that already has CS 3 on it. I've created the package several times with the AAM, but when I go to install it on the client machine installer always throws errors (see logs below). I've tried installing under a separate user, installing on a different machine, repairing permissions, removing CS3 entirely FIRST (with a "cleaning" script) and then reinstalling, and it still doesn't work. The only way I can get it to install at all is via the optical media, and even then I still get some errors. I've got 50 computers to do, so I'd really like to get the package deployment working.
    Here are the errors I'm getting from the logs. As you can see, they are mostly DF037, DW063, DF031. One of the error codes (DF031) is due to a previous version being installed, but the customer insists that they have both versions, so I can't remove the previous version - and even when I do, I seem to get that error.
    The other error code (DW063) gets no hits on either the kb or the google.
    Help?
    - 0 fatal error(s), 22 error(s), 0 warning(s)
    ----------- Payload: {0D96CFE6-376D-44B8-808A-16F3BEB73263} Adobe Media Encoder CS5.5 5.5.0.0 -----------
    ERROR: DF037: Unable to delete directory "/private/var/root/Library/Preferences/Adobe/Adobe Media Encoder"(Seq 4)
    ERROR: DW063: Command ARKDeleteDirectoryCommand failed.(Seq 4)
    ERROR: DF031: Unable to read display attributes of "/Applications/Adobe Media Encoder CS5.5"(Seq 3839)
    ERROR: DW063: Command ARKSetDisplayAttributesCommand failed.(Seq 3839)
    ERROR: DF031: Unable to read display attributes of "/Applications/Adobe Media Encoder CS5.5/Icon
    "(Seq 3840)
    ERROR: DW063: Command ARKSetDisplayAttributesCommand failed.(Seq 3840)
    ----------- Payload: {49E6D00F-3456-11E0-AE83-842B2B67A8CC} Adobe Device Central CS5.5 3.5.0.0 -----------
    ERROR: DF031: Unable to read display attributes of "/Applications/Adobe Device Central CS5.5"(Seq 2139)
    ERROR: DW063: Command ARKSetDisplayAttributesCommand failed.(Seq 2139)
    ERROR: DF031: Unable to read display attributes of "/Applications/Adobe Device Central CS5.5/Icon
    "(Seq 2140)
    ERROR: DW063: Command ARKSetDisplayAttributesCommand failed.(Seq 2140)
    ----------- Payload: {EE85C227-0148-4825-B659-6A1E142571EE} Adobe Bridge CS5.1 4.1.0.0 -----------
    ERROR: DF031: Unable to read display attributes of "/Applications/Adobe Bridge CS5.1"(Seq 2239)
    ERROR: DW063: Command ARKSetDisplayAttributesCommand failed.(Seq 2239)
    ERROR: DF031: Unable to read display attributes of "/Applications/Adobe Bridge CS5.1/Icon
    "(Seq 2240)
    ERROR: DW063: Command ARKSetDisplayAttributesCommand failed.(Seq 2240)
    ----------- Payload: {A2502D10-2D75-4620-8A8B-73F39D5C1243} PDF Settings CS5 10.0.0.0 -----------
    ERROR: DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe PDF/Settings"(Seq 158)
    ERROR: DW063: Command ARKDeleteDirectoryCommand failed.(Seq 158)
    ERROR: DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe PDF"(Seq 395)
    ERROR: DW063: Command ARKDeleteDirectoryCommand failed.(Seq 395)
    ----------- Payload: {CE6E1448-516F-11E0-B3C0-13EDE2AB3DC5} Adobe InDesign CS5.5 Application Feature Set Files 7.5.0.0 -----------
    ERROR: DF037: Unable to delete directory "/private/var/root/Library/Preferences/Adobe InDesign"(Seq 2)
    ERROR: DW063: Command ARKDeleteDirectoryCommand failed.(Seq 2)
    ----------- Payload: {4058E728-84D8-45CE-8E2D-5F35BD6659A1} Adobe Extension Manager CS5.5 5.5.0.0 -----------
    ERROR: DF037: Unable to delete directory "/private/var/root/Library/Preferences/Adobe"(Seq 61)
    ERROR: DW063: Command ARKDeleteDirectoryCommand failed.(Seq 61)
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.

    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 4.0.50.0
    OSX version: 10.6.7 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 1045 milliseconds (1.045 seconds) DTR = 33370.3 KBPS (32.5882 MBPS)
    ##### Running EDT Workflow #####
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup
    Updating media info for: {007A2A28-D6A8-4D91-9A2B-568FF8052215}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeWinSoftLinguisticsPluginAll/A dobeWinSoftLinguisticsPluginAll.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeWinSoftLinguisticsPluginAll/A dobeWinSoftLinguisticsPluginAll.dmg
    Updating media info for: {0175676F-8C92-49F2-9131-D0D6AD654B41}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeHelp/InstallAdobeHelp
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeHelp/InstallAdobeHelp
    Updating media info for: {03FB981A-5170-11E0-A90E-3CEDE2AB3DC5}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xAppBase2-mul/AdobeI nDesign7xAppBase2-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xAppBase2-mul/AdobeI nDesign7xAppBase2-mul.dmg
    Updating media info for: {04ADB20D-99A3-4F83-8176-F07787237EBA}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDesignPremium5.5-mul/AdobeDes ignPremium5.5-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDesignPremium5.5-mul/AdobeDes ignPremium5.5-mul.dmg
    Updating media info for: {08EF22BC-43B2-4B4E-BA12-52B18F418F38}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop12-Core/AdobePhotosh op12-Core.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop12-Core/AdobePhotosh op12-Core.dmg
    Updating media info for: {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeAPE3.101-mul/AdobeAPE3.101-mu l.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeAPE3.101-mul/AdobeAPE3.101-mu l.dmg
    Updating media info for: {0CCF0458-5171-11E0-BC45-DC59E3AB3DC5}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xAppBase-mul/AdobeIn Design7xAppBase-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xAppBase-mul/AdobeIn Design7xAppBase-mul.dmg
    Updating media info for: {0D96CFE6-376D-44B8-808A-16F3BEB73263}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AMECore5.5All/AMECore5.5All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AMECore5.5All/AMECore5.5All.dmg
    Updating media info for: {11E1188F-E576-47BC-B215-600C02C7EABF}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorNA_Recommended3_1-mul/Ad obeColorNA_Recommended3_1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorNA_Recommended3_1-mul/Ad obeColorNA_Recommended3_1-mul.dmg
    Updating media info for: {1A1E5FF9-D0FD-42A3-8E18-E5E7E95E1AB4}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDynamiclinkSupport5.5All/Adob eDynamiclinkSupport5.5All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDynamiclinkSupport5.5All/Adob eDynamiclinkSupport5.5All.dmg
    Updating media info for: {1FEB691B-39ED-4343-99D6-CACDAD879D8C}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop12-en_GB/AdobePhotos hop12-en_GB.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop12-en_GB/AdobePhotos hop12-en_GB.dmg
    Updating media info for: {22C26C10-5C22-4674-A52C-100112664305}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/DeviceCentral3.5LP-en_US/DeviceCen tral3.5LP-en_US.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/DeviceCentral3.5LP-en_US/DeviceCen tral3.5LP-en_US.dmg
    Updating media info for: {270C312D-7EC7-474C-BEB2-79CD398E02A3}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/HIL_Help_Search/HIL_Help_Search.dm g
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/HIL_Help_Search/HIL_Help_Search.dm g
    Updating media info for: {2EA9B52E-8613-41A0-9EEF-FF54AD4CC810}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeMobileExtension_Flash11.5-en_ US/AdobeMobileExtension_Flash11.5-en_US.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeMobileExtension_Flash11.5-en_ US/AdobeMobileExtension_Flash11.5-en_US.dmg
    Updating media info for: {3019BB9E-516F-11E0-AAAB-3AEBE2AB3DC5}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xCommonLang-en_GB/Ad obeInDesign7xCommonLang-en_GB.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xCommonLang-en_GB/Ad obeInDesign7xCommonLang-en_GB.dmg
    Updating media info for: {3450d4c5-a82b-4428-a512-842ee1555a14}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeStoryExtension-mul/AdobeStory Extension-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeStoryExtension-mul/AdobeStory Extension-mul.dmg
    Updating media info for: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRaw6.0All/AdobeCameraRa w6.0All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRaw6.0All/AdobeCameraRa w6.0All.dmg
    Updating media info for: {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRawProfile6.0All/AdobeC ameraRawProfile6.0All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRawProfile6.0All/AdobeC ameraRawProfile6.0All.dmg
    Updating media info for: {3FA63389-0091-497A-8522-998E43648AEF}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeAPE3.2-mul/AdobeAPE3.2-mul.dm g
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeAPE3.2-mul/AdobeAPE3.2-mul.dm g
    Updating media info for: {4058E728-84D8-45CE-8E2D-5F35BD6659A1}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeExtensionManager5.5All/AdobeE xtensionManager5.5All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeExtensionManager5.5All/AdobeE xtensionManager5.5All.dmg
    Updating media info for: {419B81A0-6282-456C-9B1E-8DBABA0DE2DC}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeWinSoftLinguisticsPlugin_3_5_ All/AdobeWinSoftLinguisticsPlugin_3_5_All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeWinSoftLinguisticsPlugin_3_5_ All/AdobeWinSoftLinguisticsPlugin_3_5_All.dmg
    Updating media info for: {45063C56-A2A2-4FD1-A56A-A964723EEE1E}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorCommonSetRGB3_1-mul/Adob eColorCommonSetRGB3_1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorCommonSetRGB3_1-mul/Adob eColorCommonSetRGB3_1-mul.dmg
    Updating media info for: {4603E0C5-6880-4A4F-BCF8-DF1F6AE0E317}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorPhotoshop3_1-mul/AdobeCo lorPhotoshop3_1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorPhotoshop3_1-mul/AdobeCo lorPhotoshop3_1-mul.dmg
    Updating media info for: {49E6D00F-3456-11E0-AE83-842B2B67A8CC}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDeviceCentral3.5-all/AdobeDev iceCentral3.5-all.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDeviceCentral3.5-all/AdobeDev iceCentral3.5-all.dmg
    Updating media info for: {4A8546D0-CEDF-48C1-9BA1-DD5B4ADFC154}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeMiniBridge1.1-mul/AdobeMiniBr idge1.1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeMiniBridge1.1-mul/AdobeMiniBr idge1.1-mul.dmg
    Updating media info for: {4B204697-D302-42D9-94B4-8BDDE6DD359C}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeReviewPanelCS-mul/AdobeReview PanelCS-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeReviewPanelCS-mul/AdobeReview PanelCS-mul.dmg
    Updating media info for: {4B4C871D-9C8A-4C8A-B92A-C37273D6CE7D}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks11.1.0All/AdobeFirew orks11.1.0All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks11.1.0All/AdobeFirew orks11.1.0All.dmg
    Updating media info for: {4C08199E-0D93-4227-8325-F024E71CA7A1}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeSING3-mul/AdobeSING3-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeSING3-mul/AdobeSING3-mul.dmg
    Updating media info for: {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/SwitchBoard2.0All/SwitchBoard2.0Al l.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/SwitchBoard2.0All/SwitchBoard2.0Al l.dmg
    Updating media info for: {50491591-A44F-429E-B7C8-87E03FECFD78}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFlashCatalyst-mul/AdobeFlashC atalyst-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFlashCatalyst-mul/AdobeFlashC atalyst-mul.dmg
    Updating media info for: {54D89F03-8EED-4FF9-BCDF-3B2E11D448A6}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorCommonSetCMYK3_1-mul/Ado beColorCommonSetCMYK3_1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorCommonSetCMYK3_1-mul/Ado beColorCommonSetCMYK3_1-mul.dmg
    Updating media info for: {5C0FEBDA-5A0E-4FC8-91CB-229A4C1561E9}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeXMPPanelsAll-081210014320/Ado beXMPPanelsAll-081210014320.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeXMPPanelsAll-081210014320/Ado beXMPPanelsAll-081210014320.dmg
    Updating media info for: {62ED7AE1-01FA-4066-97B7-1CD93A68DD0D}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeHunspellPluginAll/AdobeHunspe llPluginAll.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeHunspellPluginAll/AdobeHunspe llPluginAll.dmg
    Updating media info for: {6A2E619B-E4AC-433B-A648-D458CE543A96}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeXMPPanelsAll/AdobeXMPPanelsAl l.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeXMPPanelsAll/AdobeXMPPanelsAl l.dmg
    Updating media info for: {6BC81374-1E33-4495-93E2-DD2B10D358EE}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/iPhone_Flash11.5-mul/iPhone_Flash1 1.5-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/iPhone_Flash11.5-mul/iPhone_Flash1 1.5-mul.dmg
    Updating media info for: {6C8DB10F-B997-4F24-B081-7BD4313CDBAA}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator15_1en_GBLanguageP ack/AdobeIllustrator15_1en_GBLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator15_1en_GBLanguageP ack/AdobeIllustrator15_1en_GBLanguagePack.dmg
    Updating media info for: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeTypeSupport10-mul/AdobeTypeSu pport10-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeTypeSupport10-mul/AdobeTypeSu pport10-mul.dmg
    Updating media info for: {71BC8278-815D-4F8C-8FA5-C6F782C73892}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCSXSInfrastructure2.5-mul/Ado beCSXSInfrastructure2.5-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCSXSInfrastructure2.5-mul/Ado beCSXSInfrastructure2.5-mul.dmg
    Updating media info for: {75CD59C0-516F-11E0-892C-26ECE2AB3DC5}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xCommonLang-en_US/Ad obeInDesign7xCommonLang-en_US.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xCommonLang-en_US/Ad obeInDesign7xCommonLang-en_US.dmg
    Updating media info for: {7745F18B-FD8A-4011-BE16-588900C503D0}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFlashFonts1-mul/AdobeFlashFon ts1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFlashFonts1-mul/AdobeFlashFon ts1-mul.dmg
    Updating media info for: {7D676EF8-BB79-4741-B799-36F3F1F8DCCB}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorEU_Recommended3_1-mul/Ad obeColorEU_Recommended3_1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorEU_Recommended3_1-mul/Ad obeColorEU_Recommended3_1-mul.dmg
    Updating media info for: {83478D6E-4AA8-11E0-A479-24B1F9D7AC32}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeContentViewer-mul/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeContentViewer-mul/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Updating media info for: {8AB04F7C-8AEF-4023-9CDB-F761E4ECF9CC}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks11.1.0en_USLanguageP ack/AdobeFireworks11.1.0en_USLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks11.1.0en_USLanguageP ack/AdobeFireworks11.1.0en_USLanguagePack.dmg
    Updating media info for: {8B4C951B-F853-4B05-B892-9D5B3CD8AC98}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings10-ja_JP/AdobePDFS ettings10-ja_JP.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings10-ja_JP/AdobePDFS ettings10-ja_JP.dmg
    Updating media info for: {93D13A00-516E-11E0-97B7-E4DEE2AB3DC5}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xAppLang-en_GB/Adobe InDesign7xAppLang-en_GB.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xAppLang-en_GB/Adobe InDesign7xAppLang-en_GB.dmg
    Updating media info for: {970C9F3A-39C5-480B-BE51-7C70AB9F84DB}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFlash11.5-en_USLanguagePack/A dobeFlash11.5-en_USLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFlash11.5-en_USLanguagePack/A dobeFlash11.5-en_USLanguagePack.dmg
    Updating media info for: {99BDA97A-4AA8-11E0-9E8D-32B2F9D7AC32}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDigitalPublishing-mul/AdobeDi gitalPublishing-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDigitalPublishing-mul/AdobeDi gitalPublishing-mul.dmg
    Updating media info for: {9B4F8AA7-DDFA-4A0F-A36C-D0F66CCD66F7}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaver11.5-mul/AdobeDrea mweaver11.5-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaver11.5-mul/AdobeDrea mweaver11.5-mul.dmg
    Updating media info for: {9BA136BE-0077-41E1-AD56-56AB5D4A1A67}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeExtendScriptToolkit3.6.0-mul/ AdobeExtendScriptToolkit3.6.0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeExtendScriptToolkit3.6.0-mul/ AdobeExtendScriptToolkit3.6.0-mul.dmg
    Updating media info for: {9F747BEC-FB4E-4830-8C58-363B8DCC26EB}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator15_1en_USLanguageP ack/AdobeIllustrator15_1en_USLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator15_1en_USLanguageP ack/AdobeIllustrator15_1en_USLanguagePack.dmg
    Updating media info for: {9FBC5BF9-5019-49D6-A1B3-6BB0E2A1FA54}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/aifsdk-mac/aifsdk-mac.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/aifsdk-mac/aifsdk-mac.dmg
    Updating media info for: {9FE2BFB0-1DBE-4269-AEBA-A870C5990BEA}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaverWidgetsBrowser1.0- mul/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaverWidgetsBrowser1.0- mul/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Updating media info for: {A1181890-9FA4-11DF-A25D-A35DF04EC7B1}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeToolhints-mul/AdobeToolhints- mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeToolhints-mul/AdobeToolhints- mul.dmg
    Updating media info for: {A189C479-C7CD-4E08-8CCF-D999B68C0C71}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRawProfile6.0All-181110 110333/AdobeCameraRawProfile6.0All-181110110333.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRawProfile6.0All-181110 110333/AdobeCameraRawProfile6.0All-181110110333.dmg
    Updating media info for: {A2502D10-2D75-4620-8A8B-73F39D5C1243}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings10-mul/AdobePDFSet tings10-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings10-mul/AdobePDFSet tings10-mul.dmg
    Updating media info for: {A44863BF-8DB8-4D22-88DB-5A02BE319840}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeLinguisticsAll/AdobeLinguisti csAll.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeLinguisticsAll/AdobeLinguisti csAll.dmg
    Updating media info for: {A516708E-EC03-40F5-B82E-0851A44B3780}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator15_1-mul/AdobeIllu strator15_1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator15_1-mul/AdobeIllu strator15_1-mul.dmg
    Updating media info for: {A80C015C-1939-42A5-AD2F-E76C7F194505}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorJA_ExtraSettings3_1-mul/ AdobeColorJA_ExtraSettings3_1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorJA_ExtraSettings3_1-mul/ AdobeColorJA_ExtraSettings3_1-mul.dmg
    Updating media info for: {AC003BC0-704F-4F02-A72E-AC8B7044DE24}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeOutputModuleAll/AdobeOutputMo duleAll.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeOutputModuleAll/AdobeOutputMo duleAll.dmg
    Updating media info for: {AC76BA86-1033-F400-7760-000000000005}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AcrobatProfessional10.0-EFG/Adobe Acrobat X Pro Installer.pkg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AcrobatProfessional10.0-EFG/Adobe Acrobat X Pro Installer.pkg
    Updating media info for: {ADC78ABC-AF09-47D2-977F-E27850E3CC1C}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaver11.5en_USLanguageP ack/AdobeDreamweaver11.5en_USLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaver11.5en_USLanguageP ack/AdobeDreamweaver11.5en_USLanguagePack.dmg
    Updating media info for: {B5E12198-2A83-436B-AE2F-1F7BF65D2C14}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorJA_Recommended3_1-mul/Ad obeColorJA_Recommended3_1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorJA_Recommended3_1-mul/Ad obeColorJA_Recommended3_1-mul.dmg
    Updating media info for: {BAE5212B-6651-4AD8-B26A-1B284D2665C6}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePDFL9.9-mul/AdobePDFL9.9-mul. dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePDFL9.9-mul/AdobePDFL9.9-mul. dmg
    Updating media info for: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCMaps3-mul/AdobeCMaps3-mul.dm g
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCMaps3-mul/AdobeCMaps3-mul.dm g
    Updating media info for: {BD85DFD4-005F-4219-8E27-C922CC4D8A61}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCSXSExtensions2.5-mul/AdobeCS XSExtensions2.5-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCSXSExtensions2.5-mul/AdobeCS XSExtensions2.5-mul.dmg
    Updating media info for: {C1646326-4AA6-11E0-AE8E-4C9CF9D7AC32}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDigitalPublishingAppLang-en_U S/AdobeDigitalPublishingAppLang-en_US.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDigitalPublishingAppLang-en_U S/AdobeDigitalPublishingAppLang-en_US.dmg
    Updating media info for: {CBDD7465-CE11-4A58-9497-C370B65923F1}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFontsRequired-mul/AdobeFontsR equired-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFontsRequired-mul/AdobeFontsR equired-mul.dmg
    Updating media info for: {CE6E1448-516F-11E0-B3C0-13EDE2AB3DC5}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xAppFSet-Roman/Adobe InDesign7xAppFSet-Roman.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xAppFSet-Roman/Adobe InDesign7xAppFSet-Roman.dmg
    Updating media info for: {D682C558-6F3F-4800-885C-4C5EB1B7338C}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeBuzzword-mul/AdobeBuzzword-mu l.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeBuzzword-mul/AdobeBuzzword-mu l.dmg
    Updating media info for: {D76E6B59-E1FC-460D-96F3-90B20CAE246D}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks11.1.0en_GBLanguageP ack/AdobeFireworks11.1.0en_GBLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks11.1.0en_GBLanguageP ack/AdobeFireworks11.1.0en_GBLanguagePack.dmg
    Updating media info for: {D8B9B5FB-D388-4D79-AA4B-6C09641189F6}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeUtilities3.1-mul/AdobeUtiliti es3.1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeUtilities3.1-mul/AdobeUtiliti es3.1-mul.dmg
    Updating media info for: {D97AF04B-B70A-4862-BC25-31E6D9C4A529}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFlash11.5-mul/AdobeFlash11.5- mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFlash11.5-mul/AdobeFlash11.5- mul.dmg
    Updating media info for: {DD18D60C-87B1-47D9-8312-67508B402FB9}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/SiteCatalystNetAverages2-mul/SiteC atalystNetAverages2-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/SiteCatalystNetAverages2-mul/SiteC atalystNetAverages2-mul.dmg
    Updating media info for: {DEA79551-23E3-430A-9B15-B544479B7DB2}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/FPPluginMac_STI/FPPluginMac_STI.dm g
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/FPPluginMac_STI/FPPluginMac_STI.dm g
    Updating media info for: {E348E466-429A-4FB0-AFCF-8306C16BBFF1}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeMobileExtension_Flash11.5-mul /AdobeMobileExtension_Flash11.5-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeMobileExtension_Flash11.5-mul /AdobeMobileExtension_Flash11.5-mul.dmg
    Updating media info for: {E39A5ABD-516B-46F9-A042-694BBA6A4E08}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFontsRecommended-mul/AdobeFon tsRecommended-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeFontsRecommended-mul/AdobeFon tsRecommended-mul.dmg
    Updating media info for: {E3EE510E-4AA6-11E0-A977-0A9EF9D7AC32}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDigitalPublishingAppLang-en_G B/AdobeDigitalPublishingAppLang-en_GB.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeDigitalPublishingAppLang-en_G B/AdobeDigitalPublishingAppLang-en_GB.dmg
    Updating media info for: {E471A41E-852F-4A85-AA74-5B82AB81C615}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorNA_ExtraSettings3_1-mul/ AdobeColorNA_ExtraSettings3_1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorNA_ExtraSettings3_1-mul/ AdobeColorNA_ExtraSettings3_1-mul.dmg
    Updating media info for: {EB186BF2-0A84-40A2-B794-0326D3DF9973}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeVideoProfilesCS3_1-mul/AdobeV ideoProfilesCS3_1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeVideoProfilesCS3_1-mul/AdobeV ideoProfilesCS3_1-mul.dmg
    Updating media info for: {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeSuiteSharedConfiguration-mul/ AdobeSuiteSharedConfiguration-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeSuiteSharedConfiguration-mul/ AdobeSuiteSharedConfiguration-mul.dmg
    Updating media info for: {ED9DC850-516E-11E0-9096-1FE5E2AB3DC5}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xAppLang-en_US/Adobe InDesign7xAppLang-en_US.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xAppLang-en_US/Adobe InDesign7xAppLang-en_US.dmg
    Updating media info for: {EDE888ED-3BD7-4D8C-AB35-7E4C661A94D9}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop12-en_US/AdobePhotos hop12-en_US.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop12-en_US/AdobePhotos hop12-en_US.dmg
    Updating media info for: {EE85C227-0148-4825-B659-6A1E142571EE}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeBridge4.1-mul/AdobeBridge4.1- mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeBridge4.1-mul/AdobeBridge4.1- mul.dmg
    Updating media info for: {EF45880C-DD84-46C3-A054-0BC5F76A6BBE}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop12-Support/AdobePhot oshop12-Support.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop12-Support/AdobePhot oshop12-Support.dmg
    Updating media info for: {F313167E-5172-11E0-ACE7-30C2E3AB3DC5}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xCommonBase-mul/Adob eInDesign7xCommonBase-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign7xCommonBase-mul/Adob eInDesign7xCommonBase-mul.dmg
    Updating media info for: {F8ABD584-A99C-4304-AC4B-CCFD0914D871}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeLinguistics_3_5_All/AdobeLing uistics_3_5_All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeLinguistics_3_5_All/AdobeLing uistics_3_5_All.dmg
    Updating media info for: {FD58D99B-9927-4226-8E00-959A4F76BD89}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRaw6.0All-181110110248/ AdobeCameraRaw6.0All-181110110248.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRaw6.0All-181110110248/ AdobeCameraRaw6.0All-181110110248.dmg
    Updating media info for: {FECCB1BF-038D-41C2-861B-4560E7667005}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorEU_ExtraSettings3_1-mul/ AdobeColorEU_ExtraSettings3_1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/AdobeColorEU_ExtraSettings3_1-mul/ AdobeColorEU_ExtraSettings3_1-mul.dmg
    Updating media info for: {FFC07452-6E0A-47A6-86E2-E18C9A992E7B}
    NOTE: Ignoring media info and setting media path as: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/DeviceCentral3.5LP-en_GB/DeviceCen tral3.5LP-en_GB.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Macintosh HD 10.4.8/CS5.5 Premium_Install.pkg/Contents/Resources//Setup/payloads/DeviceCentral3.5LP-en_GB/DeviceCen tral3.5LP-en_GB.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,4.0.50.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0: 1 (0,10)
      {D8B9B5FB-D388-4D79-AA4B-6C09641189F6} Adobe Utilities CS5.5 3.1.0.0: 2 (0,4)
      {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0: 3 (0,5)
      {A189C479-C7CD-4E08-8CCF-D999B68C0C71} Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All 6.3.0.0: 4 (0,0)
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0: 5 (0,9)
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0: 6 (0,7)
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0: 6 (0,7)
      {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 9.9.0.0: 7 (0,6)
      {AC003BC0-704F-4F02-A72E-AC8B7044DE24} AdobeOutputModule 3.1.0.0: 8 (0,5)
      {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0: 9 (0,4)
      {1A1E5FF9-D0FD-42A3-8E18-E5E7E95E1AB4} DynamiclinkSupport 5.5.0.0: 9 (0,4)
      {0175676F-8C92-49F2-9131-D0D6AD654B41} AdobeHelp 3.4.0.0: 10 (0,9)
      {71BC8278-815D-4F8C-8FA5-C6F782C73892} Adobe CSXS Infrastructure CS5.5 2.5.0.0: 11 (0,7)
      {4058E728-84D8-45CE-8E2D-5F35BD6659A1} Adobe Extension Manager CS5.5 5.5.0.0: 11 (0,7)
      {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0: 12 (0,6)
      {5C0FEBDA-5A0E-4FC8-91CB-229A4C1561E9} Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll 3.1.0.0: 13 (0,0)
      {9BA136BE-0077-41E1-AD56-56AB5D4A1A67} Adobe ExtendScript Toolkit CS5.5 3.6.0.0: 14 (2,6)
      {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0: 15 (1,4)
      {FD58D99B-9927-4226-8E00-959A4F76BD89} Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All 6.3.0.0: 16 (0,0)
      {54D89F03-8EED-4FF9-BCDF-3B2E11D448A6} AdobeColorCommonSetCMYK 3.1.0.0: 17 (0,4)
      {45063C56-A2A2-4FD1-A56A-A964723EEE1E} AdobeColorCommonSetRGB 3.1.0.0: 17 (0,4)
      {7D676EF8-BB79-4741-B799-36F3F1F8DCCB} AdobeColorEU CS5.5 3.1.0.0: 17 (0,4)
      {FECCB1BF-038D-41C2-861B-4560E7667005} AdobeColorEU CS5.5 3.1.0.0: 17 (0,4)
      {A80C015C-1939-42A5-AD2F-E76C7F194505} AdobeColorJA CS5.5 3.1.0.0: 17 (0,4)
      {B5E12198-2A83-436B-AE2F-1F7BF65D2C14} AdobeColorJA CS5.5 3.1.0.0: 17 (0,4)
      {11E1188F-E576-47BC-B215-600C02C7EABF} AdobeColorNA CS5.5 3.1.0.0: 17 (0,4)
      {E471A41E-852F-4A85-AA74-5B82AB81C615} AdobeColorNA CS5.5 3.1.0.0: 17 (0,4)
      {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0: 18 (0,3)
      {03FB981A-5170-11E0-A90E-3CEDE2AB3DC5} Adobe InDesign CS5.5 Application Base Files2 7.5.0.0: 19 (0,1)
      {CE6E1448-516F-11E0-B3C0-13EDE2AB3DC5} Adobe InDesign CS5.5 Application Feature Set Files 7.5.0.0: 19 (0,1)
      {F313167E-5172-11E0-ACE7-30C2E3AB3DC5} Adobe InDesign CS5.5 Common Base Files 7.5.0.0: 19 (0,1)
      {EF45880C-DD84-46C3-A054-0BC5F76A6BBE} Adobe Photoshop CS5.1 Support 12.1.0.0: 19 (0,1)
      {3FA63389-0091-497A-8522-998E43648AEF} Adobe Player for Embedding 3.2 3.2.0.0: 19 (0,1)
      {9FBC5BF9-5019-49D6-A1B3-6BB0E2A1FA54} Pixel Bender Toolkit 2.6.0.0: 20 (1,1)
      {BD85DFD4-005F-4219-8E27-C922CC4D8A61} Adobe CSXS Extensions CS5.5 2.5.0.0: 21 (0,6)
      {4B204697-D302-42D9-94B4-8BDDE6DD359C} Adobe ReviewPanel CS5.5 3.0.0.0: 22 (0,5)
      {49E6D00F-3456-11E0-AE83-842B2B67A8CC} Adobe Device Central CS5.5 3.5.0.0: 23 (3,5)
      {FFC07452-6E0A-47A6-86E2-E18C9A992E7B} Adobe Device Central CS5.5_DeviceCentral3.5LP-en_GB 3.5.0.0: 24 (0,0)
      {22C26C10-5C22-4674-A52C-100112664305} Adobe Device Central CS5.5_DeviceCentral3.5LP-en_US 3.5.0.0: 24 (0,0)
      {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0: 25 (0,4)
      {270C312D-7EC7-474C-BEB2-79CD398E02A3} HIL Help Search 1.0.0.0: 25 (0,4)
      {8B4C951B-F853-4B05-B892-9D5B3CD8AC98} PDF Settings CS5 10.0.0.0: 25 (0,4)
      {A2502D10-2D75-4620-8A8B-73F39D5C1243} PDF Settings CS5 10.0.0.0: 25 (0,4)
      {E39A5ABD-516B-46F9-A042-694BBA6A4E08} Recommended Common Fonts Installation 1.0.0.0: 25 (0,4)
      {CBDD7465-CE11-4A58-9497-C370B65923F1} Required Common Fonts Installation 1.0.0.0: 25 (0,4)
      {DD18D60C-87B1-47D9-8312-67508B402FB9} SiteCatalyst NetAverages CS5.5 2.0.0.0: 25 (0,4)
      {EE85C227-0148-4825-B659-6A1E142571EE} Adobe Bridge CS5.1 4.1.0.0: 26 (12,4)
      {0D96CFE6-376D-44B8-808A-16F3BEB73263} Adobe Media Encoder CS5.5 5.5.0.0: 27 (1,3)
      {3450d4c5-a82b-4428-a512-842ee1555a14} CSXS Story Extension 2.5.0.0: 28 (0,2)
      {DEA79551-23E3-430A-9B15-B544479B7DB2} Flash Player 10.2.153.1: 28 (0,2)
      {4A8546D0-CEDF-48C1-9BA1-DD5B4ADFC154} Adobe Mini Bridge CS5.1 1.1.0.0: 29 (1,2)
      {D682C558-6F3F-4800-885C-4C5EB1B7338C} Adobe Buzzword CS5.5 1.0.0.0: 30 (0,1)
      {83478D6E-4AA8-11E0-A479-24B1F9D7AC32} Adobe Content Viewer 1.0.0.0: 30 (0,1)
      {9FE2BFB0-1DBE-4269-AEBA-A870C5990BEA} Adobe Dreamweaver Widget Browser 1.0.0.0: 30 (0,1)
      {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1 1.0.0.0: 30 (0,1)
      {62ED7AE1-01FA-4066-97B7-1CD93A68DD0D} Adobe Hunspell Linguistics Plugin CS5.5 1.0.0.0: 30 (0,1)
      {F8ABD584-A99C-4304-AC4B-CCFD0914D871} Adobe Linguistics CS5.5 5.5.0.0: 30 (0,1)
      {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5 3.0.0.0: 30 (0,1)
      {A1181890-9FA4-11DF-A25D-A35DF04EC7B1} Adobe Toolhints CS5.5 1.5.0.0: 30 (0,1)
      {419B81A0-6282-456C-9B1E-8DBABA0DE2DC} Adobe WinSoft Linguistics Plugin CS5.5 1.2.0.0: 30 (0,1)
      {4603E0C5-6880-4A4F-BCF8-DF1F6AE0E317} AdobeColorPhotoshop CS5.5 3.1.0.0: 30 (0,1)
      {EB186BF2-0A84-40A2-B794-0326D3DF9973} AdobeColorVideoProfilesCS CS5.5 3.1.0.0: 30 (0,1)
      {99BDA97A-4AA8-11E0-9E8D-32B2F9D7AC32} Digital Publishing 1.0.0.0: 30 (0,1)
      {C1646326-4AA6-11E0-AE8E-4C9CF9D7AC32} Adobe Digital Publishing Application Language Files_AdobeDigitalPublishingAppLang-en_US 1.0.0.0: 31 (0,0)
      {E3EE510E-4AA6-11E0-A977-0A9EF9D7AC32} Adobe Digital Publishing Application Language Files_AdobeDigitalPublishingAppLang-en_GB 1.0.0.0: 31 (0,0)
      {6BC81374-1E33-4495-93E2-DD2B10D358EE} AIR for APPLE IOS Support (FP) 2.6.0.0: 31 (0,0)
      {AC76BA86-1033-F400-7760-000000000005} Acrobat Professional 10.0.0.0: 31 (0,0)
      {04ADB20D-99A3-4F83-8176-F07787237EBA} Creative Suite 5.5 Design Premium 5.5.0.0: 32 (1,0)
      {50491591-A44F-429E-B7C8-87E03FECFD78} Adobe Flash Catalyst CS5.5 1.5.0.0: 33 (9,0)
      {9B4F8AA7-DDFA-4A0F-A36C-D0F66CCD66F7} Adobe Dreamweaver CS5.5 11.5.0.0: 34 (13,0)
      {ADC78ABC-AF09-47D2-977F-E27850E3CC1C} Adobe Dreamweaver CS5.5_AdobeDreamweaver11.5en_USLanguagePack 11.5.0.0: 35 (0,0)
      {4B4C871D-9C8A-4C8A-B92A-C37273D6CE7D} Adobe Fireworks CS5.1 11.1.0.0: 36 (14,0)
      {D76E6B59-E1FC-460D-96F3-90B20CAE246D} Adobe Fireworks CS5.1_AdobeFireworks11.1.0en_GBLanguagePack 11.1.0.0: 37 (0,0)
      {8AB04F7C-8AEF-4023-9CDB-F761E4ECF9CC} Adobe Fireworks CS5.1_AdobeFireworks11.1.0en_USLanguagePack 11.1.0.0: 37 (0,0)
      {A516708E-EC03-40F5-B82E-0851A44B3780} Adobe Illustrator CS5.1 15.1.0.0: 38 (32,0)
      {9F747BEC-FB4E-4830-8C58-363B8DCC26EB} Adobe Illustrator CS5.1_AdobeIllustrator15_1en_USLanguagePack 15.1.0.0: 39 (0,0)
      {6C8DB10F-B997-4F24-B081-7BD4313CDBAA} Adobe Illustrator CS5.1_AdobeIllustrator15_1en_GBLanguagePack 15.1.0.0: 39 (0,0)
      {D97AF04B-B70A-4862-BC25-31E6D9C4A529} Adobe Flash CS5.5 11.5.0.0: 40 (36,0)
      {E348E466-429A-4FB0-AFCF-8306C16BBFF1} Adobe Flash CS5.5_AdobeMobileExtension_Flash11.5-mul 4.5.0.0: 41 (0,0)
      {970C9F3A-39C5-480B-BE51-7C70AB9F84DB} Adobe Flash CS5.5_AdobeFlash11.5-en_USLanguagePack 11.5.0.0: 41 (0,0)
      {2EA9B52E-8613-41A0-9EEF-FF54AD4CC810} Adobe Flash CS5.5_AdobeMobileExtension_Flash11.5-en_US 4.5.0.0: 41 (0,0)
      {08EF22BC-43B2-4B4E-BA12-52B18F418F38} Adobe Photoshop CS5.1 Core 12.1.0.0: 42 (37,0)
      {1FEB691B-39ED-4343-99D6-CACDAD879D8C} Adobe Photoshop CS5.1 International English Language Pack_AdobePhotoshop12-en_GB 12.1.0.0: 43 (0,0)
      {EDE888ED-3BD7-4D8C-AB35-7E4C661A94D9} Adobe Photoshop CS5.1 English Language Pack_AdobePhotoshop12-en_US 12.1.0.0: 43 (0,0)
      {0CCF0458-5171-11E0-BC45-DC59E3AB3DC5} Adobe InDesign CS5.5 Application Base Files 7.5.0.0: 44 (47,0)
      {75CD59C0-516F-11E0-892C-26ECE2AB3DC5} Adobe InDesign CS5.5 Common Language Files_AdobeInDesign7xCommonLang-en_US 7.5.0.0: 45 (0,0)
      {3019BB9E-516F-11E0-AAAB-3AEBE2AB3DC5} Adobe InDesign CS5.5 Common Language Files_AdobeInDesign7xCommonLang-en_GB 7.5.0.0: 45 (0,0)
      {ED9DC850-516E-11E0-9096-1FE5E2AB3DC5} Adobe InDesign CS5.5 Application Language Files_AdobeInDesign7xAppLang-en_US 7.5.0.0: 45 (0,0)
      {93D13A00-516E-11E0-97B7-E4DEE2AB3DC5} Adobe InDesign CS5.5 Application Language Files_AdobeInDesign7xAppLang-en_GB 7.5.0.0: 45 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "edtWorkflow" to: 1
    Setting property "installLanguage" to: en_US
    Attempting to find the selected language in the set of available payload languages
    Overwrite property "com.Adobe.PDApp.ignore_aam" to:
    Overwrite property "overrideFile" to: /tmp/EAF55699-644A-4B22-A6B2-D74E5D4A6686//C1FFDBA7-E38A-4C88-90B3-9BDDCE4CEC92
    Overwrite property "skipProcessChecks" to: 1
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0 is: false
    Action string for {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0  is none
    Value returned on lookup of payload: {D8B9B5FB-D388-4D79-AA4B-6C09641189F6} Adobe Utilities CS5.5 3.1.0.0 is: false
    Action string for {D8B9B5FB-D388-4D79-AA4B-6C09641189F6} Adobe Utilities CS5.5 3.1.0.0  is none
    Value returned on lookup of payload: {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 is: false
    Action string for {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0  is none
    Value returned on lookup of payload: {A189C479-C7CD-4E08-8CCF-D999B68C0C71} Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All 6.3.0.0 is: false
    Action string for {A189C479-C7CD-4E08-8CCF-D999B68C0C71} Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All 6.3.0.0  is install
    Value returned on lookup of payload: {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0 is: false
    Action string for {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 is: false
    Action string for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 is: false
    Action string for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0  is none
    Value returned on lookup of payload: {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 9.9.0.0 is: false
    Action string for {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 9.9.0.0  is none
    Value returned on lookup of payload: {AC003BC0-704F-4F02-A72E-AC8B7044DE24} AdobeOutputModule 3.1.0.0 is: false
    Action string for {AC003BC0-704F-4F02-A72E-AC8B7044DE24} AdobeOutputModule 3.1.0.0  is none
    Value returned on lookup of payload: {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0 is: false
    Action string for {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0  is none
    Value returned on lookup of payload: {1A1E5FF9-D0FD-42A3-8E18-E5E7E95E1AB4} DynamiclinkSupport 5.5.0.0 is: false
    Action string for {1A1E5FF9-D0FD-42A3-8E18-E5E7E95E1AB4} DynamiclinkSupport 5.5.0.0  is none
    Value returned on lookup of payload: {0175676F-8C92-49F2-9131-D0D6AD654B41} AdobeHelp 3.4.0.0 is: false
    Action string for {0175676F-8C92-49F2-9131-D0D6AD654B41} AdobeHelp 3.4.0.0  is configdbonly
    Selection of payload {0175676F-8C92-49F2-9131-D0D6AD654B41} AdobeHelp 3.4.0.0 is forbidden by the policy. Reason: Required dependency
    Value returned on lookup of payload: {71BC8278-815D-4F8C-8FA5-C6F782C73892} Adobe CSXS Infrastructure CS5.5 2.5.0.0 is: false
    Action string for {71BC8278-815D-4F8C-8FA5-C6F782C73892} Adobe CSXS Infrastructure CS5.5 2.5.0.0  is none
    Value returned on lookup of payload: {4058E728-84D8-45CE-8E2D-5F35BD6659A1} Adobe Extension Manager CS5.5 5.5.0.0 is: false
    Action string for {4058E728-84D8-45CE-8E2D-5F35BD6659A1} Adobe Extension Manager CS5.5 5.5.0.0  is none
    Value returned on lookup of payload: {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0 is: false
    Action string for {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0  is none
    Value returned on lookup of payload: {5C0FEBDA-5A0E-4FC8-91CB-229A4C1561E9} Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll 3.1.0.0 is: false
    Action string for {5C0FEBDA-5A0E-4FC8-91CB-229A4C1561E9} Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll 3.1.0.0  is install
    Value returned on lookup of payload: {9BA136BE-0077-41E1-AD56-56AB5D4A1A67} Adobe ExtendScript Toolkit CS5.5 3.6.0.0 is: false
    Action string for {9BA136BE-0077-41E1-AD56-56AB5D4A1A67} Adobe ExtendScript Toolkit CS5.5 3.6.0.0  is none
    Value returned on lookup of payload: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0 is: false
    Action string for {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0  is none
    Value returned on lookup of payload: {FD58D99B-9927-4226-8E00-959A4F76BD89} Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All 6.3.0.0 is: false
    Action string for {FD58D99B-9927-4226-8E00-959A4F76BD89} Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All 6.3.0.0  is install
    Value returned on lookup of payload: {54D89F03-8EED-4FF9-BCDF-3B2E11D448A6} AdobeColorCommonSetCMYK 3.1.0.0 is: false
    Action string for {54D89F03-8EED-4FF9-BCDF-3B2E11D448A6} AdobeColorCommonSetCMYK 3.1.0.0  is none
    Value returned on lookup of payload: {45063C56-A2A2-4FD1-A56A-A964723EEE1E} AdobeColorCommonSetRGB 3.1.0.0 is: false
    Action string for {45063C56-A2A2-4FD1-A56A-A964723EEE1E} AdobeColorCommonSetRGB 3.1.0.0  is none
    Value returned on lookup of payload: {7D676EF8-BB79-4741-B799-36F3F1F8DCCB} AdobeColorEU CS5.5 3.1.0.0 is: false
    Action string for {7D676EF8-BB79-4741-B799-36F3F1F8DCCB} AdobeColorEU CS5.5 3.1.0.0  is none
    Value returned on lookup of payload: {FECCB1BF-038D-41C2-861B-4560E7667005} AdobeColorEU CS5.5 3.1.0.0 is: false
    Action string for {FECCB1BF-038D-41C2-861B-4560E7667005} AdobeColorEU CS5.5 3.1.0.0  is none
    Value returned on lookup of payload: {A80C015C-1939-42A5-AD2F-E76C7F194505} AdobeColorJA CS5.5 3.1.0.0 is: false
    Action string for {A80C015C-1939-42A5-AD2F-E76C7F194505} AdobeColorJA CS5.5 3.1.0.0  is none
    Value returned on lookup of payload: {B5E12198-2A83-436B-AE2F-1F7BF65D2C14} AdobeColorJA CS5.5 3.1.0.0 is: false
    Action string for {B5E12198-2A83-436B-AE2F-1F7BF65D2C14} AdobeColorJA CS5.5 3.1.0.0  is none
    Value returned on lookup of payload: {11E1188F-E576-47BC-B215-600C02C7EABF} AdobeColorNA CS5.5 3.1.0.0 is: false
    Action string for {11E1188F-E576-47BC-B215-600C02C7EABF} AdobeColorNA CS5.5 3.1.0.0  is none
    Value returned on lookup of payload: {E471A41E-852F-4A85-AA74-5B82AB81C615} AdobeColorNA CS5.5 3.1.0.0 is: false
    Action string for {E471A41E-852F-4A85-AA74-5B82AB81C615} AdobeColorNA CS5.5 3.1.0.0  is none
    Value returned on lookup of payload: {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0 is: false
    Action string for {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0  is none
    Value returned on lookup of payload: {03FB981A-5170-11E0-A90E-3CEDE2AB3DC5} Adobe InDesign CS5.5 Application Base Files2 7.5.0.0 is: false
    Action string for {03FB981A-5170-11E0-A90E-3CEDE2AB3DC5} Adobe InDesign CS5.5 Application Base Files2 7.5.0.0  is none
    Value returned on lookup of payload: {CE6E1448-516F-11E0-B3C0-13EDE2AB3DC5} Adobe InDesign CS5.5 Application Feature Set Files 7.5.0.0 is: false
    Action string for {CE6E1448-516F-11E0-B3C0-13EDE2AB3DC5} Adobe InDesign CS5.5 Application Feature Set Files 7.5.0.0  is none
    Value returned on lookup of payload: {F313167E-5172-11E0-ACE7-30C2E3AB3DC5} Adobe InDesign CS5.5 Common Base Files 7.5.0.0 is: false
    Action string for {F313167E-5172-11E0-ACE7-30C2E3AB3DC5} Adobe InDesign CS5.5 Common Base Files 7.5.0.0  is none
    Value returned on lookup of payload: {EF45880C-DD84-46C3-A054-0BC5F76A6BBE} Adobe Photoshop CS5.1 Support 12.1.0.0 is: false
    Action string for {EF45880C-DD84-46C3-A054-0BC5F76A6BBE} Adobe Photoshop CS5.1 Support 12.1.0.0  is none
    Value returned on lookup of payload: {3FA63389-0091-497A-8522-998E43648AEF} Adobe Player for Embedding 3.2 3.2.0.0 is: false
    Action string for {3FA63389-0091-497A-8522-998E43648AEF} Adobe Player for Embedding 3.2 3.2.0.0  is none
    Value returned on lookup of payload: {9FBC5BF9-5019-49D6-A1B3-6BB0E2A1FA54} Pixel Bender Toolkit 2.6.0.0 is: false
    Action string for {9FBC5BF9-5019-49D6-A1B3-6BB0E2A1FA54} Pixel Bender Toolkit 2.6.0.0  is none
    Value returned on lookup of payload: {BD85DFD4-005F-4219-8E27-C922CC4D8A61} Adobe CSXS Extensions CS5.5 2.5.0.0 is: false
    Action string for {BD85DFD4-005F-4219-8E27-C922CC4D8A61} Adobe CSXS Extensions CS5.5 2.5.0.0  is none
    Value returned on lookup of payload: {4B204697-D302-42D9-94B4-8BDDE6DD359C} Adobe ReviewPanel CS5.5 3.0.0.0 is: false
    Action string for {4B204697-D302-42D9-94B4-8BDDE6DD359C} Adobe ReviewPanel CS5.5 3.0.0.0  is none
    Value returned on lookup of payload: {49E6D00F-3456-11E0-AE83-842B2B67A8CC} Adobe Device Central CS5.5 3.5.0.0 is: false
    Action string for {49E6D00F-3456-11E0-AE83-842B2B67A8CC} Adobe Device Central CS5.5 3.5.0.0  is none
    Value returned on lookup of payload: {FFC07452-6E0A-47A6-86E2-E18C9A992E7B} Adobe Device Central CS5.5_DeviceCentral3.5LP-en_GB 3.5.0.0 is: false
    Action string for {FFC07452-6E0A-47A6-86E2-E18C9A992E7B} Adobe Device Central CS5.5_DeviceCentral3.5LP-en_GB 3.5.0.0  is none
    Payload {FFC07452-6E0A-47A6-86E2-E18C9A992E7B} Adobe Device Central CS5.5_DeviceCentral3.5LP-en_GB 3.5.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {22C26C10-5C22-4674-A52C-100112664305} Adobe Device Central CS5.5_DeviceCentral3.5LP-en_US 3.5.0.0 is: false
    Action string for {22C26C10-5C22-4674-A52C-100112664305} Adobe Device Central CS5.5_DeviceCentral3.5LP-en_US 3.5.0.0  is none
    Payload {22C26C10-5C22-4674-A52C-100112664305} Adobe Device Central CS5.5_DeviceCentral3.5LP-en_US 3.5.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0 is: false
    Action string for {A44863BF-8DB8

  • Creative Cloud Packager fails when downloading Media Encoder 7.2.2 update

    Hi all,
    I am wondering if anyone else is seeing this.
    I am attempting to use CCP 1.4 (Macintosh platform) to build a package for deployment to the Macs in our department. It is failing, specifically, when trying to download the Adobe Media Encoder 7.2.2 update, which I understand was released a few days ago. All other selected components download properly and the package will build if I deslect Adobe Media Encoder before building.
    I have successfully reproduced the issue on two different systems, have tried purging the cache folder that CCP uses, moving it to another location/disk etc, all with no joy. Here is a snippet from the log:
    04/11/14 09:20:22:455 | [INFO] |  | ASU | EnterpriseNative | EnterpriseNative |  |  | 1315279 | downloadupdates returned error Code :U43M1D204
    04/11/14 09:20:22:455 | [ERROR] |  | ASU | EnterpriseNative | EnterpriseNative |  |  | 1315279 | download updates returned statusCode:43, errorCode:204
    04/11/14 09:20:22:455 | [WARN] |  | ASU | EnterpriseNative | EnterpriseNative |  |  | 1315279 | ewa_getDownloadedUpdateCacheInfo: Cache XML file does not exist.
    Wondering if anyone else is seeing this or if anyone has any suggestions please?
    Thank you and warm regards,
    Neil.

    Hi Karl,
    I'm just following up to ask whether there has been any progress at your end with this - as I'm sure you'll understand, I am anxious to deploy CC to our machines and can't do so until this is resolved.
    Thank you again and regards,
    Neil.

  • Creative Cloud Packager - Build fail

    Hi,
    I am trying to build a package with CC 1.7 build 43 but receive the error 'Build fail'. I have pasted the log below. I have tried both x86 and x64 but it doesn't make a difference. I also tried building it without Illustrator but then received the same error with with Acrobat Pro.
    The only adobe productso on my workstation is Reader and Flash, running Win7. Any ideas how i can fix this?
    10/28/2014 09:41:28[INFO] AdobePackageBuilder - Build Version - 1.7.0.43
    10/28/2014 09:41:28[INFO] AdobePackageBuilder - Logging Level verbosity Set  to 4
    10/28/2014 09:41:58 [INFO] AdobePackageBuilder - Successfully retrieved TargetName from OptionXML.
    10/28/2014 09:42:15 [INFO] AdobePackageBuilder - Sucessfully extracted the product at C:\Users\brettm\AppData\Local\Temp\{EE9A7B5D-B687-482F-906D-3BC2C4C17DAA}\ACCCx2_8_1_451
    10/28/2014 09:42:15 [INFO] AdobePackageBuilder - Extraction completed with return code = 0
    10/28/2014 09:42:51 [WARN] AdobePackageBuilder - No file exist at (C:\CC\QLS_Digital\x86\QLS_Digital_x86\Build\ASU\Tools\CCC\Uninstall\deploy\remove.xml)
    10/28/2014 09:42:55 [INFO] AdobePackageBuilder - Copied File (payloads\Media_db.db)
    10/28/2014 09:42:55 [INFO] AdobePackageBuilder - Copied File (payloads\Media_db.sig)
    10/28/2014 09:42:55 [INFO] AdobePackageBuilder - Copied File (payloads\Setup.xml)
    10/28/2014 09:42:55 [INFO] AdobePackageBuilder - ASU at Path (C:\CC\QLS_Digital\x86\QLS_Digital_x86\Build\Setup\APRO11.0.0en_GB\Set-up.exe) is not found. Skipping copying and renaming.
    10/28/2014 09:44:23 [INFO] AdobePackageBuilder - Copied Setup file/folder (packages)
    10/28/2014 09:44:27 [INFO] AdobePackageBuilder - Copied Setup file/folder (resources)
    10/28/2014 09:44:27 [INFO] AdobePackageBuilder - Copied File (Set-up.exe)
    10/28/2014 09:44:28 [INFO] AdobePackageBuilder - Copied File (payloads\Media_db.db)
    10/28/2014 09:44:28 [INFO] AdobePackageBuilder - Copied File (payloads\Media_db.sig)
    10/28/2014 09:44:28 [INFO] AdobePackageBuilder - Copied File (payloads\Setup.xml)
    10/28/2014 09:45:08 [INFO] AdobePackageBuilder - Copied Setup file/folder (packages)
    10/28/2014 09:45:11 [INFO] AdobePackageBuilder - Copied Setup file/folder (resources)
    10/28/2014 09:45:11 [INFO] AdobePackageBuilder - Copied File (Set-up.exe)
    10/28/2014 09:45:12 [INFO] AdobePackageBuilder - Copied File (payloads\Media_db.db)
    10/28/2014 09:45:12 [INFO] AdobePackageBuilder - Copied File (payloads\Media_db.sig)
    10/28/2014 09:45:12 [INFO] AdobePackageBuilder - Copied File (payloads\setup.xml)
    10/28/2014 09:46:09 [ERROR] AdobePackageBuilder - Failed to unzip the file (payloads\AdobeIllustrator18-mul-300914132703\Assets1_1.zip) from the zip file (C:\Users\brettm\AppData\Local\Adobe\AAMUpdater\1.0\Install\AdobeIllustrator18-mul\18.1.0 .430.2\setup.zip).
    10/28/2014 09:46:09 [ERROR] AdobePackageBuilder - Failed to unzip the update - C:\Users\brettm\AppData\Local\Adobe\AAMUpdater\1.0\Install\AdobeIllustrator18-mul\18.1.0. 430.2\setup.zip.
    Regards,
    Brett.

    If I recall correctly I got around this by deleting everything under the C:\Users\brettm\AppData\Local\Adobe\AAMUpdater\1.0\Install directory and whitelisted the following address in our proxy server. Then I started all over again and it worked. It always failed towards the end of the build so I can only assume it was doing some final checks with Adobe servers to make sure I had the proper licencing or something like that. Hope this helps.
    ccmdl.adobe.com:80
    swupmf.adobe.com:80
    swupdl.adobe.com:80
    https://na1mbls.licenses.adobe.com
    https://ims-na1.adobelogin.com
    https://adobeid-na1.services.adobe.com
    https://na1r.services.adobe.com
    http://activate.adobe.com
    https://activate.adobe.com
    http://adobe.activate.com
    https://adobe.activate.com
    ccmdls.adobe.com:443
    ims-na1.adobelogin.com:443
    na1r.services.adobe.com:443
    prod-rel-ffc-ccm.oobesaas.adobe.com:443
    lm.licenses.adobe.com:443
    www-du1.adobe.com
    Regards,
    Brett.

  • Macintosh Creative Suite 6 package built with AAMEE 3.1 fails to install

    I'm trying to create a new install CS6 Standard package for Macintosh using AAMEE 3.1.
    All machines are new iMacs running 10.8.4.
    I walk through the process of building the package, provide serial number, adobe login, and configure the setup. The package seems to be created without any errors or problems.
    When I try to install the package on a machine, installation starts and runs for a minute or two, then stops showing the folllowing error:
    The installation failed.
    The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
    When I look at the Adobe setup error log, I see this message:
    [       0] Wed Jun 19 18:17:43 2013  INFO
    DEVersion: 6.0.0.0
    Loading library from /Applications/Utilities/Adobe Application Manager/DECore/DE6/Setup.dylib
    [       0] Wed Jun 19 18:17:43 2013  INFO
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    [       0] Wed Jun 19 18:17:43 2013 ERROR
    DW040: The product "{19D99776-D832-4EB7-84BD-55C06FD8D44C}" is not installed. Cannot proceed with the uninstall
    [       0] Wed Jun 19 18:17:43 2013  INFO
    ##### Running EDT Workflow #####
    :: END TIMER :: [Total Timer] took 1 milliseconds (0.001 seconds)
    [       0] Wed Jun 19 18:17:44 2013  INFO
    Uninstalling AAM
    I have tried using the default settings for creating a new package. I've also tried making various changes from the defaults, such as disabling checking for conflicting applications, enabling AIR, and changing what updates are applied. The result is always the same error when I try to install the package.
    There's no possibility of a conflict with a previous version of CS or something like that. I am literally doing this process on brand new Macs right out of the box, with a freshly downloaded copy of AAMEE, and a freshly downloaded DMG for CS6.
    The log refers to "assuming uninstall mode" and "Cannot proceed with the uninstall" but since this is a completely new fresh install on a clean fresh OS I can't even  begin to imagine what that could possibly mean.
    I've tried contacting Adobe support, but so far have only had generic tier one responses. Will be trying again tomorrow.
    I have searched this forum and the web in general, and I've found a similar reports with proposed solutions, such as disabling the check for conflicting applications, but none of them have helped.

    You don't have to look at Adobe's log, it's an objective C programming issue.
    Adobe didn't update their code.
    Open Mac OS console application and look for installation error, you will find something similar meaning the code is deprecated for Mac OS 10.8:
    11/7/13 5:03:55.758 PM Locum[74925]: Connection with distnoted server was invalidated
    11/7/13 5:10:32.433 PM Installer[78488]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    11/7/13 5:10:32.433 PM Installer[78488]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    11/7/13 5:10:32.445 PM Installer[78488]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    11/7/13 5:10:32.445 PM Installer[78488]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    11/7/13 5:11:14.879 PM Installer[78488]: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.

  • Lenovo System Update 5.0.3 failes to download packages

    Hello, 
    SU shows an error dialog saying "An error occurred while downloading packages.".
    I reinstalled SU and Solution Center and updated BIOS. But it still does not work...
    I checked several posts in this community.
    System Update fails to download updates
    Lenovo System Update 5.03 on T430u doesn't report software updates
    And I knew that tvsu_log_xxx.txt has important information for debugging.
    It turned out that SU failed to download "HelloLevel_9_08_00.xml" for the following reason.
    "An error ocurred while setting the digital certificates for this download"
    What is this? Do the digital certificates mean SSL certificate?
    Anyone know how to solve this?
    Regards,
    Yusuke Yamasaki
    systeminfo
    OS Name: Microsoft Windows 7 Professional
    OS Version: 6.1.7601 Service Pack 1 Build 7601
    System Manufacturer: LENOVO
    System Model: 20ANCTO1WW
    System Type: x64-based PC
    Processor(s): 1 Processor(s) Installed.
    [01]: Intel64 Family 6 Model 60 Stepping 3 GenuineIntel ~2701 Mhz
    BIOS Version: LENOVO GLET65WW (2.19 ), 2014/01/14
    tvsu_log_140219182345.txt
    [Lenovo System Update build: 2013-10-31 5.03.0008] 2014/02/19 18:23:45
    Info 2014-02-19 , 06:23:45
    場所 Tvsu.Environment.EnvironmentManager..ctor()
    Message: Starting Environment Manager...
    Info 2014-02-19 , 06:23:45
    場所 Tvsu.Nls.NlsResources..ctor()
    Message: Starting the instance of NLS@Runtime
    Info 2014-02-19 , 06:23:46
    場所 Tvsu.Nls.NlsResources..ctor()
    Message:
    The active language is: JP
    The default language is: JP
    The OS language is: JP
    The language loaded type is: OS
    Severe 2014-02-19 , 06:23:46
    場所 Tvsu.Sdk.SuSdk.StartApplication()
    Message: Application runs with the framework: 4.0.30319.18444
    Info 2014-02-19 , 06:23:46
    場所 Tvsu.Engine.DataBase.InitializeDataBase()
    Message: Initializing the DataBase from file: updates.ser
    Info 2014-02-19 , 06:23:46
    場所 Tvsu.Sdk.SuSdk.StartApplication()
    Message: Starting the Application
    Info 2014-02-19 , 06:23:46
    場所 Tvsukernel.Logic.GUIController.StartGUI(Boolean showsplash)
    Message: Starting GUI...
    Info 2014-02-19 , 06:23:46
    場所 Tvsukernel.Logic.GUIController.StartGUI(Boolean showsplash)
    Message: MainFrame created successfully
    Info 2014-02-19 , 06:23:46
    場所 Tvsukernel.Logic.GUIController.StartGUI(Boolean showsplash)
    Message: GUI -- Welcome screen
    Info 2014-02-19 , 06:23:46
    場所 Tvsukernel.Logic.GUIController.BackToMain()
    Message: Setting Welcome screen...
    Info 2014-02-19 , 06:23:46
    場所 Tvsukernel.FlowScreens.MainFrame.SetScreen(String screen, RoutedEventHandler[] eh)
    Message: Loading Welcome screen on Action pane.
    Info 2014-02-19 , 06:23:50
    場所 Tvsukernel.Logic.GUIController.SearchUpdates(Object sender, EventArgs args)
    Message: Starting the Search process...
    Info 2014-02-19 , 06:23:50
    場所 Tvsukernel.FlowScreens.MainFrame.SetScreen(String screen, RoutedEventHandler[] eh)
    Message: Loading Search screen on Action pane.
    Info 2014-02-19 , 06:23:50
    場所 Tvsukernel.Logic.ProgressThread.InitSearch()
    Message: GUI -- Reporting progress for the Search
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Sdk.SuSdk.GetSystemProperties()
    Message: Get the System Properties
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Task.Task.StartExecution()
    Message: PreTask
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Task.Task.StartExecution()
    Message: Start
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Task.Task.Start()
    Message: Starting the task
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Task.Task.Start()
    Message: The current process is:HelloProcess
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Task.Task.Start()
    Message: Executing the PreProcess HelloProcess
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Task.Task.Start()
    Message: Executing the StartProcess HelloProcess
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Process.HelloProcess.DownloadHelpFile()
    Message: The chm help file is already present in the system
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Process.HelloProcess.Start()
    Message: The test.properties file was not found, the normal Hello process will continue.
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Process.HelloProcess.Start()
    Message: HelloProcess Started
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Process.HelloProcess.Start()
    Message: Client level: HelloLevel_9_08_00
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Process.HelloProcess.DownloadUDF(String helloClientLevel)
    Message: The UDF will be downloaded from: https://download.lenovo.com/ibmdl/pub/pc/pccbbs/agent/SSClientCommon/HelloLevel_9_08_00.xml
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Process.HelloProcess.DownloadUDF(String helloClientLevel)
    Message: The UDF will be downloaded to-> C:\ProgramData\Lenovo\SystemUpdate\session\system\SSClientCommon\HelloLevel_9_08_00.xml
    Info 2014-02-19 , 06:23:50
    場所 Tvsukernel.CustomControls.Step.<>c__DisplayClass7.<set_Image>b__6()
    Message: Setting PROCESSING status.
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.ConnectionSettings.ConnectionSettings.GetConnectionForURL(String url)
    Message: Creating a new Connection Settings Bean instance to Host: download.lenovo.com
    Info 2014-02-19 , 06:23:50
    場所 Tvt.ConnectionSettings.ConnectionSettings.GetConnectionForURL(String url)
    Message: Direct connection found
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.FileDownloader.HttpsDownload.SetCertificates()
    Message: Setting certificates...
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.FileDownloader.HttpsDownload.SetCertificates()
    Message: An error ocurred while setting the digital certificates for this download
    Exception:
    Message: 'System.Net.ServicePointManager' のタイプ初期化子が例外をスローしました。
    Type: System.TypeInitializationException
    場所 System.Net.ServicePointManager.set_CertificatePolicy(ICertificatePolicy value)
    場所 Tvsu.FileDownloader.HttpsDownload.SetCertificates()
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.FileDownloader.HttpsDownload.StartDownload(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)
    Message: An exception ocurred while downloading https://download.lenovo.com/ibmdl/pub/pc/pccbbs/agent/SSClientCommon/HelloLevel_9_08_00.xml
    Status set to FAILED
    Exception:
    Message: 構成システムを初期化できませんでした。
    Type: System.Configuration.ConfigurationErrorsException
    場所 Tvsu.FileDownloader.HttpsDownload.doDownloadByHttps(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)
    場所 Tvsu.FileDownloader.HttpsDownload.StartDownload(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.FileDownloader.GeneralDownloader.Download(FileToDownloadBean bean, downloadingDelegate downDelegate)
    Message: Some error occurred in download module :
    Exception:
    Message: 構成システムを初期化できませんでした。
    Type: System.Configuration.ConfigurationErrorsException
    場所 Tvsu.FileDownloader.HttpsDownload.StartDownload(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)
    場所 Tvsu.FileDownloader.GeneralDownloader.Download(FileToDownloadBean bean, downloadingDelegate downDelegate)
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Process.HelloProcess.Start()
    Message: UDF download status is -> Failed
    Severe 2014-02-19 , 06:23:50
    場所 Tvsu.Engine.Process.HelloProcess.Start()
    Message: Could't connect to the HelloServer, no UDF file was downloaded
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Egather.EgatherManager.GetEgatherParser(String type)
    Message: Running egather minimal.....
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Egather.EgatherExecutor.RunAsWindowsService(String directory, String command, String arguments)
    Message: /execute ia.exe /arguments -filename"""C:\Program Files (x86)\Lenovo\System Update\egather\sysrecomin""" -probes REGIONAL_SETTINGS GATHERER_INFORMATION SYSTEM_SUMMARY -local /directory C:\Program Files (x86)\Lenovo\System Update\egather\ /type COMMAND /timeout 300000
    Info 2014-02-19 , 06:23:50
    場所 Tvsu.Egather.EgatherExecutor.RunAsWindowsService(String directory, String command, String arguments)
    Message: FileName Path: C:\Program Files (x86)\Lenovo\System Update\TvsuCommandLauncher.exe
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Egather.EgatherExecutor.ExecuteEgather(String fileOutput, String args)
    Message: RC eGatherer: 0
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Process.HelloProcess.Start()
    Message: MTM received from eGather: 20ANCTO1WW
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Process.HelloProcess.Start()
    Message: Data to be set in the Environment Manager to use with Quest:
    QOS (Quest OS): Windows 7
    QOSLang (Quest language): JP
    MTM: 20ANCTO1WW
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Task.Task.Start()
    Message: Executing the PostProcess HelloProcess
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Task.Task.Start()
    Message: The process HelloProcesshas been finished.
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Task.Task.StartExecution()
    Message: PostTask
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Sdk.SuSdk.GetSystemProperties()
    Message: Return the System Properties
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Sdk.SuSdk.GetApplicableUpdates(searchingFolderDelegate spd, showErrMsgDelegate sed)
    Message: Get Applicable Updates
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Task.Task.StartExecution()
    Message: PreTask
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Task.Task.StartExecution()
    Message: Start
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Task.Task.Start()
    Message: Starting the task
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Task.Task.Start()
    Message: The current process is:HelpCenterQuestProcess
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Task.Task.Start()
    Message: Executing the PreProcess HelpCenterQuestProcess
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Task.Task.Start()
    Message: Executing the StartProcess HelpCenterQuestProcess
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Process.HelpCenterQuestProcess.LaunchEgather()
    Message: Launching Egather
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Egather.EgatherManager.GetEgatherParser(String type)
    Message: Running egather complete.....
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Process.HelpCenterQuestProcess.LaunchHelpCenterProcess()
    Message: Launching HelpCenter
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Egather.EgatherExecutor.RunAsWindowsService(String directory, String command, String arguments)
    Message: /execute ia.exe /arguments -filename"""C:\Program Files (x86)\Lenovo\System Update\egather\sysreco""" -silent -local -section SYSTEM_SUMMARY REGIONAL_SETTINGS SMBIOS_INFORMATION Firmware_Information Installed_Software SMBIOS_INFORMATION DEVICE_DRIVERS_AND_SERVICES IDE_DEVICE_INFORMATION DEVICE_MANAGER_SETTINGS -p device_manager enable_hardwareid /directory C:\Program Files (x86)\Lenovo\System Update\egather\ /type COMMAND /timeout 300000
    Info 2014-02-19 , 06:23:51
    場所 Tvsu.Egather.EgatherExecutor.RunAsWindowsService(String directory, String command, String arguments)
    Message: FileName Path: C:\Program Files (x86)\Lenovo\System Update\TvsuCommandLauncher.exe
    Severe 2014-02-19 , 06:23:51
    場所 Tvsu.Engine.Process.HelpCenterQuestProcess.LaunchHelpCenterProcess()
    Message: An error ocurred while contacting the help center
    Exception:
    Message: 構成システムを初期化できませんでした。
    Type: System.Configuration.ConfigurationErrorsException
    場所 System.Configuration.ConfigurationManager.PrepareConfigSystem()
    場所 System.Configuration.ConfigurationManager.GetSection(String sectionName)
    場所 System.Configuration.PrivilegedConfigurationManager.GetSection(String sectionName)
    場所 System.Net.Configuration.WebRequestModulesSectionInternal.GetSection()
    場所 System.Net.WebRequest.get_PrefixList()
    場所 System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
    場所 System.Net.WebRequest.Create(String requestUriString)
    場所 Tvsu.Engine.Process.HelpCenterQuestProcess.IfModifiedSince(String url, DateTime dtSince, DateTime& dtActual)
    場所 Tvsu.Engine.Process.HelpCenterQuestProcess.DownloadCatalogDescriptorFile()
    場所 Tvsu.Engine.Process.HelpCenterQuestProcess.LaunchHelpCenterProcess()
    Info 2014-02-19 , 06:23:51
    場所 Tvsukernel.CustomControls.Step.<>c__DisplayClass7.<set_Image>b__6()
    Message: Setting DONE status.
    Info 2014-02-19 , 06:23:51
    場所 Tvsukernel.CustomControls.Step.<>c__DisplayClass7.<set_Image>b__6()
    Message: Setting PROCESSING status.
    Info 2014-02-19 , 06:23:52
    場所 Tvsu.Engine.Task.Task.Start()
    Message: Executing the PostProcess HelpCenterQuestProcess
    Severe 2014-02-19 , 06:23:52
    場所 Tvsu.Engine.Task.Task.StartExecution()
    Message: An error occurred while the task: ApplicableUpdatesTask executed the process: HelpCenterQuestProcessthe message from exception is種類 'Tvt.FileDownloader.DownloadException' の例外がスローされました。
    Exception:
    Message: 種類 'Tvt.FileDownloader.DownloadException' の例外がスローされました。
    Type: Tvt.FileDownloader.DownloadException
    場所 Tvsu.Engine.Task.Task.Start()
    場所 Tvsu.Engine.Task.Task.StartExecution()
    Info 2014-02-19 , 06:23:52
    場所 Tvsukernel.CustomControls.Step.<>c__DisplayClass7.<set_Image>b__6()
    Message: Setting FAILED status.
    Info 2014-02-19 , 06:23:52
    場所 Tvsukernel.Logic.GUIController.ShowErrorMessage(Exception e)
    Message: Error while downloading packages.
    Exception:
    Message: 種類 'Tvt.FileDownloader.DownloadException' の例外がスローされました。
    Type: Tvt.FileDownloader.DownloadException
    場所 Tvsu.Engine.Task.Task.StartExecution()
    場所 Tvsu.Sdk.SuSdk.GetApplicableUpdates(searchingFolderDelegate spd, showErrMsgDelegate sed)
    場所 Tvsukernel.Logic.ProgressThread.InitSearch()
    Info 2014-02-19 , 06:23:52
    場所 Tvsukernel.Dialogs.Messages.ShowStaticMessage(String message, String title, MessageType t, Boolean check)
    Message: Showing ERROR Message: < パッケージのダウンロード中にエラーが発生しました。 >
    Info 2014-02-19 , 06:23:58
    場所 Tvsukernel.Logic.GUIController.BackToMain()
    Message: Setting Welcome screen...
    Info 2014-02-19 , 06:23:58
    場所 Tvsukernel.FlowScreens.MainFrame.SetScreen(String screen, RoutedEventHandler[] eh)
    Message: Loading Welcome screen on Action pane.
    Info 2014-02-19 , 06:23:58
    場所 Tvsu.Egather.EgatherExecutor.ExecuteEgather(String fileOutput, String args)
    Message: RC eGatherer: 0
    Info 2014-02-19 , 06:24:02
    場所 Tvsukernel.FlowScreens.MainFrame.cmContextHelpSUhelp_Click(Object sender, RoutedEventArgs e)
    Message: Context Help will be displayed.
    Info 2014-02-19 , 06:24:08
    場所 Tvsukernel.Logic.GUIController.AskBeforeClosing()
    Message: Close System Update?
    Info 2014-02-19 , 06:24:08
    場所 Tvsukernel.Dialogs.Messages.ShowStaticMessage(String message, String title, MessageType t, Boolean check)
    Message: Showing QUESTION Message: < 本当に System Update を終了しますか? >
    Info 2014-02-19 , 06:24:09
    場所 Tvsukernel.Logic.GUIController.AskBeforeClosing()
    Message: Application will close now? True
    Info 2014-02-19 , 06:24:09
    場所 Tvsukernel.FlowScreens.MainFrame.OnClosing(CancelEventArgs e)
    Message: User wanted to close System Update, or the package force a reboot.
    Severe 2014-02-19 , 06:24:09
    場所 Tvsu.Sdk.SuSdk.ShutDownApplication()
    Message: Has happened an exception while the UNCAuthenticator.Shutdown() was executedShare name can not be null or empty
    Info 2014-02-19 , 06:24:09
    場所 Tvsu.Engine.DataBase.ShutDownDataBase()
    Message: Shutting down the DataBase, saving any data into file: updates.ser
    Info 2014-02-19 , 06:24:09
    場所 Tvsu.Environment.EnvironmentManager.closeEM()
    Message: Closing Environment Manager.
    Info 2014-02-19 , 06:24:09
    場所 Tvsu.Sdk.SuSdk.ShutDownApplication()
    Message: Shut Down the Application
    Solved!
    Go to Solution.

    I'm having a similar problem with 5.0.5.  Whenever it gets to "Downloading Package Information", it will show "15% Lenovo Help Center" and it dies there.  Errors below in the log.  
    If I look at the XML file mentioned below, it's zero-length (empty).
    Severe 2014-04-01 , 05:43:14
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: Error reading C:\ProgramData\Lenovo\SystemUpdate\session\system\SSClientCommon\HelloLevel_9_09_00.xml, this XML file is not well-formed
    Exception:
    Message: Root element is missing.
    Type: System.Xml.XmlException
    at System.Xml.XmlTextReaderImpl.Throw(Exception e)
    at System.Xml.XmlTextReaderImpl.ParseDocumentContent()
    at System.Xml.XmlTextReaderImpl.Read()
    at System.Xml.XPath.XPathDocument.LoadFromReader(XmlReader reader, XmlSpace space)
    at System.Xml.XPath.XPathDocument..ctor(TextReader textReader)
    at Tvsu.Engine.Process.HelloProcess.ParseUDF(String udfPath)
    at Tvsu.Engine.Process.HelloProcess.Start()
    Severe 2014-04-01 , 05:43:17
    at Tvsu.Engine.Process.HelpCenterQuestProcess.LaunchHelpCenterProcess()
    Message: An error ocurred while contacting the help center
    Exception:
    Message: Index and length must refer to a location within the string.
    Parameter name: length
    Type: System.ArgumentOutOfRangeException
    at System.String.InternalSubStringWithChecks(Int32 startIndex, Int32 length, Boolean fAlwaysCopy)
    at Tvsu.Engine.Process.HelpCenterQuestProcess.GetCatalogDescriptorFileName()
    at Tvsu.Engine.Process.HelpCenterQuestProcess.DownloadCatalogDescriptorFile()
    at Tvsu.Engine.Process.HelpCenterQuestProcess.LaunchHelpCenterProcess()
    Severe 2014-04-01 , 05:43:18
    at Tvsu.Engine.Task.Task.StartExecution()
    Message: An error occurred while the task: ApplicableUpdatesTask executed the process: HelpCenterQuestProcessthe message from exception isException of type 'Tvt.FileDownloader.DownloadException' was thrown.
    Exception:
    Message: Exception of type 'Tvt.FileDownloader.DownloadException' was thrown.
    Type: Tvt.FileDownloader.DownloadException
    at Tvsu.Engine.Task.Task.Start()
    at Tvsu.Engine.Task.Task.StartExecution()
    Info 2014-04-01 , 05:43:18
    at Tvsukernel.Logic.GUIController.ShowErrorMessage(Exception e)
    Message: Error while downloading packages.
    Exception:
    Message: Exception of type 'Tvt.FileDownloader.DownloadException' was thrown.
    Type: Tvt.FileDownloader.DownloadException
    at Tvsu.Engine.Task.Task.StartExecution()
    at Tvsu.Sdk.SuSdk.GetApplicableUpdates(searchingFolderDelegate spd, showErrMsgDelegate sed)
    at Tvsukernel.Logic.ProgressThread.InitSearch()
    Info 2014-04-01 , 05:43:18
    at Tvsukernel.Dialogs.Messages.ShowStaticMessage(String message, String title, MessageType t, Boolean check)
    Message: Showing ERROR Message: < An error occurred while downloading packages. >

  • ASA 5505 Failed to unzip the Anyconenct Package

    There is ASA 5505:
    - 8.4(2) IOS
    - FLASH: 128 Mb
    - DRAM: 256 Mb
    Requirements for 8.4(2) are acomplished:
    For the ASA 5505, only the Unlimited Hosts license and the Security Plus license with failover enabled require 512 MB; other licenses can use 256 MB.
    Are installed latest AnyConnect packeges for linux, some smatphones (each 4-5 MB). But for Windoes it's 21 MB and we got error "Failed to unzip the Anyconenct Package". In prior IOS version there was command cache-fs limit, by default it was 20 Mb. As i understand ASA now dinamically determines amount of cache memory and it's not enough.
    Because of the increased size of the AnyConnect package from 4MB in AnyConnect 2.5 to 21 MB in AnyConnect 3.0, you may need to upgrade the ASA flash and memory card first.
    If your ASA has only the default internal flash memory size or the default DRAM size (for cache memory) you could have problems storing and loading multiple AnyConnect client packages on the ASA. Even if you have enough space on the flash to hold the package files, the ASA could run out of cache memory when it unzips and loads the client images.
    So there is a question, after DRAM upgrade to 512 MB will be there enough cache memory for Anyconnect packeges with total size 35-40 Mb?

    I have having the same issue on an ASA-5510 with 256MB DRAM 256MB Flash.  I do not have this issue on an ASA-5550 with 4GB DRAM 256MB Flash, so I'm guessing the issue is with the memory size.
    Also, from:  http://www.cisco.com/en/US/docs/security/vpn_client/anyconnect/anyconnect30/release/notes/anyconnect30rn.html
    Flash and DRAM Requirements for Upgrade
    Check for the space available before proceeding with the AnyConnect 3.0 upgrade. You can use one of the following methods to do so:
    •CLI—Enter the show memory command.
    asa3# show memory     
    Free memory:       304701712 bytes (57%)
    Used memory:       232169200 bytes (43%)
    Total memory:      536870912 bytes (100%)
    •ASDM—Choose Tools > File Management. The File Management window displays flash space.
    Because of the increased size of the AnyConnect package from 4MB in AnyConnect 2.5 to 21 MB in AnyConnect 3.0, you may need to upgrade the ASA flash and memory card first.
    Caution The minimum flash memory required is 128MB for an ASA 5505; however, we strongly recommend 256 or preferably 512 MB. To support multiple endpoint operating systems and enable logging and debugging on the ASA, you will most likely need 512 MB of flash memory.
    If your ASA has only the default internal flash memory size or the default DRAM size (for cache memory) you could have problems storing and loading multiple AnyConnect client packages on the ASA. Even if you have enough space on the flash to hold the package files, the ASA could run out of cache memory when it unzips and loads the client images. For internal memory requirements for each ASA model, see Memory Requirements for the Cisco ASA Adaptive Security Appliances Software Version 8.3 and Later. For additional information about the ASA memory requirements and upgrading ASA memory, see the latest release notes for the Cisco ASA 5500 series.

Maybe you are looking for

  • Flat file upload has zero as dash -

    Hi, I have a .csv that I upload in a datasource. It has a "-" character for zero values. Is there a conversion routine to convert  a - to a 0? Or another way to handle this easily? thanks, Max

  • Forgot my itouch passcode and tried to restore, but doesnt restore.

    i forgot my itouch passcode somehow, and i tried to restore it like everyone says. so i plugged it into itunes, put it in recovery mode, restored it, waited 3 hours, and it went right back to my usual settings and im STILL LOCKED OUT. what does this

  • Shortcut "Z" not working, screen  momentary brighter

    Hello, i have a Macbook Pro Retina with hopefully the latest Garage Band (10 or 11?). Anyway I have a problem with the keyboard shortcuts. For example if I press "Z" to jump to the beginning of the tracks nothing happens but the screen gets brighter

  • Open I/O error while formating stoarge slices using dd

    bash-3.2# dd if=/dev/zero of=/dev/rdsk/c4t600A0B800075DDC70000022E50816175d0s1 bs=1024 count=50 dd: /dev/rdsk/c4t600A0B800075DDC70000022E50816175d0s1: open: I/O error

  • Suddenly can't see any printers!!!

    Help!!! I suddenly can't see either of my printers... a very old LaserWriter 5800, and also a Canon color printer. I'm posting this via my Airport network connection, so that obviously works. I'm also seeing one of two other computers on the network