Similar Output

Hi ,
I have posted the same question earlier but the query had few discrepencies(I had used the query from teradata where syntax is slightly different) .Hence posting the queries again.Mentioned below are 2 queries for which the output are not same.Would really appreciate if some one can help me in modifying the query to generate the same output.
Reason for changing query 1 is because it at times take 7-8 hours to run where as the query 2 is taking less than 20 seconds(because of different reasons like the indexes & no of records etc)
SELECT
S.ACCT_EVENT_TYPE_CD
,S.CUST_ACCT_EVENT_ID
,S.EVENT_USED_BY_CD
,S.EVENT_SEQUENCE_CD
,S.DW_AS_OF_DT
,S.CUST_ACCT_EVENT_CD
,S.EXT_EVENT_REF_CD
,S.EVENT_START_DT
,S.EVENT_END_DT
,S.AUDIT_USER_ID
,S.AUDIT_UPDT_TS
,S.DW_ACTN_IN
,S.DW_DATA_CHG_TS
,S.DW_LOAD_TS
FROM
IDW_STAGE.CUST_ACCT_EVENT_S S
LEFT OUTER JOIN
(SELECT ACCT_ID,
CUST_ID,
EVNT_USE_BY_CD,
EVNT_SEQ_CD,
MAX(DW_EFF_DT) DW_EFF_DT
FROM IDW_DATA.CUST_ACCT_EVENT_T
GROUP BY ACCT_ID,
CUST_ID,
EVNT_USE_BY_CD,
EVNT_SEQ_CD) T
ON
( T.ACCT_ID=0
AND T.CUST_ID=S.CUST_ACCT_EVENT_ID
AND S.ACCT_EVENT_TYPE_CD='C'
OR
( T.CUST_ID=0
AND T.ACCT_ID=S.CUST_ACCT_EVENT_ID
AND S.ACCT_EVENT_TYPE_CD='A'
AND T.EVNT_USE_BY_CD = S.EVENT_USED_BY_CD
AND T.EVNT_SEQ_CD = S.EVENT_SEQUENCE_CD
WHERE
S.DW_AS_OF_DT > COALESCE(T.DW_EFF_DT,to_date( '01-JAN-0001')
AND S.DW_ACTN_IN in ('I','U');
SELECT
S.ACCT_EVENT_TYPE_CD
,S.CUST_ACCT_EVENT_ID
,S.EVENT_USED_BY_CD
,S.EVENT_SEQUENCE_CD
,S.DW_AS_OF_DT
,S.CUST_ACCT_EVENT_CD
,S.EXT_EVENT_REF_CD
,S.EVENT_START_DT
,S.EVENT_END_DT
,S.AUDIT_USER_ID
,S.AUDIT_UPDT_TS
,S.DW_ACTN_IN
,S.DW_DATA_CHG_TS
,S.DW_LOAD_TS
FROM
IDW_STAGE.CUST_ACCT_EVENT_S S
LEFT OUTER JOIN
(SELECT ACCT_ID,
CUST_ID,
EVNT_USE_BY_CD,
EVNT_SEQ_CD,
MAX(DW_EFF_DT) DW_EFF_DT
FROM IDW_DATA.CUST_ACCT_EVENT_T
GROUP BY ACCT_ID,
CUST_ID,
EVNT_USE_BY_CD,
EVNT_SEQ_CD) T
ON
T.ACCT_ID=0
AND T.CUST_ID=S.CUST_ACCT_EVENT_ID
AND S.ACCT_EVENT_TYPE_CD='C'
AND T.EVNT_USE_BY_CD = S.EVENT_USED_BY_CD
AND T.EVNT_SEQ_CD = S.EVENT_SEQUENCE_CD
WHERE
S.DW_AS_OF_DT > COALESCE(T.DW_EFF_DT,to_date( '01-JAN-0001')
AND S.DW_ACTN_IN in ('I','U');
UNION
SELECT
S.ACCT_EVENT_TYPE_CD
,S.CUST_ACCT_EVENT_ID
,S.EVENT_USED_BY_CD
,S.EVENT_SEQUENCE_CD
,S.DW_AS_OF_DT
,S.CUST_ACCT_EVENT_CD
,S.EXT_EVENT_REF_CD
,S.EVENT_START_DT
,S.EVENT_END_DT
,S.AUDIT_USER_ID
,S.AUDIT_UPDT_TS
,S.DW_ACTN_IN
,S.DW_DATA_CHG_TS
,S.DW_LOAD_TS
FROM
IDW_STAGE.CUST_ACCT_EVENT_S S
LEFT OUTER JOIN
(SELECT ACCT_ID,
CUST_ID,
EVNT_USE_BY_CD,
EVNT_SEQ_CD,
MAX(DW_EFF_DT) DW_EFF_DT
FROM IDW_DATA.CUST_ACCT_EVENT_T
GROUP BY ACCT_ID,
CUST_ID,
EVNT_USE_BY_CD,
EVNT_SEQ_CD) T
ON
T.CUST_ID=0
AND T.ACCT_ID=S.CUST_ACCT_EVENT_ID
AND S.ACCT_EVENT_TYPE_CD='A'
AND T.EVNT_USE_BY_CD = S.EVENT_USED_BY_CD
AND T.EVNT_SEQ_CD = S.EVENT_SEQUENCE_CD
WHERE
S.DW_AS_OF_DT > COALESCE(T.DW_EFF_DT,to_date( '01-JAN-0001')
AND S.DW_ACTN_IN in ('I','U');
======================================
Regards
Sanjay

I think, now , yourself can identify the difference...
SELECT
   S.ACCT_EVENT_TYPE_CD
  ,S.CUST_ACCT_EVENT_ID
  ,S.EVENT_USED_BY_CD
  ,S.EVENT_SEQUENCE_CD
  ,S.DW_AS_OF_DT
  ,S.CUST_ACCT_EVENT_CD
  ,S.EXT_EVENT_REF_CD
  ,S.EVENT_START_DT
  ,S.EVENT_END_DT
  ,S.AUDIT_USER_ID
  ,S.AUDIT_UPDT_TS
  ,S.DW_ACTN_IN
  ,S.DW_DATA_CHG_TS
  ,S.DW_LOAD_TS
FROM
  IDW_STAGE.CUST_ACCT_EVENT_S S LEFT OUTER JOIN
   (SELECT ACCT_ID,
          CUST_ID,
          EVNT_USE_BY_CD,
          EVNT_SEQ_CD,
          MAX(DW_EFF_DT) DW_EFF_DT
    FROM IDW_DATA.CUST_ACCT_EVENT_T
    GROUP BY ACCT_ID,
            CUST_ID,
            EVNT_USE_BY_CD,
            EVNT_SEQ_CD) T
  ON
   ( T.ACCT_ID=0
     AND T.CUST_ID=S.CUST_ACCT_EVENT_ID
     AND S.ACCT_EVENT_TYPE_CD='C'
     OR
   ( T.CUST_ID=0
     AND T.ACCT_ID=S.CUST_ACCT_EVENT_ID
     AND S.ACCT_EVENT_TYPE_CD='A'
  AND T.EVNT_USE_BY_CD = S.EVENT_USED_BY_CD
  AND T.EVNT_SEQ_CD = S.EVENT_SEQUENCE_CD
WHERE
  S.DW_AS_OF_DT > COALESCE(T.DW_EFF_DT,to_date( '01-JAN-0001')
AND S.DW_ACTN_IN in ('I','U');
<br><br><br>
SELECT
   S.ACCT_EVENT_TYPE_CD
  ,S.CUST_ACCT_EVENT_ID
  ,S.EVENT_USED_BY_CD
  ,S.EVENT_SEQUENCE_CD
  ,S.DW_AS_OF_DT
  ,S.CUST_ACCT_EVENT_CD
  ,S.EXT_EVENT_REF_CD
  ,S.EVENT_START_DT
  ,S.EVENT_END_DT
  ,S.AUDIT_USER_ID
  ,S.AUDIT_UPDT_TS
  ,S.DW_ACTN_IN
  ,S.DW_DATA_CHG_TS
  ,S.DW_LOAD_TS
FROM
  IDW_STAGE.CUST_ACCT_EVENT_S S LEFT OUTER JOIN
   (SELECT ACCT_ID,
           CUST_ID,
           EVNT_USE_BY_CD,
           EVNT_SEQ_CD,
           MAX(DW_EFF_DT) DW_EFF_DT
           FROM IDW_DATA.CUST_ACCT_EVENT_T
    GROUP BY ACCT_ID,
             CUST_ID,
             EVNT_USE_BY_CD,
             EVNT_SEQ_CD) T
  ON
    T.ACCT_ID=0
    AND T.CUST_ID=S.CUST_ACCT_EVENT_ID
    AND S.ACCT_EVENT_TYPE_CD='C'
    AND T.EVNT_USE_BY_CD = S.EVENT_USED_BY_CD
    AND T.EVNT_SEQ_CD = S.EVENT_SEQUENCE_CD
WHERE
  S.DW_AS_OF_DT > COALESCE(T.DW_EFF_DT,to_date( '01-JAN-0001')
  AND S.DW_ACTN_IN in ('I','U');
UNION
SELECT
    S.ACCT_EVENT_TYPE_CD
   ,S.CUST_ACCT_EVENT_ID
   ,S.EVENT_USED_BY_CD
   ,S.EVENT_SEQUENCE_CD
   ,S.DW_AS_OF_DT
   ,S.CUST_ACCT_EVENT_CD
   ,S.EXT_EVENT_REF_CD
   ,S.EVENT_START_DT
   ,S.EVENT_END_DT
   ,S.AUDIT_USER_ID
   ,S.AUDIT_UPDT_TS
   ,S.DW_ACTN_IN
   ,S.DW_DATA_CHG_TS
   ,S.DW_LOAD_TS
FROM
   IDW_STAGE.CUST_ACCT_EVENT_S S
     LEFT OUTER JOIN
   (SELECT ACCT_ID,
           CUST_ID,
           EVNT_USE_BY_CD,
           EVNT_SEQ_CD,
           MAX(DW_EFF_DT) DW_EFF_DT
    FROM IDW_DATA.CUST_ACCT_EVENT_T
    GROUP BY ACCT_ID,
             CUST_ID,
             EVNT_USE_BY_CD,
             EVNT_SEQ_CD) T
ON
    T.CUST_ID=0
    AND T.ACCT_ID=S.CUST_ACCT_EVENT_ID
    AND S.ACCT_EVENT_TYPE_CD='A'
    AND T.EVNT_USE_BY_CD = S.EVENT_USED_BY_CD
    AND T.EVNT_SEQ_CD = S.EVENT_SEQUENCE_CD
WHERE
   S.DW_AS_OF_DT > COALESCE(T.DW_EFF_DT,to_date( '01-JAN-0001')
   AND S.DW_ACTN_IN in ('I','U');                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • DataMerge output to PDF then high dpi conversion to TIFF

    I am new to InDesign and have successfully created an output through InDesigns DataMerge feature which converts the final output to PDF.
    Is there anyway to change this to TIFF with high DPI (4000) or a process to convert the PDF to TIFF with similar output. The PDF file only contains text.
    Any help or suggestions would be appreciated.

    Export to PDF and then batch convert them in Photoshop. Very easy to do with a Photoshop action and Bridge.
    Bob

  • Delivery Note By Email -Output type LD00

    Hi All,
    We have a requirement to send delivery note by email.
    At the moment we are using output type LD00.
    I've created a similar output type  with a transmission medium '5'.
    But it is not triggering any email.Can you pelase advice what do I need to do in order to trigger an email.
    Thanks
    Venkat

    Hi Santhosh,
    I've checked in NACE transaction ,Partner function SH is already assigned to it.
    Can you pelase give me the steps to create a new output type in NACE.
    Here is how I've created:
    1.NACE->V2 Shipping->Output types->New Entries->ZLDM(New output type)
    In processing routines:
    Transm.Medium: 5
    Program           ZVADDN00
    FORM routine      ENTRY
    Form              ZRVDELNOTE00
    Partner Functions:
    External send     SH     Ship-to party
    Then I went to Procedures:
    I've added my new output type here.
    Do I need to do anything else?Please let me know.
    Thanks
    venkat

  • Using regular expressions to get a customized output

    Hi,
    I have a string/varchar variable with the data ',a,b,c,' in it.
    I want the display as follows:
    a
    b
    c
    I would like to get the similar output using regular expressions.
    How do I get this output using REGEXP_REPLACE or REGEXP_SUBSTR?
    Please do the needful.
    Thanks & Regards,
    Rakshit

    I remember that, however if we look closer, that one has a little flaw: The 2nd row should be null, because ",," indicates an empy field. The MODEL clause solution works just fine in this case:
    with t as (select 'aaaa,,bbbb,cccc,dddd,eeee,ffff' col1 from dual)
    -- end of sample data
    SELECT col_new
      FROM t
    MODEL
       PARTITION BY (ROWNUM rn)
       DIMENSION BY (0 dim)
       MEASURES(col1, col1 col_new)
       RULES ITERATE(99) UNTIL (ITERATION_NUMBER = LENGTH(REGEXP_REPLACE(col1[0], '[^,]')))
                    (col_new[ITERATION_NUMBER] = REPLACE(REGEXP_SUBSTR(col1[0], '(^|,)[^,]*', 1, ITERATION_NUMBER+1), ','))
    COL_NEW                                                                                                                                                                  
    aaaa                                                                                                                                                                     
    bbbb                                                                                                                                                                     
    cccc                                                                                                                                                                     
    dddd                                                                                                                                                                     
    eeee
    ffff
    7 Zeilen ausgewählt.Update: I had this nagging feeling that I missed something, and there it was. If you want to see what the problem with my solution is, change the example to
    with t as (select ',aaaa,,bbbb,cccc,dddd,eeee,ffff' col1 from dual)So I went back and tried to fix BlueShadows approach. Here it is:
    with t as (select 'aaaa,,bbbb,cccc,dddd,eeee,ffff' txt from dual)
    -- end of sample data
    SELECT REPLACE(REGEXP_SUBSTR(',' || txt, ',[^,]*', 1, level), ',') col_new
      FROM t
      CONNECT BY level <= length(regexp_replace(txt,'[^,]*'))+1
    ;C.

  • Details about the packet capture output bits...

                       Hi Mates,
    If we take the packet capture output, we will get similar output as follows:
    Please explain the significance of the highlighted bits values. (S,P,F and . )
    If tehre is ny doc related to them, appreciate to share.
    Thanks & Regards
    Ramana

    S SYN
    P PUSH
    F FIN
    http://www.firewall.cx/networking-topics/protocols/tcp/136-tcp-flag-options.html
    Looking for some Networking Assistance? 
    Contact me directly at [email protected]
    I will fix your problem ASAP.
    Cheers,
    Julio Carvajal Segura
    http://laguiadelnetworking.com

  • Output 2 Extra Records That Are Sorted

    I want to map a repeating group to a similar output repeating group and also add 2 extra records to the output with the output sorted on the first element.
    Here's my input...
    <Request>
    <Records>
    <OrderType>4</OrderType>
    <OrderValue>01</OrderValue>
    </Records>
    <Records>
    <OrderType>4</OrderType>
    <OrderValue>01</OrderValue>
    </Records>
    <Records>
    <OrderType>4</OrderType>
    <OrderValue>02</OrderValue>
    </Records>
    <Records>
    <OrderType>4</OrderType>
    <OrderValue>03</OrderValue>
    </Records>
    </Request>
    Here is my desired output...
    <Request>
    <Records>
    <OrderType>1</OrderType>
    <OrderValue>05</OrderValue>
    </Records>
    <Records>
    <OrderType>2</OrderType>
    <OrderValue>00</OrderValue>
    </Records>
    <Records>
    <OrderType>4</OrderType>
    <OrderValue>01</OrderValue>
    </Records>
    <Records>
    <OrderType>4</OrderType>
    <OrderValue>01</OrderValue>
    </Records>
    <Records>
    <OrderType>4</OrderType>
    <OrderValue>02</OrderValue>
    </Records>
    <Records>
    <OrderType>4</OrderType>
    <OrderValue>03</OrderValue>
    </Records>
    </Request>
    I know I need to use Inline XSLT but cannot work out how to output the 2 extra records and ensure Order Type is in sequence.
    Both input and output use the same schema.

    Hi Stewart,
    If you use the following XSLT this add two extra nodes and sort the existing (input) nodes by OrderType. For sorting the existing node by OrderType, I am using
    Muenchian here. This XSLT outputs as you have wanted. I have given comments for your understanding.
    <?xml version="1.0" encoding="UTF-16"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:var="http://schemas.microsoft.com/BizTalk/2003/var" exclude-result-prefixes="msxsl var" version="1.0">
    <xsl:output omit-xml-declaration="yes" method="xml" version="1.0" />
    <xsl:key name="groups" match="Records" use="OrderType"/>
    <xsl:template match="/">
    <xsl:apply-templates select="/Request" />
    </xsl:template>
    <xsl:template match="/Request">
    <Request>
    <!--Add two extract node-->
    <Records>
    <OrderType>1</OrderType>
    <OrderValue>05</OrderValue>
    </Records>
    <Records>
    <OrderType>2</OrderType>
    <OrderValue>00</OrderValue>
    </Records>
    <!--Sort the existing node by Order Type-->
    <xsl:for-each select="Records[generate-id(.)=generate-id(key('groups',OrderType))]">
    <xsl:sort select="OrderType" order="ascending"/>
    <xsl:for-each select="key('groups',OrderType)">
    <Records>
    <OrderType>
    <xsl:value-of select="OrderType/text()" />
    </OrderType>
    <OrderValue>
    <xsl:value-of select="OrderValue/text()" />
    </OrderValue>
    </Records>
    </xsl:for-each>
    </xsl:for-each>
    </Request>
    </xsl:template>
    </xsl:stylesheet>
    Note: You may need to change the namespace as per your schema definition.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • BackGround Output Format

    Hello,
    We run on SAP 4.6 B Solaris 5.10 & Informix
    I have doubt in the background printing format.. We ask the report users in our R/3 system to run Tcodes like FBL1N , FBL3N etc in background so that they dont face any time_out issues... But what they complain to us is the format of the output is very different in foreground and background.. Is there a setting to be done somewhere so that they get a similar output and we can ask them to run it permanently in background..
    Kindly Help..
    Regards,
    Rahul...

    Hi,
    We have got stuck on this error: Kindly help..
    INFO 2008-04-13 06:51:00 DBR3LOADEXEC_IND_IND R3loadPrepare:0
        Total number of processes: 23
        20 process(es) finished successfully: 0 1 2 5 6 7 8 9 10 11 12 13
        14 15 16 18 19 20 21 22
        3 process(es) finished with errors: 3 4 17
        0 process(es) still running:
    ERROR 2008-04-13 06:51:00 DBR3LOADEXEC_IND_IND R3loadPrepare:0
        Processes started: 23
        Ended with error:  3
        load tool ended with error.
        See above SAP*.log errors.
    ERROR 2008-04-13 06:51:00 DBR3LOADEXEC_IND_IND R3loadFork:0
        RC code form SyChildFuncWait  = 255 .
    ERROR 2008-04-13 06:51:00 DBR3LOADEXEC_IND_IND R3loadFork:0
        See logfiles SAPlog and EXlog for further information.
    ERROR 2008-04-13 06:51:00 DBR3LOADEXEC_IND_IND InternalInstallationDo:0
        R3loadFork erred
    ERROR 2008-04-13 06:51:00 DBR3LOADEXEC_IND_IND InstallationDo:0
        Phase failed.
    ERROR 2008-04-13 06:51:00 InstController Action:0
        Step DBR3LOADEXEC_IND_IND could not be performed.
    ERROR 2008-04-13 06:51:01 Main
        Installation failed.
    ERROR 2008-04-13 06:51:01 Main
        Installation aborted.
    Please also check this.. This is the SAPAPPL1.log  file...
    R3load -i  SAPAPPL1.cmd -p SAPAPPL1.log -r -k 
    start of syntax check ###
    end of syntax check ###
    DbSl Trace: OCI-call 'olog' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: OCI-call 'olog' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: OCI-call 'olog' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: OCI-call 'olog' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    #(IMP) ERROR: couldn't connect to DB
    rc = 256
    error message returned by DbSl:
    DbSl Trace: OCI-call 'olog' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: OCI-call 'olog' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    #STOP: 20080413003424
    DbSl Trace: OCI-call 'olog' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: OCI-call 'olog' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    #(IMP) ERROR: DbSlRollback failed
    DbSlRollback: rc = 1
    (SQL error 1034)
    #START OF LOG: 20080413004158
    R3load version @(#) $Id: //bas/46D/src/ins/R3load/R3load.c#40 $ SAP
    Compiled Jul 25 2006 02:52:37
    R3load -i  SAPAPPL1.cmd -p SAPAPPL1.log -r -k  1WUfdeM50TL01eqtdAA91a94
    start of syntax check ###
    end of syntax check ###
    DbSl Trace: OCI-call 'olog' failed: rc = 1017
    DbSl Trace: CONNECT failed with sql error '1017'
    trying to restart import ###
    R3load> RETRY: nothing left to do
    #START: 20080413004203
    #STOP: 20080413004203
    R3load> Import terminated successfully
    #END OF LOG: 20080413004203
    #START OF LOG: 20080413065056
    R3load version @(#) $Id: //bas/46D/src/ins/R3load/R3load.c#40 $ SAP
    Compiled Jul 25 2006 02:52:37
    R3load -i  SAPAPPL1.cmd -p SAPAPPL1.log -r -k  1WUfdeM50TL01eqtdAA91a94
    start of syntax check ###
    end of syntax check ###
    DbSl Trace: OCI-call 'olog' failed: rc = 1017
    DbSl Trace: CONNECT failed with sql error '1017'
    trying to restart import ###
    R3load> RETRY: nothing left to do
    #START: 20080413065100
    #STOP: 20080413065100
    R3load> Import terminated successfully
    #END OF LOG: 20080413065100
    Thanks,
    RaHuL...

  • Delete after output- su01 settings

    Dear experts,
    We are facing an issue with user settings.
    we enabled the option 'Delete after output' in Default Tab, in thought of decrease spool requests in SAP and to regulate my database increase.
    User is creating large amount spools and spools are not deleting after print.
    Please suggest
    Regards,
    Siva

    Whart type of output are the spool requests that are not being deleted?
    If they are forms (e.g. Purchase orders, sales orders, invoices etc.) then the print definitions are defined by the outout conditions in the application rather than the user-specific settings.  In this case you need to update your output conditions to delete after output.  Speak to the business about updating these if this is acceptable.
    Or is the output generated via periodic background jobs?  Updating the user settings will not affect jobs already setup.  If you see similar output being generated at regular intervals is probably being generated from a background job.  In which case find and update the background job responsible.  I have often see jobs that run every 5 minutes generating large numbers of unneccesary spool requests.
    I am assuming that the output is completed?  As spool requests will only be deleted if they have been printed (and that the output has had no errors, as the output will not be deleted if it has an error).

  • Arch64 RAM issues [Solved]

    So I thought everything was fine until an application told me I had 4gb of RAM which is a far cry from the installed 16gb.
    I did plenty of digging around and narrowed it down to a couple possibilities, but first my investigation:
    I started with free:
    [vuvffufg@HereAndNow-Main ~]$ free
    total used free shared buff/cache available
    Mem: 4015688 858084 115144 24832 3042460 2860360
    Swap: 16777212 22460 16754752
    As you can see it shows their is 4gb of RAM much as the application did.
    You can see I have 16gb of swap; I am aware and am not confusing swap with RAM, I damn well have 4x4gb sticks according to the memtest86+ option on boot.
    So then I thought hardware and tried dmidecode --type memory:
    [vuvffufg@HereAndNow-Main ~]$ sudo dmidecode --type memory
    [sudo] password for vuvffufg:
    # dmidecode 2.12
    SMBIOS 2.7 present.
    Handle 0x0008, DMI type 5, 24 bytes
    Memory Controller Information
    Error Detecting Method: 64-bit ECC
    Error Correcting Capabilities:
    None
    Supported Interleave: One-way Interleave
    Current Interleave: One-way Interleave
    Maximum Memory Module Size: 2048 MB
    Maximum Total Memory Size: 8192 MB
    Supported Speeds:
    70 ns
    60 ns
    Supported Memory Types:
    DIMM
    SDRAM
    Memory Module Voltage: 3.3 V
    Associated Memory Slots: 4
    0x0009
    0x000A
    0x000B
    0x000C
    Enabled Error Correcting Capabilities:
    None
    Handle 0x0009, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM0
    Bank Connections: 0 1
    Current Speed: 60 ns
    Type: DIMM SDRAM
    Installed Size: 536870912 MB (Single-bank Connection)
    Enabled Size: 536870912 MB (Single-bank Connection)
    Error Status: OK
    Handle 0x000A, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM1
    Bank Connections: 2 3
    Current Speed: 60 ns
    Type: DIMM SDRAM
    Installed Size: 536870912 MB (Single-bank Connection)
    Enabled Size: 536870912 MB (Single-bank Connection)
    Error Status: OK
    Handle 0x000B, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM2
    Bank Connections: 4 5
    Current Speed: 60 ns
    Type: DIMM SDRAM
    Installed Size: 536870912 MB (Single-bank Connection)
    Enabled Size: 536870912 MB (Single-bank Connection)
    Error Status: OK
    Handle 0x000C, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM3
    Bank Connections: 6 7
    Current Speed: 60 ns
    Type: DIMM SDRAM
    Installed Size: 536870912 MB (Single-bank Connection)
    Enabled Size: 536870912 MB (Single-bank Connection)
    Error Status: OK
    Handle 0x002C, DMI type 16, 23 bytes
    Physical Memory Array
    Location: System Board Or Motherboard
    Use: System Memory
    Error Correction Type: None
    Maximum Capacity: 32 GB
    Error Information Handle: Not Provided
    Number Of Devices: 4
    Handle 0x002E, DMI type 17, 34 bytes
    Memory Device
    Array Handle: 0x002C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 4096 MB
    Form Factor: DIMM
    Set: None
    Locator: Node0_Dimm0
    Bank Locator: Node0_Bank0
    Type: DDR3
    Type Detail: Synchronous Unbuffered (Unregistered)
    Speed: 667 MHz
    Manufacturer: Corsair
    Serial Number: ADADB481
    Asset Tag: Dimm0_AssetTag
    Part Number: CMZ8GX3M2A160
    Rank: 2
    Configured Clock Speed: 667 MHz
    Handle 0x0030, DMI type 17, 34 bytes
    Memory Device
    Array Handle: 0x002C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 4096 MB
    Form Factor: DIMM
    Set: None
    Locator: Node0_Dimm1
    Bank Locator: Node0_Bank0
    Type: DDR3
    Type Detail: Synchronous Unbuffered (Unregistered)
    Speed: 667 MHz
    Manufacturer: Corsair
    Serial Number: 00000000
    Asset Tag: Dimm1_AssetTag
    Part Number: CMZ8GX3M2A160
    Rank: 1
    Configured Clock Speed: 667 MHz
    Handle 0x0032, DMI type 17, 34 bytes
    Memory Device
    Array Handle: 0x002C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 4096 MB
    Form Factor: DIMM
    Set: None
    Locator: Node0_Dimm2
    Bank Locator: Node0_Bank0
    Type: DDR3
    Type Detail: Synchronous Unbuffered (Unregistered)
    Speed: 667 MHz
    Manufacturer: Corsair
    Serial Number: ADADB473
    Asset Tag: Dimm2_AssetTag
    Part Number: CMZ8GX3M2A160
    Rank: 2
    Configured Clock Speed: 667 MHz
    Handle 0x0034, DMI type 17, 34 bytes
    Memory Device
    Array Handle: 0x002C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 4096 MB
    Form Factor: DIMM
    Set: None
    Locator: Node0_Dimm3
    Bank Locator: Node0_Bank0
    Type: DDR3
    Type Detail: Synchronous Unbuffered (Unregistered)
    Speed: 667 MHz
    Manufacturer: Corsair
    Serial Number: 00000000
    Asset Tag: Dimm3_AssetTag
    Part Number: CMZ8GX3M2A160
    Rank: 1
    Configured Clock Speed: 667 MHz
    Found it quite strange that the OS can obviously see the memory it just isn't being allocated, also what is with the slow clock speeds?
    I found a similar output with lshw.
    So I moved on to checking how it is actually initialized in dmesg, and honestly a lot of what was output I don't quite understand, I noticed that some memory was being reserved by the RAM map given by BIOs yet have no obvious way of disabling the BIOs RAM scheduler.
    [vuvffufg@HereAndNow-Main ~]$ dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.19.2-1-ARCH (builduser@tobias) (gcc version 4.9.2 20150304 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Mar 18 16:21:02 CET 2015
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=13722890-9f97-423a-bfec-7c95d6e8174e rw quiet splash iommu=pt
    [ 0.000000] tseg: 00bf800000
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000be857fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000be858000-0x00000000bea2ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bea30000-0x00000000bea39fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bea3a000-0x00000000bee2bfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bee2c000-0x00000000bf159fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf15a000-0x00000000bf15afff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf15b000-0x00000000bf360fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bf361000-0x00000000bf7fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec20000-0x00000000fec20fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed61000-0x00000000fed70fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fef00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000013effffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. To be filled by O.E.M./990FXA-UD3, BIOS F2 07/15/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x13f000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF write-through
    [ 0.000000] C0000-CEFFF write-protect
    [ 0.000000] CF000-EBFFF uncachable
    [ 0.000000] EC000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000080000000 mask FFFFC0000000 write-back
    [ 0.000000] 2 base 0000BF800000 mask FFFFFF800000 uncachable
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 000000013f000000 aka 5104M
    [ 0.000000] PAT configuration [0-7]: WB WC UC- UC WB WC UC- UC
    [ 0.000000] e820: update [mem 0xbf800000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbf800 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fd810-0x000fd81f] mapped at [ffff8800000fd810]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    [ 0.000000] BRK [0x01b34000, 0x01b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x13ee00000-0x13effffff]
    [ 0.000000] [mem 0x13ee00000-0x13effffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x120000000-0x13edfffff]
    [ 0.000000] [mem 0x120000000-0x13edfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100001000-0x11fffffff]
    [ 0.000000] [mem 0x100001000-0x1001fffff] page 4k
    [ 0.000000] [mem 0x100200000-0x11fffffff] page 2M
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xbe857fff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0xbe7fffff] page 2M
    [ 0.000000] [mem 0xbe800000-0xbe857fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbf15a000-0xbf15afff]
    [ 0.000000] [mem 0xbf15a000-0xbf15afff] page 4k
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbf361000-0xbf7fffff]
    [ 0.000000] [mem 0xbf361000-0xbf3fffff] page 4k
    [ 0.000000] [mem 0xbf400000-0xbf7fffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x377f0000-0x37beffff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 0x00000000BEA32070 00005C (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x00000000BEA37D20 0000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20141107/tbfadt-649)
    [ 0.000000] ACPI: DSDT 0x00000000BEA32158 005BC1 (v02 ALASKA A M I 00000000 INTL 20051117)
    [ 0.000000] ACPI: FACS 0x00000000BEE26F80 000040
    [ 0.000000] ACPI: APIC 0x00000000BEA37E18 00009E (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 0x00000000BEA37EB8 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: MCFG 0x00000000BEA37F00 00003C (v01 ALASKA A M I 01072009 MSFT 00010013)
    [ 0.000000] ACPI: HPET 0x00000000BEA37F40 000038 (v01 ALASKA A M I 01072009 AMI 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000BEA37F78 001714 (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: IVRS 0x00000000BEA39690 0000C8 (v01 AMD RD890S 00202031 AMD 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000013effffff]
    [ 0.000000] NODE_DATA(0) allocated [mem 0x13eff9000-0x13effcfff]
    [ 0.000000] [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013a600000-ffff88013e5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x13effffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0xbe857fff]
    [ 0.000000] node 0: [mem 0xbf15a000-0xbf15afff]
    [ 0.000000] node 0: [mem 0xbf361000-0xbf7fffff]
    [ 0.000000] node 0: [mem 0x100001000-0x13effffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x13effffff]
    [ 0.000000] On node 0 totalpages: 1039508
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3997 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 12148 pages used for memmap
    [ 0.000000] DMA32 zone: 777464 pages, LIFO batch:31
    [ 0.000000] Normal zone: 4032 pages used for memmap
    [ 0.000000] Normal zone: 258047 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x11] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x13] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x14] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x15] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x16] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x17] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x09] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 9, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec20000] gsi_base[24])
    [ 0.000000] IOAPIC[1]: apic_id 10, version 33, address 0xfec20000, GSI 24-55
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbe858000-0xbea2ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbea30000-0xbea39fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbea3a000-0xbee2bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbee2c000-0xbf159fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbf15b000-0xbf360fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfec1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec20000-0xfec20fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec21000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed60fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed61000-0xfed70fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed71000-0xfed7ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfeefffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xffffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x100000000-0x100000fff]
    [ 0.000000] e820: [mem 0xbf800000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 31 pages/cpu @ffff88013ec00000 s86336 r8192 d32448 u262144
    [ 0.000000] pcpu-alloc: s86336 r8192 d32448 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1023243
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=13722890-9f97-423a-bfec-7c95d6e8174e rw quiet splash iommu=pt
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
    [ 0.000000] AGP: Checking aperture...
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] AGP: Node 0: aperture [bus addr 0xf8000000-0xfbffffff] (64MB)
    [ 0.000000] Memory: 4009504K/4158032K available (5533K kernel code, 917K rwdata, 1744K rodata, 1164K init, 1156K bss, 148528K reserved, 0K cma-reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    [ 0.000000] NR_IRQS:8448 nr_irqs:1032 16
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 4018.290 MHz processor
    [ 0.000023] Calibrating delay loop (skipped), value calculated using timer frequency.. 8039.43 BogoMIPS (lpj=13394300)
    [ 0.000025] pid_max: default: 32768 minimum: 301
    [ 0.000031] ACPI: Core revision 20141107
    [ 0.002553] ACPI: All ACPI Tables successfully acquired
    [ 0.002750] Security Framework initialized
    [ 0.002758] Yama: becoming mindful.
    [ 0.002999] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.004346] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.004926] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.004931] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.005146] Initializing cgroup subsys memory
    [ 0.005153] Initializing cgroup subsys devices
    [ 0.005155] Initializing cgroup subsys freezer
    [ 0.005158] Initializing cgroup subsys net_cls
    [ 0.005160] Initializing cgroup subsys blkio
    [ 0.005177] CPU: Physical Processor ID: 0
    [ 0.005178] CPU: Processor Core ID: 0
    [ 0.005180] mce: CPU supports 7 MCE banks
    [ 0.005185] LVT offset 1 assigned for vector 0xf9
    [ 0.005190] Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
    [ 0.005254] Freeing SMP alternatives memory: 20K (ffffffff81a0a000 - ffffffff81a0f000)
    [ 0.005835] ftrace: allocating 21170 entries in 83 pages
    [ 0.087004] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.120030] smpboot: CPU0: AMD FX(tm)-8350 Eight-Core Processor (fam: 15, model: 02, stepping: 00)
    [ 0.224266] Performance Events: Fam15h core perfctr, AMD PMU driver.
    [ 0.224270] ... version: 0
    [ 0.224271] ... bit width: 48
    [ 0.224272] ... generic registers: 6
    [ 0.224273] ... value mask: 0000ffffffffffff
    [ 0.224274] ... max period: 00007fffffffffff
    [ 0.224275] ... fixed-purpose events: 0
    [ 0.224276] ... event mask: 000000000000003f
    [ 0.237668] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.244346] x86: Booting SMP configuration:
    [ 0.244347] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
    [ 0.354188] x86: Booted up 1 node, 8 CPUs
    [ 0.354192] smpboot: Total of 8 processors activated (64318.50 BogoMIPS)
    [ 0.364078] devtmpfs: initialized
    [ 0.366485] PM: Registering ACPI NVS region [mem 0xbea3a000-0xbee2bfff] (4136960 bytes)
    [ 0.366531] PM: Registering ACPI NVS region [mem 0xbf15b000-0xbf360fff] (2121728 bytes)
    [ 0.366716] pinctrl core: initialized pinctrl subsystem
    [ 0.366744] RTC time: 18:28:15, date: 04/01/15
    [ 0.366834] NET: Registered protocol family 16
    [ 0.377691] cpuidle: using governor ladder
    [ 0.391032] cpuidle: using governor menu
    [ 0.391080] ACPI: bus type PCI registered
    [ 0.391082] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.391143] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.391146] PCI: not using MMCONFIG
    [ 0.391147] PCI: Using configuration type 1 for base access
    [ 0.391148] PCI: Using configuration type 1 for extended access
    [ 0.391412] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.391413] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.391413] mtrr: corrected configuration.
    [ 0.404756] ACPI: Added _OSI(Module Device)
    [ 0.404758] ACPI: Added _OSI(Processor Device)
    [ 0.404759] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.404760] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.406816] ACPI: Executed 3 blocks of module-level executable AML code
    [ 0.410092] ACPI: Interpreter enabled
    [ 0.410097] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20141107/hwxface-580)
    [ 0.410100] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
    [ 0.410113] ACPI: (supports S0 S3 S4 S5)
    [ 0.410115] ACPI: Using IOAPIC for interrupt routing
    [ 0.410239] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.410276] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.410593] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.416283] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.416288] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.416292] acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    [ 0.416712] PCI host bridge to bus 0000:00
    [ 0.416715] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.416717] pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    [ 0.416718] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    [ 0.416720] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    [ 0.416721] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.416723] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.416724] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.416726] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff]
    [ 0.416735] pci 0000:00:00.0: [1002:5a14] type 00 class 0x060000
    [ 0.416847] pci 0000:00:00.2: [1002:5a23] type 00 class 0x080600
    [ 0.416951] pci 0000:00:02.0: [1002:5a16] type 01 class 0x060400
    [ 0.416985] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.417032] pci 0000:00:02.0: System wakeup disabled by ACPI
    [ 0.417072] pci 0000:00:09.0: [1002:5a1c] type 01 class 0x060400
    [ 0.417104] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
    [ 0.417151] pci 0000:00:09.0: System wakeup disabled by ACPI
    [ 0.417185] pci 0000:00:0a.0: [1002:5a1d] type 01 class 0x060400
    [ 0.417217] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    [ 0.417263] pci 0000:00:0a.0: System wakeup disabled by ACPI
    [ 0.417308] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
    [ 0.417322] pci 0000:00:11.0: reg 0x10: [io 0xf090-0xf097]
    [ 0.417329] pci 0000:00:11.0: reg 0x14: [io 0xf080-0xf083]
    [ 0.417336] pci 0000:00:11.0: reg 0x18: [io 0xf070-0xf077]
    [ 0.417343] pci 0000:00:11.0: reg 0x1c: [io 0xf060-0xf063]
    [ 0.417350] pci 0000:00:11.0: reg 0x20: [io 0xf050-0xf05f]
    [ 0.417357] pci 0000:00:11.0: reg 0x24: [mem 0xfe40b000-0xfe40b3ff]
    [ 0.417461] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    [ 0.417471] pci 0000:00:12.0: reg 0x10: [mem 0xfe40a000-0xfe40afff]
    [ 0.417556] pci 0000:00:12.0: System wakeup disabled by ACPI
    [ 0.417595] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    [ 0.417609] pci 0000:00:12.2: reg 0x10: [mem 0xfe409000-0xfe4090ff]
    [ 0.417671] pci 0000:00:12.2: supports D1 D2
    [ 0.417672] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.417721] pci 0000:00:12.2: System wakeup disabled by ACPI
    [ 0.417760] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    [ 0.417770] pci 0000:00:13.0: reg 0x10: [mem 0xfe408000-0xfe408fff]
    [ 0.417851] pci 0000:00:13.0: System wakeup disabled by ACPI
    [ 0.417891] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    [ 0.417905] pci 0000:00:13.2: reg 0x10: [mem 0xfe407000-0xfe4070ff]
    [ 0.417966] pci 0000:00:13.2: supports D1 D2
    [ 0.417967] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.418015] pci 0000:00:13.2: System wakeup disabled by ACPI
    [ 0.418053] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    [ 0.418166] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
    [ 0.418176] pci 0000:00:14.1: reg 0x10: [io 0xf040-0xf047]
    [ 0.418183] pci 0000:00:14.1: reg 0x14: [io 0xf030-0xf033]
    [ 0.418190] pci 0000:00:14.1: reg 0x18: [io 0xf020-0xf027]
    [ 0.418197] pci 0000:00:14.1: reg 0x1c: [io 0xf010-0xf013]
    [ 0.418204] pci 0000:00:14.1: reg 0x20: [io 0xf000-0xf00f]
    [ 0.418219] pci 0000:00:14.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
    [ 0.418220] pci 0000:00:14.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
    [ 0.418221] pci 0000:00:14.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
    [ 0.418222] pci 0000:00:14.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
    [ 0.418300] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    [ 0.418316] pci 0000:00:14.2: reg 0x10: [mem 0xfe400000-0xfe403fff 64bit]
    [ 0.418365] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.418410] pci 0000:00:14.2: System wakeup disabled by ACPI
    [ 0.418445] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    [ 0.418561] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    [ 0.418627] pci 0000:00:14.4: System wakeup disabled by ACPI
    [ 0.418661] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    [ 0.418671] pci 0000:00:14.5: reg 0x10: [mem 0xfe406000-0xfe406fff]
    [ 0.418754] pci 0000:00:14.5: System wakeup disabled by ACPI
    [ 0.418790] pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
    [ 0.418800] pci 0000:00:16.0: reg 0x10: [mem 0xfe405000-0xfe405fff]
    [ 0.418883] pci 0000:00:16.0: System wakeup disabled by ACPI
    [ 0.418922] pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
    [ 0.418936] pci 0000:00:16.2: reg 0x10: [mem 0xfe404000-0xfe4040ff]
    [ 0.418998] pci 0000:00:16.2: supports D1 D2
    [ 0.418999] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    [ 0.419045] pci 0000:00:16.2: System wakeup disabled by ACPI
    [ 0.419083] pci 0000:00:18.0: [1022:1600] type 00 class 0x060000
    [ 0.419160] pci 0000:00:18.1: [1022:1601] type 00 class 0x060000
    [ 0.419231] pci 0000:00:18.2: [1022:1602] type 00 class 0x060000
    [ 0.419304] pci 0000:00:18.3: [1022:1603] type 00 class 0x060000
    [ 0.419379] pci 0000:00:18.4: [1022:1604] type 00 class 0x060000
    [ 0.419451] pci 0000:00:18.5: [1022:1605] type 00 class 0x060000
    [ 0.419570] pci 0000:01:00.0: [10de:0fc1] type 00 class 0x030000
    [ 0.419581] pci 0000:01:00.0: reg 0x10: [mem 0xfd000000-0xfdffffff]
    [ 0.419591] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.419600] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.419607] pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f]
    [ 0.419614] pci 0000:01:00.0: reg 0x30: [mem 0xfe000000-0xfe07ffff pref]
    [ 0.419708] pci 0000:01:00.1: [10de:0e1b] type 00 class 0x040300
    [ 0.419718] pci 0000:01:00.1: reg 0x10: [mem 0xfe080000-0xfe083fff]
    [ 0.424396] pci 0000:00:02.0: PCI bridge to [bus 01]
    [ 0.424400] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.424402] pci 0000:00:02.0: bridge window [mem 0xfd000000-0xfe0fffff]
    [ 0.424406] pci 0000:00:02.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.424450] pci 0000:02:00.0: [1106:3483] type 00 class 0x0c0330
    [ 0.424463] pci 0000:02:00.0: reg 0x10: [mem 0xfe300000-0xfe300fff 64bit]
    [ 0.424519] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.431063] pci 0000:00:09.0: PCI bridge to [bus 02]
    [ 0.431067] pci 0000:00:09.0: bridge window [mem 0xfe300000-0xfe3fffff]
    [ 0.431115] pci 0000:03:00.0: [1b4b:9172] type 00 class 0x010601
    [ 0.431125] pci 0000:03:00.0: reg 0x10: [io 0xd040-0xd047]
    [ 0.431131] pci 0000:03:00.0: reg 0x14: [io 0xd030-0xd033]
    [ 0.431137] pci 0000:03:00.0: reg 0x18: [io 0xd020-0xd027]
    [ 0.431143] pci 0000:03:00.0: reg 0x1c: [io 0xd010-0xd013]
    [ 0.431149] pci 0000:03:00.0: reg 0x20: [io 0xd000-0xd00f]
    [ 0.431155] pci 0000:03:00.0: reg 0x24: [mem 0xfe210000-0xfe2101ff]
    [ 0.431161] pci 0000:03:00.0: reg 0x30: [mem 0xfe200000-0xfe20ffff pref]
    [ 0.431194] pci 0000:03:00.0: PME# supported from D3hot
    [ 0.437733] pci 0000:00:0a.0: PCI bridge to [bus 03]
    [ 0.437737] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.437739] pci 0000:00:0a.0: bridge window [mem 0xfe200000-0xfe2fffff]
    [ 0.437784] pci 0000:04:06.0: [10ec:8169] type 00 class 0x020000
    [ 0.437802] pci 0000:04:06.0: reg 0x10: [io 0xc000-0xc0ff]
    [ 0.437812] pci 0000:04:06.0: reg 0x14: [mem 0xfe121000-0xfe1210ff]
    [ 0.437855] pci 0000:04:06.0: reg 0x30: [mem 0xfe100000-0xfe11ffff pref]
    [ 0.437888] pci 0000:04:06.0: supports D1 D2
    [ 0.437889] pci 0000:04:06.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.437947] pci 0000:04:0e.0: [1106:3044] type 00 class 0x0c0010
    [ 0.437965] pci 0000:04:0e.0: reg 0x10: [mem 0xfe120000-0xfe1207ff]
    [ 0.437975] pci 0000:04:0e.0: reg 0x14: [io 0xc100-0xc17f]
    [ 0.438055] pci 0000:04:0e.0: supports D2
    [ 0.438056] pci 0000:04:0e.0: PME# supported from D2 D3hot D3cold
    [ 0.438114] pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
    [ 0.438117] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.438120] pci 0000:00:14.4: bridge window [mem 0xfe100000-0xfe1fffff]
    [ 0.438123] pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    [ 0.438125] pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    [ 0.438126] pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    [ 0.438128] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.438129] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.438131] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.438132] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff] (subtractive decode)
    [ 0.438151] pci_bus 0000:00: on NUMA node 0
    [ 0.438559] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 14 15) *0
    [ 0.438620] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 10 11 14 15) *0
    [ 0.438682] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 10 11 14 15) *0
    [ 0.438744] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 11 14 15) *0
    [ 0.438794] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 10 11 14 15) *0
    [ 0.438856] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 10 11 14 15) *0
    [ 0.438896] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 10 11 14 15) *0
    [ 0.438935] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 10 11 14 15) *0
    [ 0.439110] vgaarb: setting as boot device: PCI:0000:01:00.0
    [ 0.439112] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.439114] vgaarb: loaded
    [ 0.439115] vgaarb: bridge control possible 0000:01:00.0
    [ 0.439189] PCI: Using ACPI for IRQ routing
    [ 0.445486] PCI: pci_cache_line_size set to 64 bytes
    [ 0.445539] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
    [ 0.445541] e820: reserve RAM buffer [mem 0xbe858000-0xbfffffff]
    [ 0.445542] e820: reserve RAM buffer [mem 0xbf15b000-0xbfffffff]
    [ 0.445543] e820: reserve RAM buffer [mem 0xbf800000-0xbfffffff]
    [ 0.445544] e820: reserve RAM buffer [mem 0x13f000000-0x13fffffff]
    [ 0.445636] NetLabel: Initializing
    [ 0.445637] NetLabel: domain hash size = 128
    [ 0.445638] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.445647] NetLabel: unlabeled traffic allowed by default
    [ 0.445664] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.445666] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.447711] Switched to clocksource hpet
    [ 0.453281] pnp: PnP ACPI init
    [ 0.453370] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.453373] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.453631] system 00:01: [io 0x040b] has been reserved
    [ 0.453633] system 00:01: [io 0x04d6] has been reserved
    [ 0.453634] system 00:01: [io 0x0c00-0x0c01] has been reserved
    [ 0.453636] system 00:01: [io 0x0c14] has been reserved
    [ 0.453638] system 00:01: [io 0x0c50-0x0c51] has been reserved
    [ 0.453639] system 00:01: [io 0x0c52] has been reserved
    [ 0.453641] system 00:01: [io 0x0c6c] has been reserved
    [ 0.453642] system 00:01: [io 0x0c6f] has been reserved
    [ 0.453644] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.453646] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.453647] system 00:01: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.453649] system 00:01: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.453650] system 00:01: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.453652] system 00:01: [io 0x0800-0x089f] could not be reserved
    [ 0.453654] system 00:01: [io 0x0b20-0x0b3f] has been reserved
    [ 0.453655] system 00:01: [io 0x0900-0x090f] has been reserved
    [ 0.453657] system 00:01: [io 0x0910-0x091f] has been reserved
    [ 0.453659] system 00:01: [io 0xfe00-0xfefe] has been reserved
    [ 0.453661] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.453663] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.453665] system 00:01: [mem 0xfed80000-0xfed8ffff] has been reserved
    [ 0.453667] system 00:01: [mem 0xfed61000-0xfed70fff] has been reserved
    [ 0.453669] system 00:01: [mem 0xfec10000-0xfec10fff] has been reserved
    [ 0.453671] system 00:01: [mem 0xfed00000-0xfed00fff] could not be reserved
    [ 0.453673] system 00:01: [mem 0xffc00000-0xffffffff] has been reserved
    [ 0.453675] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.453821] system 00:02: [io 0x0220-0x0227] has been reserved
    [ 0.453823] system 00:02: [io 0x0228-0x0237] has been reserved
    [ 0.453825] system 00:02: [io 0x0a20-0x0a2f] has been reserved
    [ 0.453827] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.454077] pnp 00:03: [dma 0 disabled]
    [ 0.454116] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.454146] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.454202] system 00:05: [io 0x04d0-0x04d1] has been reserved
    [ 0.454205] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.454242] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.454375] system 00:07: [mem 0xfeb20000-0xfeb23fff] could not be reserved
    [ 0.454377] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.454493] system 00:08: [mem 0xfec20000-0xfec200ff] could not be reserved
    [ 0.454495] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.454597] pnp: PnP ACPI: found 9 devices
    [ 0.461181] pci 0000:00:02.0: PCI bridge to [bus 01]
    [ 0.461184] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.461186] pci 0000:00:02.0: bridge window [mem 0xfd000000-0xfe0fffff]
    [ 0.461189] pci 0000:00:02.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.461192] pci 0000:00:09.0: PCI bridge to [bus 02]
    [ 0.461194] pci 0000:00:09.0: bridge window [mem 0xfe300000-0xfe3fffff]
    [ 0.461198] pci 0000:00:0a.0: PCI bridge to [bus 03]
    [ 0.461199] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.461202] pci 0000:00:0a.0: bridge window [mem 0xfe200000-0xfe2fffff]
    [ 0.461205] pci 0000:00:14.4: PCI bridge to [bus 04]
    [ 0.461207] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.461211] pci 0000:00:14.4: bridge window [mem 0xfe100000-0xfe1fffff]
    [ 0.461217] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 0.461219] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 0.461221] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 0.461222] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 0.461224] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.461225] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.461227] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.461228] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.461230] pci_bus 0000:01: resource 1 [mem 0xfd000000-0xfe0fffff]
    [ 0.461231] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.461233] pci_bus 0000:02: resource 1 [mem 0xfe300000-0xfe3fffff]
    [ 0.461234] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
    [ 0.461236] pci_bus 0000:03: resource 1 [mem 0xfe200000-0xfe2fffff]
    [ 0.461237] pci_bus 0000:04: resource 0 [io 0xc000-0xcfff]
    [ 0.461239] pci_bus 0000:04: resource 1 [mem 0xfe100000-0xfe1fffff]
    [ 0.461240] pci_bus 0000:04: resource 4 [io 0x0000-0x03af]
    [ 0.461241] pci_bus 0000:04: resource 5 [io 0x03e0-0x0cf7]
    [ 0.461243] pci_bus 0000:04: resource 6 [io 0x03b0-0x03df]
    [ 0.461244] pci_bus 0000:04: resource 7 [io 0x0d00-0xffff]
    [ 0.461246] pci_bus 0000:04: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.461247] pci_bus 0000:04: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.461248] pci_bus 0000:04: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.461266] NET: Registered protocol family 2
    [ 0.461445] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.461541] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.461669] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.461704] TCP: reno registered
    [ 0.461711] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.461735] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.461786] NET: Registered protocol family 1
    [ 0.771487] pci 0000:01:00.0: Video device with shadowed ROM
    [ 0.771739] PCI: CLS 64 bytes, default 64
    [ 0.771777] Unpacking initramfs...
    [ 0.818296] Freeing initrd memory: 4096K (ffff8800377f0000 - ffff880037bf0000)
    [ 0.818928] AMD-Vi: Found IOMMU at 0000:00:00.2 cap 0x40
    [ 0.818930] AMD-Vi: Interrupt remapping enabled
    [ 0.819044] AMD-Vi: Initialized for Passthrough Mode
    [ 0.894098] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.894100] software IO TLB [mem 0xba858000-0xbe858000] (64MB) mapped at [ffff8800ba858000-ffff8800be857fff]
    [ 0.894417] perf: AMD NB counters detected
    [ 0.894473] microcode: CPU0: patch_level=0x06000822
    [ 0.894480] microcode: CPU1: patch_level=0x06000822
    [ 0.894489] microcode: CPU2: patch_level=0x06000822
    [ 0.894497] microcode: CPU3: patch_level=0x06000822
    [ 0.894505] microcode: CPU4: patch_level=0x06000822
    [ 0.894512] microcode: CPU5: patch_level=0x06000822
    [ 0.894520] microcode: CPU6: patch_level=0x06000822
    [ 0.894528] microcode: CPU7: patch_level=0x06000822
    [ 0.894571] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 0.894574] LVT offset 0 assigned for vector 0x400
    [ 0.894593] perf: AMD IBS detected (0x000000ff)
    [ 0.894612] Scanning for low memory corruption every 60 seconds
    [ 0.894922] futex hash table entries: 2048 (order: 5, 131072 bytes)
    [ 0.894967] Initialise system trusted keyring
    [ 0.895290] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.896718] zpool: loaded
    [ 0.896720] zbud: loaded
    [ 0.896855] VFS: Disk quotas dquot_6.5.2
    [ 0.896887] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.897041] Key type big_key registered
    [ 0.897219] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.897278] io scheduler noop registered
    [ 0.897280] io scheduler deadline registered
    [ 0.897311] io scheduler cfq registered (default)
    [ 0.897582] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.897597] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.897611] vesafb: mode is 1280x1024x32, linelength=5120, pages=0
    [ 0.897612] vesafb: scrolling: redraw
    [ 0.897613] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.897630] vesafb: framebuffer at 0xd1000000, mapped to 0xffffc90010780000, using 5120k, total 5120k
    [ 0.908558] Console: switching to colour frame buffer device 160x64
    [ 0.919363] fb0: VESA VGA frame buffer device
    [ 0.919406] GHES: HEST is not enabled!
    [ 0.919477] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.939995] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    [ 0.940350] Linux agpgart interface v0.103
    [ 0.940412] rtc_cmos 00:04: RTC can wake from S4
    [ 0.940505] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.940526] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.940538] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.940741] TCP: cubic registered
    [ 0.940831] NET: Registered protocol family 10
    [ 0.941040] NET: Registered protocol family 17
    [ 0.941657] Loading compiled-in X.509 certificates
    [ 0.941667] registered taskstats version 1
    [ 0.942038] Magic number: 11:895:492
    [ 0.942102] rtc_cmos 00:04: setting system clock to 2015-04-01 18:28:16 UTC (1427912896)
    [ 0.942169] PM: Hibernation image not present or could not be loaded.
    [ 0.942657] Freeing unused kernel memory: 1164K (ffffffff818e7000 - ffffffff81a0a000)
    [ 0.942658] Write protecting the kernel read-only data: 8192k
    [ 0.943029] Freeing unused kernel memory: 600K (ffff88000156a000 - ffff880001600000)
    [ 0.943194] Freeing unused kernel memory: 304K (ffff8800017b4000 - ffff880001800000)
    [ 0.948897] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.960384] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 0.960767] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.960819] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.965753] ACPI: bus type USB registered
    [ 0.965786] usbcore: registered new interface driver usbfs
    [ 0.965799] usbcore: registered new interface driver hub
    [ 0.965834] SCSI subsystem initialized
    [ 0.965866] usbcore: registered new device driver usb
    [ 0.966937] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.967199] QUIRK: Enable AMD PLL fix
    [ 0.967214] xhci_hcd 0000:02:00.0: xHCI Host Controller
    [ 0.967216] ehci-pci: EHCI PCI platform driver
    [ 0.967220] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
    [ 0.967486] hub 1-0:1.0: USB hub found
    [ 0.967493] hub 1-0:1.0: 1 port detected
    [ 0.967607] xhci_hcd 0000:02:00.0: xHCI Host Controller
    [ 0.967610] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
    [ 0.967627] ehci-pci 0000:00:12.2: EHCI Host Controller
    [ 0.967789] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.967791] libata version 3.00 loaded.
    [ 0.967804] hub 2-0:1.0: USB hub found
    [ 0.967816] hub 2-0:1.0: 4 ports detected
    [ 0.967981] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 3
    [ 0.967988] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.967999] ehci-pci 0000:00:12.2: debug port 1
    [ 0.968051] ehci-pci 0000:00:12.2: irq 17, io mem 0xfe409000
    [ 0.968187] ohci-pci: OHCI PCI platform driver
    [ 0.978101] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.978260] hub 3-0:1.0: USB hub found
    [ 0.978266] hub 3-0:1.0: 5 ports detected
    [ 0.978471] ehci-pci 0000:00:13.2: EHCI Host Controller
    [ 0.978476] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 4
    [ 0.978478] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.978487] ehci-pci 0000:00:13.2: debug port 1
    [ 0.978508] ehci-pci 0000:00:13.2: irq 17, io mem 0xfe407000
    [ 0.988131] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 0.988272] hub 4-0:1.0: USB hub found
    [ 0.988277] hub 4-0:1.0: 5 ports detected
    [ 0.988478] ehci-pci 0000:00:16.2: EHCI Host Controller
    [ 0.988483] ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 5
    [ 0.988485] ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.988493] ehci-pci 0000:00:16.2: debug port 1
    [ 0.988514] ehci-pci 0000:00:16.2: irq 17, io mem 0xfe404000
    [ 0.998136] ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
    [ 0.998291] hub 5-0:1.0: USB hub found
    [ 0.998297] hub 5-0:1.0: 4 ports detected
    [ 0.998517] ohci-pci 0000:00:12.0: OHCI PCI host controller
    [ 0.998523] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 6
    [ 0.998580] ohci-pci 0000:00:12.0: irq 18, io mem 0xfe40a000
    [ 1.028176] firewire_ohci 0000:04:0e.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
    [ 1.055675] hub 6-0:1.0: USB hub found
    [ 1.055685] hub 6-0:1.0: 5 ports detected
    [ 1.055891] ohci-pci 0000:00:13.0: OHCI PCI host controller
    [ 1.055896] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 7
    [ 1.055912] ohci-pci 0000:00:13.0: irq 18, io mem 0xfe408000
    [ 1.112371] hub 7-0:1.0: USB hub found
    [ 1.112380] hub 7-0:1.0: 5 ports detected
    [ 1.112585] ohci-pci 0000:00:14.5: OHCI PCI host controller
    [ 1.112589] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 8
    [ 1.112604] ohci-pci 0000:00:14.5: irq 18, io mem 0xfe406000
    [ 1.169060] hub 8-0:1.0: USB hub found
    [ 1.169069] hub 8-0:1.0: 2 ports detected
    [ 1.169230] ohci-pci 0000:00:16.0: OHCI PCI host controller
    [ 1.169234] ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 9
    [ 1.169248] ohci-pci 0000:00:16.0: irq 18, io mem 0xfe405000
    [ 1.225793] hub 9-0:1.0: USB hub found
    [ 1.225802] hub 9-0:1.0: 4 ports detected
    [ 1.226758] scsi host0: pata_atiixp
    [ 1.226866] scsi host1: pata_atiixp
    [ 1.226908] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
    [ 1.226910] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
    [ 1.226935] ahci 0000:00:11.0: version 3.0
    [ 1.227077] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 4 ports 6 Gbps 0xf impl SATA mode
    [ 1.227079] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    [ 1.227581] scsi host2: ahci
    [ 1.227687] scsi host3: ahci
    [ 1.227790] scsi host4: ahci
    [ 1.227894] scsi host5: ahci
    [ 1.227941] ata3: SATA max UDMA/133 abar m1024@0xfe40b000 port 0xfe40b100 irq 19
    [ 1.227943] ata4: SATA max UDMA/133 abar m1024@0xfe40b000 port 0xfe40b180 irq 19
    [ 1.227945] ata5: SATA max UDMA/133 abar m1024@0xfe40b000 port 0xfe40b200 irq 19
    [ 1.227947] ata6: SATA max UDMA/133 abar m1024@0xfe40b000 port 0xfe40b280 irq 19
    [ 1.228069] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
    [ 1.228071] ahci 0000:03:00.0: flags: 64bit ncq sntf led only pmp fbs pio slum part sxs
    [ 1.228368] scsi host6: ahci
    [ 1.228467] scsi host7: ahci
    [ 1.228518] ata7: SATA max UDMA/133 abar m512@0xfe210000 port 0xfe210100 irq 32
    [ 1.228520] ata8: SATA max UDMA/133 abar m512@0xfe210000 port 0xfe210180 irq 32
    [ 1.271654] usb 1-1: new high-speed USB device number 2 using xhci_hcd
    [ 1.389601] ata1.00: supports DRM functions and may not be fully accessible
    [ 1.389604] ata1.00: ATA-9: Samsung SSD 850 EVO 500GB, EMT01B6Q, max UDMA/133
    [ 1.389606] ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 0/32)
    [ 1.390019] ata1.00: limited to UDMA/33 due to 40-wire cable
    [ 1.395403] ata1.00: supports DRM functions and may not be fully accessible
    [ 1.395767] ata1.00: configured for UDMA/33
    [ 1.395882] scsi 0:0:0:0: Direct-Access ATA Samsung SSD 850 1B6Q PQ: 0 ANSI: 5
    [ 1.403230] hub 1-1:1.0: USB hub found
    [ 1.403326] hub 1-1:1.0: 4 ports detected
    [ 1.528533] firewire_core 0000:04:0e.0: created device fw0: GUID 0049e550700d0d00, S400
    [ 1.531822] usb 6-2: new full-speed USB device number 2 using ohci-pci
    [ 1.541816] ata7: SATA link down (SStatus 0 SControl 300)
    [ 1.541830] usb 7-4: new full-speed USB device number 2 using ohci-pci
    [ 1.548468] ata8: SATA link down (SStatus 0 SControl 300)
    [ 1.700539] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.705803] usbcore: registered new interface driver usbhid
    [ 1.705804] usbhid: USB HID core driver
    [ 1.707736] input: Turtle Beach Turtle Beach PX21 Headset as /devices/pci0000:00/0000:00:12.0/usb6/6-2/6-2:1.3/0003:10F5:0235.0001/input/input2
    [ 1.711930] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.711950] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.711968] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.711986] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.714459] ata5.00: ATAPI: ATAPI iHAS424 B, GL14, max UDMA/100
    [ 1.715245] ata5.00: configured for UDMA/100
    [ 1.724780] ata6.00: ATAPI: ATAPI DVD A DH16A3L, 8H1F, max UDMA/100
    [ 1.727806] logitech-djreceiver 0003:046D:C52B.0004: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:13.0-4/input2
    [ 1.738060] ata6.00: configured for UDMA/100
    [ 1.738990] ata4.00: ATA-8: ST3750528AS, CC44, max UDMA/133
    [ 1.738992] ata4.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.752852] ata3.00: ATA-7: ST3250620AS, 3.AAE, max UDMA/133
    [ 1.752855] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.758678] hid-generic 0003:10F5:0235.0001: input,hidraw1: USB HID v1.00 Device [Turtle Beach Turtle Beach PX21 Headset] on usb-0000:00:12.0-2/input3
    [ 1.778584] ata4.00: configured for UDMA/133
    [ 1.811234] ata3.00: configured for UDMA/133
    [ 1.811298] scsi 2:0:0:0: Direct-Access ATA ST3250620AS E PQ: 0 ANSI: 5
    [ 1.811508] scsi 3:0:0:0: Direct-Access ATA ST3750528AS CC44 PQ: 0 ANSI: 5
    [ 1.815331] scsi 4:0:0:0: CD-ROM ATAPI iHAS424 B GL14 PQ: 0 ANSI: 5
    [ 1.827195] scsi 5:0:0:0: CD-ROM ATAPI DVD A DH16A3L 8H1F PQ: 0 ANSI: 5
    [ 1.838181] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.838236] sd 2:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    [ 1.838264] sd 2:0:0:0: [sdb] Write Protect is off
    [ 1.838266] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 1.838275] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.838279] sd 3:0:0:0: [sdc] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
    [ 1.838281] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.838285] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.838307] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.838310] sd 3:0:0:0: [sdc] Write Protect is off
    [ 1.838312] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
    [ 1.838324] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.840319] sda: sda1 sda2
    [ 1.840687] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.851264] sr 4:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.851267] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.851394] sr 4:0:0:0: Attached scsi CD-ROM sr0
    [ 1.853588] sdc: sdc1 sdc2 sdc3 sdc4
    [ 1.853870] sd 3:0:0:0: [sdc] Attached SCSI disk
    [ 1.859267] sdb: sdb1 sdb2
    [ 1.859479] sd 2:0:0:0: [sdb] Attached SCSI disk
    [ 1.864173] sr 5:0:0:0: [sr1] scsi3-mmc drive: 40x/12x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.864316] sr 5:0:0:0: Attached scsi CD-ROM sr1
    [ 1.895367] tsc: Refined TSC clocksource calibration: 4018.371 MHz
    [ 1.972095] usb 7-5: new full-speed USB device number 3 using ohci-pci
    [ 2.143199] input: Razer Razer DeathAdder as /devices/pci0000:00/0000:00:13.0/usb7/7-5/7-5:1.0/0003:1532:0016.0006/input/input3
    [ 2.143245] hid-generic 0003:1532:0016.0006: input,hidraw2: USB HID v1.11 Mouse [Razer Razer DeathAdder] on usb-0000:00:13.0-5/input0
    [ 2.345643] EXT4-fs (sdc2): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.564353] random: nonblocking pool is initialized
    [ 2.896115] Switched to clocksource tsc
    [ 2.989972] systemd[1]: RTC configured in localtime, applying delta of -420 minutes to system time.
    [ 4.146364] EXT4-fs (sdc2): re-mounted. Opts: data=ordered
    [ 5.242062] systemd-journald[198]: Received request to flush runtime journal from PID 1
    [ 5.820530] ACPI: acpi_idle registered with cpuidle
    [ 5.827968] acpi-cpufreq: overriding BIOS provided _PSD data
    [ 6.088745] MCE: In-kernel MCE decoding enabled.
    [ 6.088830] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
    [ 6.088835] ACPI: Power Button [PWRB]
    [ 6.088901] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    [ 6.088903] ACPI: Power Button [PWRF]
    [ 6.090720] wmi: Mapper loaded
    [ 6.183901] EDAC MC: Ver: 3.0.0
    [ 6.185457] AMD64 EDAC driver v3.4.0
    [ 6.185490] EDAC amd64: DRAM ECC disabled.
    [ 6.185502] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    (Note that use of the override may cause unknown side effects.)
    [ 6.196328] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 6.252091] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 6.252149] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
    [ 6.309452] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 6.309546] r8169 0000:04:06.0 (unnamed net_device) (uninitialized): not PCI Express
    [ 6.309823] r8169 0000:04:06.0 eth0: RTL8169sb/8110sb at 0xffffc90000648000, d8:eb:97:81:7b:88, XID 10000000 IRQ 20
    [ 6.309826] r8169 0000:04:06.0 eth0: jumbo features [frames: 7152 bytes, tx checksumming: ok]
    [ 6.316117] [drm] Initialized drm 1.1.0 20060810
    [ 6.322842] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver v0.05
    [ 6.322904] sp5100_tco: PCI Revision ID: 0x42
    [ 6.322936] sp5100_tco: Using 0xfed80b00 for watchdog MMIO address
    [ 6.322947] sp5100_tco: Last reboot was not triggered by watchdog.
    [ 6.322994] sp5100_tco: initialized (0xffffc9000064ab00). heartbeat=60 sec (nowayout=0)
    [ 6.370784] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 6.405509] r8169 0000:04:06.0 enp4s6: renamed from eth0
    [ 6.666521] snd_hda_intel 0000:01:00.1: Disabling MSI
    [ 6.666531] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
    [ 6.728492] sound hdaudioC0D0: autoconfig: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
    [ 6.728504] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 6.728512] sound hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
    [ 6.728518] sound hdaudioC0D0: mono: mono_out=0x0
    [ 6.728523] sound hdaudioC0D0: dig-out=0x11/0x1e
    [ 6.728528] sound hdaudioC0D0: inputs:
    [ 6.728534] sound hdaudioC0D0: Front Mic=0x19
    [ 6.728540] sound hdaudioC0D0: Rear Mic=0x18
    [ 6.728545] sound hdaudioC0D0: Line=0x1a
    [ 6.732452] AVX version of gcm_enc/dec engaged.
    [ 6.732455] AES CTR mode by8 optimization enabled
    [ 6.751090] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
    [ 6.751373] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
    [ 6.751805] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    [ 6.752652] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    [ 6.752768] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
    [ 6.752834] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input12
    [ 6.752899] input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card0/input13
    [ 6.752956] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input14
    [ 7.043010] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input15
    [ 7.043204] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input16
    [ 7.043899] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input17
    [ 7.094444] Adding 16777212k swap on /dev/sdc3. Priority:-1 extents:1 across:16777212k FS
    [ 7.117737] usbcore: registered new interface driver snd-usb-audio
    [ 7.126713] nvidia: module license 'NVIDIA' taints kernel.
    [ 7.126718] Disabling lock debugging due to kernel taint
    [ 7.138096] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 7.138428] [drm] Initialized nvidia-drm 0.0.0 20150116 for 0000:01:00.0 on minor 0
    [ 7.138435] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 346.47 Thu Feb 19 18:56:03 PST 2015
    [ 7.485021] input: Logitech K400 as /devices/pci0000:00/0000:00:13.0/usb7/7-4/7-4:1.2/0003:046D:C52B.0004/0003:046D:4024.0005/input/input18
    [ 7.485233] logitech-hidpp-device 0003:046D:4024.0005: input,hidraw3: USB HID v1.11 Keyboard [Logitech K400] on usb-0000:00:13.0-4:1
    [ 7.540890] mousedev: PS/2 mouse device common for all mice
    [ 7.683577] kvm: Nested Virtualization enabled
    [ 7.683587] kvm: Nested Paging enabled
    [ 8.915498] EXT4-fs (sdc4): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 8.970005] microcode: CPU0: new patch_level=0x06000832
    [ 8.988739] microcode: CPU2: new patch_level=0x06000832
    [ 8.994855] microcode: CPU4: new patch_level=0x06000832
    [ 9.013677] microcode: CPU6: new patch_level=0x06000832
    [ 9.123268] it87: Found IT8728F chip at 0x228, revision 1
    [ 9.123288] it87: Beeping is supported
    [ 10.039941] input: Razer Razer DeathAdder as /devices/pci0000:00/0000:00:13.0/usb7/7-5/7-5:1.0/0003:1532:0016.0007/input/input19
    [ 10.040305] hid-generic 0003:1532:0016.0007: input,hidraw2: USB HID v1.11 Mouse [Razer Razer DeathAdder] on usb-0000:00:13.0-5/input0
    [ 10.361662] r8169 0000:04:06.0 enp4s6: link down
    [ 10.361761] r8169 0000:04:06.0 enp4s6: link down
    [ 10.701964] ip_tables: (C) 2000-2006 Netfilter Core Team
    [ 11.041655] input: Razer Razer DeathAdder as /devices/pci0000:00/0000:00:13.0/usb7/7-5/7-5:1.0/0003:1532:0016.0008/input/input20
    [ 11.042019] hid-generic 0003:1532:0016.0008: input,hidraw2: USB HID v1.11 Mouse [Razer Razer DeathAdder] on usb-0000:00:13.0-5/input0
    [ 12.042896] input: Razer Razer DeathAdder as /devices/pci0000:00/0000:00:13.0/usb7/7-5/7-5:1.0/0003:1532:0016.0009/input/input21
    [ 12.043111] hid-generic 0003:1532:0016.0009: input,hidraw2: USB HID v1.11 Mouse [Razer Razer DeathAdder] on usb-0000:00:13.0-5/input0
    [ 13.308991] NVRM: Your system is not currently configured to drive a VGA console
    [ 13.308995] NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
    [ 13.308996] NVRM: requires the use of a text-mode VGA console. Use of other console
    [ 13.308998] NVRM: drivers including, but not limited to, vesafb, may result in
    [ 13.308999] NVRM: corruption and stability problems, and is not supported.
    [ 13.823977] r8169 0000:04:06.0 enp4s6: link up
    I figure there is plenty of unnecessary info in the dmesg and I apologize, but I want to find the problem of this illusive RAM.
    My system specs:
    AMD FX-8350
    4x4gb CMZ8GX3M2A160 Corsair RAM
    Gigabyte GA-990FXA-UD3
    NVidia GT 640
    Please can someone guide me to the answer of the missing RAM?
    Last edited by vuvffufg (2015-04-02 18:37:31)

    Yes it is 64bit:
    [vuvffufg@HereAndNow-Main ~]$ uname -a
    Linux HereAndNow-Main 3.19.2-1-ARCH #1 SMP PREEMPT Wed Mar 18 16:21:02 CET 2015 x86_64 GNU/Linux

  • Log messages for 'auditing' are different in 'general'  and'application log

    Hi,
    From UI, When I audit a file using a profile which comprises of user-defined 'rules/categories/analyzers', I will get log messages at ''File-name(Application) log window' and 'Messages' log window, which are located at bottom of Jdev UI page. One common message in both the log windows is
    " <n1> violations, <n2> exceptions, <n3> documents, <n4> seconds>.
    But here the 'n1,n2,...' numbers are dfferent in two windows though the log output is for a same file. In this the 'file-name' log shows the correct
    Example:-
    In 'file-name' log window ,it shows as:
    3 documents, 8 violations, no exceptions
    In messages window, it shows as
    "Audit starting on EFC.jpr (Default)
    Audit completed: no violations, no exceptions, 3 documents, 1 second"
    If I use the 'pre-existed'(Jdev's) rules profile, I will get similar output in both log windows.
    From this I concluded that there is something missing to register for a new 'rule/category/analyzer'.
    Could you suggest me in this case. Do I forgot anything to do in any files of '<rule-implementation.java>', 'audit.properties', <add-in launcher>.java, extension.xml.
    Actually, I want to use 'ojaudit' executable from command line to my project files. Here I observed that the output of the 'ojaudit' is similar to the above explained 'Message' log window in JDeveloper UI. But where the 'Message' log window output is not correct for user-defined rules.
    Regards
    Madhu

    Romano,
    In the upcoming production release (planned to be released next week), we added caching of authorized roles and permissions in JhsAuthorizationProxy class.
    I suggest you wait for this relase, if the problem persists, it is most likely an ADF issue (as is the logging)
    Steven Davelaar,
    JHeadstart team.

  • Displaying the contents of an array of objects

    Hello All,
    My Java teacher gave us a challenge and I'm stumped. The teacher wants us to display the contents of the array in the main menthod. The original code is as follows:
    public class TestObjects
         public static void main ( String args[] )
              Thing[] thingArray = { new Thing(4), new Thing(7) };
    }I understand that the elements of the array are objects, and each one has a value assigned to it. The following code was my first attempt at a solution:
    public class TestObjects
         public static void main ( String args[] )
              Thing[] thingArray = { new Thing(4), new Thing(7) };
                                    for ( int i = 0; i < thingArray.length; i++)
                                       System.out.println( thingArray );                         
    }To which I'm given what amounts to garbage output. I learned from reading about that output that its basically displaying the memory location of the array, and the the contents of the array. There was mention of overriding or bypassing a method in System.out.println, but I don't believe that we're that far advanced yet. Any thoughts? I know I have to get at the data fields in the objects of the array, but i'm not having an easy time figuring it out. Thanks very much in advance!

    robrom78 wrote:
    public class TestObjects
         public static void main ( String args[] )
              Thing[] thingArray = { new Thing(4), new Thing(7) };
    for ( int i = 0; i < thingArray.length; i++)
    System.out.println( thingArray );                         
    Note that you're trying to print the entire array at every loop iteration. That's probably not what you meant to do.
    You probably meant to do something more like
                                 System.out.println( thingArray[i] );Also, note that the java.util.Arrays class has a toString method that might be useful.
    To which I'm given what amounts to garbage output. It's not garbage. It's the default output to toString() for arrays, which is in fact the toString() defined for java.lang.Object (and inherited by arrays).
    I learned from reading about that output that its basically displaying the memory location of the array, and the the contents of the array.It displays a default result that is vaguely related to the memory, but probably shouldn't be thought of us such. Think of it as identifying the type of object, and a value that differentiates it from other objects of the same type.
    By the way I assume you mean "+not+ the contents of the array" above. If so, that is correct.
    There was mention of overriding or bypassing a method in System.out.println, but I don't believe that we're that far advanced yet. Any thoughts? No, you don't override a method in println; actually methods don't contain other methods directly. You probably do need to override toString in Thing.
    I know I have to get at the data fields in the objects of the array, but i'm not having an easy time figuring it out. You can get to the individual objects in the array just by dereferencing it, as I showed you above.
    But I suspect that won't be sufficient. Most likely, Thing doesn't have a toString method defined. This means that you'll end up with very similar output, but it will say "Thing" instead of "[Thing" and the numbers to the right of the "@" will be different.
    You'll need to override the toString() method in Thing to get the output you want.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Variable (Perhaps replacement Path) to group past months together

    Hello.
    I'm trying to perform a query that would group past months data within the current month to aggregate my Key Figures.
    As an example, I have in my InfoCube:
    - Material
    - CalendarMonth
    - Initial Qty (Key Figure)
    - Added Qty (Key Figure)
    - Substracted Qty (Key Figure)
    I'd like to get something like my materials on rows, CalendarMonth on column with my 3 Key Figures on rows as well.  The only thing is that all data pertaining to months prior to "Right now (i.e. August 08)" should be aggregated in August 08, therefore, my first month of data displayed would be August and not January 08 if I have data in this month. 
    This might be very basic to you experts out there but I'm pretty new to the nice BW world and can't figure how to do it.  Any help would be appreciated.
    Thank you.
    P.s. I can't find anywhere (except for the small hints on the right when posting a new thread) how I can format my post as I'd like to put TABS and space but they're getting removed in the preview, is there anywhere the list of ALL possible codes I can use when posting ?

                                August 08     September 08     October 08     November 08     December 08     January 09     February 09     March 09
    MATERIAL-1     Initial Qty        20,000                                   
                   Added Qty                            5,000                         8,000         2,000         2,500                         3,000
                 Subst. Qty                          2,000         6,500                     15,000         2,800         6,400       5,000
                 Total                20,000         23,000        16,500        24,500        11,500        11,200         4,800       2,800
    MATERIAL-2     Initial Qty             u2026             u2026            u2026         u2026                   u2026                    u2026            u2026           u2026
                 Added Qty             u2026                 u2026            u2026         u2026                   u2026                    u2026            u2026           u2026
                      Subst. Qty             u2026             u2026            u2026         u2026                   u2026                    u2026               u2026           u2026
                 Total                     u2026             u2026            u2026         u2026                   u2026                    u2026               u2026           u2026
    Ok, I've finally been able to manage a "similar" output to what I'm trying to achieve.  The total line would actually be a calculated key figure based on the three others.  So in the example above, user as specified March 2009 to be the end calendar period he wants to see the inventory "estimates".  All data prior August 2008 should be shown in August 2008 in their respective Key Figures and then the "Total" would adjust accordingly.  So to answer your question, yes, the same logic need to apply to all 3 Key Figures.

  • "error: command failed to execute correctly" on several packages

    Last night, when I updated before shutting down, I got a few errors, as in the subject. As it was very late, I thought I'd pick it up today.
    Unfortunately, the pacman log only lists one of the ones that failed as libgpg-error. The other one that I remember erroring was gawk. There were a few others, maybe four or five, but I couln't reliably recall them all, so won't guess.
    Here's a new attempt to reinstall gawk with --debug. I did the same with libgpg-error and the error occurred at the same place, with very similar output, so I think the issue is the same for all failures.
    debug: pacman v4.2.1 - libalpm v9.0.1
    debug: parseconfig: options pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: HoldPkg: pacman
    debug: config: HoldPkg: glibc
    debug: config: usedelta (default 0.7)
    debug: config: arch: x86_64
    debug: config: verbosepkglists
    debug: config: chomp
    debug: config: SigLevel: Required
    debug: config: SigLevel: DatabaseOptional
    debug: config: SigLevel: TrustedOnly
    debug: config: LocalFileSigLevel: Optional
    debug: config: finish section 'options'
    debug: config: new section 'core'
    debug: config file /etc/pacman.conf, line 78: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 81: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: config: new section 'xyne-x86_64'
    debug: config: finish section 'xyne-x86_64'
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 91: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: config: new section 'multilib'
    debug: config file /etc/pacman.conf, line 100: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'multilib'
    debug: config: new section 'infinality-bundle'
    debug: config: finish section 'infinality-bundle'
    debug: config: new section 'infinality-bundle-multilib'
    debug: config: finish section 'infinality-bundle-multilib'
    debug: config: new section 'infinality-bundle-fonts'
    debug: config: finish section 'infinality-bundle-fonts'
    debug: config: new section '(null)'
    debug: config: finished parsing /etc/pacman.conf
    debug: setup_libalpm called
    debug: option 'logfile' = /var/log/pacman.log
    debug: option 'gpgdir' = /etc/pacman.d/gnupg/
    debug: option 'cachedir' = /var/cache/pacman/pkg/
    debug: parseconfig: repo pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: finish section 'options'
    debug: config: new section 'core'
    debug: config file /etc/pacman.conf, line 78: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: registering sync database 'core'
    debug: database path for tree core set to /var/lib/pacman/sync/core.db
    debug: "/var/lib/pacman/sync/core.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/core.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for core repoistory
    debug: adding new server URL to database 'core': http://arch.tamcore.eu/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.one.com/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.gnomus.de/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.js-webcoding.de/pub/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://archlinux.polymorf.fr/core/os/x86_64
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 81: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: registering sync database 'extra'
    debug: database path for tree extra set to /var/lib/pacman/sync/extra.db
    debug: "/var/lib/pacman/sync/extra.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/extra.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for extra repoistory
    debug: adding new server URL to database 'extra': http://arch.tamcore.eu/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.one.com/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.gnomus.de/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.js-webcoding.de/pub/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://archlinux.polymorf.fr/extra/os/x86_64
    debug: config: new section 'xyne-x86_64'
    debug: config: SigLevel: Required
    debug: config: finish section 'xyne-x86_64'
    debug: registering sync database 'xyne-x86_64'
    debug: database path for tree xyne-x86_64 set to /var/lib/pacman/sync/xyne-x86_64.db
    debug: GPGME version: 1.5.4
    debug: GPGME engine info: file=/usr/bin/gpg2, home=/etc/pacman.d/gnupg/
    debug: checking signature for /var/lib/pacman/sync/xyne-x86_64.db
    debug: 1 signatures returned
    debug: fingerprint: EC3CBE7F607D11E663149E811D1F0DC78F173680
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430676813
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: EC3CBE7F607D11E663149E811D1F0DC78F173680, Xyne. (key #3) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for xyne-x86_64 repoistory
    debug: adding new server URL to database 'xyne-x86_64': http://xyne.archlinux.ca/repos/xyne
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 91: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: registering sync database 'community'
    debug: database path for tree community set to /var/lib/pacman/sync/community.db
    debug: "/var/lib/pacman/sync/community.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/community.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for community repoistory
    debug: adding new server URL to database 'community': http://arch.tamcore.eu/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.one.com/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.gnomus.de/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.js-webcoding.de/pub/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://archlinux.polymorf.fr/community/os/x86_64
    debug: config: new section 'multilib'
    debug: config file /etc/pacman.conf, line 100: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'multilib'
    debug: registering sync database 'multilib'
    debug: database path for tree multilib set to /var/lib/pacman/sync/multilib.db
    debug: "/var/lib/pacman/sync/multilib.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/multilib.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for multilib repoistory
    debug: adding new server URL to database 'multilib': http://arch.tamcore.eu/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://mirror.one.com/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://mirror.gnomus.de/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://mirror.js-webcoding.de/pub/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://archlinux.polymorf.fr/multilib/os/x86_64
    debug: config: new section 'infinality-bundle'
    debug: config: finish section 'infinality-bundle'
    debug: registering sync database 'infinality-bundle'
    debug: database path for tree infinality-bundle set to /var/lib/pacman/sync/infinality-bundle.db
    debug: checking signature for /var/lib/pacman/sync/infinality-bundle.db
    debug: 1 signatures returned
    debug: fingerprint: A9244FB5E93F11F0E975337FAE6866C7962DDE58
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430276639
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: A9244FB5E93F11F0E975337FAE6866C7962DDE58, bohoomil (dev key) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for infinality-bundle repoistory
    debug: adding new server URL to database 'infinality-bundle': http://bohoomil.com/repo/x86_64
    debug: config: new section 'infinality-bundle-multilib'
    debug: config: finish section 'infinality-bundle-multilib'
    debug: registering sync database 'infinality-bundle-multilib'
    debug: database path for tree infinality-bundle-multilib set to /var/lib/pacman/sync/infinality-bundle-multilib.db
    debug: checking signature for /var/lib/pacman/sync/infinality-bundle-multilib.db
    debug: 1 signatures returned
    debug: fingerprint: A9244FB5E93F11F0E975337FAE6866C7962DDE58
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430087321
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: A9244FB5E93F11F0E975337FAE6866C7962DDE58, bohoomil (dev key) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for infinality-bundle-multilib repoistory
    debug: adding new server URL to database 'infinality-bundle-multilib': http://bohoomil.com/repo/multilib/x86_64
    debug: config: new section 'infinality-bundle-fonts'
    debug: config: finish section 'infinality-bundle-fonts'
    debug: registering sync database 'infinality-bundle-fonts'
    debug: database path for tree infinality-bundle-fonts set to /var/lib/pacman/sync/infinality-bundle-fonts.db
    debug: checking signature for /var/lib/pacman/sync/infinality-bundle-fonts.db
    debug: 1 signatures returned
    debug: fingerprint: A9244FB5E93F11F0E975337FAE6866C7962DDE58
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430276566
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: A9244FB5E93F11F0E975337FAE6866C7962DDE58, bohoomil (dev key) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for infinality-bundle-fonts repoistory
    debug: adding new server URL to database 'infinality-bundle-fonts': http://bohoomil.com/repo/fonts
    debug: config: new section '(null)'
    debug: config: finished parsing /etc/pacman.conf
    debug: loading package cache for repository 'core'
    debug: opening archive /var/lib/pacman/sync/core.db
    debug: added 208 packages to package cache for db 'core'
    debug: adding package 'gawk'
    debug: loading package cache for repository 'local'
    debug: added 1122 packages to package cache for db 'local'
    warning: gawk-4.1.2-1 is up to date -- reinstalling
    debug: adding package gawk-4.1.2-1 to the transaction add list
    resolving dependencies...
    debug: resolving target's dependencies
    debug: started resolving dependencies
    debug: checkdeps: package gawk-4.1.2-1
    debug: finished resolving dependencies
    looking for conflicting packages...
    debug: looking for conflicts
    debug: check targets vs targets
    debug: check targets vs targets
    debug: check targets vs db and db vs targets
    debug: check targets vs db
    debug: check db vs targets
    debug: checking dependencies
    debug: checkdeps: package gawk-4.1.2-1
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg gawk
    debug: sorting by dependencies
    debug: started sorting dependencies
    debug: sorting dependencies finished
    Package (1) Old Version New Version Net Change
    core/gawk 4.1.2-1 4.1.2-1 0.00 MiB
    Total Installed Size: 2.19 MiB
    Net Upgrade Size: 0.00 MiB
    :: Proceed with installation? [Y/n] y
    debug: using cachedir: /var/cache/pacman/pkg/
    debug: using cachedir: /var/cache/pacman/pkg/
    checking keyring...
    debug: looking up key 771DF6627EDF681F locally
    debug: key lookup success, key exists
    checking package integrity...
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABCAAGBQJVQNc+AAoJEHcd9mJ+32gfQZgH/jkRiirmPTb4nE0xgcFGKc8wrxw3k9ooGyMFoeqAthTICB/5dBzNfEQ8b4X74gi8KiYQVYm4WE8kWIidUj5ekJhGwngO6Gk+lwyBq+Uh8rUHDJKw557fImM2bBah2lxNUxqZzxYTA1FByq2lptLB5EPJgAPemyUXACMXITDfqtWMpuHIEPLZi5WW9+cB0eMKz5IeEEfZi4lO2fyfRqxNkRDNSmC5NEDkfhm+XVXBEd4gugSOmYpKzlA67mjw2HP+oOyNheL8st4SjgFr/qVDdbfiBbaTTujC4mF1n73z5qp4K5/xgHqk42ftoo003XFQYVOAg3bDWMvUF5d63D4+HKg=
    debug: checking signature for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 5B7E3FB71B7F10329A1C03AB771DF6627EDF681F
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430312766
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 5B7E3FB71B7F10329A1C03AB771DF6627EDF681F, Tobias Powalowski <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    loading package files...
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target gawk
    debug: opening archive /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: starting package load for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: found mtree for package /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz, getting file list
    debug: finished mtree reading for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    checking for file conflicts...
    debug: looking for file conflicts
    debug: searching for file conflicts: gawk
    debug: searching for filesystem conflicts: gawk
    checking available disk space...
    debug: checking available disk space
    debug: discovered mountpoint: /tmp
    debug: discovered mountpoint: /sys/kernel/security
    debug: discovered mountpoint: /sys/kernel/debug
    debug: discovered mountpoint: /sys/kernel/config
    debug: discovered mountpoint: /sys/fs/pstore
    debug: discovered mountpoint: /sys/fs/cgroup/systemd
    debug: discovered mountpoint: /sys/fs/cgroup/net_cls
    debug: discovered mountpoint: /sys/fs/cgroup/memory
    debug: discovered mountpoint: /sys/fs/cgroup/freezer
    debug: discovered mountpoint: /sys/fs/cgroup/devices
    debug: discovered mountpoint: /sys/fs/cgroup/cpuset
    debug: discovered mountpoint: /sys/fs/cgroup/cpu,cpuacct
    debug: discovered mountpoint: /sys/fs/cgroup/blkio
    debug: discovered mountpoint: /sys/fs/cgroup
    debug: discovered mountpoint: /sys
    debug: discovered mountpoint: /run/user/1000
    debug: discovered mountpoint: /run
    debug: discovered mountpoint: /proc/sys/fs/binfmt_misc
    debug: discovered mountpoint: /proc
    debug: discovered mountpoint: /home/skanky/personal
    debug: discovered mountpoint: /home
    debug: discovered mountpoint: /dev/shm
    debug: discovered mountpoint: /dev/pts
    debug: discovered mountpoint: /dev/mqueue
    debug: discovered mountpoint: /dev/hugepages
    debug: discovered mountpoint: /dev
    debug: discovered mountpoint: /
    debug: loading fsinfo for /
    debug: partition /, needed 0, cushion 5121, free 1174711
    debug: installing packages
    reinstalling gawk...
    debug: reinstalling package gawk-4.1.2-1
    debug: opening archive /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: extracting: .INSTALL
    debug: removing old package first (gawk-4.1.2-1)
    debug: removing 110 files
    debug: unlinking /usr/share/man/man3/time.3am.gz
    debug: unlinking /usr/share/man/man3/rwarray.3am.gz
    debug: unlinking /usr/share/man/man3/revtwoway.3am.gz
    debug: unlinking /usr/share/man/man3/revoutput.3am.gz
    debug: unlinking /usr/share/man/man3/readfile.3am.gz
    debug: unlinking /usr/share/man/man3/readdir.3am.gz
    debug: unlinking /usr/share/man/man3/ordchr.3am.gz
    debug: unlinking /usr/share/man/man3/inplace.3am.gz
    debug: unlinking /usr/share/man/man3/fork.3am.gz
    debug: unlinking /usr/share/man/man3/fnmatch.3am.gz
    debug: unlinking /usr/share/man/man3/filefuncs.3am.gz
    debug: keeping directory /usr/share/man/man3/ (contains files)
    debug: unlinking /usr/share/man/man1/igawk.1.gz
    debug: unlinking /usr/share/man/man1/gawk.1.gz
    debug: keeping directory /usr/share/man/man1/ (contains files)
    debug: keeping directory /usr/share/man/ (contains files)
    debug: unlinking /usr/share/locale/vi/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/vi/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/vi/ (contains files)
    debug: unlinking /usr/share/locale/sv/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/sv/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/sv/ (contains files)
    debug: unlinking /usr/share/locale/pl/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/pl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/pl/ (contains files)
    debug: unlinking /usr/share/locale/nl/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/nl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/nl/ (contains files)
    debug: unlinking /usr/share/locale/ms/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/ms/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ms/ (contains files)
    debug: unlinking /usr/share/locale/ja/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/ja/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ja/ (contains files)
    debug: unlinking /usr/share/locale/it/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/it/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/it/ (contains files)
    debug: unlinking /usr/share/locale/fr/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/fr/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/fr/ (contains files)
    debug: unlinking /usr/share/locale/fi/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/fi/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/fi/ (contains files)
    debug: unlinking /usr/share/locale/es/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/es/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/es/ (contains files)
    debug: unlinking /usr/share/locale/de/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/de/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/de/ (contains files)
    debug: unlinking /usr/share/locale/da/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/da/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/da/ (contains files)
    debug: unlinking /usr/share/locale/ca/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/ca/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ca/ (contains files)
    debug: keeping directory /usr/share/locale/ (contains files)
    debug: unlinking /usr/share/info/gawkinet.info.gz
    debug: unlinking /usr/share/info/gawk.info.gz
    debug: keeping directory /usr/share/info/ (contains files)
    debug: unlinking /usr/share/awk/zerofile.awk
    debug: unlinking /usr/share/awk/walkarray.awk
    debug: unlinking /usr/share/awk/strtonum.awk
    debug: unlinking /usr/share/awk/shellquote.awk
    debug: unlinking /usr/share/awk/round.awk
    debug: unlinking /usr/share/awk/rewind.awk
    debug: unlinking /usr/share/awk/readfile.awk
    debug: unlinking /usr/share/awk/readable.awk
    debug: unlinking /usr/share/awk/quicksort.awk
    debug: unlinking /usr/share/awk/processarray.awk
    debug: unlinking /usr/share/awk/passwd.awk
    debug: unlinking /usr/share/awk/ord.awk
    debug: unlinking /usr/share/awk/noassign.awk
    debug: unlinking /usr/share/awk/libintl.awk
    debug: unlinking /usr/share/awk/join.awk
    debug: unlinking /usr/share/awk/inplace.awk
    debug: unlinking /usr/share/awk/group.awk
    debug: unlinking /usr/share/awk/gettime.awk
    debug: unlinking /usr/share/awk/getopt.awk
    debug: unlinking /usr/share/awk/ftrans.awk
    debug: unlinking /usr/share/awk/ctime.awk
    debug: unlinking /usr/share/awk/cliff_rand.awk
    debug: unlinking /usr/share/awk/bits2str.awk
    debug: unlinking /usr/share/awk/assert.awk
    debug: keeping directory /usr/share/awk/ (in new package)
    debug: keeping directory /usr/share/ (contains files)
    debug: unlinking /usr/lib/gawk/time.so
    debug: unlinking /usr/lib/gawk/testext.so
    debug: unlinking /usr/lib/gawk/rwarray.so
    debug: unlinking /usr/lib/gawk/revtwoway.so
    debug: unlinking /usr/lib/gawk/revoutput.so
    debug: unlinking /usr/lib/gawk/readfile.so
    debug: unlinking /usr/lib/gawk/readdir.so
    debug: unlinking /usr/lib/gawk/ordchr.so
    debug: unlinking /usr/lib/gawk/inplace.so
    debug: unlinking /usr/lib/gawk/fork.so
    debug: unlinking /usr/lib/gawk/fnmatch.so
    debug: unlinking /usr/lib/gawk/filefuncs.so
    debug: keeping directory /usr/lib/gawk/ (in new package)
    debug: unlinking /usr/lib/awk/pwcat
    debug: unlinking /usr/lib/awk/grcat
    debug: keeping directory /usr/lib/awk/ (in new package)
    debug: keeping directory /usr/lib/ (contains files)
    debug: unlinking /usr/include/gawkapi.h
    debug: keeping directory /usr/include/ (contains files)
    debug: unlinking /usr/bin/igawk
    debug: unlinking /usr/bin/gawk-4.1.2
    debug: unlinking /usr/bin/gawk
    debug: unlinking /usr/bin/awk
    debug: keeping directory /usr/bin/ (contains files)
    debug: keeping directory /usr/ (contains files)
    debug: removing database entry 'gawk'
    debug: removing entry 'gawk' from 'local' cache
    debug: extracting files
    debug: opening archive /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: skipping extraction of '.PKGINFO'
    debug: extracting /var/lib/pacman/local/gawk-4.1.2-1/install
    debug: extracting /var/lib/pacman/local/gawk-4.1.2-1/mtree
    debug: extract: skipping dir extraction of /usr/
    debug: extract: skipping dir extraction of /usr/lib/
    debug: extract: skipping dir extraction of /usr/share/
    debug: extract: skipping dir extraction of /usr/include/
    debug: extract: skipping dir extraction of /usr/bin/
    debug: extracting /usr/bin/igawk
    debug: extracting /usr/bin/awk
    debug: extracting /usr/bin/gawk-4.1.2
    debug: extracting /usr/bin/gawk
    debug: extracting /usr/include/gawkapi.h
    debug: extract: skipping dir extraction of /usr/share/locale/
    debug: extract: skipping dir extraction of /usr/share/awk/
    debug: extract: skipping dir extraction of /usr/share/info/
    debug: extract: skipping dir extraction of /usr/share/man/
    debug: extract: skipping dir extraction of /usr/share/man/man3/
    debug: extract: skipping dir extraction of /usr/share/man/man1/
    debug: extracting /usr/share/man/man1/gawk.1.gz
    debug: extracting /usr/share/man/man1/igawk.1.gz
    debug: extracting /usr/share/man/man3/filefuncs.3am.gz
    debug: extracting /usr/share/man/man3/fnmatch.3am.gz
    debug: extracting /usr/share/man/man3/fork.3am.gz
    debug: extracting /usr/share/man/man3/inplace.3am.gz
    debug: extracting /usr/share/man/man3/ordchr.3am.gz
    debug: extracting /usr/share/man/man3/readdir.3am.gz
    debug: extracting /usr/share/man/man3/readfile.3am.gz
    debug: extracting /usr/share/man/man3/revoutput.3am.gz
    debug: extracting /usr/share/man/man3/revtwoway.3am.gz
    debug: extracting /usr/share/man/man3/rwarray.3am.gz
    debug: extracting /usr/share/man/man3/time.3am.gz
    debug: extracting /usr/share/info/gawk.info.gz
    debug: extracting /usr/share/info/gawkinet.info.gz
    debug: extracting /usr/share/awk/zerofile.awk
    debug: extracting /usr/share/awk/walkarray.awk
    debug: extracting /usr/share/awk/strtonum.awk
    debug: extracting /usr/share/awk/shellquote.awk
    debug: extracting /usr/share/awk/round.awk
    debug: extracting /usr/share/awk/rewind.awk
    debug: extracting /usr/share/awk/readfile.awk
    debug: extracting /usr/share/awk/readable.awk
    debug: extracting /usr/share/awk/quicksort.awk
    debug: extracting /usr/share/awk/processarray.awk
    debug: extracting /usr/share/awk/ord.awk
    debug: extracting /usr/share/awk/noassign.awk
    debug: extracting /usr/share/awk/libintl.awk
    debug: extracting /usr/share/awk/join.awk
    debug: extracting /usr/share/awk/inplace.awk
    debug: extracting /usr/share/awk/gettime.awk
    debug: extracting /usr/share/awk/getopt.awk
    debug: extracting /usr/share/awk/ftrans.awk
    debug: extracting /usr/share/awk/ctime.awk
    debug: extracting /usr/share/awk/cliff_rand.awk
    debug: extracting /usr/share/awk/bits2str.awk
    debug: extracting /usr/share/awk/assert.awk
    debug: extracting /usr/share/awk/group.awk
    debug: extracting /usr/share/awk/passwd.awk
    debug: extract: skipping dir extraction of /usr/share/locale/vi/
    debug: extract: skipping dir extraction of /usr/share/locale/sv/
    debug: extract: skipping dir extraction of /usr/share/locale/pl/
    debug: extract: skipping dir extraction of /usr/share/locale/nl/
    debug: extract: skipping dir extraction of /usr/share/locale/ms/
    debug: extract: skipping dir extraction of /usr/share/locale/ja/
    debug: extract: skipping dir extraction of /usr/share/locale/it/
    debug: extract: skipping dir extraction of /usr/share/locale/fr/
    debug: extract: skipping dir extraction of /usr/share/locale/fi/
    debug: extract: skipping dir extraction of /usr/share/locale/es/
    debug: extract: skipping dir extraction of /usr/share/locale/de/
    debug: extract: skipping dir extraction of /usr/share/locale/da/
    debug: extract: skipping dir extraction of /usr/share/locale/ca/
    debug: extract: skipping dir extraction of /usr/share/locale/ca/LC_MESSAGES/
    debug: extracting /usr/share/locale/ca/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/da/LC_MESSAGES/
    debug: extracting /usr/share/locale/da/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/de/LC_MESSAGES/
    debug: extracting /usr/share/locale/de/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/es/LC_MESSAGES/
    debug: extracting /usr/share/locale/es/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/fi/LC_MESSAGES/
    debug: extracting /usr/share/locale/fi/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/fr/LC_MESSAGES/
    debug: extracting /usr/share/locale/fr/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/it/LC_MESSAGES/
    debug: extracting /usr/share/locale/it/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/ja/LC_MESSAGES/
    debug: extracting /usr/share/locale/ja/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/ms/LC_MESSAGES/
    debug: extracting /usr/share/locale/ms/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/nl/LC_MESSAGES/
    debug: extracting /usr/share/locale/nl/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/pl/LC_MESSAGES/
    debug: extracting /usr/share/locale/pl/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/sv/LC_MESSAGES/
    debug: extracting /usr/share/locale/sv/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/vi/LC_MESSAGES/
    debug: extracting /usr/share/locale/vi/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/lib/gawk/
    debug: extract: skipping dir extraction of /usr/lib/awk/
    debug: extracting /usr/lib/awk/pwcat
    debug: extracting /usr/lib/awk/grcat
    debug: extracting /usr/lib/gawk/filefuncs.so
    debug: extracting /usr/lib/gawk/fnmatch.so
    debug: extracting /usr/lib/gawk/fork.so
    debug: extracting /usr/lib/gawk/inplace.so
    debug: extracting /usr/lib/gawk/ordchr.so
    debug: extracting /usr/lib/gawk/readdir.so
    debug: extracting /usr/lib/gawk/readfile.so
    debug: extracting /usr/lib/gawk/revoutput.so
    debug: extracting /usr/lib/gawk/revtwoway.so
    debug: extracting /usr/lib/gawk/rwarray.so
    debug: extracting /usr/lib/gawk/testext.so
    debug: extracting /usr/lib/gawk/time.so
    debug: updating database
    debug: adding database entry 'gawk'
    debug: writing gawk-4.1.2-1 DESC information back to db
    debug: writing gawk-4.1.2-1 FILES information back to db
    debug: adding entry 'gawk' in 'local' cache
    debug: executing ". /tmp/alpm_r21DA5/.INSTALL; post_upgrade 4.1.2-1 4.1.2-1"
    debug: executing "/usr/bin/bash" under chroot "/"
    debug: call to waitpid succeeded
    error: command failed to execute correctly
    debug: running ldconfig
    debug: executing "/usr/bin/ldconfig" under chroot "/"
    debug: call to waitpid succeeded
    debug: unregistering database 'local'
    debug: freeing package cache for repository 'local'
    debug: unregistering database 'core'
    debug: freeing package cache for repository 'core'
    debug: unregistering database 'extra'
    debug: unregistering database 'xyne-x86_64'
    debug: unregistering database 'community'
    debug: unregistering database 'multilib'
    debug: unregistering database 'infinality-bundle'
    debug: unregistering database 'infinality-bundle-multilib'
    debug: unregistering database 'infinality-bundle-fonts'
    pacman thinks the upgrade/reinstall was successful in that the latest version is installed.
    I did a search on the forums and the only other issue that I thought was connected might be microcode not up to date, but I had followed the update instructions some time back and as far as I can tell, the microcode  is up to date.
    I have two main questions:
    1) How do I work out what's causing the error, from above?
    2) Is there a way I can work out which packages gave the error, so I can make sure they're installed properly?
    Thanks.

    The following packages also had problems
    ( 2/17) upgrading glibc
    error: command failed to execute correctly
    ( 3/17) upgrading binutils
    error: command failed to execute correctly
    ( 4/17) upgrading coreutils
    error: command failed to execute correctly
    ( 8/17) upgrading gcc
    error: command failed to execute correctly
    ( 9/17) upgrading gcc-fortran
    error: command failed to execute correctly
    (10/17) upgrading gcc-libs
    error: command failed to execute correctly
    Does anybody have a clue?
    Thanks,

  • Gnome won't start: Oh no! Something has gone wrong.

    Hello,
    after a week holyday i installed all new updates on my Notebook (Asus UX31). During shutdown it freezed and i had to switch off the Notebook. Now if i start i can login with Slim and than gnome starts with an error display: "Oh no! Something has gone wrong. A problem has occured and the system can't recover. All extensions have been disabled as precaution." I can klick on a Log Out Button but if i log in again, the same is happening. It's funny that there appear reminders from evolution and the dialog to unlock the keyring.
    Any suggestions?
    Here are some logs:
    /var/log/Xorg.0.log
    [ 16.074]
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    [ 16.074] X Protocol Version 11, Revision 0
    [ 16.074] Build Operating System: Linux 3.9.7-1-ARCH x86_64
    [ 16.074] Current Operating System: Linux oliver-zen 3.10.3-1-ARCH #1 SMP PREEMPT Fri Jul 26 11:26:59 CEST 2013 x86_64
    [ 16.074] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=cd85b266-a33f-4abf-93d6-7ac918f8ff26 ro quiet add_efi_memmap i915.i915_enable_rc6=1 drm.vblankoffdelay=1 i915.semaphores=1
    [ 16.074] Build Date: 01 July 2013 10:48:42AM
    [ 16.074]
    [ 16.074] Current version of pixman: 0.30.0
    [ 16.074] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 16.074] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 16.074] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Aug 3 19:37:30 2013
    [ 16.075] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 16.075] (==) No Layout section. Using the first Screen section.
    [ 16.075] (==) No screen section available. Using defaults.
    [ 16.075] (**) |-->Screen "Default Screen Section" (0)
    [ 16.075] (**) | |-->Monitor "<default monitor>"
    [ 16.076] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 16.076] (**) | |-->Device "Card0"
    [ 16.076] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 16.076] (==) Automatically adding devices
    [ 16.076] (==) Automatically enabling devices
    [ 16.076] (==) Automatically adding GPU devices
    [ 16.076] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 16.076] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 16.076] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 16.076] (II) Loader magic: 0x7fdc20
    [ 16.076] (II) Module ABI versions:
    [ 16.076] X.Org ANSI C Emulation: 0.4
    [ 16.076] X.Org Video Driver: 14.1
    [ 16.076] X.Org XInput driver : 19.1
    [ 16.076] X.Org Server Extension : 7.0
    [ 16.077] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 16.079] (--) PCI:*(0:0:2:0) 8086:0116:1043:1427 rev 9, Mem @ 0xddc00000/4194304, 0xc0000000/268435456, I/O @ 0x0000e000/64
    [ 16.079] Initializing built-in extension Generic Event Extension
    [ 16.079] Initializing built-in extension SHAPE
    [ 16.079] Initializing built-in extension MIT-SHM
    [ 16.079] Initializing built-in extension XInputExtension
    [ 16.079] Initializing built-in extension XTEST
    [ 16.079] Initializing built-in extension BIG-REQUESTS
    [ 16.079] Initializing built-in extension SYNC
    [ 16.079] Initializing built-in extension XKEYBOARD
    [ 16.079] Initializing built-in extension XC-MISC
    [ 16.079] Initializing built-in extension SECURITY
    [ 16.079] Initializing built-in extension XINERAMA
    [ 16.079] Initializing built-in extension XFIXES
    [ 16.079] Initializing built-in extension RENDER
    [ 16.079] Initializing built-in extension RANDR
    [ 16.079] Initializing built-in extension COMPOSITE
    [ 16.079] Initializing built-in extension DAMAGE
    [ 16.079] Initializing built-in extension MIT-SCREEN-SAVER
    [ 16.079] Initializing built-in extension DOUBLE-BUFFER
    [ 16.079] Initializing built-in extension RECORD
    [ 16.079] Initializing built-in extension DPMS
    [ 16.079] Initializing built-in extension X-Resource
    [ 16.079] Initializing built-in extension XVideo
    [ 16.079] Initializing built-in extension XVideo-MotionCompensation
    [ 16.079] Initializing built-in extension XFree86-VidModeExtension
    [ 16.079] Initializing built-in extension XFree86-DGA
    [ 16.080] Initializing built-in extension XFree86-DRI
    [ 16.080] Initializing built-in extension DRI2
    [ 16.080] (II) LoadModule: "glx"
    [ 16.080] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 16.080] (II) Module glx: vendor="X.Org Foundation"
    [ 16.081] compiled for 1.14.2, module version = 1.0.0
    [ 16.081] ABI class: X.Org Server Extension, version 7.0
    [ 16.081] (==) AIGLX enabled
    [ 16.081] Loading extension GLX
    [ 16.081] (II) LoadModule: "intel"
    [ 16.081] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 16.081] (II) Module intel: vendor="X.Org Foundation"
    [ 16.081] compiled for 1.14.2, module version = 2.21.13
    [ 16.081] Module class: X.Org Video Driver
    [ 16.081] ABI class: X.Org Video Driver, version 14.1
    [ 16.082] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
    Ivybridge Server (GT2), HD Graphics, HD Graphics 4600,
    Haswell Desktop (GT3), HD Graphics, HD Graphics 4600,
    Haswell Mobile (GT3), HD Graphics, HD Graphics P4600/P4700,
    Haswell Server (GT3), Haswell (GT1), Haswell (GT2), Haswell (GT3),
    HD Graphics, Haswell (GT2), Haswell (GT3), Haswell SDV Desktop (GT1),
    Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT3),
    Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
    Haswell SDV Mobile (GT3), Haswell SDV Server (GT1),
    Haswell SDV Server (GT2), Haswell SDV Server (GT3),
    Haswell SDV (GT1), Haswell SDV (GT2), Haswell SDV (GT3),
    Haswell SDV (GT1), Haswell SDV (GT2), Haswell SDV (GT3),
    Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
    Iris(TM) Graphics 5100, HD Graphics, HD Graphics 4400,
    HD Graphics 5000, Haswell ULT Server (GT1), Haswell ULT Server (GT2),
    Iris(TM) Graphics 5100, Haswell ULT (GT1), Haswell ULT (GT2),
    Iris(TM) Graphics 5100, HD Graphics, HD Graphics 4200,
    Iris(TM) Graphics 5100, Haswell CRW Desktop (GT1), HD Graphics 4600,
    Iris(TM) Pro Graphics 5200, Haswell CRW Mobile (GT1),
    HD Graphics 4600, Iris(TM) Pro Graphics 5200,
    Haswell CRW Server (GT1), Haswell CRW Server (GT2),
    Iris(TM) Pro Graphics 5200, Haswell CRW (GT1), Haswell CRW (GT2),
    Iris(TM) Pro Graphics 5200, Haswell CRW (GT1), Haswell CRW (GT2),
    Iris(TM) Pro Graphics 5200, ValleyView PO board
    [ 16.084] (++) using VT number 7
    [ 16.096] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 16.096] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 16.096] (==) intel(0): RGB weight 888
    [ 16.096] (==) intel(0): Default visual is TrueColor
    [ 16.096] (--) intel(0): Integrated Graphics Chipset: Intel(R) Sandybridge Mobile (GT2)
    [ 16.096] (**) intel(0): Relaxed fencing enabled
    [ 16.096] (**) intel(0): Wait on SwapBuffers? enabled
    [ 16.096] (**) intel(0): Triple buffering? enabled
    [ 16.096] (**) intel(0): Framebuffer tiled
    [ 16.096] (**) intel(0): Pixmaps tiled
    [ 16.096] (**) intel(0): 3D buffers tiled
    [ 16.096] (**) intel(0): SwapBuffers wait enabled
    [ 16.096] (==) intel(0): video overlay key set to 0x101fe
    [ 16.096] (II) intel(0): Output eDP1 has no monitor section
    [ 16.097] (--) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
    [ 16.098] (II) intel(0): Output VGA1 has no monitor section
    [ 16.098] (II) intel(0): Output HDMI1 has no monitor section
    [ 16.099] (II) intel(0): Output DP1 has no monitor section
    [ 16.099] (II) intel(0): EDID for output eDP1
    [ 16.099] (II) intel(0): Manufacturer: COR Model: 17db Serial#: 0
    [ 16.099] (II) intel(0): Year: 2011 Week: 20
    [ 16.099] (II) intel(0): EDID Version: 1.4
    [ 16.099] (II) intel(0): Digital Display Input
    [ 16.099] (II) intel(0): 6 bits per channel
    [ 16.099] (II) intel(0): Digital interface is DisplayPort
    [ 16.099] (II) intel(0): Max Image Size [cm]: horiz.: 29 vert.: 16
    [ 16.099] (II) intel(0): Gamma: 2.20
    [ 16.099] (II) intel(0): No DPMS capabilities specified
    [ 16.099] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 16.099] (II) intel(0): First detailed timing is preferred mode
    [ 16.099] (II) intel(0): Preferred mode is native pixel format and refresh rate
    [ 16.099] (II) intel(0): redX: 0.574 redY: 0.341 greenX: 0.352 greenY: 0.564
    [ 16.099] (II) intel(0): blueX: 0.162 blueY: 0.118 whiteX: 0.313 whiteY: 0.329
    [ 16.099] (II) intel(0): Manufacturer's mask: 0
    [ 16.099] (II) intel(0): Supported detailed timing:
    [ 16.099] (II) intel(0): clock: 97.8 MHz Image Size: 293 x 164 mm
    [ 16.099] (II) intel(0): h_active: 1600 h_sync: 1648 h_sync_end 1680 h_blank_end 1760 h_border: 0
    [ 16.099] (II) intel(0): v_active: 900 v_sync: 903 v_sync_end 908 v_blanking: 926 v_border: 0
    [ 16.099] (II) intel(0): Supported detailed timing:
    [ 16.099] (II) intel(0): clock: 97.8 MHz Image Size: 293 x 164 mm
    [ 16.099] (II) intel(0): h_active: 1600 h_sync: 1648 h_sync_end 1680 h_blank_end 1760 h_border: 0
    [ 16.099] (II) intel(0): v_active: 900 v_sync: 903 v_sync_end 908 v_blanking: 926 v_border: 0
    [ 16.099] (II) intel(0): CPT
    [ 16.099] (II) intel(0): Unknown vendor-specific block 0
    [ 16.099] (II) intel(0): EDID (in hex):
    [ 16.099] (II) intel(0): 00ffffffffffff000df2db1700000000
    [ 16.099] (II) intel(0): 14150104951d10780a129593575a9029
    [ 16.099] (II) intel(0): 1e505400000001010101010101010101
    [ 16.099] (II) intel(0): 010101010101322640a060841a303020
    [ 16.099] (II) intel(0): 350025a410000018322640a060841a30
    [ 16.099] (II) intel(0): 3020350025a410000018000000fe0043
    [ 16.099] (II) intel(0): 50542020202020202020202000000000
    [ 16.099] (II) intel(0): 004e4c41413133335541303241200044
    [ 16.100] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 16.100] (II) intel(0): Printing probed modes for output eDP1
    [ 16.100] (II) intel(0): Modeline "1600x900"x60.0 97.78 1600 1648 1680 1760 900 903 908 926 -hsync -vsync (55.6 kHz eP)
    [ 16.100] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
    [ 16.100] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
    [ 16.100] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
    [ 16.100] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
    [ 16.101] (II) intel(0): EDID for output VGA1
    [ 16.102] (II) intel(0): EDID for output HDMI1
    [ 16.102] (II) intel(0): EDID for output DP1
    [ 16.102] (II) intel(0): Output eDP1 connected
    [ 16.102] (II) intel(0): Output VGA1 disconnected
    [ 16.102] (II) intel(0): Output HDMI1 disconnected
    [ 16.102] (II) intel(0): Output DP1 disconnected
    [ 16.102] (II) intel(0): Using exact sizes for initial modes
    [ 16.102] (II) intel(0): Output eDP1 using initial mode 1600x900
    [ 16.102] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 16.102] (II) intel(0): Kernel page flipping support detected, enabling
    [ 16.102] (==) intel(0): DPI set to (96, 96)
    [ 16.102] (II) Loading sub module "fb"
    [ 16.102] (II) LoadModule: "fb"
    [ 16.102] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 16.103] (II) Module fb: vendor="X.Org Foundation"
    [ 16.103] compiled for 1.14.2, module version = 1.0.0
    [ 16.103] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 16.103] (II) Loading sub module "dri2"
    [ 16.103] (II) LoadModule: "dri2"
    [ 16.103] (II) Module "dri2" already built-in
    [ 16.103] (==) Depth 24 pixmap format is 32 bpp
    [ 16.103] (II) intel(0): [DRI2] Setup complete
    [ 16.103] (II) intel(0): [DRI2] DRI driver: i965
    [ 16.103] (II) intel(0): Allocated new frame buffer 1600x900 stride 6656, tiled
    [ 16.105] (II) UXA(0): Driver registered support for the following operations:
    [ 16.105] (II) solid
    [ 16.105] (II) copy
    [ 16.105] (II) composite (RENDER acceleration)
    [ 16.105] (II) put_image
    [ 16.105] (II) get_image
    [ 16.105] (==) intel(0): Backing store disabled
    [ 16.105] (==) intel(0): Silken mouse enabled
    [ 16.105] (II) intel(0): Initializing HW Cursor
    [ 16.105] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 16.107] (==) intel(0): DPMS enabled
    [ 16.107] (==) intel(0): Intel XvMC decoder enabled
    [ 16.107] (II) intel(0): Set up textured video
    [ 16.108] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 16.108] (II) intel(0): direct rendering: DRI2 Enabled
    [ 16.108] (==) intel(0): hotplug detection: "enabled"
    [ 16.130] (--) RandR disabled
    [ 16.144] (EE) AIGLX error: dlopen of /usr/lib/xorg/modules/dri/i965_dri.so failed (/usr/lib/xorg/modules/dri/i965_dri.so: invalid ELF header)
    [ 16.144] (EE) AIGLX: reverting to software rendering
    [ 16.144] (II) AIGLX: Screen 0 is not DRI capable
    [ 16.174] (II) AIGLX: Loaded and initialized swrast
    [ 16.174] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 16.175] (II) intel(0): Setting screen physical size to 423 x 238
    [ 16.402] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
    [ 16.402] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 16.402] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 16.402] (**) Video Bus: Applying InputClass "keyboard"
    [ 16.402] (II) LoadModule: "evdev"
    [ 16.403] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 16.403] (II) Module evdev: vendor="X.Org Foundation"
    [ 16.403] compiled for 1.14.2, module version = 2.8.1
    [ 16.403] Module class: X.Org XInput Driver
    [ 16.403] ABI class: X.Org XInput driver, version 19.1
    [ 16.403] (II) Using input driver 'evdev' for 'Video Bus'
    [ 16.403] (**) Video Bus: always reports core events
    [ 16.403] (**) evdev: Video Bus: Device: "/dev/input/event11"
    [ 16.403] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 16.403] (--) evdev: Video Bus: Found keys
    [ 16.403] (II) evdev: Video Bus: Configuring as keyboard
    [ 16.403] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input11/event11"
    [ 16.403] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
    [ 16.403] (**) Option "xkb_rules" "evdev"
    [ 16.404] (**) Option "xkb_model" "pc104"
    [ 16.404] (**) Option "xkb_layout" "de"
    [ 16.464] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 16.464] (**) Power Button: Applying InputClass "system-keyboard"
    [ 16.464] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 16.464] (**) Power Button: Applying InputClass "keyboard"
    [ 16.464] (II) Using input driver 'evdev' for 'Power Button'
    [ 16.464] (**) Power Button: always reports core events
    [ 16.464] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 16.464] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 16.464] (--) evdev: Power Button: Found keys
    [ 16.464] (II) evdev: Power Button: Configuring as keyboard
    [ 16.464] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 16.464] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 16.464] (**) Option "xkb_rules" "evdev"
    [ 16.464] (**) Option "xkb_model" "pc104"
    [ 16.464] (**) Option "xkb_layout" "de"
    [ 16.466] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 16.466] (II) No input driver specified, ignoring this device.
    [ 16.466] (II) This device may have been added with another device file.
    [ 16.466] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 16.466] (**) Sleep Button: Applying InputClass "system-keyboard"
    [ 16.466] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 16.466] (**) Sleep Button: Applying InputClass "keyboard"
    [ 16.466] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 16.466] (**) Sleep Button: always reports core events
    [ 16.466] (**) evdev: Sleep Button: Device: "/dev/input/event3"
    [ 16.466] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 16.466] (--) evdev: Sleep Button: Found keys
    [ 16.466] (II) evdev: Sleep Button: Configuring as keyboard
    [ 16.467] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3/event3"
    [ 16.467] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 16.467] (**) Option "xkb_rules" "evdev"
    [ 16.467] (**) Option "xkb_model" "pc104"
    [ 16.467] (**) Option "xkb_layout" "de"
    [ 16.467] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 16.468] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event5)
    [ 16.468] (II) No input driver specified, ignoring this device.
    [ 16.468] (II) This device may have been added with another device file.
    [ 16.469] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event6)
    [ 16.469] (II) No input driver specified, ignoring this device.
    [ 16.469] (II) This device may have been added with another device file.
    [ 16.469] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event7)
    [ 16.469] (II) No input driver specified, ignoring this device.
    [ 16.469] (II) This device may have been added with another device file.
    [ 16.470] (II) config/udev: Adding input device USB2.0 VGA Webcam (/dev/input/event9)
    [ 16.470] (**) USB2.0 VGA Webcam: Applying InputClass "system-keyboard"
    [ 16.470] (**) USB2.0 VGA Webcam: Applying InputClass "evdev keyboard catchall"
    [ 16.470] (**) USB2.0 VGA Webcam: Applying InputClass "keyboard"
    [ 16.470] (II) Using input driver 'evdev' for 'USB2.0 VGA Webcam'
    [ 16.470] (**) USB2.0 VGA Webcam: always reports core events
    [ 16.470] (**) evdev: USB2.0 VGA Webcam: Device: "/dev/input/event9"
    [ 16.470] (--) evdev: USB2.0 VGA Webcam: Vendor 0x13d3 Product 0x5719
    [ 16.470] (--) evdev: USB2.0 VGA Webcam: Found keys
    [ 16.470] (II) evdev: USB2.0 VGA Webcam: Configuring as keyboard
    [ 16.470] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.5/1-1.5:1.0/input/input9/event9"
    [ 16.470] (II) XINPUT: Adding extended input device "USB2.0 VGA Webcam" (type: KEYBOARD, id 9)
    [ 16.470] (**) Option "xkb_rules" "evdev"
    [ 16.470] (**) Option "xkb_model" "pc104"
    [ 16.470] (**) Option "xkb_layout" "de"
    [ 16.471] (II) config/udev: Adding input device Asus WMI hotkeys (/dev/input/event8)
    [ 16.472] (**) Asus WMI hotkeys: Applying InputClass "system-keyboard"
    [ 16.472] (**) Asus WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 16.472] (**) Asus WMI hotkeys: Applying InputClass "keyboard"
    [ 16.472] (II) Using input driver 'evdev' for 'Asus WMI hotkeys'
    [ 16.472] (**) Asus WMI hotkeys: always reports core events
    [ 16.472] (**) evdev: Asus WMI hotkeys: Device: "/dev/input/event8"
    [ 16.472] (--) evdev: Asus WMI hotkeys: Vendor 0 Product 0
    [ 16.472] (--) evdev: Asus WMI hotkeys: Found keys
    [ 16.472] (II) evdev: Asus WMI hotkeys: Configuring as keyboard
    [ 16.472] (**) Option "config_info" "udev:/sys/devices/platform/asus-nb-wmi/input/input8/event8"
    [ 16.472] (II) XINPUT: Adding extended input device "Asus WMI hotkeys" (type: KEYBOARD, id 10)
    [ 16.472] (**) Option "xkb_rules" "evdev"
    [ 16.472] (**) Option "xkb_model" "pc104"
    [ 16.472] (**) Option "xkb_layout" "de"
    [ 16.473] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 16.473] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
    [ 16.473] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 16.473] (**) AT Translated Set 2 keyboard: Applying InputClass "keyboard"
    [ 16.473] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 16.473] (**) AT Translated Set 2 keyboard: always reports core events
    [ 16.473] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 16.473] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 16.473] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 16.473] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 16.473] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 16.473] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 16.474] (**) Option "xkb_rules" "evdev"
    [ 16.474] (**) Option "xkb_model" "pc104"
    [ 16.474] (**) Option "xkb_layout" "de"
    [ 16.475] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event10)
    [ 16.475] (**) ETPS/2 Elantech Touchpad: Applying InputClass "evdev touchpad catchall"
    [ 16.475] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
    [ 16.475] (**) ETPS/2 Elantech Touchpad: Applying InputClass "Default clickpad buttons"
    [ 16.475] (II) LoadModule: "synaptics"
    [ 16.475] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 16.475] (II) Module synaptics: vendor="X.Org Foundation"
    [ 16.475] compiled for 1.14.1, module version = 1.7.1
    [ 16.475] Module class: X.Org XInput Driver
    [ 16.475] ABI class: X.Org XInput driver, version 19.1
    [ 16.475] (II) Using input driver 'synaptics' for 'ETPS/2 Elantech Touchpad'
    [ 16.475] (**) ETPS/2 Elantech Touchpad: always reports core events
    [ 16.475] (**) Option "Device" "/dev/input/event10"
    [ 16.596] (II) synaptics: ETPS/2 Elantech Touchpad: found clickpad property
    [ 16.597] (--) synaptics: ETPS/2 Elantech Touchpad: x-axis range 0 - 3260 (res 32)
    [ 16.597] (--) synaptics: ETPS/2 Elantech Touchpad: y-axis range 0 - 2119 (res 32)
    [ 16.597] (--) synaptics: ETPS/2 Elantech Touchpad: pressure range 0 - 255
    [ 16.597] (--) synaptics: ETPS/2 Elantech Touchpad: finger width range 0 - 15
    [ 16.597] (--) synaptics: ETPS/2 Elantech Touchpad: buttons: left double triple
    [ 16.597] (--) synaptics: ETPS/2 Elantech Touchpad: Vendor 0x2 Product 0xe
    [ 16.597] (**) Option "TapButton1" "1"
    [ 16.597] (**) Option "TapButton2" "2"
    [ 16.597] (**) Option "TapButton3" "3"
    [ 16.597] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
    [ 16.597] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [ 16.597] (**) ETPS/2 Elantech Touchpad: always reports core events
    [ 16.631] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input10/event10"
    [ 16.631] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD, id 12)
    [ 16.631] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MinSpeed is now constant deceleration 2.5
    [ 16.631] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MaxSpeed is now 1.75
    [ 16.631] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) AccelFactor is now 0.051
    [ 16.632] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
    [ 16.632] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 1
    [ 16.632] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
    [ 16.632] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
    [ 16.632] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [ 16.633] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
    [ 16.633] (**) ETPS/2 Elantech Touchpad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 16.633] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 16.633] (II) No input driver specified, ignoring this device.
    [ 16.633] (II) This device may have been added with another device file.
    [ 30.465] (II) UnloadModule: "synaptics"
    [ 30.465] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 30.465] (II) UnloadModule: "evdev"
    [ 30.465] (II) evdev: Asus WMI hotkeys: Close
    [ 30.465] (II) UnloadModule: "evdev"
    [ 30.465] (II) evdev: USB2.0 VGA Webcam: Close
    [ 30.465] (II) UnloadModule: "evdev"
    [ 30.465] (II) evdev: Sleep Button: Close
    [ 30.465] (II) UnloadModule: "evdev"
    [ 30.465] (II) evdev: Power Button: Close
    [ 30.465] (II) UnloadModule: "evdev"
    [ 30.465] (II) evdev: Video Bus: Close
    [ 30.466] (II) UnloadModule: "evdev"
    [ 30.480] (EE) Server terminated successfully (0). Closing log file.
    ~/.xsession-errors
    Tracker-Message: Setting up monitor for changes to config file:'/home/oliver/.config/tracker/tracker-store.cfg'
    Tracker-Message: Setting up monitor for changes to config file:'/home/oliver/.config/tracker/tracker-store.cfg'
    gnome-session[1818]: WARNING: Failed to start app: Unable to start application: Kindprozess »dropboxd« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
    Tracker-Message: Setting up monitor for changes to config file:'/home/oliver/.config/tracker/tracker-miner-fs.cfg'
    ** Message: applet now removed from the notification area
    ** Message: using fallback from indicator to GtkStatusIcon
    (tracker-miner-fs:1925): Tracker-WARNING **: Invalid desktop file: 'file:///usr/share/desktop-directories/X-Unity-All-Applications.directory'
    (tracker-miner-fs:1925): Tracker-WARNING **: Couldn't get name, missing key (Name)
    JS ERROR: !!! WARNING: 'anonymous function does not always return a value'
    JS ERROR: !!! WARNING: file '/home/oliver/.local/share/gnome-shell/extensions/[email protected]/extension.js' line 597 exception 0 number 157
    JS ERROR: !!! WARNING: 'anonymous function does not always return a value'
    JS ERROR: !!! WARNING: file '/home/oliver/.local/share/gnome-shell/extensions/[email protected]/extension.js' line 1012 exception 0 number 157
    (gnome-shell:1897): Clutter-CRITICAL **: clutter_actor_insert_child_at_index: assertion `child->priv->parent == NULL' failed
    ** Message: applet now embedded in the notification area
    Fensterverwalter-Warnung:CurrentTime used to choose focus window; focus window may not be correct.
    Fensterverwalter-Warnung:Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    (gnome-shell:1897): folks-WARNING **: Failed to find primary PersonaStore with type ID 'eds' and ID 'system'.
    Individuals will not be linked properly and creating new links between Personas will not work.
    The configured primary PersonaStore's backend may not be installed. If you are unsure, check with your distribution.
    gnome-session[1818]: WARNING: Could not launch application 'gdu-notification-daemon.desktop': Unable to start application: Kindprozess »/usr/lib/gnome-disk-utility/gdu-notification-daemon« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Bilder/Bildschirmfoto%20von%20%C2%BB2013-06-18%2022:43:01%C2%AB.png" was not found, exec: gnome-settings-daemon, mime_type: image/png
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/Kung%20Fu/yi.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/Kung%20Fu/Mabu.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/Kung%20Fu/Sommerlager.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/Kung%20Fu/MabuChongquan.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/basketball/klein/Basketball1.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/basketball/klein/Basketball2.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    (gnome-settings-daemon:1878): GLib-CRITICAL **: g_variant_get_int32: assertion `g_variant_is_of_type (value, G_VARIANT_TYPE_INT32)' failed
    ** (update-notifier:2110): WARNING **: log file empty (logrotate?) /var/log/dpkg.log
    ** (update-notifier:2110): WARNING **: log file empty (logrotate?) /var/log/apt/term.log
    WARNING:root:timeout reached, exiting
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Bilder/Bildschirmfoto%20von%20%C2%BB2013-06-18%2022:43:01%C2%AB.png" was not found, exec: gnome-settings-daemon, mime_type: image/png
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/Kung%20Fu/yi.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/Kung%20Fu/Mabu.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/Kung%20Fu/Sommerlager.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/Kung%20Fu/MabuChongquan.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/basketball/klein/Basketball1.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    ** (zeitgeist-datahub:2032): WARNING **: recent-manager-provider.vala:133: Desktop file for "file:///home/oliver/Tempel%20Steyr/Kindersportmesse/Fotos/basketball/klein/Basketball2.jpg" was not found, exec: plugin-container, mime_type: image/jpeg
    Fensterverwalter-Warnung:Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x2600003 (Rhythmbox)
    Fensterverwalter-Warnung:meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    Fensterverwalter-Warnung:Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x2600003 (Rhythmbox)
    Fensterverwalter-Warnung:meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    Fensterverwalter-Warnung:Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x2600003 (Rhythmbox)
    Fensterverwalter-Warnung:meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    (gnome-settings-daemon:1878): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    (gnome-settings-daemon:1878): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    (nm-applet:1933): Gdk-WARNING **: nm-applet: Fatal IO error 11 (Die Ressource ist zur Zeit nicht verfügbar) on X server :0.
    (update-notifier:2110): Gdk-WARNING **: update-notifier: Fatal IO error 11 (Die Ressource ist zur Zeit nicht verfügbar) on X server :0.
    (evolution-alarm-notify:2061): Gdk-WARNING **: evolution-alarm-notify: Fatal IO error 11 (Die Ressource ist zur Zeit nicht verfügbar) on X server :0.
    (gnome-screensaver:2031): Gdk-WARNING **: gnome-screensaver: Fatal IO error 11 (Die Ressource ist zur Zeit nicht verfügbar) on X server :0.
    Fensterverwalter-Warnung:Log level 16: gnome-shell: Fatal IO error 0 (Erfolg) on X server :0.
    (gnome-shell-calendar-server:1967): Gdk-WARNING **: gnome-shell-calendar-server: Fatal IO error 11 (Die Ressource ist zur Zeit nicht verfügbar) on X server :0.
    ** (zeitgeist-datahub:2032): WARNING **: zeitgeist-datahub.vala:227: Unable to get name "org.gnome.zeitgeist.datahub" on the bus!
    (tracker-miner-fs:1925): Tracker-CRITICAL **: Could not execute sparql: Verbindung ist geschlossen
    (tracker-miner-fs:1925): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: Verbindung ist geschlossen
    (tracker-miner-fs:1925): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: Verbindung ist geschlossen
    (tracker-miner-fs:1925): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: Verbindung ist geschlossen
    XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
    after 1788 requests (1788 known processed) with 0 events remaining.

    Meanwhile i found out that tracker could be the source of this problem. If not, tracker has a problem. first i tried to reinstall tracker, output was a lot of lines with:
    tracker: /usr/share/ tracker-concerning-files exist in filesystem
    then i deinstalled it. now when i want to install it, a similar output like obove comes.
    Last edited by meson11 (2013-08-05 16:29:52)

  • System image utility fails "Unknown error has occurred"

    Hi,
    I can create disk images from 10.8.3 clients but when i'm putting them through system utility on the 10.8 server it fails after hours of running.
    The log is set to debug and shows the image creates upto 83% then jumps to 100% and later shows unknown errors and failed to create image from restore souce.
    I've created several disk images and saved them to different locations on the server as the source and final image.
    Below i've put in the debug log. Someone please help!!
    Workflow Started (2012-01-02 13:56:58 +0000)
    OS X Server 10.8.3 (12D78), System Image Utility 10.8.3 (624)
    Starting action: Define Image Source (1.4)
    Finished running action: Define Image Source
    Starting action: Create Image (1.7.2)
    Starting image creation process...
    Create NetRestore Image
    Initiating NetRestore from installed volume.
    progressPrefix="_progress"
    ++ progressPrefix=_progress
    scriptsDebugKey="DEBUG"
    ++ scriptsDebugKey=DEBUG
    imageIsUDIFKey="1"
    ++ imageIsUDIFKey=1
    imageFormatKey="UDZO"
    ++ imageFormatKey=UDZO
    mountPoint=""
    ++ mountPoint=
    ownershipInfoKey="501:20"
    ++ ownershipInfoKey=501:20
    blockCopyDeviceKey="0"
    ++ blockCopyDeviceKey=0
    dmgTarget="NetInstall"
    ++ dmgTarget=NetInstall
    potentialRecoveryDevice="disk3s3"
    ++ potentialRecoveryDevice=disk3s3
    asrSource="ASRInstall.pkg"
    ++ asrSource=ASRInstall.pkg
    destPath="/Volumes/Macintosh HD/Library/NetBoot/NetBootSP0/NetRestore of Macintosh 10-8_2.nbi"
    ++ destPath='/Volumes/Macintosh HD/Library/NetBoot/NetBootSP0/NetRestore of Macintosh 10-8_2.nbi'
    skipReorderingKey="0"
    ++ skipReorderingKey=0
    sourceVol="/Volumes/Macintosh HD 1"
    ++ sourceVol='/Volumes/Macintosh HD 1'
    postInstallHelperKey="1"
    ++ postInstallHelperKey=1
    . "${1}/createCommon.sh"
    + . /tmp/niutemp.YPRmigsL/createCommon.sh
    # createCommon.sh
    # Common functionality for the Image creation process.
    # sourced in by the various SIU scripts
    # Copyright © 2007-2012 Apple Inc. All rights reserved.
    # Using dscl, create a user account
    AddLocalUser()
    # $1 volume whose local node database to modify
    # $2 long name
    # $3 short name
    # $4 isAdminUser key
    # $5 password data
    # $6 password hint
    # $7 user picture path
    # $8 Language string
    local databasePath="/Local/Default/Users/${3}"
    local targetVol="${1}"
    # Find a free UID between 501 and 599
    for ((i=501; i<600; i++)); do
    output=`/usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -search /Local/Default/Users UniqueID $i`
    # If there is already an account dscl returns it, so we're looking for an empty return value.
    if [ "$output" == "" ]; then
    break
    fi
    done
    # Create the user record
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -create $databasePath
    if [ $? != 0 ]; then
    echo "Failed to create '${databasePath}'."
    return 1
    fi
    # Add long name
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -append $databasePath RealName "${2}"
    if [ $? != 0 ]; then
    echo "Failed to set the RealName."
    return 1
    fi
    # Set up the users group information
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -append $databasePath PrimaryGroupID 20
    if [ $? != 0 ]; then
    echo "Failed to set the PrimaryGroupID."
    return 1
    fi
    # Add some additional stuff if the user is an admin
    if [ "${4}" == 1 ]; then
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -append "/Local/Default/Groups/admin" GroupMembership "${3}"
    if [ $? != 0 ]; then
    echo "Failed to add the user to the admin group."
    return 1
    fi
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -append "/Local/Default/Groups/_appserveradm" GroupMembership "${3}"
    if [ $? != 0 ]; then
    echo "Failed to add the user to the _appserveradm group."
    return 1
    fi
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -append "/Local/Default/Groups/_appserverusr" GroupMembership "${3}"
    if [ $? != 0 ]; then
    echo "Failed to add the user to the _appserverusr group."
    return 1
    fi
    fi
    # Add UniqueID
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -append $databasePath UniqueID ${i}
    if [ $? != 0 ]; then
    echo "Failed to set the UniqueID."
    return 1
    fi
    # Add Home Directory entry
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -append $databasePath NFSHomeDirectory /Users/${3}
    if [ $? != 0 ]; then
    echo "Failed to set the NFSHomeDirectory."
    fi
    if [ "${6}" != "" ]; then
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -append $databasePath AuthenticationHint "${6}"
    if [ $? != 0 ]; then
    echo "Failed to set the AuthenticationHint."
    return 1
    fi
    fi
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -append $databasePath picture "${7}"
    if [ $? != 0 ]; then
    echo "Failed to set the picture."
    return 1
    fi
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -passwd $databasePath "${5}"
    if [ $? != 0 ]; then
    echo "Failed to set the passwd."
    return 1
    fi
    # Add shell
    /usr/bin/dscl -f "${targetVol}/var/db/dslocal/nodes/Default" localonly -append $databasePath UserShell "/bin/bash"
    if [ $? != 0 ]; then
    echo "Failed to set the UserShell."
    return 1
    fi
    # Create Home directory
    if [ -e "/System/Library/User Template/${8}.lproj/" ]; then
    /usr/bin/ditto "/System/Library/User Template/${8}.lproj/" "${targetVol}/Users/${3}"
    else
    /usr/bin/ditto "/System/Library/User Template/English.lproj/" "${targetVol}/Users/${3}"
    fi
    if [ $? != 0 ]; then
    echo "Failed to copy the User Template."
    return 1
    fi
    /usr/sbin/chown -R $i:$i "${targetVol}/Users/${3}"
    if [ $? != 0 ]; then
    echo "Failed to set ownership on the User folder."
    return 1
    fi
    # Copies a list of files (full paths contained in the file at $1) from source to the path specified in $2
    CopyEntriesFromFileToPath()
    local theFile="$1"
    local theDest="$2"
    local opt=""
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    opt="-v"
    fi
    while read FILE
    do
    if [ -e "${FILE}" ]; then
    local leafName=`basename "${FILE}"`
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Copying ${FILE}."
    fi
    /usr/bin/ditto $opt "${FILE}" "${theDest}/${leafName}" || return 1
    fi
    done < "${theFile}"
    return 0
    # Copies a list of packages (full path, destination pairs contained in the file at $1) from source to .../System/Installation/Packages/
    CopyPackagesWithDestinationsFromFile()
    local theFile="$1"
    local opt=""
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    opt="-v"
    fi
    while read FILE
    do
    if [ -e "${FILE}" ]; then
    local leafName=`basename "${FILE}"`
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Copying ${FILE}."
    fi
    read SUB_PATH
    /usr/bin/ditto $opt "${FILE}" "${mountPoint}/Packages/${SUB_PATH}${leafName}" || return 1
    fi
    done < "${theFile}"
    return 0
    # Create an installer package in ${1} wrapping the supplied script ${2}
    CreateInstallPackageForScript()
    local tempDir="$1"
    local scriptPath="$2"
    local scriptName=`basename "${scriptPath}"`
    local entryDir=`pwd`
    local opt=""
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Create installer for script ${scriptName}"
    opt="-v"
    fi
    # shouldn't exist on entry...
    if [ -e "${tempDir}/emptyDir" ]; then
    /bin/rm -rf "${tempDir}/emptyDir"
    fi
    # make some directories to work in
    /bin/mkdir $opt -p "${tempDir}/${scriptName}.pkg/Contents/Resources" || return 1
    /bin/mkdir $opt "${tempDir}/emptyDir" || return 1
    # Create Archive.pax.gz
    cd "${tempDir}/emptyDir"
    /bin/pax -w -x cpio -f "${tempDir}/${scriptName}.pkg/Contents/Archive.pax" .
    /usr/bin/gzip "${tempDir}/${scriptName}.pkg/Contents/Archive.pax"
    cd "${entryDir}"
    # Create the Archive.bom file
    /usr/bin/mkbom "${tempDir}/emptyDir/" "${tempDir}/${scriptName}.pkg/Contents/Archive.bom" || return 1
    # Create the Info.plist
    /bin/cat > "${tempDir}/${scriptName}.pkg/Contents/Info.plist" << END
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>CFBundleIdentifier</key>
    <string>com.apple.SystemImageUtility.${scriptName}</string>
    <key>CFBundleShortVersionString</key>
    <string>1</string>
    <key>IFMajorVersion</key>
    <integer>1</integer>
    <key>IFMinorVersion</key>
    <integer>0</integer>
    <key>IFPkgFlagDefaultLocation</key>
    <string>/tmp</string>
    <key>IFPkgFlagInstallFat</key>
    <false/>
    <key>IFPkgFlagIsRequired</key>
    <false/>
    <key>IFPkgFormatVersion</key>
    <real>0.10000000149011612</real>
    </dict>
    </plist>
    END
    echo "pkmkrpkg1" > "${tempDir}/${scriptName}.pkg/Contents/PkgInfo"
    echo "major: 1\nminor: 0" > "${tempDir}/${scriptName}.pkg/Contents/Resources/package_version"
    # Copy the script
    /bin/cp "$scriptPath" "${tempDir}/${scriptName}.pkg/Contents/Resources/postflight"
    # clean up
    /bin/rm -r "${tempDir}/emptyDir"
    return 0
    # Validate or create the requested directory
    CreateOrValidatePath()
    local targetDir="$1"
    if [ ! -d "${targetDir}" ]; then
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Creating working path at ${targetDir}"
    fi
    /bin/mkdir -p "${targetDir}" || return 1
    fi
    # If any exist, apply any user accounts
    CreateUserAccounts()
    # $1 volume whose local node database to modify
    local count="${#userFullName[*]}"
    local targetVol="${1}"
    if [ $count -gt 0 ]; then
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Adding $count user account(s) to the image"
    fi
    for ((index=0; index<$count; index++)); do
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Adding user ${userFullName[$index]}"
    fi
    #lay down user here
    AddLocalUser "${targetVol}" "${userFullName[$index]}" "${userUnixName[$index]}" "${userIsAdmin[$index]}" "${userPassword[$index]}" "${userPassHint[$index]}" "${userImagePath[$index]}" "${userLanguage[$index]}"
    if [ $? != 0 ]; then
    echo "Failed to create the User '${userUnixName[$index]}'."
    return 1
    fi
    #suppress the Apple ID request
    DisableAppleIDRequestForUser "${targetVol}" "${userUnixName[$index]}"
    done
    # "touch"
    /usr/bin/touch "${targetVol}/private/var/db/.AppleSetupDone"
    /usr/bin/touch "${targetVol}/Library/Receipts/.SetupRegComplete"
    fi
    # retry the hdiutil detach until we either time out or it succeeds
    retry_hdiutil_detach()
    local mount_point="${1}"
    local tries=0
    local forceAt=0
    local limit=24
    local opt=""
    forceAt=$(($limit - 1))
    while [ $tries -lt $limit ]; do
    tries=$(( tries + 1 ))
    /bin/sleep 5
    echo "Attempting to detach the disk image again..."
    /usr/bin/hdiutil detach "${mount_point}" $opt
    if [ $? -ne 0 ]; then
    # Dump a list of any still open files on the mountPoint
    if [ "${scriptsDebugKey}" == "DEBUG" ]; then
    /usr/sbin/lsof +fg "${mount_point}"
    fi
    if [ $tries -eq $forceAt ]; then
    echo "Failed to detach disk image at '${mount_point}' normally, adding -force."
    opt="-force"
    fi
    if [ $tries -eq $limit ]; then
    echo "Failed to detach disk image at '${mount_point}'."
    exit 1
    fi
    else
    tries=$limit
    fi
    done
    # Create the dyld shared cache files
    DetachAndRemoveMount()
    local theMount="${1}"
    local mountLoc=`mount | grep "${theMount}"`
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Detaching disk image"
    # Dump a list of any still open files on the mountPoint
    if [ "${scriptsDebugKey}" == "DEBUG" ]; then
    /usr/sbin/lsof +fg "${theMount}"
    fi
    fi
    # Finally detach the mount (if it's actually mounted) and dispose the mountPoint directory
    if [ "${mountLoc}" != "" ]; then
    /usr/bin/hdiutil detach "${theMount}" || retry_hdiutil_detach "${theMount}" || return 1
    fi
    /bin/rmdir "${theMount}" || return 1
    return 0
    # Turn off the Apple ID request that happens on first boot after installing the OS
    DisableAppleIDRequestForUser()
    local targetUserLib="${1}/Users/${2}/Library"
    # Only do this if the file doesn't exist
    if [ ! -e "${targetUserLib}/Preferences/com.apple.SetupAssistant.plist" ]; then
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Disabling Apple ID request for user '${2}'"
    fi
    /usr/libexec/PlistBuddy -c "Add :DidSeeCloudSetup bool 1" "${targetUserLib}/Preferences/com.apple.SetupAssistant.plist" > /dev/null 2>&1
    /usr/libexec/PlistBuddy -c "Add :LastSeenCloudProductVersion string 10.8" "${targetUserLib}/Preferences/com.apple.SetupAssistant.plist" > /dev/null 2>&1
    fi
    return 0
    # If the pieces exist, enable remote access for the shell image
    EnableRemoteAccess()
    local srcVol="${1}"
    local opt=""
    if [ -e "${srcVol}/usr/lib/pam/pam_serialnumber.so.2" ]; then
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Enabling shell image remote access support"
    opt="-v"
    fi
    # install some things (again which aren't part of BaseSystem) needed for remote ASR installs
    /usr/bin/ditto $opt "${srcVol}/usr/lib/pam/pam_serialnumber.so.2" "${mountPoint}/usr/lib/pam/pam_serialnumber.so.2" || return 1
    if [ -e "${srcVol}/usr/sbin/installer" ]; then
    /usr/bin/ditto $opt "${srcVol}/usr/sbin/installer" "${mountPoint}/usr/sbin/installer" || return 1
    fi
    # copy the sshd config and add our keys to the end of it
    if [ -e "${srcVol}/etc/sshd_config" ]; then
    /bin/cat "${srcVol}/etc/sshd_config" - > "${mountPoint}/etc/sshd_config" << END
    HostKey /private/var/tmp/ssh_host_key
    HostKey /private/var/tmp/ssh_host_rsa_key
    HostKey /private/var/tmp/ssh_host_dsa_key
    END
    fi
    fi
    return 0
    # If it exists, install the sharing names and/or directory binding support to the install image
    HandleNetBootClientHelper()
    local tempDir="${1}"
    local targetVol="${2}"
    local opt=""
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    opt="-v"
    fi
    if [ -e  "${tempDir}/bindingNames.plist" ]; then
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Installing Directory Service binding information"
    fi
    /usr/bin/ditto $opt "${tempDir}/bindingNames.plist" "${targetVol}/etc/bindingNames.plist" || return 1
    /usr/sbin/chown root:wheel "${targetVol}/etc/bindingNames.plist"
    /bin/chmod 644 "${targetVol}/etc/bindingNames.plist"
    fi
    if [ -e  "${tempDir}/sharingNames.plist" ]; then
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Installing Sharing Names support"
    fi
    /usr/bin/ditto $opt "${tempDir}/sharingNames.plist" "${targetVol}/etc/sharingNames.plist" || return 1
    /usr/sbin/chown root:wheel "${targetVol}/etc/sharingNames.plist"
    /bin/chmod 644 "${targetVol}/etc/sharingNames.plist"
    fi
    if [ -e  "${tempDir}/NetBootClientHelper" ]; then
    /usr/bin/ditto $opt "${tempDir}/NetBootClientHelper" "${targetVol}/usr/sbin/NetBootClientHelper" || return 1
    /usr/sbin/chown root:wheel "${targetVol}/usr/sbin/NetBootClientHelper"
    /bin/chmod 555 "${targetVol}/usr/sbin/NetBootClientHelper"
    /usr/bin/ditto $opt "${tempDir}/com.apple.NetBootClientHelper.plist" "${targetVol}/System/Library/LaunchDaemons/com.apple.NetBootClientHelper.plist" || return 1
    /usr/sbin/chown root:wheel "${targetVol}/System/Library/LaunchDaemons/com.apple.NetBootClientHelper.plist"
    /bin/chmod 644 "${targetVol}/System/Library/LaunchDaemons/com.apple.NetBootClientHelper.plist"
    # finally, make sure it isn't disabled...
    /usr/libexec/PlistBuddy -c "Delete :com.apple.NetBootClientHelper" "${targetVol}/var/db/launchd.db/com.apple.launchd/overrides.plist" > /dev/null 2>&1
    fi
    return 0
    # If any exist, install configuration profiles to the install image
    InstallConfigurationProfiles()
    local tempDir="${1}"
    local targetVol="${2}"
    local profilesDir="${targetVol}/var/db/ConfigurationProfiles"
    if [ -e  "${tempDir}/configProfiles.txt" ]; then
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Installing Configuration Profiles"
    fi
    /bin/mkdir -p "${profilesDir}/Setup" || return 1
    # Make sure the perms are correct
    /usr/sbin/chown root:wheel "${profilesDir}"
    /bin/chmod 755 "${profilesDir}"
    /usr/sbin/chown root:wheel "${profilesDir}/Setup"
    /bin/chmod 755 "${profilesDir}/Setup"
    /usr/bin/touch "${profilesDir}/.profilesAreInstalled"
    CopyEntriesFromFileToPath "${tempDir}/configProfiles.txt" "${profilesDir}/Setup" || return 1
    # Enable MCX debugging
    if [ 1 == 1 ]; then
    if [ -e  "${targetVol}/Library/Preferences/com.apple.MCXDebug.plist" ]; then
    /usr/libexec/PlistBuddy -c "Delete :debugOutput" "${targetVol}/Library/Preferences/com.apple.MCXDebug.plist" > /dev/null 2>&1
    /usr/libexec/PlistBuddy -c "Delete :collateLogs" "${targetVol}/Library/Preferences/com.apple.MCXDebug.plist" > /dev/null 2>&1
    fi
    /usr/libexec/PlistBuddy -c "Add :debugOutput string -2" "${targetVol}/Library/Preferences/com.apple.MCXDebug.plist" > /dev/null 2>&1
    /usr/libexec/PlistBuddy -c "Add :collateLogs string 1" "${targetVol}/Library/Preferences/com.apple.MCXDebug.plist" > /dev/null 2>&1
    fi
    fi
    # Converts a list of scripts (full paths contained in the file at $1) into packages in $3
    InstallScriptsFromFile()
    local tempDir="${1}"
    local theFile="${2}"
    local targetDir="${3}"
    local opt=""
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Converting scripts into install packages"
    opt="-v"
    fi
    while read FILE
    do
    if [ -e "${FILE}" ]; then
    # make an installer package out of the script
    CreateInstallPackageForScript "$tempDir" "${FILE}" || return 1
    # copy the resulting package to the Packages directory
    local leafName=`basename "${FILE}"`
    /usr/bin/ditto $opt "${tempDir}/${leafName}.pkg" "${targetDir}/${leafName}.pkg" || return 1
    # clean up
    /bin/rm -r "${tempDir}/${leafName}.pkg"
    fi
    done < "${theFile}"
    return 0
    # Prepare the source by deleting stuff we don't want to copy if sourcing a volume
    PostFlightDestination()
    local tempDir="${1}"
    local destDir="${2}"
    local opt=""
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Performing post install cleanup"
    opt="-v"
    fi
    # delete the DS indices to force reindexing...
    if [ -e "${mountPoint}/var/db/dslocal/indices/Default/index" ]; then
    /bin/rm $opt "${mountPoint}/var/db/dslocal/indices/Default/index"
    fi
    # detach the disk and remove the mount folder
    DetachAndRemoveMount "${mountPoint}"
    if [ $? != 0 ]; then
    echo "Failed to detach and clean up the mount at '${mountPoint}'."
    return 1
    fi
    echo "Correcting permissions. ${ownershipInfoKey} $destDir"
    /usr/sbin/chown -R "${ownershipInfoKey}" "$destDir"
    # Prepare the source by deleting stuff we don't want to copy if sourcing a volume
    PreCleanSource()
    local srcVol="$1"
    local opt=""
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    opt="-v"
    fi
    if [ -e "$srcVol/private/var/vm/swapfile*" ]; then
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Removing swapfiles on $1"
    fi
    /bin/rm $opt "$srcVol/private/var/vm/swapfile*"
    fi
    if [ -e "$srcVol/private/var/vm/sleepimage" ]; then
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Removing sleepimage on $1"
    fi
    /bin/rm $opt "$srcVol/private/var/vm/sleepimage"
    fi
    if [ -d "$srcVol/private/tmp" ]; then
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Cleaning out /private/tmp on $1"
    fi
    /bin/rm -r $opt "$srcVol/private/tmp/*" > /dev/null 2>&1
    fi
    if [ -d "$srcVol/private/var/tmp" ]; then
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Cleaning out /private/var/tmp on $1"
    fi
    /bin/rm -r $opt "$srcVol/private/var/tmp/*" > /dev/null 2>&1
    fi
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Cleaning out devices and volumes on $1"
    fi
    if [ -d "$srcVol/Volumes" ]; then
    /bin/rm -r $opt "$srcVol/Volumes/*" > /dev/null 2>&1
    fi
    if [ -d "$srcVol/dev" ]; then
    /bin/rm $opt "$srcVol/dev/*" > /dev/null 2>&1
    fi
    if [ -d "$srcVol/private/var/run" ]; then
    /bin/rm -r $opt "$srcVol/private/var/run/*" > /dev/null 2>&1
    fi
    # Copy kernel and build the kext cache on the boot image
    PrepareKernelAndKextCache()
    local srcDir="$1"
    local destDir="$2"
    local opt=""
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Preparing the kernel and kext cache for the boot image"
    opt="-v"
    fi
    # Insure the kext cache on our source volume (the boot shell) is up to date
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Updating kext cache on source volume"
    fi
    /usr/sbin/kextcache -update-volume "${srcDir}" || return 1
    # Copy the i386 and, if it exists, the x86_64 architecture
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Installing the kext cache to the boot image"
    fi
    # make sure this doesn't exist
    if [ -e "${destDir}/i386" ]; then
    /bin/rm -rf "${destDir}/i386"
    fi
    # Install kextcaches to the nbi folder
    if [ "${scriptsDebugKey}" == "VERBOSE" -o "${scriptsDebugKey}" == "DEBUG" ]; then
    echo "Creating a kernelcache for the boot shell"
    fi
    /bin/mkdir -p $opt "${destDir}/i386/x86_64" || return 1
    /usr/sbin/kextcache -arch x86_64 -L -N -S -z -K "${srcDir}/mach_kernel" -c "${destDir}/i386/x86_64/kernelcache" "${srcDir}/System/Library/Extensions" || return 1

    I am seeing a very similar output trying to make a netrestore image of a 10.8.4 Macbook Air on a 10.8.4 Mac Mini running OSX Server.  Gets to 84% and then shows the -1 progress and then just hangs until I cancel it (I haven't tried leaving it over night but left it that way for hours).
    Did you ever figure out what was going on or have a workaround to create an image?
    Thanks!

Maybe you are looking for