Extracting Vistex (Rebate & Commissions) to BW

We will be implementing Vistex to process rebates and calculate sales commissions as part of our implementation of ECC 5.0 and BW 3.5.  I would welcome comments from any one with experience with Vistex and BW.  Particularly regarding the extractors that were used or developed. We are not implementing CRM in this phase. 
Thanks!

Hello
I have exactly the same question as Holly
We are still in the blueprint phase, but I would like to get some information on BW extractors for Vistex, but I can not find any documentation ....
Thanks for your help
PY

Similar Messages

  • Commit on thousands of records

    Hello,
    I've encountered the following problem while trying to update records in an Oracle 8i database :
    I have a java program that updates thousands of records from a flat file to the oracle database, the "commit" command is done at the end of the program,the problem is that some records are not updated in the database but no exception is raised !
    If I try to do a commit after each update, the problem seems to be solved, but of course it takes more time to do the massive update, and I think it is not recommended to do a commit after each record?
    Is there a limit to which a commit can be done? (a number of maximum records to be updated)
    Thanks greatly for your help!
    Regards,
    Carine

    If it was a problem with the size of the rollback statements, you would have received an error.
    But are you sure that you don't have any neglected errors (like a when others that does no handling?). In that case you wouldn't receive any error and no rollback would be performed (but a commit instead) resulting in "saving" your already done modifications.
    In the book "expert one-on-one" from thomas kyte, there is a chapter of what exactly a commit does.
    a small extract:
    basicly a commit has a fairly flat response time. This because 99.9 percent of the work is already done before you commit.
    [list]
    [*]you have already genererated the rollback segments in the sga
    [*]modified data blocks have been generated in the sga
    [*]buffered redo for the above two items has been generated in the sga
    [*]depending on the size of the above three, and the amount of time spent, some combination of the above data may have been flushed onto disk already
    [*]all locks have been acquired
    [list]
    when you commit, all that is left is the following
    [list]
    [*]generate a scn (system change number) for our transaction
    [*]lgwr writes all of our remaining buffered redo log entries to disk, and records the scn in the online redo log files as well. This step is actually the commit. if this step occurs, we have committed. Our transaction entry is removed, this shows that we have committed. Our record in the v$transaction view will 'disappear'.
    [*]All locks held by our session are released, and everyone who was enqueued waiting on locks we held will be released.
    [*]Many of the blocks our transaction modified will be visited and 'cleaned out' in a fast mode if they are still in the buffer cache.
    [list]
    Flushing the redo log buffer by lgwris the lengthiest operation.
    To avoid long waiting, this flushing is done continuously as we are processing:
    [list]
    [*]every three seconds
    [*]when the redo log buffer is one third or one MB full
    [*] upon any transaction commit
    [list]
    for more information do a search on akstom.oracle.com or read his book.
    But is must be clear that the commit on itself has no limits on processed rows.
    There's no limit re: commit. There is a limit on the number of rows that can be modified (updt, del, ins) ina transaction (e.g. between commits). It depends on rollback segment size (and other activity). This varies with each database (see your DBA).
    If you were hitting this limit it would normally "rolllback" all changes to the last commit.
    Ken
    =======
    Hello Ken,
    Thanks a lot for this quick answer. The wonder is that I do not get any error message concerning the rollback segment:
    if I do the commit at the end after updating thousands of records, it seems like it was done correctly but I see that only some records have not been updated in the database (thus I would not be hitting the limit as all changes would have been rolledback) ?
    Is there a way to get a return status from the commit ? Should I do a commit after each 1000 records for example?
    Thanks again,
    Carine

  • Vistex IP Module - manual price conditions get replaced

    Hi all,
    We are experiencing strange behavior in Vistex Rebate Claim Requests. While processing claims, occasionally all the item level manual price conditions will get changed and replaced with the condition values from a completely different claim! We have been unable to isolate a set of common factors that causes this so we cannot discover the root cause.
    What we find is that after this happens, the Status Manual Price Indicator (field MPROK) changes from A to blank.
    We have submitted an OSS message to Vistex Support but they cannot find what the problem is.
    Does anyone have any ideas?
    Thanks & regards to all

    From my experience, when problems like this occur, there is always a pattern, but sometimes it's just difficult to see. Some issues took months to finally catch and explain, but everything has a reason.
    You said that conditions are getting replaced with the ones on a different claim. What is that claim? What does it have in common with the other claim? Are their numbers close and are they being processed in the same run?
    Also check in all the code that when reading line-level tables (e.g. XVBRP and such) the full key, including document number (VBELN) is being used to pull the data.
    Do you create documents in the background? There might be multiple threads/instances of the same program running at the same time and data that's stored in memoty could get mixed-up between them. True story - once I was debugging a sales order creation and in ABAP debugger under user ID (ERNAM) I saw not my name but another user doing testing at the same time. If you have a background run, it sometimes helps if you sort of make it slower, e.g. by running in batches or in a single process.
    What else is going on in the system at the same time that could influence the claim creation?
    If possible, try setting up some "traps" along the way - add some sort of a log or additional messages to see what exactly is going on at what time. The obvious thing to track would be when Manual Price Indicator is changing the value.

  • Working with comma seprated string in column

    hi,
    RDBMS:Oracle 10gR2
    I have a table with following structure
    Table : t1
    id int
    emails varchar2 (200)
    newEmail varchar2 (150)
    Sample data is as following
    id   emails                                                                                      newEmail
    1    [email protected],[email protected],[email protected]      null
    2
    [email protected],[email protected],[email protected]            null
    I can use following query to extract data from comma separation to row.
    select id,regexp_substr(emails, '[^,]+', 1, rownum) Emails
      from t1
      connect by level <= length(regexp_replace(emails, '[^,]+')) + 1
    Now I have to perform 2 operations
    1- find /count email ids per id, to estimate how many ids has single and how much  have multiple in emails.I have tried following but  it just remain in execution
    with Email as
    select id,regexp_substr(emails, '[^,]+', 1, rownum) Emails
      from t1
      connect by level <= length(regexp_replace(emails, '[^,]+')) + 1
    select id,emails from email
    group by id,emails
    having count (id)>1;
    2- I want to write update newEmail field from  first value in Emails in table t1 and remove updated value from emails field of table. so If emails has 5 email addresses (1,2,3,4,5) in it , after update it will have 4.I a not sure hoow to do that ?
    thanks

    You need to fix your data model.
    Storing multiple values in a single value column is bad database design and breaches the rules of normalization.
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select 1 as id, '[email protected],[email protected],[email protected]' as stupid_string from dual union all
      2             select 2, '[email protected],[email protected],email6.domain.com,[email protected]' from dual)
      3  -- ----------------------------------------------------
      4  -- END OF TEST DATA - USE QUERY BELOW AGAINST OWN TABLE
      5  -- ----------------------------------------------------
      6  select id
      7        ,level as email_id
      8        ,regexp_substr(stupid_string,'[^,]+',1,level) as email
      9  from   t
    10  connect by id = prior id
    11         and level <= regexp_count(stupid_string,',')+1
    12         and prior sys_guid() is not null
    13* order by 1,2
    SQL> /
            ID   EMAIL_ID EMAIL
             1          1 [email protected]
             1          2 [email protected]
             1          3 [email protected]
             2          1 [email protected]
             2          2 [email protected]
             2          3 email6.domain.com
             2          4 [email protected]
    7 rows selected.

  • What is Vistex? What is the link between BI and Vistex?

    Hi all,
    Could any tell me what is VISTEX (rebate, pricing, and chargeback configuration). How it is integrated with BI ?
    Thanking you,
    Sandy

    Hey guys
    Sorry for hijacking and adding one more question to this forum
    but i dont see much activity on vistex product hence just looking at all the Posisbility to get together with colleagues with similer or same kind of issues
    I have one very basic Questions and not getitng the right answer.
    Look at this Business scenario
    1) I have created Billback from Agreement and Invoice and I did accrued this BB like this there are various invocies I accrued thro various agreement and BB combination - I dont see any issues in Config here
    2) now we have got Claim request from the Customer (for the same Partners) now how do I validate what is demanded by customer is same or less or more then the accrual happened thro the BB of Invoice??
    So the issue here is mainly reconciliation of what accrued agains invoice need to be validated here in Claim document so I can take decision.
    so Is this Billback module has got a possibility of reconciling in vistex ???
    Let me know If you or any of your friennd can help me to understand this.
    As you rightly said the document provided by Vistex are really Bad and not much helpful. looking at this i dont see this Product has really helped us much.
    regards,
    Himanshu

  • DS Enhancement issue

    Hi,
       I have enhnaced my LO DS with custom fields. Do I need to write exit to see the fields (not data) in RSA3? I dont want to see the data for the newly added fields, but I would like to see the fields in RSA3 columns?? Please suggest.

    HI,
    for LO we add fields to communication structure as append structure then bring those fields into ur extract structure from comm structure in LBWE , by default for those fields hide and field only check boxes will be checked un select those and activate ur data source then those fields will appear in ur data source.
    steps for data source enhancement.
    You need to follow these steps
    1) goto R/3 SE11 give comm structure name.
    2) u will get ur comm structuter then u can see the append structure at the top left click onit
    3) enter the NEW field starting with "ZXXXXX"
    4) goto LBWE bringe those fields from comm stru to extract struc.
    5) Save it
    6) Go to Cmod and then create a project
    7) the assign components as EXIT_SAPLRSAP_002 (for trasaction data)
    8) Go inside the include and write a code to fill the values to ur NEW field from the table u wnat move
    9) save the code and activate it
    10) Go to RSA3 and test the extractor
    11) check ur NEW field is there or not (if u dont find ur field go to rsa6 adn double click ur DS and then see that there is a HIDE mark i schecked or not)
    12) if everything looks fine from R3 side
    14) then Replicate the data source in BW
    15) u will find the new fild in the Trasfer structure
    16)assign to the IO which u want to mapp.. adn Activate it
    17) Add a new IO in Cube
    18) check all ur Update rules to map to fill the new IO from R3
    19) The Load the data to Cube
    assign points if it helps,
    thanks,
    pavan.

  • Replicat abend

    Hi
    i new with goldengate and i'm sorry if my english is bad.
    i'm trying to do active-active replicat from oracle 10gr2 to oracle 10gr2 using goldengate
    source n target have been running
    when i create table in source, target will recognize that
    but i have a problem
    this is what i do.
    source :
    drop table a
    target :
    select * from table a -> the result is table a not found (extract and replicat still running)
    then i do : select * from table a at source, then my replicat at target abend.
    cannot find table sender.a
    how can i handle this?
    can anyone help me about sqlexec too?
    how i use commit by using sqlexec? i put it on extract or replicat?
    i need to do the extract n replicat commit the dml automatically.
    therefore, i don't need to do commit everytime i do insert at source.
    thanks for helllpppp.. really need this.
    Edited by: 826012 on Jan 6, 2011 2:17 AM
    Edited by: 826012 on Jan 6, 2011 2:18 AM

    Source :
    extract ext_1
    userid oraclegg, password oracle
    rmthost 192.168.111.129, mgrport 7809
    rmttrail /u01/app/oracle/ggs/dirdat/aa
    ddl include mapped objname sender.*
    table sender.*;
    replicat rep_2
    assumetargetdefs
    userid oraclegg, password oracle
    map receiver.*, target sender.*;
    Target :
    extract ext_2
    userid oraclegg, password oracle
    rmthost 192.168.111.182, mgrport 7809
    rmttrail /u01/app/oracle/ggs/dirdat/bb
    ddl include mapped objname receiver.*
    table receiver.*;
    replicat rep_1
    assumetargetdefs
    userid oraclegg, password oracle
    map sender.*, target receiver.*;
    this is the error for rep_2 :
    2011-01-06 15:45:00 ERROR OGG-01296 Error mapping from RECEIVER.A to SENDER.A.
    next case is this :
    before i run my extract and replicat at source and target, i drop table A from schema receiver and sender, then when i start extract and replicat, the replicat (rep_1 and rep_2) are abended.
    error at rep_1 :
    2011-01-07 07:16:19 ERROR OGG-00519 Fatal error executing DDL replication: error [Error code [942], ORA-00942: table or view does not exist, SQL drop table "SENDER"."A" /* GOLDENGATE_DDL_REPLICATION */], no error handler present.
    error at rep_2 :
    2011-01-07 07:25:00 ERROR OGG-00199 Table RECEIVER.A does not exist in target database.
    what error handler to handle this? how can i use ignore?
    thanks for help......

  • Sequence of operations - Direct Delta, Queued Delta, Unserialized V3 Update

    Is the below understanding about each update method correct?
    a) Direct Delta
    - The user selects a process (e.g. creating, updating or deleting a purchase order), fills the fields in the screen, presses SAVE.
    - A module makes inserts, updates and deletes on the Application Tables.
    - This or another module inserts delta relevant information (e.g.: before and after image, the key for deletion, reverse image, etc) about this PO in the Communication Structures.
    - Another module reads the Comm Structures and inserts this information in the Delta Queue.
    - COMMIT the operations in the App Tables and in the Delta Queue.
    - The user receives a success message.
    b) Queued Delta
    - The user selects a process, fills the fields in the screen, presses SAVE.
    - A module makes inserts, updates and deletes on the App Tables.
    - This or another module inserts delta relevant information about this PO in the Comm Structures.
    - Another module reads the Comm Structures and inserts this information in the Extraction Queue.
    - COMMIT the operations in the App Tables and in the Extraction Queue.
    - The user receives a success message.
    - Periodically, a Collective Run inserts this information in the Delta Queue and deletes it from the Extraction Queue.
    c) Unserialized V3 Update
    - The user selects a process, fills the fields in the screen, presses SAVE.
    - A module makes inserts, updates and deletes on the App Tables.
    - COMMIT the operations in the App Tables.
    - The user receives a success message.
    - This or another module inserts delta relevant information about this PO in the Comm Structures.
    - Another module reads the Comm Structures and inserts this information in the Information Structures (also known as Statistical Tables), as part of the LIS data flow u2013 as I understand it has nothing to do with LO data extraction, but it is coded this way.
    - If the inserts into the Information Structures work well, another module reads the Comm Structures and inserts this information in the Update Table.
    - Periodically, a Collective Run inserts this information in the Delta Queue and deletes it from the Update Table.
    Thanks
    César Menezes

    Krishna
    Thanks for your attention, but I've already read:
    - Roberto Negrou2019s blogs,
    - OSS Note 505700,
    - Power point u201CNew Update Methods for Logistics Extraction with PI 2003.1u201D (quoted in the OSS Note, link u201Chttp://service.sap.com/~sapidb/011000358700005772172002u201D),
    - many threads wich provided very useful information.
    I need now more detailed information, step by step operation on each update method, like I posted in the thread.
    Actually I want to cross this information with another thread I posted (), about Figure 6 (Comparison among call function hierarchies involved in different update methods).
    This Figure is showed in Negrou2019s Episode Three and in the power point. I believe that this figure is wrong or at least is missing something.
    Do you know about these two points, or can you please forward to someone who can help us ???
    Thanks
    César Menezes

  • When does capture/pump/replicat process do a checkpoint?

    Dear Guru,
    May someone help me to know when capture/pump/replicat process does a checkpoint? There are 2 things which made me confused.
    - CHECKPOINTSECS parameter: There is no setting in the parameter file, that means it will be set by default (10s)
    - One document says that checkpoints are based on transaction boundaries, that means checkpoint will happened by the end of each transaction
    In my source db, there was a long running transaction lasting for 1 hour and already committed and written to the local trail files. Then the pump process have started to read the trail files to pump to target. My concern is when the capture/pump/replicat process do a checkpoint? 10s or 1 hour?
    One thing is I often see the value of "Time since chkpt" in the output of "Info all" command is more than 10s. If they do a checkpoint every 10s, how could the value of "Time since chkpt" be more than 10s? I think that maybe the term "chkpt" of "Time since chkpt" is of database transaction, not of GoldenGate. However I'm not sure. It made me really confused.
    Here is the output of "Info all" command:
    Program Status Group Lag Time Since Chkpt
    EXTRACT RUNNING PUMP6 00:17:07 00:04:29
    My system profile:
    Source:
    OS: OEL5 64bit
    DB: Oracle 11gR2 (11.2.0.2)
    GG: 11gR1 (11.1)
    Target:
    OS: Solaris 10
    DB: Oracle 11gR2 (11.2.0.3)
    GG: 11gR1 (11.1)
    Thanks for your help in advance.
    Hieu
    Edited by: 972362 on Nov 21, 2012 2:36 AM

    CHECKPOINTSECS defines how often an extract makes its regular checkpoints. An extract will make a checkpoint every 10 seconds if this value is set to 10 irrespective of a transaction that is running for 1 hour. Extract also writes commit checkpoints when a transaction is committed.
    In the example where your Pump is showing time since checkpoint as greater than 10 could have a problem at the network level or issues with the remote trail..
    that is my observation as I had an extract that was being shown as RUNNING but time since last checkpoint was in hours and when i checked the report file, it had an error.

  • Gg dml ddl 单线同步,replicat 进程lag出现长时间等待

    如题,进而导致源端数据库上的更新无法及时同步到目标端
    一下是目标端replicat 进程的状态信息
    GGSCI (db02) 26> info all
    Program Status Group Lag at Chkpt Time Since Chkpt
    MANAGER RUNNING
    EXTRACT STOPPED DPE2 00:00:00 27:43:07
    EXTRACT STOPPED EXT22 00:00:00 27:43:33
    REPLICAT RUNNING REP1 03:12:01 09:18:47
    GGSCI (db02) 27> info rep1
    REPLICAT REP1 Last Started 2012-10-18 12:10 Status RUNNING
    Checkpoint Lag 03:12:01 (updated 09:18:51 ago)
    Log Read Checkpoint File /ggs/dirdat/rt000000
    2012-10-19 03:31:33.930735 RBA 95309202
    GGSCI (db02) 28> info rep1,detail
    REPLICAT REP1 Last Started 2012-10-18 12:10 Status RUNNING
    Checkpoint Lag 03:12:01 (updated 09:19:01 ago)
    Log Read Checkpoint File /ggs/dirdat/rt000000
    2012-10-19 03:31:33.930735 RBA 95309202
    Extract Source Begin End
    /ggs/dirdat/rt000000 * Initialized * 2012-10-19 03:31
    /ggs/dirdat/rt000000 * Initialized * First Record
    Current directory /ggs
    Report file /ggs/dirrpt/REP1.rpt
    Parameter file /ggs/dirprm/rep1.prm
    Checkpoint file /ggs/dirchk/REP1.cpr
    Checkpoint table ggs.checkpoint
    Process file /ggs/dirpcs/REP1.pcr
    Stdout file /ggs/dirout/REP1.out
    Error log /ggs/ggserr.log
    GGSCI (db02) 29> send rep1,status
    Sending STATUS request to REPLICAT REP1 ...
    Current status: Processing data
    Sequence #: 0
    RBA: 99742942
    12489 records in current transaction
    GGSCI (db02) 30> info rep1,showch
    REPLICAT REP1 Last Started 2012-10-18 12:10 Status RUNNING
    Checkpoint Lag 03:12:01 (updated 09:19:25 ago)
    Log Read Checkpoint File /ggs/dirdat/rt000000
    2012-10-19 03:31:33.930735 RBA 95309202
    Current Checkpoint Detail:
    Read Checkpoint #1
    GGS Log Trail
    Startup Checkpoint (starting position in the data source):
    Sequence #: 0
    RBA: 0
    Timestamp: Not Available
    Extract Trail: /ggs/dirdat/rt
    Current Checkpoint (position of last record read in the data source):
    Sequence #: 0
    RBA: 95309202
    Timestamp: 2012-10-19 03:31:33.930735
    Extract Trail: /ggs/dirdat/rt
    CSN state information:
    CRC: F9-3C-30-92
    Latest CSN: 216472052
    Latest TXN: 10.25.1410526
    Latest CSN of finished TXNs: 216472052
    Completed TXNs: 10.25.1410526
    Header:
    Version = 2
    Record Source = A
    Type = 1
    # Input Checkpoints = 1
    # Output Checkpoints = 0
    File Information:
    Block Size = 2048
    Max Blocks = 100
    Record Length = 2048
    Current Offset = 0
    Configuration:
    Data Source = 0
    Transaction Integrity = -1
    Task Type = 0
    Database Checkpoint:
    Checkpoint table = ggs.checkpoint
    Key = 3326595731 (0xc647d293)
    Create Time = 2012-10-18 11:55:42
    Status:
    Start Time = 2012-10-18 12:10:20
    Last Update Time = 2012-10-19 06:43:35
    Stop Status = A
    Last Result = 0
    SQL> select ADDR,STATUS,START_TIME,NAME,USED_UBLK from v$transaction;
    ADDR STATUS START_TIME NAME USED_UBLK
    000000052F0F7800 ACTIVE 10/19/12 06:43:35 319
    SQL> select * from v$lock where addr='000000052F0F7800';
    ADDR KADDR SID TYPE ID1 ID2 LMODE REQUEST CTIME BLOCK
    000000052F0F7800 000000052F0F7838 1079 TX 655388 1286321 6 0 29768 0
    SQL> select sid,sql_id,serial#,username from v$session;
    SQL> select SQL_ID,SQL_TEXT from v$sqltext where sql_id='fwt1pvjtrqa56' order by piece;
    SQL_ID SQL_TEXT
    fwt1pvjtrqa56 UPDATE "TEST"."TEST_HISTORY" SET "COMMUNITY" = :a0,"S
    ============================================================================
    GGSCI (db02) 31> info rep1
    REPLICAT rep1 Last Started 2012-10-18 12:10 Status RUNNING
    Checkpoint Lag 03:12:01 (updated 09:34:03 ago)
    Log Read Checkpoint File /ggs/dirdat/rt000000
    2012-10-19 03:31:33.930735 RBA 95309202
    GGSCI (db02) 32> send rep1,status
    Sending STATUS request to REPLICAT REP1 ...
    Current status: Processing data
    Sequence #: 0
    RBA: 99859919
    12817 records in current transaction
    Logdump 233 >pos 99859919
    Reading forward from RBA 99859919
    Logdump 234 >
    Logdump 234 >
    Logdump 234 >
    Logdump 234 >n
    Hdr-Ind : E (x45) Partition : . (x04)
    UndoFlag : . (x00) BeforeAfter: A (x41)
    RecLength : 336 (x0150) IO Time : 2012/10/19 03:31:34.850.740
    IOType : 115 (x73) OrigNode : 255 (xff)
    TransInd : . (x01) FormatType : R (x52)
    SyskeyLen : 0 (x00) Incomplete : . (x00)
    AuditRBA : 0 AuditPos : 72232920
    Continued : N (x00) RecCount : 1 (x01)
    2012/10/19 03:31:34.850.740 GGSPKUpdate Len 336 RBA 99859919
    Name: TEST.TEST_HISTORY
    After Image: Partition 4 G m
    00a7 0000 0004 ffff 0000 0001 000d 0000 0009 e6b0 | ....................
    91e7 a791 e8b7 af00 0200 0700 0000 03e5 8f8c 0003 | ....................
    0010 0000 000c 3e3d 327c 7c3c 3d31 3030 3030 0004 | ......>=2||<=10000..
    000b 0000 0007 7368 676d 3034 3200 0500 1700 0000 | ......shgm042.......
    13e5 9bbd e7be 8ee5 ae9d e5b1 b1e5 b882 e58c ba31 | ...................1
    0006 0015 0000 3230 3132 2d31 302d 3139 3a30 333a | ......2012-10-19:03:
    3332 3a30 3200 0700 0c00 0000 0832 3031 3231 3031 | 32:02........2012101
    Before Image Len 169 (x000000a9)
    Logdump 235 >n
    Hdr-Ind : E (x45) Partition : . (x04)
    UndoFlag : . (x00) BeforeAfter: B (x42)
    RecLength : 172 (x00ac) IO Time : 2012/10/19 03:31:34.850.740
    IOType : 15 (x0f) OrigNode : 255 (xff)
    TransInd : . (x01) FormatType : R (x52)
    SyskeyLen : 0 (x00) Incomplete : . (x00)
    AuditRBA : 965 AuditPos : 72233360
    Continued : N (x00) RecCount : 1 (x01)
    2012/10/19 03:31:34.850.740 FieldComp Len 172 RBA 99860362
    Name: TEST.TEST_HISTORY
    Before Image: Partition 4 G m
    0000 0004 ffff 0000 0001 0013 0000 000f e5ae 9de9 | ....................
    92a2 e6b9 84e6 b5a6 e8b7 af00 0200 0700 0000 03e5 | ....................
    8f8c 0003 0010 0000 000c 3e3d 327c 7c3c 3d31 3030 | ..........>=2||<=100
    3030 0004 000b 0000 0007 7368 676d 3030 3200 0500 | 00........shgm002...
    1600 0000 12e5 9bbd e7be 8ee5 ae9d e5b1 b1e8 bf91 | ....................
    e983 8a00 0600 1500 0032 3031 322d 3130 2d31 393a | .........2012-10-19:
    3033 3a33 323a 3032 0007 000c 0000 0008 3230 3132 | 03:32:02........2012
    Column 0 (x0000), Len 4 (x0004)

    SQL> select ADDR,STATUS,START_TIME,NAME,USED_UBLK from v$transaction;
    ADDR STATUS START_TIME NAME USED_UBLK
    000000052F0F7800 ACTIVE 10/19/12 06:43:35 319
    由于INFO的LAG是基于checkpoint的,所以如果出现大事务的情况Long Running Transactions (LRTs),事务可能长时间不提交COMMIT。 该事务可能变成一个最老而又最无聊的数据由于一直不COMMIT而无法写出。 这将造成EXTRACT/PUMP/REPLICAT实际处理这个大事务的时间点远落后于该大事务实际commit的时间点。 对于REPLICAT可以使用MAXTRANSOPS 参数来减少LAG。

  • RSCRM_BAPI misreads

    Hi All-
    I am using RSCRM_BAPI to send a CSV file. The extract contains a few text fields which comes from R/3. There are records with text that come across with commas or semicolons. The delimiter in the query extract is a comma. When the records are extracted into CSV format it skews the records.
    Is there a way to extract the text fields like a string? For instance, the current text field comes over as new york, buyer which is read in as 2 columns when it should be read in as 1 column "new york, buyer" .
    P.S. Tab delimiter is not an option we would like to use.
    Thanks you in advance.

    the only way to do this is to use another delimiter like pipe, and extract, then change the pipe to a comma using a batch program before you put the files in the destination folder,
    there are other constraints too like headers etc, which you can solve using a third party tool.

  • Load transaction datas on customize fields

    Hi experts
    A hard question for me need some hits.
    A Transaction datasource has been enhanced and added some customize fields in extraction structure. If there are only some new transaction data on customize fields, how to load these data into delta queue?

    HI,
    Need few details.
    1)Do you mean you had just enhanced the data source by including the new fileds from extract structure to comm structure.
    or
    2) you had enhanced the data source by appending new fileds ? if you had appended new fileds you need to write code in cmod Fm to populate the values to the added fileds.
    next make sure the newly updated fileds are selected for the 1st case and for case 2 you need to make sure the option "field only know in exit" is checked along with the selection option.
    once done...replicate the data and the newly changed fileds will be visible in BW side map the corresponding fileds and load the data.
    use repair full request to load data in to BW along with the historical data.
    Note: If you want to load the historical data then you need to delete the setup tables and load the data. then from next time when the delta is scheduled then u can see the records in the delta queue.
    Regards
    KP
    Edited by: prashanthk on Dec 15, 2010 4:58 PM

  • Z field appended to VBAP enhancement, doesn't shows in LBWE 2LIS_11_VASCL,

    Hi all
       SD team has enhanced the Sales document table VBAP adding some z fields that I need to extract to BW,  I'm able to see the append included in VBAP and MCVBAP, but when I go to LBWE I can't see the field available in the POOL list in the structure maintance,  I read a note Note 576886 - Change to user-defined fields not extracted  that mentions that the best way to do an enchancement  is to add an append to  VBAP and when this table is enhanced the fields can be seen in LBWE.  In fact there are z field from and older development that are avaiable,  I already look for an enchancement to this extractor in cmod and smod, but there is nothing so I asume that there where included when added to the VBAP table.    In resume the field are available in VBAP, MCVBAP and not in LBWE POOL and neither in TMCEXCFS.  Some thread I already read, mention the MCVBAPUSR but the other z fields available in LBWE aren't there. MCVBAPUSR table only has dummy field.
    Hope someone can give some advice and thanks in advance.
    Edited by: Emilio Cruz on Jun 20, 2011 12:07 PM
    Edited by: Emilio Cruz on Jun 20, 2011 12:12 PM

    HI 
    case has been resolved. It is necessary that when in LBWE you click in maintenence, create a transport order. At that moment the table TMCEXCFZ (LO Data Extraction: Field Status Comm. Structures (Customer) ) is modified with the z fields added to the standard table. As I only wanted to validate if the field were available, I was not generating the transport order.
    Regards.

  • Pacman segmentation fault

    Hi, been having issues ever since trying to upgrade my system (haven't updated in months).
    This is a log from the most recent attempt:
    [root@tigerbot ~]# pacman -S --needed --debug base
    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: SyncFirst: pacman
    debug: config: arch: i686
    debug: config: usesyslog
    debug: config: verbosepkglists
    debug: config: SigLevel: Never
    debug: config: finish section 'options'
    debug: config: new section 'core'
    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 'core'
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 85: 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 'community'
    debug: config file /etc/pacman.conf, line 93: 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: 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 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 'core'
    debug: registering sync database 'core'
    debug: database path for tree core set to /var/lib/pacman/sync/core.db
    debug: adding new server URL to database 'core': http://mirrors.kernel.org/archlinux/core/os/i686
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 85: 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: adding new server URL to database 'extra': http://mirrors.kernel.org/archlinux/extra/os/i686
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 93: 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: adding new server URL to database 'community': http://mirrors.kernel.org/archlinux/community/os/i686
    debug: config: finished parsing /etc/pacman.conf
    debug: loading package cache for repository 'local'
    debug: added 691 packages to package cache for db 'local'
    debug: loading package cache for repository 'core'
    debug: opening database archive /var/lib/pacman/sync/core.db
    debug: added 189 packages to package cache for db 'core'
    debug: loading package cache for repository 'extra'
    debug: opening database archive /var/lib/pacman/sync/extra.db
    debug: added 2758 packages to package cache for db 'extra'
    debug: loading package cache for repository 'community'
    debug: opening database archive /var/lib/pacman/sync/community.db
    debug: added 2472 packages to package cache for db 'community'
    debug: loading group cache for repository 'core'
    debug: loading group cache for repository 'extra'
    debug: loading group cache for repository 'community'
    :: There are 56 members in group base:
    :: Repository core
    1) bash 2) bzip2 3) coreutils 4) cronie 5) cryptsetup 6) device-mapper 7) dhcpcd 8) diffutils 9) e2fsprogs 10) file 11) filesystem 12) findutils
    13) gawk 14) gcc-libs 15) gettext 16) glibc 17) grep 18) grub 19) gzip 20) heirloom-mailx 21) inetutils 22) initscripts 23) iputils 24) jfsutils
    25) less 26) licenses 27) linux 28) logrotate 29) lvm2 30) man-db 31) man-pages 32) mdadm 33) nano 34) pacman 35) pciutils 36) pcmciautils
    37) perl 38) ppp 39) procps-ng 40) psmisc 41) reiserfsprogs 42) sed 43) shadow 44) sysfsutils 45) syslog-ng 46) sysvinit 47) tar 48) texinfo
    49) udev 50) usbutils 51) util-linux 52) vi 53) wget 54) which 55) wpa_supplicant 56) xfsprogs
    Enter a selection (default=all):
    debug: adding package 'bash'
    warning: bash-4.2.028-1 is up to date -- skipping
    debug: adding package 'bzip2'
    warning: bzip2-1.0.6-4 is up to date -- skipping
    debug: adding package 'coreutils'
    debug: adding package coreutils-8.17-1 to the transaction add list
    debug: adding package 'cronie'
    debug: adding package cronie-1.4.8-1 to the transaction add list
    debug: adding package 'cryptsetup'
    debug: adding package cryptsetup-1.4.1-3 to the transaction add list
    debug: adding package 'device-mapper'
    debug: adding package device-mapper-2.02.95-4 to the transaction add list
    debug: adding package 'dhcpcd'
    debug: adding package dhcpcd-5.5.6-1 to the transaction add list
    debug: adding package 'diffutils'
    debug: adding package diffutils-3.2-1 to the transaction add list
    debug: adding package 'e2fsprogs'
    debug: adding package e2fsprogs-1.42.2-2 to the transaction add list
    debug: adding package 'file'
    debug: adding package file-5.11-1 to the transaction add list
    debug: adding package 'filesystem'
    warning: filesystem-2012.2-5 is up to date -- skipping
    debug: adding package 'findutils'
    debug: adding package findutils-4.4.2-4 to the transaction add list
    debug: adding package 'gawk'
    debug: adding package gawk-4.0.1-1 to the transaction add list
    debug: adding package 'gcc-libs'
    warning: gcc-libs-4.7.0-6 is up to date -- skipping
    debug: adding package 'gettext'
    debug: adding package gettext-0.18.1.1-4 to the transaction add list
    debug: adding package 'glibc'
    warning: glibc-2.15-10 is up to date -- skipping
    debug: adding package 'grep'
    debug: adding package grep-2.12-1 to the transaction add list
    debug: adding package 'grub'
    debug: adding package grub-0.97-21 to the transaction add list
    debug: adding package 'gzip'
    debug: adding package gzip-1.4-4 to the transaction add list
    debug: adding package 'heirloom-mailx'
    debug: adding package heirloom-mailx-12.5-3 to the transaction add list
    debug: adding package 'inetutils'
    debug: adding package inetutils-1.9.1-2 to the transaction add list
    debug: adding package 'initscripts'
    warning: initscripts-2012.05.1-1 is up to date -- skipping
    debug: adding package 'iputils'
    debug: adding package iputils-20101006-2 to the transaction add list
    debug: adding package 'jfsutils'
    debug: adding package jfsutils-1.1.15-3 to the transaction add list
    debug: adding package 'less'
    debug: adding package less-444-3 to the transaction add list
    debug: adding package 'licenses'
    debug: adding package licenses-2.9-1 to the transaction add list
    debug: adding package 'linux'
    debug: adding package linux-3.3.6-1 to the transaction add list
    debug: adding package 'logrotate'
    debug: adding package logrotate-3.8.1-1 to the transaction add list
    debug: adding package 'lvm2'
    debug: adding package lvm2-2.02.95-4 to the transaction add list
    debug: adding package 'man-db'
    debug: adding package man-db-2.6.1-1 to the transaction add list
    debug: adding package 'man-pages'
    debug: adding package man-pages-3.41-1 to the transaction add list
    debug: adding package 'mdadm'
    debug: adding package mdadm-3.2.4-1 to the transaction add list
    debug: adding package 'nano'
    debug: adding package nano-2.2.6-2 to the transaction add list
    debug: adding package 'pacman'
    warning: pacman-4.0.3-1 is up to date -- skipping
    debug: adding package 'pciutils'
    debug: adding package pciutils-3.1.9-1 to the transaction add list
    debug: adding package 'pcmciautils'
    debug: adding package pcmciautils-018-4 to the transaction add list
    debug: adding package 'perl'
    debug: adding package perl-5.14.2-7 to the transaction add list
    debug: adding package 'ppp'
    debug: adding package ppp-2.4.5-3 to the transaction add list
    debug: adding package 'procps-ng'
    debug: adding package procps-ng-3.3.2-2 to the transaction add list
    debug: adding package 'psmisc'
    debug: adding package psmisc-22.16-1 to the transaction add list
    debug: adding package 'reiserfsprogs'
    debug: adding package reiserfsprogs-3.6.21-4 to the transaction add list
    debug: adding package 'sed'
    debug: adding package sed-4.2.1-4 to the transaction add list
    debug: adding package 'shadow'
    debug: adding package shadow-4.1.5-4 to the transaction add list
    debug: adding package 'sysfsutils'
    warning: sysfsutils-2.1.0-8 is up to date -- skipping
    debug: adding package 'syslog-ng'
    debug: adding package syslog-ng-3.3.5-1 to the transaction add list
    debug: adding package 'sysvinit'
    debug: adding package sysvinit-2.88-3 to the transaction add list
    debug: adding package 'tar'
    debug: adding package tar-1.26-2 to the transaction add list
    debug: adding package 'texinfo'
    debug: adding package texinfo-4.13a-7 to the transaction add list
    debug: adding package 'udev'
    warning: udev-182-2 is up to date -- skipping
    debug: adding package 'usbutils'
    debug: adding package usbutils-005-1 to the transaction add list
    debug: adding package 'util-linux'
    debug: adding package util-linux-2.21.1-2 to the transaction add list
    debug: adding package 'vi'
    debug: adding package vi-1:050325-2 to the transaction add list
    debug: adding package 'wget'
    debug: adding package wget-1.13.4-1 to the transaction add list
    debug: adding package 'which'
    warning: which-2.20-5 is up to date -- skipping
    debug: adding package 'wpa_supplicant'
    warning: wpa_supplicant-0.7.3-5 is up to date -- skipping
    debug: adding package 'xfsprogs'
    warning: xfsprogs-3.1.8-2 is up to date -- skipping
    resolving dependencies...
    debug: resolving target's dependencies
    debug: started resolving dependencies
    debug: checkdeps: package coreutils-8.17-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package cronie-1.4.8-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package cryptsetup-1.4.1-3
    error: could not open file /var/lib/pacman/local/samba-3.6.5-1/desc: No such file or directory
    debug: checkdeps: missing dependency 'device-mapper>=2.02.85-2' for package 'cryptsetup'
    debug: pulling dependency device-mapper (needed by cryptsetup)
    debug: checkdeps: package device-mapper-2.02.95-4
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package dhcpcd-5.5.6-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package diffutils-3.2-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package e2fsprogs-1.42.2-2
    debug: checkdeps: missing dependency 'util-linux' for package 'e2fsprogs'
    debug: pulling dependency util-linux (needed by e2fsprogs)
    debug: checkdeps: package util-linux-2.21.1-2
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package file-5.11-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package findutils-4.4.2-4
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package gawk-4.0.1-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package gettext-0.18.1.1-4
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package grep-2.12-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package grub-0.97-21
    debug: checkdeps: missing dependency 'diffutils' for package 'grub'
    debug: checkdeps: missing dependency 'sed' for package 'grub'
    debug: pulling dependency sed (needed by grub)
    debug: checkdeps: package sed-4.2.1-4
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package gzip-1.4-4
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package heirloom-mailx-12.5-3
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package inetutils-1.9.1-2
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package iputils-20101006-2
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package jfsutils-1.1.15-3
    debug: checkdeps: missing dependency 'util-linux-ng' for package 'jfsutils'
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package less-444-3
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package licenses-2.9-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package linux-3.3.6-1
    debug: checkdeps: missing dependency 'coreutils' for package 'linux'
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package logrotate-3.8.1-1
    debug: checkdeps: missing dependency 'gzip' for package 'logrotate'
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package lvm2-2.02.95-4
    debug: checkdeps: missing dependency 'device-mapper>=2.02.95' for package 'lvm2'
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package man-db-2.6.1-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package man-pages-3.41-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package mdadm-3.2.4-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package nano-2.2.6-2
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package pciutils-3.1.9-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package pcmciautils-018-4
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package perl-5.14.2-7
    debug: checkdeps: missing dependency 'coreutils' for package 'perl'
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package ppp-2.4.5-3
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package procps-ng-3.3.2-2
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package psmisc-22.16-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package reiserfsprogs-3.6.21-4
    debug: checkdeps: missing dependency 'util-linux-ng' for package 'reiserfsprogs'
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package shadow-4.1.5-4
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package syslog-ng-3.3.5-1
    debug: checkdeps: missing dependency 'awk' for package 'syslog-ng'
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package sysvinit-2.88-3
    debug: checkdeps: missing dependency 'shadow' for package 'sysvinit'
    debug: checkdeps: missing dependency 'util-linux' for package 'sysvinit'
    debug: checkdeps: missing dependency 'coreutils' for package 'sysvinit'
    debug: checkdeps: missing dependency 'awk' for package 'sysvinit'
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package tar-1.26-2
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package texinfo-4.13a-7
    debug: checkdeps: missing dependency 'findutils' for package 'texinfo'
    debug: checkdeps: missing dependency 'gzip' for package 'texinfo'
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package usbutils-005-1
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package vi-1:050325-2
    debug: finished resolving dependencies
    debug: started resolving dependencies
    debug: checkdeps: package wget-1.13.4-1
    debug: finished resolving dependencies
    debug: started sorting dependencies
    debug: sorting dependencies finished
    looking for inter-conflicts...
    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: package cronie conflicts with dcron (by cron)
    debug: package procps-ng conflicts with procps (by procps)
    debug: check db vs targets
    debug: package 'cronie' conflicts with 'dcron'
    :: cronie and dcron are in conflict (cron). Remove dcron? [y/N] y
    debug: electing 'dcron' for removal
    debug: package 'procps-ng' conflicts with 'procps'
    :: procps-ng and procps are in conflict. Remove procps? [y/N] y
    debug: electing 'procps' for removal
    debug: adding 'dcron' to remove list
    debug: adding 'procps' to remove list
    debug: checking dependencies
    debug: checkdeps: package coreutils-8.17-1
    debug: checkdeps: package cronie-1.4.8-1
    debug: checkdeps: package device-mapper-2.02.95-4
    debug: checkdeps: package cryptsetup-1.4.1-3
    debug: checkdeps: package dhcpcd-5.5.6-1
    debug: checkdeps: package diffutils-3.2-1
    debug: checkdeps: package util-linux-2.21.1-2
    debug: checkdeps: package e2fsprogs-1.42.2-2
    debug: checkdeps: package file-5.11-1
    debug: checkdeps: package findutils-4.4.2-4
    debug: checkdeps: package gawk-4.0.1-1
    debug: checkdeps: package gettext-0.18.1.1-4
    debug: checkdeps: package grep-2.12-1
    debug: checkdeps: package sed-4.2.1-4
    debug: checkdeps: package grub-0.97-21
    debug: checkdeps: package gzip-1.4-4
    debug: checkdeps: package heirloom-mailx-12.5-3
    debug: checkdeps: package inetutils-1.9.1-2
    debug: checkdeps: package iputils-20101006-2
    debug: checkdeps: package jfsutils-1.1.15-3
    debug: checkdeps: package less-444-3
    debug: checkdeps: package licenses-2.9-1
    debug: checkdeps: package linux-3.3.6-1
    debug: checkdeps: package logrotate-3.8.1-1
    debug: checkdeps: package lvm2-2.02.95-4
    debug: checkdeps: package man-db-2.6.1-1
    debug: checkdeps: package man-pages-3.41-1
    debug: checkdeps: package mdadm-3.2.4-1
    debug: checkdeps: package nano-2.2.6-2
    debug: checkdeps: package pciutils-3.1.9-1
    debug: checkdeps: package pcmciautils-018-4
    debug: checkdeps: package perl-5.14.2-7
    debug: checkdeps: package ppp-2.4.5-3
    debug: checkdeps: package procps-ng-3.3.2-2
    debug: checkdeps: package psmisc-22.16-1
    debug: checkdeps: package reiserfsprogs-3.6.21-4
    debug: checkdeps: package shadow-4.1.5-4
    debug: checkdeps: package syslog-ng-3.3.5-1
    debug: checkdeps: package sysvinit-2.88-3
    debug: checkdeps: package tar-1.26-2
    debug: checkdeps: package texinfo-4.13a-7
    debug: checkdeps: package usbutils-005-1
    debug: checkdeps: package vi-1:050325-2
    debug: checkdeps: package wget-1.13.4-1
    debug: found cached pkg: /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg coreutils
    debug: found cached pkg: /var/cache/pacman/pkg/cronie-1.4.8-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg cronie
    debug: found cached pkg: /var/cache/pacman/pkg/device-mapper-2.02.95-4-i686.pkg.tar.xz
    debug: setting download size 0 for pkg device-mapper
    debug: found cached pkg: /var/cache/pacman/pkg/cryptsetup-1.4.1-3-i686.pkg.tar.xz
    debug: setting download size 0 for pkg cryptsetup
    debug: found cached pkg: /var/cache/pacman/pkg/dhcpcd-5.5.6-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg dhcpcd
    debug: found cached pkg: /var/cache/pacman/pkg/diffutils-3.2-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg diffutils
    debug: found cached pkg: /var/cache/pacman/pkg/util-linux-2.21.1-2-i686.pkg.tar.xz
    debug: setting download size 0 for pkg util-linux
    debug: found cached pkg: /var/cache/pacman/pkg/e2fsprogs-1.42.2-2-i686.pkg.tar.xz
    debug: setting download size 0 for pkg e2fsprogs
    debug: found cached pkg: /var/cache/pacman/pkg/file-5.11-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg file
    debug: found cached pkg: /var/cache/pacman/pkg/findutils-4.4.2-4-i686.pkg.tar.xz
    debug: setting download size 0 for pkg findutils
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.0.1-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg gawk
    debug: found cached pkg: /var/cache/pacman/pkg/gettext-0.18.1.1-4-i686.pkg.tar.xz
    debug: setting download size 0 for pkg gettext
    debug: found cached pkg: /var/cache/pacman/pkg/grep-2.12-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg grep
    debug: found cached pkg: /var/cache/pacman/pkg/sed-4.2.1-4-i686.pkg.tar.xz
    debug: setting download size 0 for pkg sed
    debug: found cached pkg: /var/cache/pacman/pkg/grub-0.97-21-i686.pkg.tar.xz
    debug: setting download size 0 for pkg grub
    debug: found cached pkg: /var/cache/pacman/pkg/gzip-1.4-4-i686.pkg.tar.xz
    debug: setting download size 0 for pkg gzip
    debug: found cached pkg: /var/cache/pacman/pkg/heirloom-mailx-12.5-3-i686.pkg.tar.xz
    debug: setting download size 0 for pkg heirloom-mailx
    debug: found cached pkg: /var/cache/pacman/pkg/inetutils-1.9.1-2-i686.pkg.tar.xz
    debug: setting download size 0 for pkg inetutils
    debug: found cached pkg: /var/cache/pacman/pkg/iputils-20101006-2-i686.pkg.tar.xz
    debug: setting download size 0 for pkg iputils
    debug: found cached pkg: /var/cache/pacman/pkg/jfsutils-1.1.15-3-i686.pkg.tar.xz
    debug: setting download size 0 for pkg jfsutils
    debug: found cached pkg: /var/cache/pacman/pkg/less-444-3-i686.pkg.tar.xz
    debug: setting download size 0 for pkg less
    debug: found cached pkg: /var/cache/pacman/pkg/licenses-2.9-1-any.pkg.tar.xz
    debug: setting download size 0 for pkg licenses
    debug: found cached pkg: /var/cache/pacman/pkg/linux-3.3.6-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg linux
    debug: found cached pkg: /var/cache/pacman/pkg/logrotate-3.8.1-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg logrotate
    debug: found cached pkg: /var/cache/pacman/pkg/lvm2-2.02.95-4-i686.pkg.tar.xz
    debug: setting download size 0 for pkg lvm2
    debug: found cached pkg: /var/cache/pacman/pkg/man-db-2.6.1-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg man-db
    debug: found cached pkg: /var/cache/pacman/pkg/man-pages-3.41-1-any.pkg.tar.xz
    debug: setting download size 0 for pkg man-pages
    debug: found cached pkg: /var/cache/pacman/pkg/mdadm-3.2.4-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg mdadm
    debug: found cached pkg: /var/cache/pacman/pkg/nano-2.2.6-2-i686.pkg.tar.xz
    debug: setting download size 0 for pkg nano
    debug: found cached pkg: /var/cache/pacman/pkg/pciutils-3.1.9-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg pciutils
    debug: found cached pkg: /var/cache/pacman/pkg/pcmciautils-018-4-i686.pkg.tar.xz
    debug: setting download size 0 for pkg pcmciautils
    debug: found cached pkg: /var/cache/pacman/pkg/perl-5.14.2-7-i686.pkg.tar.xz
    debug: setting download size 0 for pkg perl
    debug: found cached pkg: /var/cache/pacman/pkg/ppp-2.4.5-3-i686.pkg.tar.xz
    debug: setting download size 0 for pkg ppp
    debug: found cached pkg: /var/cache/pacman/pkg/procps-ng-3.3.2-2-i686.pkg.tar.xz
    debug: setting download size 0 for pkg procps-ng
    debug: found cached pkg: /var/cache/pacman/pkg/psmisc-22.16-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg psmisc
    debug: found cached pkg: /var/cache/pacman/pkg/reiserfsprogs-3.6.21-4-i686.pkg.tar.xz
    debug: setting download size 0 for pkg reiserfsprogs
    debug: found cached pkg: /var/cache/pacman/pkg/shadow-4.1.5-4-i686.pkg.tar.xz
    debug: setting download size 0 for pkg shadow
    debug: found cached pkg: /var/cache/pacman/pkg/syslog-ng-3.3.5-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg syslog-ng
    debug: found cached pkg: /var/cache/pacman/pkg/sysvinit-2.88-3-i686.pkg.tar.xz
    debug: setting download size 0 for pkg sysvinit
    debug: found cached pkg: /var/cache/pacman/pkg/tar-1.26-2-i686.pkg.tar.xz
    debug: setting download size 0 for pkg tar
    debug: found cached pkg: /var/cache/pacman/pkg/texinfo-4.13a-7-i686.pkg.tar.xz
    debug: setting download size 0 for pkg texinfo
    debug: found cached pkg: /var/cache/pacman/pkg/usbutils-005-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg usbutils
    debug: found cached pkg: /var/cache/pacman/pkg/vi-1:050325-2-i686.pkg.tar.xz
    debug: setting download size 0 for pkg vi
    debug: found cached pkg: /var/cache/pacman/pkg/wget-1.13.4-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg wget
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    Targets (46):
    Name Old Version New Version Net Change Download Size
    dcron 4.5-2 -0.16 MiB
    procps 3.2.8-4 -0.59 MiB
    coreutils 8.12-3 8.17-1 0.39 MiB
    cronie 1.4.8-1 0.17 MiB
    cryptsetup 1.3.1-2 1.4.1-3 0.07 MiB
    device-mapper 2.02.87-1 2.02.95-4 0.09 MiB
    dhcpcd 5.2.12-1 5.5.6-1 0.02 MiB
    diffutils 3.0-2 3.2-1 -0.16 MiB
    e2fsprogs 1.41.14-1 1.42.2-2 0.82 MiB
    file 5.08-1 5.11-1 0.07 MiB
    findutils 4.4.2-3 4.4.2-4 0.04 MiB
    gawk 4.0.0-1 4.0.1-1 0.04 MiB
    gettext 0.18.1.1-3 0.18.1.1-4 -7.58 MiB
    grep 2.9-1 2.12-1 0.05 MiB
    grub 0.97-20 0.97-21 0.00 MiB
    gzip 1.4-2 1.4-4 0.01 MiB
    heirloom-mailx 12.5-2 12.5-3 0.01 MiB
    inetutils 1.9.1-2 1.02 MiB
    iputils 20101006-1 20101006-2 0.04 MiB
    jfsutils 1.1.15-2 1.1.15-3 0.01 MiB
    less 444-1 444-3 0.00 MiB
    licenses 2.8-1 2.9-1 0.01 MiB
    linux 3.0.2-1 3.3.6-1 2.37 MiB
    logrotate 3.8.0-1 3.8.1-1 0.00 MiB
    lvm2 2.02.87-1 2.02.95-4 0.21 MiB
    man-db 2.6.0.2-2 2.6.1-1 -0.03 MiB
    man-pages 3.32-1 3.41-1 0.24 MiB
    mdadm 3.2.2-3 3.2.4-1 0.23 MiB
    nano 2.2.6-1 2.2.6-2 0.02 MiB
    pciutils 3.1.7-4 3.1.9-1 0.06 MiB
    pcmciautils 018-1 018-4 0.02 MiB
    perl 5.14.1-3 5.14.2-7 4.90 MiB
    ppp 2.4.5-2 2.4.5-3 0.05 MiB
    procps-ng 3.3.2-2 0.85 MiB
    psmisc 22.14-1 22.16-1 0.04 MiB
    reiserfsprogs 3.6.21-3 3.6.21-4 0.11 MiB
    sed 4.2.1-3 4.2.1-4 0.01 MiB
    shadow 4.1.4.3-2 4.1.5-4 1.30 MiB
    syslog-ng 3.2.4-3 3.3.5-1 0.64 MiB
    sysvinit 2.88-2 2.88-3 -0.01 MiB
    tar 1.26-1 1.26-2 0.04 MiB
    texinfo 4.13a-5 4.13a-7 0.06 MiB
    usbutils 003-1 005-1 -0.03 MiB
    util-linux 2.19.1-3 2.21.1-2 -0.07 MiB
    vi 1:050325-2 0.32 MiB
    wget 1.13-1 1.13.4-1 0.00 MiB
    Total Installed Size: 198.28 MiB
    Net Upgrade Size: 5.68 MiB
    Proceed with installation? [Y/n]
    debug: using cachedir: /var/cache/pacman/pkg/
    debug: using cachedir: /var/cache/pacman/pkg/
    checking package integrity...
    debug: found cached pkg: /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    debug: sha256sum: 33fb7729c4829d0e35f7565c4e3010fcb8a34422623f634b0da94127d2496152
    debug: checking sha256sum for /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/cronie-1.4.8-1-i686.pkg.tar.xz
    debug: sha256sum: 1f9dc0610e1706c1073c3650ff0fba18f327fb66a82c27b44e8458f48ff94ffd
    debug: checking sha256sum for /var/cache/pacman/pkg/cronie-1.4.8-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/device-mapper-2.02.95-4-i686.pkg.tar.xz
    debug: sha256sum: dc60aac005eaea81976f77117f14775cee6345e06f5ad6fac3054014c431313e
    debug: checking sha256sum for /var/cache/pacman/pkg/device-mapper-2.02.95-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/cryptsetup-1.4.1-3-i686.pkg.tar.xz
    debug: sha256sum: 69848266a6638247b86ab2f12985bc802f8cb8bf194a9922e718924c2a069d91
    debug: checking sha256sum for /var/cache/pacman/pkg/cryptsetup-1.4.1-3-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/dhcpcd-5.5.6-1-i686.pkg.tar.xz
    debug: sha256sum: 509e697b3d51062d70966a2f4dbc85d100be6cc6975f719fb3c692dd3ce9a550
    debug: checking sha256sum for /var/cache/pacman/pkg/dhcpcd-5.5.6-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/diffutils-3.2-1-i686.pkg.tar.xz
    debug: sha256sum: d919a527066c5ae9b3918d1604c2d324ec92d4a21364a62ad3c3f9f5c5da64a5
    debug: checking sha256sum for /var/cache/pacman/pkg/diffutils-3.2-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/util-linux-2.21.1-2-i686.pkg.tar.xz
    debug: sha256sum: 1f5da5d07deaa884328646eeb0cf4ea55a457f6aa118bb9fd5d45e49b12f9c30
    debug: checking sha256sum for /var/cache/pacman/pkg/util-linux-2.21.1-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/e2fsprogs-1.42.2-2-i686.pkg.tar.xz
    debug: sha256sum: 9cf53383079ea40adcca43357b28bd978e19105d7d86446dd5fef12df183f798
    debug: checking sha256sum for /var/cache/pacman/pkg/e2fsprogs-1.42.2-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/file-5.11-1-i686.pkg.tar.xz
    debug: sha256sum: f875b3073299028f8aa97c6a4c01d9424feee84f9c3a8f536b27168db07cc8fa
    debug: checking sha256sum for /var/cache/pacman/pkg/file-5.11-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/findutils-4.4.2-4-i686.pkg.tar.xz
    debug: sha256sum: a718752afc87a5193e313fb43ed809b41a15023f2d7ca88849c349e640c2fc22
    debug: checking sha256sum for /var/cache/pacman/pkg/findutils-4.4.2-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.0.1-1-i686.pkg.tar.xz
    debug: sha256sum: 86b2ac3fd16b69d28ff5ea57683b3d9e3587e7caf0ee193b275804a9c0036287
    debug: checking sha256sum for /var/cache/pacman/pkg/gawk-4.0.1-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/gettext-0.18.1.1-4-i686.pkg.tar.xz
    debug: sha256sum: 0c41710423d79a0713bfd031dba104ef164ea21d28c8c152347a0fde201b5ec9
    debug: checking sha256sum for /var/cache/pacman/pkg/gettext-0.18.1.1-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/grep-2.12-1-i686.pkg.tar.xz
    debug: sha256sum: d33c075689e052a8e0688a3e3814eabdeb215e23feb74bf0c9cd63b03e0005a6
    debug: checking sha256sum for /var/cache/pacman/pkg/grep-2.12-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/sed-4.2.1-4-i686.pkg.tar.xz
    debug: sha256sum: 4ac7da0f9bba8521a9e0a6f5b15e789e7fab640a58a0e01869ec4043bad6a452
    debug: checking sha256sum for /var/cache/pacman/pkg/sed-4.2.1-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/grub-0.97-21-i686.pkg.tar.xz
    debug: sha256sum: 91bcc1c838158e6b853c7737be92f7c9aae4c004546eabe703bed50e64f2bdbe
    debug: checking sha256sum for /var/cache/pacman/pkg/grub-0.97-21-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/gzip-1.4-4-i686.pkg.tar.xz
    debug: sha256sum: 208eda38f58e21986a96a13311dbf175797f0fe3a363830a506bb8454113bd28
    debug: checking sha256sum for /var/cache/pacman/pkg/gzip-1.4-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/heirloom-mailx-12.5-3-i686.pkg.tar.xz
    debug: sha256sum: 8bbaf454dd771ce035156cb33b2b5cf9b76b89855ee8867f42187c5b87f9e405
    debug: checking sha256sum for /var/cache/pacman/pkg/heirloom-mailx-12.5-3-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/inetutils-1.9.1-2-i686.pkg.tar.xz
    debug: sha256sum: 87e4fcccaf924a0ac60f4e8942dc6fa8966daa91d5d31b0c3af04c6454d92c47
    debug: checking sha256sum for /var/cache/pacman/pkg/inetutils-1.9.1-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/iputils-20101006-2-i686.pkg.tar.xz
    debug: sha256sum: 1df9f236986ef36966f406d563739ca06e1dd7186f8793b1adcaabc22f87bc37
    debug: checking sha256sum for /var/cache/pacman/pkg/iputils-20101006-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/jfsutils-1.1.15-3-i686.pkg.tar.xz
    debug: sha256sum: 9e7868ad68859f03d3c6c831ae3ceb9eb94e08dbef823a76f548b7a7895ee6b0
    debug: checking sha256sum for /var/cache/pacman/pkg/jfsutils-1.1.15-3-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/less-444-3-i686.pkg.tar.xz
    debug: sha256sum: 1adf91d76ceec8452706041bb486a54cc900af557046069727b5c14d22eafdb5
    debug: checking sha256sum for /var/cache/pacman/pkg/less-444-3-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/licenses-2.9-1-any.pkg.tar.xz
    debug: sha256sum: 33042cca37f2c2086548bede907e62b84ae0ad76c49196759d352687249c94a5
    debug: checking sha256sum for /var/cache/pacman/pkg/licenses-2.9-1-any.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/linux-3.3.6-1-i686.pkg.tar.xz
    debug: sha256sum: dcde23ed8de99bb2e3748448c691e3f2327fee7707f3c4b30a4608873d1f90d2
    debug: checking sha256sum for /var/cache/pacman/pkg/linux-3.3.6-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/logrotate-3.8.1-1-i686.pkg.tar.xz
    debug: sha256sum: 779b74b175291aec0bc1b697678b5dbe60365d4d13f09d6e0b54f64ee7209252
    debug: checking sha256sum for /var/cache/pacman/pkg/logrotate-3.8.1-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/lvm2-2.02.95-4-i686.pkg.tar.xz
    debug: sha256sum: 910a2915bc924ec1e65f8a3b8e4ac79d257124e99616c4ee3c17d7db1e6860af
    debug: checking sha256sum for /var/cache/pacman/pkg/lvm2-2.02.95-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/man-db-2.6.1-1-i686.pkg.tar.xz
    debug: sha256sum: 6ce2ec3d115217ecfcbc33a4a44a9c5f93fcf98967ca5d84870a5b74f1226680
    debug: checking sha256sum for /var/cache/pacman/pkg/man-db-2.6.1-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/man-pages-3.41-1-any.pkg.tar.xz
    debug: sha256sum: 0d3b6900646ba6ec8e8f11accfa877da262bbe4f1343805c42148cab659e8b46
    debug: checking sha256sum for /var/cache/pacman/pkg/man-pages-3.41-1-any.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/mdadm-3.2.4-1-i686.pkg.tar.xz
    debug: sha256sum: da6fd53733b8004fe7b937d090f9c08f32f7ff62d3d2266be5ea8c5d6e05ae38
    debug: checking sha256sum for /var/cache/pacman/pkg/mdadm-3.2.4-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/nano-2.2.6-2-i686.pkg.tar.xz
    debug: sha256sum: 649c491a7729ca35760a0c92808de67037770b049785aa456f0b070f9f59ca0a
    debug: checking sha256sum for /var/cache/pacman/pkg/nano-2.2.6-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/pciutils-3.1.9-1-i686.pkg.tar.xz
    debug: sha256sum: 50d02c5c65f1d5cb1728b0745b84a4c0d3fe4991599781d8281633ccf7f375a7
    debug: checking sha256sum for /var/cache/pacman/pkg/pciutils-3.1.9-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/pcmciautils-018-4-i686.pkg.tar.xz
    debug: sha256sum: eadcbbcd76450b1aa6459373d888a8f2f191d917901a42e433e09af0aa451aba
    debug: checking sha256sum for /var/cache/pacman/pkg/pcmciautils-018-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/perl-5.14.2-7-i686.pkg.tar.xz
    debug: sha256sum: b467f207f04b7a097e34b76ad5abeba74c7b4916df5b7e9a60524e99743e1cde
    debug: checking sha256sum for /var/cache/pacman/pkg/perl-5.14.2-7-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/ppp-2.4.5-3-i686.pkg.tar.xz
    debug: sha256sum: 5d1733cd098a3370610f245e6f175c544400ac39f76711ee9a1dda64c4ff8731
    debug: checking sha256sum for /var/cache/pacman/pkg/ppp-2.4.5-3-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/procps-ng-3.3.2-2-i686.pkg.tar.xz
    debug: sha256sum: a75f5c2a59a9fad76d9aa03c73636487ae01dd1d48db81a1d5fe594de4030f71
    debug: checking sha256sum for /var/cache/pacman/pkg/procps-ng-3.3.2-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/psmisc-22.16-1-i686.pkg.tar.xz
    debug: sha256sum: 9d8c0d6fa3938b3524081df45bb9cfe1355510108937e1705780b5a47eca34fd
    debug: checking sha256sum for /var/cache/pacman/pkg/psmisc-22.16-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/reiserfsprogs-3.6.21-4-i686.pkg.tar.xz
    debug: sha256sum: 0e676ff63d7eb27c067d8f9b16cc206c71a5c0e489986c78d067edcd2dabfb3a
    debug: checking sha256sum for /var/cache/pacman/pkg/reiserfsprogs-3.6.21-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/shadow-4.1.5-4-i686.pkg.tar.xz
    debug: sha256sum: ae58a0003383b7600f562da38935fb03defcd0c03356d9aaa8122b10cc8ef035
    debug: checking sha256sum for /var/cache/pacman/pkg/shadow-4.1.5-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/syslog-ng-3.3.5-1-i686.pkg.tar.xz
    debug: sha256sum: b03a395642c8901d82041cc72026682dd8fea7927c2716c1a48e758cc6b970b5
    debug: checking sha256sum for /var/cache/pacman/pkg/syslog-ng-3.3.5-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/sysvinit-2.88-3-i686.pkg.tar.xz
    debug: sha256sum: f42451d1dac2f930c8265c0cb0c3c2da5536b668ef6a8e17cda88737242b069e
    debug: checking sha256sum for /var/cache/pacman/pkg/sysvinit-2.88-3-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/tar-1.26-2-i686.pkg.tar.xz
    debug: sha256sum: 571ee55751422281b648139bf5dea54b8c221df0cb469cc5357bdd4368d8bdbb
    debug: checking sha256sum for /var/cache/pacman/pkg/tar-1.26-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/texinfo-4.13a-7-i686.pkg.tar.xz
    debug: sha256sum: c720ad6590beff4df5094eaf574c1b24285d95c888da31c9f13e0b118fea3b3a
    debug: checking sha256sum for /var/cache/pacman/pkg/texinfo-4.13a-7-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/usbutils-005-1-i686.pkg.tar.xz
    debug: sha256sum: 6e46039121469439dddb5569a516658c063883e3167ff6a67d6826deaed18771
    debug: checking sha256sum for /var/cache/pacman/pkg/usbutils-005-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/vi-1:050325-2-i686.pkg.tar.xz
    debug: sha256sum: db4ca2974032d7455f55eb22198ebbe4a6f53118b90d08a5f8bac6d5d24d0e99
    debug: checking sha256sum for /var/cache/pacman/pkg/vi-1:050325-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/wget-1.13.4-1-i686.pkg.tar.xz
    debug: sha256sum: 291301216a7f0324f29baff93466b20a253ad5abf212485a1c0d60c0a5e183fd
    debug: checking sha256sum for /var/cache/pacman/pkg/wget-1.13.4-1-i686.pkg.tar.xz
    loading package files...
    debug: found cached pkg: /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target coreutils
    debug: starting package load for /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/cronie-1.4.8-1-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target cronie
    debug: starting package load for /var/cache/pacman/pkg/cronie-1.4.8-1-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/cronie-1.4.8-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/device-mapper-2.02.95-4-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target device-mapper
    debug: starting package load for /var/cache/pacman/pkg/device-mapper-2.02.95-4-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/device-mapper-2.02.95-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/cryptsetup-1.4.1-3-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target cryptsetup
    debug: starting package load for /var/cache/pacman/pkg/cryptsetup-1.4.1-3-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/cryptsetup-1.4.1-3-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/dhcpcd-5.5.6-1-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target dhcpcd
    debug: starting package load for /var/cache/pacman/pkg/dhcpcd-5.5.6-1-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/dhcpcd-5.5.6-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/diffutils-3.2-1-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target diffutils
    debug: starting package load for /var/cache/pacman/pkg/diffutils-3.2-1-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/diffutils-3.2-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/util-linux-2.21.1-2-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target util-linux
    debug: starting package load for /var/cache/pacman/pkg/util-linux-2.21.1-2-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/util-linux-2.21.1-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/e2fsprogs-1.42.2-2-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target e2fsprogs
    debug: starting package load for /var/cache/pacman/pkg/e2fsprogs-1.42.2-2-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/e2fsprogs-1.42.2-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/file-5.11-1-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target file
    debug: starting package load for /var/cache/pacman/pkg/file-5.11-1-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/file-5.11-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/findutils-4.4.2-4-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target findutils
    debug: starting package load for /var/cache/pacman/pkg/findutils-4.4.2-4-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/findutils-4.4.2-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.0.1-1-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target gawk
    debug: starting package load for /var/cache/pacman/pkg/gawk-4.0.1-1-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/gawk-4.0.1-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/gettext-0.18.1.1-4-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target gettext
    debug: starting package load for /var/cache/pacman/pkg/gettext-0.18.1.1-4-i686.pkg.tar.xz
    error: error while reading package /var/cache/pacman/pkg/gettext-0.18.1.1-4-i686.pkg.tar.xz: Truncated input file (needed 2048 bytes, only 0 available)
    debug: found cached pkg: /var/cache/pacman/pkg/grep-2.12-1-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target grep
    debug: starting package load for /var/cache/pacman/pkg/grep-2.12-1-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/grep-2.12-1-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/sed-4.2.1-4-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target sed
    debug: starting package load for /var/cache/pacman/pkg/sed-4.2.1-4-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/sed-4.2.1-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/grub-0.97-21-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target grub
    debug: starting package load for /var/cache/pacman/pkg/grub-0.97-21-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/grub-0.97-21-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/gzip-1.4-4-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target gzip
    debug: starting package load for /var/cache/pacman/pkg/gzip-1.4-4-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/gzip-1.4-4-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/heirloom-mailx-12.5-3-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target heirloom-mailx
    debug: starting package load for /var/cache/pacman/pkg/heirloom-mailx-12.5-3-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/heirloom-mailx-12.5-3-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/inetutils-1.9.1-2-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target inetutils
    debug: starting package load for /var/cache/pacman/pkg/inetutils-1.9.1-2-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/inetutils-1.9.1-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/iputils-20101006-2-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target iputils
    debug: starting package load for /var/cache/pacman/pkg/iputils-20101006-2-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/iputils-20101006-2-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/jfsutils-1.1.15-3-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target jfsutils
    debug: starting package load for /var/cache/pacman/pkg/jfsutils-1.1.15-3-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/jfsutils-1.1.15-3-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/less-444-3-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target less
    debug: starting package load for /var/cache/pacman/pkg/less-444-3-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/less-444-3-i686.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/licenses-2.9-1-any.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target licenses
    debug: starting package load for /var/cache/pacman/pkg/licenses-2.9-1-any.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/licenses-2.9-1-any.pkg.tar.xz
    debug: found cached pkg: /var/cache/pacman/pkg/linux-3.3.6-1-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target linux
    debug: starting package load for /var/cache/pacman/pkg/linux-3.3.6-1-i686.pkg.tar.xz
    error: segmentation fault
    Please submit a full bug report with --debug if appropriate.
    [root@tigerbot ~]#
    Pacman version:
    [root@tigerbot ~]# pacman --version
    .--. Pacman v4.0.3 - libalpm v7.0.3
    / _.-' .-. .-. .-. Copyright (C) 2006-2012 Pacman Development Team
    \ '-. '-' '-' '-' Copyright (C) 2002-2006 Judd Vinet
    This program may be freely redistributed under
    the terms of the GNU General Public License.
    [root@tigerbot ~]#
    pacman.conf:
    [root@tigerbot ~]# egrep -v ^# /etc/pacman.conf
    [options]
    HoldPkg = pacman glibc
    SyncFirst = pacman
    Architecture = auto
    UseSyslog
    CheckSpace
    VerbosePkgLists
    SigLevel = Never
    [core]
    Include = /etc/pacman.d/mirrorlist
    [extra]
    Include = /etc/pacman.d/mirrorlist
    [community]
    Include = /etc/pacman.d/mirrorlist
    [root@tigerbot ~]#
    /etc/pacman.d/mirrorlist:
    [root@tigerbot ~]# cat /etc/pacman.d/mirrorlist
    Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch
    [root@tigerbot ~]#
    system info:
    [root@tigerbot ~]# uname -a
    Linux tigerbot 3.0-ARCH #1 SMP PREEMPT Tue Aug 16 07:25:56 UTC 2011 i686 Intel(R) Core(TM) CPU 230 @ 1.60GHz GenuineIntel GNU/Linux
    [root@tigerbot ~]#
    Depending on what I try to install, I either get a segmentation fault, it complains about an LZMA error, or complains about a truncated input file. When the stars are aligned I get an Illegal instruction. When the blue moon rises, a kernel oops. Unfortunately I don't have a log for the oops. For the LZMA or truncated inputs, the files themselves are fine (xz -t $filename returns no error). In fact I can untar the files manually, but that doesn't fix the underlying issue.
    I've searched the forums for something similar and have tried clearing the cache and resyncing, but same problem over and over. I can install some packages individually, but some packages constantly fail (perl, kernel, gettext).
    Anyone have any hints?

    @Leonid:
    [root@tigerbot shez]# ldd /usr/lib/libalpm.so.7
    linux-gate.so.1 => (0xb773f000)
    libcurl.so.4 => /usr/lib/libcurl.so.4 (0xb7696000)
    libgpgme.so.11 => /usr/lib/libgpgme.so.11 (0xb7662000)
    libarchive.so.12 => /usr/lib/libarchive.so.12 (0xb75c4000)
    libcrypto.so.1.0.0 => /usr/lib/libcrypto.so.1.0.0 (0xb744a000)
    libc.so.6 => /lib/libc.so.6 (0xb72a7000)
    libssh2.so.1 => /usr/lib/libssh2.so.1 (0xb7282000)
    librt.so.1 => /lib/librt.so.1 (0xb7279000)
    libssl.so.1.0.0 => /usr/lib/libssl.so.1.0.0 (0xb7228000)
    libz.so.1 => /usr/lib/libz.so.1 (0xb7213000)
    libpthread.so.0 => /lib/libpthread.so.0 (0xb71f8000)
    libassuan.so.0 => /usr/lib/libassuan.so.0 (0xb71e5000)
    libgpg-error.so.0 => /lib/libgpg-error.so.0 (0xb71e1000)
    /lib/ld-linux.so.2 (0xb7740000)
    libacl.so.1 => /lib/libacl.so.1 (0xb71d9000)
    libattr.so.1 => /lib/libattr.so.1 (0xb71d4000)
    libexpat.so.1 => /usr/lib/libexpat.so.1 (0xb71ac000)
    liblzma.so.5 => /usr/lib/liblzma.so.5 (0xb7184000)
    libbz2.so.1.0 => /usr/lib/libbz2.so.1.0 (0xb7174000)
    libdl.so.2 => /lib/libdl.so.2 (0xb716f000)
    [root@tigerbot shez]#
    and:
    [root@tigerbot shez]# pacman -Q xz
    xz 5.0.3-2
    [root@tigerbot shez]# pacman -S xz
    warning: xz-5.0.3-2 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1):
    Name Old Version New Version Net Change Download Size
    xz 5.0.3-2 5.0.3-2 0.00 MiB 0.23 MiB
    Total Download Size: 0.23 MiB
    Total Installed Size: 1.05 MiB
    Net Upgrade Size: 0.00 MiB
    Proceed with installation? [Y/n] n
    [root@tigerbot shez]#
    I'm not sure I understand your second question. I can install some packages individually without pacman complaining. Some will fail. Example:
    [root@tigerbot shez]# pacman -S --debug coreutils
    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: SyncFirst: pacman
    debug: config: arch: i686
    debug: config: usesyslog
    debug: config: verbosepkglists
    debug: config: SigLevel: Never
    debug: config: finish section 'options'
    debug: config: new section 'core'
    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 'core'
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 85: 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 'community'
    debug: config file /etc/pacman.conf, line 93: 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: 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 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 'core'
    debug: registering sync database 'core'
    debug: database path for tree core set to /var/lib/pacman/sync/core.db
    debug: adding new server URL to database 'core': http://mirrors.kernel.org/archlinux/core/os/i686
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 85: 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: adding new server URL to database 'extra': http://mirrors.kernel.org/archlinux/extra/os/i686
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 93: 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: adding new server URL to database 'community': http://mirrors.kernel.org/archlinux/community/os/i686
    debug: config: finished parsing /etc/pacman.conf
    debug: loading package cache for repository 'local'
    debug: added 691 packages to package cache for db 'local'
    debug: loading package cache for repository 'core'
    debug: opening database archive /var/lib/pacman/sync/core.db
    debug: added 189 packages to package cache for db 'core'
    debug: adding package 'coreutils'
    debug: adding package coreutils-8.17-1 to the transaction add list
    resolving dependencies...
    debug: resolving target's dependencies
    debug: started resolving dependencies
    debug: checkdeps: package coreutils-8.17-1
    debug: finished resolving dependencies
    debug: started sorting dependencies
    debug: sorting dependencies finished
    looking for inter-conflicts...
    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 coreutils-8.17-1
    debug: found cached pkg: /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    debug: setting download size 0 for pkg coreutils
    Targets (1):
    Name Old Version New Version Net Change Download Size
    coreutils 8.12-3 8.17-1 0.39 MiB
    Total Installed Size: 13.32 MiB
    Net Upgrade Size: 0.39 MiB
    Proceed with installation? [Y/n]
    debug: using cachedir: /var/cache/pacman/pkg/
    debug: using cachedir: /var/cache/pacman/pkg/
    checking package integrity...
    debug: found cached pkg: /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    debug: sha256sum: 33fb7729c4829d0e35f7565c4e3010fcb8a34422623f634b0da94127d2496152
    debug: checking sha256sum for /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    loading package files...
    debug: found cached pkg: /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target coreutils
    debug: starting package load for /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    checking for file conflicts...
    debug: looking for file conflicts
    debug: searching for file conflicts: coreutils
    debug: searching for filesystem conflicts: coreutils
    checking available disk space...
    debug: checking available disk space
    debug: mountpoint: /var
    debug: mountpoint: /tmp
    debug: mountpoint: /sys
    debug: mountpoint: /run
    debug: mountpoint: /proc
    debug: mountpoint: /home/public/disk7
    debug: mountpoint: /home/public/disk6
    debug: mountpoint: /home/public/disk5
    debug: mountpoint: /home/public/RAID1
    debug: mountpoint: /home
    debug: mountpoint: /dev/shm
    debug: mountpoint: /dev/pts
    debug: mountpoint: /dev
    debug: mountpoint: /
    debug: mountpoint: /
    debug: partition /, needed 48, cushion 5121, free 1887682
    debug: installing packages
    upgrading coreutils...
    debug: upgrading package coreutils-8.17-1
    debug: extracting: .INSTALL
    debug: removing old package first (coreutils-8.12-3)
    debug: adding etc/pam.d/su to the skip_remove array
    debug: removing 414 files
    debug: unlinking /usr/share/man/man1/yes.1.gz
    debug: unlinking /usr/share/man/man1/whoami.1.gz
    debug: unlinking /usr/share/man/man1/who.1.gz
    debug: unlinking /usr/share/man/man1/wc.1.gz
    debug: unlinking /usr/share/man/man1/vdir.1.gz
    debug: unlinking /usr/share/man/man1/users.1.gz
    debug: unlinking /usr/share/man/man1/unlink.1.gz
    debug: unlinking /usr/share/man/man1/uniq.1.gz
    debug: unlinking /usr/share/man/man1/unexpand.1.gz
    debug: unlinking /usr/share/man/man1/uname.1.gz
    debug: unlinking /usr/share/man/man1/tty.1.gz
    debug: unlinking /usr/share/man/man1/tsort.1.gz
    debug: unlinking /usr/share/man/man1/truncate.1.gz
    debug: unlinking /usr/share/man/man1/true.1.gz
    debug: unlinking /usr/share/man/man1/tr.1.gz
    debug: unlinking /usr/share/man/man1/touch.1.gz
    debug: unlinking /usr/share/man/man1/timeout.1.gz
    debug: unlinking /usr/share/man/man1/test.1.gz
    debug: unlinking /usr/share/man/man1/tee.1.gz
    debug: unlinking /usr/share/man/man1/tail.1.gz
    debug: unlinking /usr/share/man/man1/tac.1.gz
    debug: unlinking /usr/share/man/man1/sync.1.gz
    debug: unlinking /usr/share/man/man1/sum.1.gz
    debug: unlinking /usr/share/man/man1/su.1.gz
    debug: unlinking /usr/share/man/man1/stty.1.gz
    debug: unlinking /usr/share/man/man1/stdbuf.1.gz
    debug: unlinking /usr/share/man/man1/stat.1.gz
    debug: unlinking /usr/share/man/man1/split.1.gz
    debug: unlinking /usr/share/man/man1/sort.1.gz
    debug: unlinking /usr/share/man/man1/sleep.1.gz
    debug: unlinking /usr/share/man/man1/shuf.1.gz
    debug: unlinking /usr/share/man/man1/shred.1.gz
    debug: unlinking /usr/share/man/man1/sha512sum.1.gz
    debug: unlinking /usr/share/man/man1/sha384sum.1.gz
    debug: unlinking /usr/share/man/man1/sha256sum.1.gz
    debug: unlinking /usr/share/man/man1/sha224sum.1.gz
    debug: unlinking /usr/share/man/man1/sha1sum.1.gz
    debug: unlinking /usr/share/man/man1/seq.1.gz
    debug: unlinking /usr/share/man/man1/runcon.1.gz
    debug: unlinking /usr/share/man/man1/rmdir.1.gz
    debug: unlinking /usr/share/man/man1/rm.1.gz
    debug: unlinking /usr/share/man/man1/readlink.1.gz
    debug: unlinking /usr/share/man/man1/pwd.1.gz
    debug: unlinking /usr/share/man/man1/ptx.1.gz
    debug: unlinking /usr/share/man/man1/printf.1.gz
    debug: unlinking /usr/share/man/man1/printenv.1.gz
    debug: unlinking /usr/share/man/man1/pr.1.gz
    debug: unlinking /usr/share/man/man1/pinky.1.gz
    debug: unlinking /usr/share/man/man1/pathchk.1.gz
    debug: unlinking /usr/share/man/man1/paste.1.gz
    debug: unlinking /usr/share/man/man1/od.1.gz
    debug: unlinking /usr/share/man/man1/nproc.1.gz
    debug: unlinking /usr/share/man/man1/nohup.1.gz
    debug: unlinking /usr/share/man/man1/nl.1.gz
    debug: unlinking /usr/share/man/man1/nice.1.gz
    debug: unlinking /usr/share/man/man1/mv.1.gz
    debug: unlinking /usr/share/man/man1/mktemp.1.gz
    debug: unlinking /usr/share/man/man1/mknod.1.gz
    debug: unlinking /usr/share/man/man1/mkfifo.1.gz
    debug: unlinking /usr/share/man/man1/mkdir.1.gz
    debug: unlinking /usr/share/man/man1/md5sum.1.gz
    debug: unlinking /usr/share/man/man1/ls.1.gz
    debug: unlinking /usr/share/man/man1/logname.1.gz
    debug: unlinking /usr/share/man/man1/ln.1.gz
    debug: unlinking /usr/share/man/man1/link.1.gz
    debug: unlinking /usr/share/man/man1/join.1.gz
    debug: unlinking /usr/share/man/man1/install.1.gz
    debug: unlinking /usr/share/man/man1/id.1.gz
    debug: unlinking /usr/share/man/man1/hostid.1.gz
    debug: unlinking /usr/share/man/man1/head.1.gz
    debug: unlinking /usr/share/man/man1/fold.1.gz
    debug: unlinking /usr/share/man/man1/fmt.1.gz
    debug: unlinking /usr/share/man/man1/false.1.gz
    debug: unlinking /usr/share/man/man1/factor.1.gz
    debug: unlinking /usr/share/man/man1/expr.1.gz
    debug: unlinking /usr/share/man/man1/expand.1.gz
    debug: unlinking /usr/share/man/man1/env.1.gz
    debug: unlinking /usr/share/man/man1/echo.1.gz
    debug: unlinking /usr/share/man/man1/du.1.gz
    debug: unlinking /usr/share/man/man1/dirname.1.gz
    debug: unlinking /usr/share/man/man1/dircolors.1.gz
    debug: unlinking /usr/share/man/man1/dir.1.gz
    debug: unlinking /usr/share/man/man1/df.1.gz
    debug: unlinking /usr/share/man/man1/dd.1.gz
    debug: unlinking /usr/share/man/man1/date.1.gz
    debug: unlinking /usr/share/man/man1/cut.1.gz
    debug: unlinking /usr/share/man/man1/csplit.1.gz
    debug: unlinking /usr/share/man/man1/cp.1.gz
    debug: unlinking /usr/share/man/man1/comm.1.gz
    debug: unlinking /usr/share/man/man1/cksum.1.gz
    debug: unlinking /usr/share/man/man1/chroot.1.gz
    debug: unlinking /usr/share/man/man1/chown.1.gz
    debug: unlinking /usr/share/man/man1/chmod.1.gz
    debug: unlinking /usr/share/man/man1/chgrp.1.gz
    debug: unlinking /usr/share/man/man1/chcon.1.gz
    debug: unlinking /usr/share/man/man1/cat.1.gz
    debug: unlinking /usr/share/man/man1/basename.1.gz
    debug: unlinking /usr/share/man/man1/base64.1.gz
    debug: keeping directory /usr/share/man/man1/ (contains files)
    debug: keeping directory /usr/share/man/ (contains files)
    debug: unlinking /usr/share/locale/zh_TW/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/zh_TW/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/zh_TW/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/zh_TW/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/zh_TW/ (contains files)
    debug: unlinking /usr/share/locale/zh_CN/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/zh_CN/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/zh_CN/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/zh_CN/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/zh_CN/ (contains files)
    debug: unlinking /usr/share/locale/vi/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/vi/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/vi/LC_MESSAGES/coreutils.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/uk/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/uk/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/uk/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/uk/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/uk/ (contains files)
    debug: unlinking /usr/share/locale/tr/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/tr/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/tr/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/tr/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/tr/ (contains files)
    debug: unlinking /usr/share/locale/sv/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/sv/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/sv/LC_MESSAGES/coreutils.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/sl/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/sl/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/sl/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/sl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/sl/ (contains files)
    debug: unlinking /usr/share/locale/sk/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/sk/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/sk/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/sk/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/sk/ (contains files)
    debug: unlinking /usr/share/locale/ru/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/ru/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/ru/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/ru/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ru/ (contains files)
    debug: unlinking /usr/share/locale/ro/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/ro/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/ro/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/ro/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ro/ (contains files)
    debug: unlinking /usr/share/locale/pt_BR/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/pt_BR/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/pt_BR/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/pt_BR/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/pt_BR/ (contains files)
    debug: unlinking /usr/share/locale/pt/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/pt/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/pt/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/pt/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/pt/ (contains files)
    debug: unlinking /usr/share/locale/pl/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/pl/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/pl/LC_MESSAGES/coreutils.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_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/nl/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/nl/LC_MESSAGES/coreutils.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/nb/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/nb/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/nb/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/nb/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/nb/ (contains files)
    debug: unlinking /usr/share/locale/ms/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/ms/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/ms/LC_MESSAGES/coreutils.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/lt/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/lt/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/lt/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/lt/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/lt/ (contains files)
    debug: unlinking /usr/share/locale/lg/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/lg/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/lg/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/lg/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/lg/ (contains files)
    debug: unlinking /usr/share/locale/ko/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/ko/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/ko/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/ko/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ko/ (contains files)
    debug: unlinking /usr/share/locale/kk/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/kk/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/kk/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/kk/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/kk/ (contains files)
    debug: unlinking /usr/share/locale/ja/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/ja/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/ja/LC_MESSAGES/coreutils.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_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/it/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/it/LC_MESSAGES/coreutils.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/id/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/id/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/id/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/id/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/id/ (contains files)
    debug: unlinking /usr/share/locale/hu/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/hu/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/hu/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/hu/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/hu/ (contains files)
    debug: unlinking /usr/share/locale/gl/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/gl/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/gl/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/gl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/gl/ (contains files)
    debug: unlinking /usr/share/locale/ga/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/ga/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/ga/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/ga/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ga/ (contains files)
    debug: unlinking /usr/share/locale/fr/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/fr/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/fr/LC_MESSAGES/coreutils.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_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/fi/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/fi/LC_MESSAGES/coreutils.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/eu/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/eu/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/eu/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/eu/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/eu/ (contains files)
    debug: unlinking /usr/share/locale/et/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/et/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/et/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/et/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/et/ (contains files)
    debug: unlinking /usr/share/locale/es/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/es/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/es/LC_MESSAGES/coreutils.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/eo/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/eo/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/eo/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/eo/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/eo/ (contains files)
    debug: unlinking /usr/share/locale/el/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/el/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/el/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/el/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/el/ (contains files)
    debug: unlinking /usr/share/locale/de/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/de/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/de/LC_MESSAGES/coreutils.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_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/da/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/da/LC_MESSAGES/coreutils.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/cs/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/cs/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/cs/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/cs/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/cs/ (contains files)
    debug: unlinking /usr/share/locale/ca/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/ca/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/ca/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/ca/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ca/ (contains files)
    debug: unlinking /usr/share/locale/bg/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/bg/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/bg/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/bg/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/bg/ (contains files)
    debug: unlinking /usr/share/locale/be/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/be/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/be/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/be/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/be/ (contains files)
    debug: unlinking /usr/share/locale/af/LC_TIME/coreutils.mo
    debug: removed directory /usr/share/locale/af/LC_TIME/ (no remaining owners)
    debug: unlinking /usr/share/locale/af/LC_MESSAGES/coreutils.mo
    debug: keeping directory /usr/share/locale/af/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/af/ (contains files)
    debug: keeping directory /usr/share/locale/ (contains files)
    debug: unlinking /usr/share/info/coreutils.info.gz
    debug: keeping directory /usr/share/info/ (contains files)
    debug: keeping directory /usr/share/ (contains files)
    debug: unlinking /usr/sbin/chroot
    debug: keeping directory /usr/sbin/ (contains files)
    debug: unlinking /usr/lib/coreutils/libstdbuf.so
    debug: removed directory /usr/lib/coreutils/ (no remaining owners)
    debug: keeping directory /usr/lib/ (contains files)
    debug: unlinking /usr/bin/yes
    debug: unlinking /usr/bin/whoami
    debug: unlinking /usr/bin/who
    debug: unlinking /usr/bin/wc
    debug: unlinking /usr/bin/users
    debug: unlinking /usr/bin/unlink
    debug: unlinking /usr/bin/uniq
    debug: unlinking /usr/bin/unexpand
    debug: unlinking /usr/bin/tty
    debug: unlinking /usr/bin/tsort
    debug: unlinking /usr/bin/truncate
    debug: unlinking /usr/bin/timeout
    debug: unlinking /usr/bin/test
    debug: unlinking /usr/bin/tee
    debug: unlinking /usr/bin/tail
    debug: unlinking /usr/bin/tac
    debug: unlinking /usr/bin/sum
    debug: unlinking /usr/bin/stdbuf
    debug: unlinking /usr/bin/stat
    debug: unlinking /usr/bin/split
    debug: unlinking /usr/bin/sort
    debug: unlinking /usr/bin/sleep
    debug: unlinking /usr/bin/shuf
    debug: unlinking /usr/bin/sha512sum
    debug: unlinking /usr/bin/sha384sum
    debug: unlinking /usr/bin/sha256sum
    debug: unlinking /usr/bin/sha224sum
    debug: unlinking /usr/bin/sha1sum
    debug: unlinking /usr/bin/seq
    debug: unlinking /usr/bin/runcon
    debug: unlinking /usr/bin/ptx
    debug: unlinking /usr/bin/printf
    debug: unlinking /usr/bin/printenv
    debug: unlinking /usr/bin/pr
    debug: unlinking /usr/bin/pinky
    debug: unlinking /usr/bin/pathchk
    debug: unlinking /usr/bin/paste
    debug: unlinking /usr/bin/od
    debug: unlinking /usr/bin/nproc
    debug: unlinking /usr/bin/nohup
    debug: unlinking /usr/bin/nl
    debug: unlinking /usr/bin/nice
    debug: unlinking /usr/bin/mktemp
    debug: unlinking /usr/bin/md5sum
    debug: unlinking /usr/bin/logname
    debug: unlinking /usr/bin/link
    debug: unlinking /usr/bin/join
    debug: unlinking /usr/bin/id
    debug: unlinking /usr/bin/hostid
    debug: unlinking /usr/bin/head
    debug: unlinking /usr/bin/fold
    debug: unlinking /usr/bin/fmt
    debug: unlinking /usr/bin/factor
    debug: unlinking /usr/bin/expr
    debug: unlinking /usr/bin/expand
    debug: unlinking /usr/bin/env
    debug: unlinking /usr/bin/dirname
    debug: unlinking /usr/bin/csplit
    debug: unlinking /usr/bin/comm
    debug: unlinking /usr/bin/cksum
    debug: unlinking /usr/bin/chcon
    debug: unlinking /usr/bin/basename
    debug: unlinking /usr/bin/base64
    debug: unlinking /usr/bin/[
    debug: keeping directory /usr/bin/ (contains files)
    debug: keeping directory /usr/ (contains files)
    debug: /etc/pam.d/su is in skip_remove, skipping removal
    debug: keeping directory /etc/pam.d/ (contains files)
    debug: keeping directory /etc/ (contains files)
    debug: unlinking /bin/vdir
    debug: unlinking /bin/uname
    debug: unlinking /bin/true
    debug: unlinking /bin/tr
    debug: unlinking /bin/touch
    debug: unlinking /bin/sync
    debug: unlinking /bin/su
    debug: unlinking /bin/stty
    debug: unlinking /bin/sleep
    debug: unlinking /bin/shred
    debug: unlinking /bin/rmdir
    debug: unlinking /bin/rm
    debug: unlinking /bin/readlink
    debug: unlinking /bin/pwd
    debug: unlinking /bin/mv
    debug: unlinking /bin/mknod
    debug: unlinking /bin/mkfifo
    debug: unlinking /bin/mkdir
    debug: unlinking /bin/ls
    debug: unlinking /bin/ln
    debug: unlinking /bin/install
    debug: unlinking /bin/false
    debug: unlinking /bin/echo
    debug: unlinking /bin/du
    debug: unlinking /bin/dircolors
    debug: unlinking /bin/dir
    debug: unlinking /bin/df
    debug: unlinking /bin/dd
    debug: unlinking /bin/date
    debug: unlinking /bin/cut
    debug: unlinking /bin/cp
    debug: unlinking /bin/chown
    debug: unlinking /bin/chmod
    debug: unlinking /bin/chgrp
    debug: unlinking /bin/cat
    debug: keeping directory /bin/ (contains files)
    debug: removing database entry 'coreutils'
    debug: removing entry 'coreutils' from 'local' cache
    debug: extracting files
    debug: archive: /var/cache/pacman/pkg/coreutils-8.17-1-i686.pkg.tar.xz
    debug: skipping extraction of '.PKGINFO'
    debug: extracting /var/lib/pacman/local/coreutils-8.17-1/install
    debug: extract: skipping dir extraction of bin/
    debug: extracting /bin/pwd
    debug: extracting /bin/sync
    debug: extracting /bin/ln
    debug: extracting /bin/rm
    debug: extracting /bin/uname
    debug: extracting /bin/chgrp
    debug: extracting /bin/su
    debug: extracting /bin/cp
    debug: extracting /bin/cat
    debug: extracting /bin/true
    debug: extracting /bin/chmod
    debug: extracting /bin/rmdir
    debug: extracting /bin/date
    debug: extracting /bin/false
    debug: extracting /bin/dd
    debug: extracting /bin/mknod
    debug: extracting /bin/du
    debug: extracting /bin/ls
    debug: extracting /bin/echo
    debug: extracting /bin/chown
    debug: extracting /bin/mkdir
    debug: extracting /bin/mv
    debug: extracting /bin/df
    debug: extracting /bin/stty
    debug: extract: skipping dir extraction of etc/
    debug: extract: skipping dir extraction of etc/pam.d/
    debug: checking hashes for etc/pam.d/su
    debug: current: fa85e5cce5d723275b14365ba71a8aad
    debug: new: fa85e5cce5d723275b14365ba71a8aad
    debug: original: fa85e5cce5d723275b14365ba71a8aad
    debug: action: leaving existing file in place
    debug: extract: skipping dir extraction of usr/
    debug: extract: skipping dir extraction of usr/share/
    debug: extract: skipping dir extraction of usr/sbin/
    debug: extract: skipping dir extraction of usr/lib/
    debug: extract: skipping dir extraction of usr/bin/
    debug: extracting /usr/bin/sleep
    debug: extracting /usr/bin/install
    debug: extracting /usr/bin/fold
    debug: extracting /usr/bin/paste
    debug: extracting /usr/bin/realpath
    debug: extracting /usr/bin/link
    debug: extracting /usr/bin/wc
    debug: extracting /usr/bin/sha256sum
    debug: extracting /usr/bin/sha1sum
    debug: extracting /usr/bin/shuf
    debug: extracting /usr/bin/uniq
    debug: extracting /usr/bin/pinky
    debug: extracting /usr/bin/base64
    debug: extracting /usr/bin/test
    debug: extracting /usr/bin/pr
    debug: extracting /usr/bin/truncate
    debug: extracting /usr/bin/cut
    debug: extracting /usr/bin/sha224sum
    debug: extracting /usr/bin/runcon
    debug: extracting /usr/bin/cksum
    debug: extracting /usr/bin/sum
    debug: extracting /usr/bin/stat
    debug: extracting /usr/bin/yes
    debug: extracting /usr/bin/tr
    debug: extracting /usr/bin/ptx
    debug: extracting /usr/bin/vdir
    debug: extracting /usr/bin/sha512sum
    debug: extracting /usr/bin/env
    debug: extracting /usr/bin/head
    debug: extracting /usr/bin/od
    debug: extracting /usr/bin/nl
    debug: extracting /usr/bin/expr
    debug: extracting /usr/bin/tsort
    debug: extracting /usr/bin/[
    debug: extracting /usr/bin/chcon
    debug: extracting /usr/bin/mkfifo
    debug: extracting /usr/bin/unexpand
    debug: extracting /usr/bin/id
    debug: extracting /usr/bin/mktemp
    debug: extracting /usr/bin/comm
    debug: extracting /usr/bin/printf
    debug: extracting /usr/bin/sort
    debug: extracting /usr/bin/fmt
    debug: extracting /usr/bin/dir
    debug: extracting /usr/bin/csplit
    debug: extracting /usr/bin/dirname
    debug: extracting /usr/bin/users
    debug: extracting /usr/bin/touch
    debug: extracting /usr/bin/whoami
    debug: extracting /usr/bin/split
    debug: extracting /usr/bin/sha384sum
    debug: extracting /usr/bin/tac
    debug: extracting /usr/bin/tail
    debug: extracting /usr/bin/unlink
    debug: extracting /usr/bin/expand
    debug: extracting /usr/bin/du
    debug: extracting /usr/bin/tty
    debug: extracting /usr/bin/who
    debug: extracting /usr/bin/printenv
    debug: extracting /usr/bin/pathchk
    debug: extracting /usr/bin/hostid
    debug: extracting /usr/bin/nproc
    debug: extracting /usr/bin/logname
    debug: extracting /usr/bin/stdbuf
    debug: extracting /usr/bin/md5sum
    debug: extracting /usr/bin/join
    debug: extracting /usr/bin/nice
    debug: extracting /usr/bin/dircolors
    debug: extracting /usr/bin/readlink
    debug: extracting /usr/bin/factor
    debug: extracting /usr/bin/seq
    debug: extracting /usr/bin/tee
    debug: extracting /usr/bin/shred
    debug: extracting /usr/bin/nohup
    debug: extracting /usr/bin/basename
    debug: extracting /usr/bin/timeout
    debug: extracting /usr/lib/coreutils/
    debug: extracting /usr/lib/coreutils/coreutils/
    debug: extracting /usr/lib/coreutils/coreutils/libstdbuf.so
    debug: extracting /usr/sbin/chroot
    debug: extract: skipping dir extraction of usr/share/info/
    debug: extract: skipping dir extraction of usr/share/locale/
    debug: extract: skipping dir extraction of usr/share/man/
    debug: extract: skipping dir extraction of usr/share/man/man1/
    debug: extracting /usr/share/man/man1/timeout.1.gz
    debug: extracting /usr/share/man/man1/link.1.gz
    debug: extracting /usr/share/man/man1/false.1.gz
    debug: extracting /usr/share/man/man1/pathchk.1.gz
    debug: extracting /usr/share/man/man1/chmod.1.gz
    debug: extracting /usr/share/man/man1/rm.1.gz
    debug: extracting /usr/share/man/man1/shred.1.gz
    debug: extracting /usr/share/man/man1/nice.1.gz
    debug: extracting /usr/share/man/man1/printf.1.gz
    debug: extracting /usr/share/man/man1/sha1sum.1.gz
    debug: extracting /usr/share/man/man1/head.1.gz
    debug: extracting /usr/share/man/man1/factor.1.gz
    debug: extracting /usr/share/man/man1/mv.1.gz
    debug: extracting /usr/share/man/man1/cat.1.gz
    debug: extracting /usr/share/man/man1/env.1.gz
    debug: extracting /usr/share/man/man1/echo.1.gz
    debug: extracting /usr/share/man/man1/who.1.gz
    debug: extracting /usr/share/man/man1/sha256sum.1.gz
    debug: extracting /usr/share/man/man1/chroot.1.gz
    debug: extracting /usr/share/man/man1/basename.1.gz
    debug: extracting /usr/share/man/man1/mknod.1.gz
    debug: extracting /usr/share/man/man1/expr.1.gz
    debug: extracting /usr/share/man/man1/expand.1.gz
    debug: extracting /usr/share/man/man1/true.1.gz
    debug: extracting /usr/share/man/man1/seq.1.gz
    debug: extracting /usr/share/man/man1/unexpand.1.gz
    debug: extracting /usr/share/man/man1/su.1.gz
    debug: extracting /usr/share/man/man1/chcon.1.gz
    debug: extracting /usr/share/man/man1/ptx.1.gz
    debug: extracting /usr/share/man/man1/realpath.1.gz
    debug: extracting /usr/share/man/man1/truncate.1.gz
    debug: extracting /usr/share/man/man1/stat.1.gz
    debug: extracting /usr/share/man/man1/mkfifo.1.gz
    debug: extracting /usr/share/man/man1/od.1.gz
    debug: extracting /usr/share/man/man1/install.1.gz
    debug: extracting /usr/share/man/man1/cksum.1.gz
    debug: extracting /usr/share/man/man1/whoami.1.gz
    debug: extracting /usr/share/man/man1/unlink.1.gz
    debug: extracting /usr/share/man/man1/comm.1.gz
    debug: extracting /usr/share/man/man1/chgrp.1.gz
    debug: extracting /usr/share/man/man1/runcon.1.gz
    debug: extracting /usr/share/man/man1/touch.1.gz
    debug: extracting /usr/share/man/man1/date.1.gz
    debug: extracting /usr/share/man/man1/logname.1.gz
    debug: extracting /usr/share/man/man1/stty.1.gz
    debug: extracting /usr/share/man/man1/ls.1.gz
    debug: extracting /usr/share/man/man1/df.1.gz
    debug: extracting /usr/share/man/man1/readlink.1.gz
    debug: extracting /usr/share/man/man1/csplit.1.gz
    debug: extracting /usr/share/man/man1/ln.1.gz
    debug: extracting /usr/share/man/man1/dd.1.gz
    debug: extracting /usr/share/man/man1/sha512sum.1.gz
    debug: extracting /usr/share/man/man1/chown.1.gz
    debug: extracting /usr/share/man/man1/fold.1.gz
    debug: extracting /usr/share/man/man1/dircolors.1.gz
    debug: extracting /usr/share/man/man1/split.1.gz
    debug: extracting /usr/share/man/man1/nohup.1.gz
    debug: extracting /usr/share/man/man1/vdir.1.gz
    debug: extracting /usr/share/man/man1/shuf.1.gz
    debug: extracting /usr/share/man/man1/stdbuf.1.gz
    debug: extracting /usr/share/man/man1/dirname.1.gz
    debug: extracting /usr/share/man/man1/join.1.gz
    debug: extracting /usr/share/man/man1/md5sum.1.gz
    debug: extracting /usr/share/man/man1/cut.1.gz
    debug: extracting /usr/share/man/man1/sha224sum.1.gz
    debug: extracting /usr/share/man/man1/yes.1.gz
    debug: extracting /usr/share/man/man1/users.1.gz
    debug: extracting /usr/share/man/man1/tac.1.gz
    debug: extracting /usr/share/man/man1/tail.1.gz
    debug: extracting /usr/share/man/man1/paste.1.gz
    debug: extracting /usr/share/man/man1/mktemp.1.gz
    debug: extracting /usr/share/man/man1/sum.1.gz
    debug: extracting /usr/share/man/man1/test.1.gz
    debug: extracting /usr/share/man/man1/du.1.gz
    debug: extracting /usr/share/man/man1/fmt.1.gz
    debug: extracting /usr/share/man/man1/id.1.gz
    debug: extracting /usr/share/man/man1/mkdir.1.gz
    debug: extracting /usr/share/man/man1/uname.1.gz
    debug: extracting /usr/share/man/man1/tee.1.gz
    debug: extracting /usr/share/man/man1/wc.1.gz
    debug: extracting /usr/share/man/man1/cp.1.gz
    debug: extracting /usr/share/man/man1/pinky.1.gz
    debug: extracting /usr/share/man/man1/uniq.1.gz
    debug: extracting /usr/share/man/man1/sync.1.gz
    debug: extracting /usr/share/man/man1/dir.1.gz
    debug: extracting /usr/share/man/man1/pr.1.gz
    debug: extracting /usr/share/man/man1/tty.1.gz
    debug: extracting /usr/share/man/man1/tsort.1.gz
    debug: extracting /usr/share/man/man1/base64.1.gz
    debug: extracting /usr/share/man/man1/nl.1.gz
    debug: extracting /usr/share/man/man1/nproc.1.gz
    debug: extracting /usr/share/man/man1/printenv.1.gz
    debug: extracting /usr/share/man/man1/sha384sum.1.gz
    debug: extracting /usr/share/man/man1/tr.1.gz
    debug: extracting /usr/share/man/man1/sort.1.gz
    debug: extracting /usr/share/man/man1/pwd.1.gz
    debug: extracting /usr/share/man/man1/hostid.1.gz
    debug: extracting /usr/share/man/man1/rmdir.1.gz
    debug: extracting /usr/share/man/man1/sleep.1.gz
    debug: extract: skipping dir extraction of usr/share/locale/ko/
    debug: extract: skipping dir extraction of usr/share/locale/af/
    debug: extract: skipping dir extraction of usr/share/locale/fi/
    debug: extract: skipping dir extraction of usr/share/locale/ja/
    debug: extract: skipping dir extraction of usr/share/locale/da/
    debug: extract: skipping dir extraction of usr/share/locale/ga/
    debug: extract: skipping dir extraction of usr/share/locale/ca/
    debug: extract: skipping dir extraction of usr/share/locale/ru/
    debug: extract: skipping dir extraction of usr/share/locale/cs/
    debug: extract: skipping dir extraction of usr/share/locale/nb/
    debug: extract: skipping dir extraction of usr/share/locale/fr/
    debug: extract: skipping dir extraction of usr/share/locale/pl/
    debug: extract: skipping dir extraction of usr/share/locale/it/
    debug: extract: skipping dir extraction of usr/share/locale/zh_TW/
    debug: extract: skipping dir extraction of usr/share/locale/tr/
    debug: extract: skipping dir extraction of usr/share/locale/gl/
    debug: extract: skipping dir extraction of usr/share/locale/ms/
    debug: extract: skipping dir extraction of usr/share/locale/nl/
    debug: extract: skipping dir extraction of usr/share/locale/sl/
    debug: extract: skipping dir extraction of usr/share/locale/bg/
    debug: extract: skipping dir extraction of usr/share/locale/id/
    debug: extract: skipping dir extraction of usr/share/locale/de/
    debug: extract: skipping dir extraction of usr/share/locale/pt/
    debug: extract: skipping dir extraction of usr/share/locale/ro/
    debug: extract: skipping dir extraction of usr/share/locale/eo/
    debug: extract: skipping dir extraction of usr/share/locale/kk/
    debug: extract: skipping dir extraction of usr/share/locale/pt_BR/
    debug: extract: skipping dir extraction of usr/share/locale/be/
    debug: extract: skipping dir extraction of usr/share/locale/lt/
    debug: extract: skipping dir extraction of usr/share/locale/lg/
    debug: extract: skipping dir extraction of usr/share/locale/uk/
    debug: extract: skipping dir extraction of usr/share/locale/eu/
    debug: extract: skipping dir extraction of usr/share/locale/zh_CN/
    debug: extract: skipping dir extraction of usr/share/locale/sk/
    debug: extract: skipping dir extraction of usr/share/locale/vi/
    debug: extract: skipping dir extraction of usr/share/locale/el/
    debug: extract: skipping dir extraction of usr/share/locale/hu/
    debug: extract: skipping dir extraction of usr/share/locale/sv/
    debug: extract: skipping dir extraction of usr/share/locale/et/
    debug: extract: skipping dir extraction of usr/share/locale/es/
    debug: extracting /usr/share/locale/es/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/es/LC_MESSAGES/
    debug: extracting /usr/share/locale/es/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/es/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/et/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/et/LC_MESSAGES/
    debug: extracting /usr/share/locale/et/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/et/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/sv/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/sv/LC_MESSAGES/
    debug: extracting /usr/share/locale/sv/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/sv/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/hu/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/hu/LC_MESSAGES/
    debug: extracting /usr/share/locale/hu/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/hu/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/el/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/el/LC_MESSAGES/
    debug: extracting /usr/share/locale/el/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/el/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/vi/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/vi/LC_MESSAGES/
    debug: extracting /usr/share/locale/vi/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/vi/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/sk/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/sk/LC_MESSAGES/
    debug: extracting /usr/share/locale/sk/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/sk/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/zh_CN/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/zh_CN/LC_MESSAGES/
    debug: extracting /usr/share/locale/zh_CN/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/zh_CN/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/eu/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/eu/LC_MESSAGES/
    debug: extracting /usr/share/locale/eu/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/eu/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/uk/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/uk/LC_MESSAGES/
    debug: extracting /usr/share/locale/uk/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/uk/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/lg/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/lg/LC_MESSAGES/
    debug: extracting /usr/share/locale/lg/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/lg/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/lt/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/lt/LC_MESSAGES/
    debug: extracting /usr/share/locale/lt/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/lt/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/be/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/be/LC_MESSAGES/
    debug: extracting /usr/share/locale/be/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/be/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/pt_BR/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/pt_BR/LC_MESSAGES/
    debug: extracting /usr/share/locale/pt_BR/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/pt_BR/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/kk/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/kk/LC_MESSAGES/
    debug: extracting /usr/share/locale/kk/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/kk/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/eo/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/eo/LC_MESSAGES/
    debug: extracting /usr/share/locale/eo/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/eo/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/ro/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/ro/LC_MESSAGES/
    debug: extracting /usr/share/locale/ro/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/ro/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/pt/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/pt/LC_MESSAGES/
    debug: extracting /usr/share/locale/pt/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/pt/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/de/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/de/LC_MESSAGES/
    debug: extracting /usr/share/locale/de/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/de/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/id/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/id/LC_MESSAGES/
    debug: extracting /usr/share/locale/id/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/id/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/bg/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/bg/LC_MESSAGES/
    debug: extracting /usr/share/locale/bg/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/bg/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/sl/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/sl/LC_MESSAGES/
    debug: extracting /usr/share/locale/sl/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/sl/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/nl/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/nl/LC_MESSAGES/
    debug: extracting /usr/share/locale/nl/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/nl/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/ms/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/ms/LC_MESSAGES/
    debug: extracting /usr/share/locale/ms/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/ms/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/gl/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/gl/LC_MESSAGES/
    debug: extracting /usr/share/locale/gl/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/gl/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/tr/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/tr/LC_MESSAGES/
    debug: extracting /usr/share/locale/tr/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/tr/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/zh_TW/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/zh_TW/LC_MESSAGES/
    debug: extracting /usr/share/locale/zh_TW/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/zh_TW/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/it/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/it/LC_MESSAGES/
    debug: extracting /usr/share/locale/it/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/it/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/pl/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/pl/LC_MESSAGES/
    debug: extracting /usr/share/locale/pl/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/pl/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/fr/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/fr/LC_MESSAGES/
    debug: extracting /usr/share/locale/fr/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/fr/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/nb/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/nb/LC_MESSAGES/
    debug: extracting /usr/share/locale/nb/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/nb/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/cs/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/cs/LC_MESSAGES/
    debug: extracting /usr/share/locale/cs/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/cs/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/ru/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/ru/LC_MESSAGES/
    debug: extracting /usr/share/locale/ru/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/ru/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/ca/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/ca/LC_MESSAGES/
    debug: extracting /usr/share/locale/ca/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/ca/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/ga/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/ga/LC_MESSAGES/
    debug: extracting /usr/share/locale/ga/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/ga/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/da/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/da/LC_MESSAGES/
    debug: extracting /usr/share/locale/da/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/da/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/ja/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/ja/LC_MESSAGES/
    debug: extracting /usr/share/locale/ja/LC_MESSAGES/coreutils.mo
    debug: extracting /usr/share/locale/ja/LC_TIME/coreutils.mo
    debug: extracting /usr/share/locale/fi/LC_TIME/
    debug: extract: skipping dir extraction of usr/share/locale/fi/LC_MESSAGES/
    debug: extracting /usr/share/locale/fi/LC_MESSAGES/coreutils.mo
    error: could not extract usr/share/locale/fi/LC_MESSAGES/coreutils.mo (Lzma library error: Corrupted input data)
    error: problem occurred while upgrading coreutils
    debug: updating database
    debug: adding database entry 'coreutils'
    debug: writing coreutils-8.17-1 DESC information back to db
    debug: writing coreutils-8.17-1 FILES information back to db
    debug: adding entry 'coreutils' in 'local' cache
    debug: executing ". /tmp/alpm_lXPdCD/.INSTALL; post_upgrade 8.17-1 8.12-3"
    debug: executing "/bin/sh" under chroot "/"
    debug: call to waitpid succeeded
    error: command failed to execute correctly
    error: could not commit transaction
    error: failed to commit transaction (transaction aborted)
    Errors occurred, no packages were upgraded.
    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 'community'
    [root@tigerbot shez]#
    [root@tigerbot shez]#
    [root@tigerbot shez]#
    [root@tigerbot shez]# pacman -S coreutils
    warning: coreutils-8.17-1 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1):
    Name Old Version New Version Net Change Download Size
    coreutils 8.17-1 8.17-1 0.00 MiB
    Total Installed Size: 13.32 MiB
    Net Upgrade Size: 0.00 MiB
    Proceed with installation? [Y/n] n
    [root@tigerbot shez]#
    Notice that the log shows an error, yet it's actually installed...
    Here's a successfuly install, without --debug:
    [root@tigerbot shez]# pacman -S wget
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1):
    Name Old Version New Version Net Change Download Size
    wget 1.13-1 1.13.4-1 0.00 MiB
    Total Installed Size: 2.13 MiB
    Net Upgrade Size: 0.00 MiB
    Proceed with installation? [Y/n]
    (1/1) checking package integrity [######################] 100%
    (1/1) loading package files [######################] 100%
    (1/1) checking for file conflicts [######################] 100%
    (1/1) checking available disk space [######################] 100%
    (1/1) upgrading wget [######################] 100%
    [root@tigerbot shez]#

  • Transfer Struc, Comm struc, Extract Struc,

    Hey All!
    I am working on a project of Business content development
    & i have the following question.
    Can somebody let me know how comm struc, Transfer Struc & extract struc& info source are maintained in the physical level. I ofcourse know that comm & transfer Struc are group of info 0bject. In which table is this maintained in the database?. It sounds more basis but i want to get some of ur views too thats why i write this post in this forum too.
    while we choose some business content objects and activate them then  the tables in the databases are created for the respective objects
    Can somebody give an idea where can i get this physical table information from. For cubes i can trace out F,E tables & dimensions but this sort Infosource relationships
    and query details in the DB level is difficult for me to get. Can anyone help with your insights!?
    Rgds
    Karthik Krishna.

    RSZCOMPDIR      Directory of reporting components
    RSZCOMPIC     Queries on cubes
    RSZELTATTR      Attribute selection per dimension element
    RSZELTDIR      Directory of the reporting component elements
    RSZELTPROP     Reporting component elements properties
    RSZELTTXT      Texts of reporting component elements
    RSZELTXREF      Directory of query element references
    RSZGLOBV      Global Variables in Reporting
    Best regards,
    Eugene

Maybe you are looking for

  • How to make sum (function) discrimination in report?

    Hi all, I need to create a report for item sales. The sale (item) can be canceled by a customer but it still need to be in the report as well. Foe example, suppose the customer buy four items (banana, apple, orange, grape) each for 100 items, but dec

  • Only a type can be imported. package.Class resolves to a package

    Hi, I made a class for database connection named ConnectionClass.class. The JSPs in public_html directory working fine with import and session variables. but JSPs under public_html/subdirectory are unable to import this Class and also unable to acces

  • Upgrading to advanced configuration, what happens?

    We only have 20 people to manage and nearly the same number of computer, with little fluctuation (ca. 4 people/year and 2 computer/year). So far it works fine for us by using one server (Mac OS X 10.5.6) in the workgroup configuration, but now all th

  • Macbook Pro 4,1 frequent freezes

    here's an excerpt log from console...which is repeated throughout the log. the last line of the log here is the last entry prior to the freeze. Any ideas, Macophiles? humbly yours, Patrick in Dallas Feb 23 21:17:36 localhost com.apple.launchd[1] (org

  • Ios 7.1.1 can't install due to searching for network

    this update went live while my phone was out of the country- and ever since the phone is searching for a netwrok and I am unable to install the update?? not sure what to try . I have tried re-booting etc but cannot get connected to the network. HELP!