Alternative to join

I have got a query which is a join of 6 queries. Is there an option to replace the join? The db version is 9.2.0.1.0.

Sorry for not giving more info.. that was not intentional.
I had considered the union all option, but there is a possibility for duplicate records which is not desired.
Please find the query below:
SELECT /*+RULE */ -- PEWs
mc.case_type TYPE,
     c.objid c_objid,
     c.x_embargo_id embargo_id,
     c.x_tech_type embargo_tech_type,
     c.x_description,
     c.x_risk emb_cause,
     c.x_locn_node node_order,
     c.x_loctn_1141 x_code_1141,
     mc.X_CODE_1141 loc_A,
     NULL loc_b,
     mc.x_node_a,
     mc.x_node_b,
c.x_period_start x_break_start,
     c.x_period_end x_break_end,
     mc.case_type case_type,
     mc.x_pew_domain tech_type,
     mc.id_number caseid,
     mc.id_number PEWid,
x_start_dt pew_start,
     NVL(DECODE(TO_CHAR(mc.X_END_DT, 'yyyy'),'1753',NULL,
                              TO_CHAR(mc.X_END_DT,'dd/mm/rr hh24:mi')),'-') pew_end,
     mc.TITLE root_cause,
     'P' clause
FROM manis_case mc, table_x_pew_control c
WHERE mc.case_victim2case IS NULL -- either Simple PEW or SubPEW
AND mc.x_pew_domain LIKE DECODE(c.x_tech_type,'Any','%',c.x_tech_type||'%')
AND mc.x_pew_domain NOT IN('Cable','Transmission')
AND mc.x_node_a LIKE DECODE(c.x_locn_node,'ANY','%',c.x_locn_node||'%')
AND     c.x_period_end >= mc.X_START_DT
AND     mc.X_END_DT NOT BETWEEN SYSDATE-36500 AND c.x_period_start
AND c.x_period_end > SYSDATE
AND c.X_ACTIVE = 'Y'
AND mc.status NOT LIKE 'C%'
AND SUBSTR(mc.x_pew_domain,1,2) != 'ZZ'
UNION
SELECT /*+RULE */ -- Subcases
'Subcase' TYPE,
     sc.objid c_objid,
     c.x_embargo_id embargo_id,
     c.x_tech_type embargo_tech_type,
     c.x_description,
     c.x_risk emb_cause,
     c.x_locn_node node_order,
     c.x_loctn_1141 x_code_1141,
     mc.X_WM_NODEIDENT1141 loc_A,
     NULL loc_b,
     sc.x_node_a,
     sc.x_node_b,
c.x_period_start x_break_start,
     c.x_period_end x_break_end,
     sc.case_type case_type,
     sc.x_pew_domain tech_type,
     mc.id_number caseid,
     mc.id_number PEWid,
X_WMR_EXPECTEDSTART pew_start,
     NVL(DECODE(TO_CHAR(mc.X_WMR_EXPECTEDFINISH, 'yyyy'),'1753',NULL,
                              TO_CHAR(mc.X_WMR_EXPECTEDFINISH,'dd/mm/rr hh24:mi')),'-') pew_end,
     mc.TITLE root_cause,
     'C' clause
FROM manis_case sc, manis_subcase mc, table_x_pew_control c
WHERE sc.objid = mc.subcase2case
AND sc.X_PEW_DOMAIN LIKE NVL(DECODE(c.X_TECH_TYPE,'Any','%',c.x_tech_type)||'%','%')
AND( sc.x_node_a LIKE NVL(DECODE(c.x_locn_node,'ANY','%',c.x_locn_node)||'%','%')
-- better to check subcase node
OR sc.x_node_b LIKE NVL(DECODE(c.x_locn_node,'ANY','%',c.x_locn_node)||'%','%') )
-- better to check subcase node
AND     c.x_period_end >= mc.X_WMR_EXPECTEDSTART
AND     c.x_period_start <= mc.X_WMR_EXPECTEDFINISH
AND c.x_period_end > SYSDATE
AND c.X_ACTIVE = 'Y'
AND mc.status NOT LIKE 'C%'
AND SUBSTR(sc.x_pew_domain,1,2) != 'ZZ'
UNION
SELECT /*+RULE */ -- Plant continuous
x_plnt_break TYPE,
     c.objid c_objid,
     c.x_embargo_id embargo_id,
     c.x_tech_type embargo_tech_type,
     c.x_description,
     c.x_risk emb_cause,
     c.x_locn_node node_order,
     c.x_loctn_1141 x_code_1141,
     p.x_plnt_a_end loc_A,
     p.x_plnt_b_end loc_b,
     p.x_plnt_a_node x_node_a,
     p.x_plnt_b_node x_node_b,
c.x_period_start x_break_start,
     c.x_period_end x_break_end,
     mc.case_type case_type,
     mc.x_pew_domain tech_type,
     mc.id_number caseid,
     mc.id_number PEWid,
p.x_plnt_start pew_start,
     NVL(DECODE(TO_CHAR(p.x_plnt_end, 'yyyy'),'1753',NULL,
                              TO_CHAR(p.x_plnt_end,'dd/mm/rr hh24:mi')),'-') pew_end,
     mc.title root_cause,     
     '-' clause
FROM manis_case mc, table_x_plant p, table_x_pew_control c
WHERE p.x_plnt_break NOT LIKE'M%'
AND mc.objid = p.x_plant2case
AND mc.x_pew_domain LIKE NVL(DECODE(c.x_tech_type,'Any','%',c.x_tech_type)||'%','%')
AND( p.x_plnt_a_node LIKE NVL(DECODE(c.x_locn_node,'ANY','%',c.x_locn_node)||'%','%')
OR p.x_plnt_b_node LIKE NVL(DECODE(c.x_locn_node,'ANY','%',c.x_locn_node)||'%','%') )
AND     c.x_period_end >= p.x_plnt_start
AND     c.x_period_start <= p.x_plnt_end
AND c.x_period_end > SYSDATE
AND c.X_ACTIVE = 'Y'
AND mc.status NOT LIKE 'C%'
AND SUBSTR(mc.x_pew_domain,1,2) != 'ZZ'
UNION
SELECT /*+RULE */ -- Plant momentary break
x_plnt_break TYPE,
     c.objid c_objid,
     c.x_embargo_id embargo_id,
     c.x_tech_type embargo_tech_type,
     c.x_description,
     c.x_risk emb_cause,
     c.x_locn_node node_order,
     c.x_loctn_1141 x_code_1141,
     p.x_plnt_a_end loc_A,
     p.x_plnt_b_end loc_b,
     p.x_plnt_a_node x_node_a,
     p.x_plnt_b_node x_node_b,
c.x_period_start x_break_start,
     c.x_period_end x_break_end,
     mc.case_type case_type,
     mc.x_pew_domain tech_type,
     mc.id_number caseid,
     mc.id_number PEWid,
p.x_plnt_start pew_start,
     NVL(DECODE(TO_CHAR(p.x_plnt_end, 'yyyy'),'1753',NULL,
                              TO_CHAR(p.x_plnt_end,'dd/mm/rr hh24:mi')),'-') pew_end,
     mc.title root_cause,
     '&' clause
FROM manis_case mc, table_x_plant p, table_x_pew_control c
WHERE p.x_plnt_break LIKE 'M%'
AND ( (x_plnt_start BETWEEN c.x_period_start AND c.x_period_end)
OR(x_plnt_end BETWEEN c.x_period_start AND c.x_period_end) )
AND mc.objid = p.x_plant2case
AND mc.x_pew_domain LIKE NVL(DECODE(c.x_tech_type,'Any','%',c.x_tech_type)||'%','%')
AND( p.x_plnt_a_node LIKE NVL(DECODE(c.x_locn_node,'ANY','%',c.x_locn_node)||'%','%')
OR p.x_plnt_b_node LIKE NVL(DECODE(c.x_locn_node,'ANY','%',c.x_locn_node)||'%','%') )
AND     c.x_period_end >= p.x_plnt_start
AND     c.x_period_start <= p.x_plnt_end
AND c.x_period_end > SYSDATE
AND c.X_ACTIVE = 'Y'
AND mc.status NOT LIKE 'C%'
AND SUBSTR(mc.x_pew_domain,1,2) != 'ZZ'
-- Added 23/03/06 for NSI-PEWD Plant ----------------------
UNION
SELECT /*+RULE */ -- NSI-PEWD Plant continuous
p.break_col TYPE,
     c.objid c_objid,
     c.x_embargo_id embargo_id,
     c.x_tech_type embargo_tech_type,
     c.x_description,
     c.x_risk emb_cause,
     c.x_locn_node node_order,
     c.x_loctn_1141 x_code_1141,
     p.a_end_col loc_A,
     p.b_end_col loc_b,
     p.x_plnt_a_node x_node_a,
     p.x_plnt_b_node x_node_b,
c.x_period_start x_break_start,
     c.x_period_end x_break_end,
     mc.case_type case_type,
     mc.x_pew_domain tech_type,
     mc.id_number caseid,
     mc.id_number PEWid,
p.start_date_col pew_start,
     NVL(DECODE(TO_CHAR(p.end_date_col, 'yyyy'),'1753',NULL,
                              TO_CHAR(p.end_date_col,'dd/mm/rr hh24:mi')),'-') pew_end,
     mc.title root_cause,
     '-' clause
FROM manis_case mc, ew_plant_services p, table_x_pew_control c
WHERE p.separator_col = '-'
AND p.id_number = mc.id_number
AND mc.x_pew_domain LIKE DECODE(c.x_tech_type,'Any','%',c.x_tech_type||'%')
AND( p.x_plnt_a_node LIKE DECODE(c.x_locn_node,'ANY','%',c.x_locn_node||'%')
OR p.x_plnt_b_node LIKE DECODE(c.x_locn_node,'ANY','%',c.x_locn_node||'%') )
AND     c.x_period_end >= p.start_date_col
AND     c.x_period_start <= p.end_date_col
AND c.x_period_end > SYSDATE
AND c.X_ACTIVE = 'Y'
AND mc.status NOT LIKE 'C%'
AND SUBSTR(mc.x_pew_domain,1,2) != 'ZZ'
UNION
SELECT /*+RULE */ -- NSI-PEWD Plant momentary break
p.break_col TYPE,
     c.objid c_objid,
     c.x_embargo_id embargo_id,
     c.x_tech_type embargo_tech_type,
     c.x_description,
     c.x_risk emb_cause,
     c.x_locn_node node_order,
     c.x_loctn_1141 x_code_1141,
     p.a_end_col loc_A,
     p.b_end_col loc_b,
     p.x_plnt_a_node x_node_a,
     p.x_plnt_b_node x_node_b,
c.x_period_start x_break_start,
     c.x_period_end x_break_end,
     mc.case_type case_type,
     mc.x_pew_domain tech_type,
     mc.id_number caseid,
     mc.id_number PEWid,
p.start_date_col pew_start,
     NVL(DECODE(TO_CHAR(p.end_date_col, 'yyyy'),'1753',NULL,
                              TO_CHAR(p.end_date_col,'dd/mm/rr hh24:mi')),'-') pew_end,
     mc.title root_cause,
     '&' clause
FROM manis_case mc, ew_plant_services p, table_x_pew_control c
WHERE NVL(p.separator_col,'&') = '&'
AND p.id_number = mc.id_number
AND ( (start_date_col BETWEEN c.x_period_start AND c.x_period_end)
OR(end_date_col BETWEEN c.x_period_start AND c.x_period_end) )
AND mc.x_pew_domain LIKE NVL(DECODE(c.x_tech_type,'Any','%',c.x_tech_type)||'%','%')
AND( p.x_plnt_a_node LIKE NVL(DECODE(c.x_locn_node,'ANY','%',c.x_locn_node)||'%','%')
OR p.x_plnt_b_node LIKE NVL(DECODE(c.x_locn_node,'ANY','%',c.x_locn_node)||'%','%') )
AND c.x_period_end > SYSDATE
AND c.X_ACTIVE = 'Y'
AND mc.status NOT LIKE 'C%'
AND SUBSTR(mc.x_pew_domain,1,2) != 'ZZ'
ORDER BY embargo_id,PEWid,pew_start,clause DESC;

Similar Messages

  • Alternative for Join.

    Hi friends,
       I am facing problem in breaking up a select statement which contains join between 10 tables.
    can you people suggest me different options for removing join in a select statements.

    Hi Rob
    here is the actual select statement.
    have a look at it and see what can be done with this.
    I tried out to break it in two parts, but was unsucessful.
    SELECT   AFKO~AUFNR         "Order Number
             AFKO~GSTRP         "Order Basic start date
             AFKO~GSTRS         "Order Scheduled start
             AFIH~PRIOK         "Maint order Priority
             AFIH~ILART         "Maint activity type
             AFIH~WARPL         "Maint plan
             AFIH~ABNUM         "Package num
             AFIH~WAPOS         "Maint item
             ILOA~TPLNR         "Functional location
             ILOA~ABCKZ         "ABC indicator for technical object
             AUFK~KTEXT         "Order Short text
             AUFK~AUART         "Order type
             AUFK~OBJNR         "object num of order
             AFVC~OBJNR         "Object num of operation
             AFVC~ANLZU         "Task list oper's sys condition
             CRHD~ARBPL         "Work center
             AFVV~ARBEI         "Plan hours for the activity
             AFVV~ISMNW         "Actual hours
             MPOS~WSTRA         "Strategy
             AFKO~PLNNR
             AFKO~PLNAL
             MHIS~ZAEHL         "Maint package
      FROM ( AFKO                        "afko: Order header
             INNER JOIN AUFK             "aufk: Order master data.
             ON  AUFKAUFNR = AFKOAUFNR
             INNER JOIN AFIH             "afih: Maint order header
             ON  AFIHAUFNR = AUFKAUFNR
             INNER JOIN ILOA             "iloa: PM Obj Loc & Acct Assgmt
             ON  ILOAILOAN = AFIHILOAN
             INNER JOIN caufv             "
             ON  caufvAUFNR = AFKOAUFNR
             INNER JOIN AFVC             "afvc: Operation within an order
             ON  AFVCAUFPL = CAUFVAUFPL
             INNER JOIN AFVV             "afvv: qty/dates in operation
             ON  AFVVAUFPL = AFKOAUFPL
             INNER JOIN CRHD             "crhd: Work Center Header
             ON  CRHDOBJID = AFVCARBID
             INNER JOIN PLAS
             ON  PLASPLNTY = AFVCPLNTY
             AND PLASPLNNR = AFVCPLNNR
             AND PLASPLNAL = AFVCPLNAL     
             AND PLASZAEHL = AFVCZAEHL
             INNER JOIN PLWP
             ON  PLWPPLNTY = AFVCPLNTY
             AND PLWPPLNNR = PLASPLNNR
             AND PLWPPLNAL = PLASPLNAL
             INNER JOIN MHIS             "mhis: Maint plan history
             ON MHISZAEHL = PLWPPAKET
             LEFT OUTER JOIN MPOS        "mpos: Maint item
             ON  MPOSWAPOS = AFIHWAPOS
      INTO TABLE I_CO_MH3
      WHERE      AFKO~GSTRS IN S_DATES    "Order scheduled start date
             AND AFKO~GSTRS IN R_ONE_YEAR "Restriction by year
             AND ILOA~TPLNR IN S_TPLNR    "func location input
             AND CRHD~OBJTY =  'A'        "Object types of CIM resource

  • A018 Alternative for join to KONP

    I currently have a join between A018 and KONP which retrieves all the data I require.  I am insterested to know whether I could extract the same data with using transparent tables only?

    Hi
    you can use A018 and KONP itself without using joins.
    if join is causing performance issue here then u can rearrange your code as follows..
    SELECT ...FROM KONP INTO TABLE INT_KONP.
    IF NOT INT_KONP IS INITIAL.
    SELECT ..FROM A018 INTO TABLE INT_A018 FOR ALL ENTRIES IN INT_KONP WHERE <condition record number> EQ INT_KONP-<condition record number>.
    ENDIF.
    Cheers,
    Abdul Hakim
    Mark all useful answers..

  • OBIEE equivalent of BO shortcut join

    Hi All, I am trying to find the equivalent of short cut joins in OBIEE.
    Shortcut joins:
    Shortcut join allows to define an alternative, faster join path between two tables. Without the use of a shortcut join, query would have to go through a huge fact table to create simple reference lists.
    consider the scenario when, tables are joined as A->B->C->D. and there is a relationship between A and D directly. By using shortcut join, i can avoid the intermediate tables and join A and B directly.
    I am trying to understand its equivalent in OBIEE.

    I use OBIEE 10g. I couldn't find the option to change the order of the Logical Table sources through the logical table source properties window as mentioned by you.
    Moreover, I wanted to know how to overrule the selection of/to priorotize Logical Fact Table itself in a Subject Area. i.e. My senario is that, I totally have 3 Dimensions tables and 2 Facts tables in my SA. When I join D1+ and D2+ through F1+ it works fine. But when I include a column from D3+ then the F2+ is chosen (though none ofthe columns from F2+ is chosen) as the Fact table insted of F1+ since column F2.C1+ is declared as an implicit fact column for this SA.
    Now, I do not want to disturb the implicit fact set up and at the same time wanted to select the F1+ as my Fact table instead of F2+ for my requirement.
    Can anyone show a light upon this?
    Regards,
    Vishnu

  • SAP Query Creation

    Hi All,
    I am creating a SAP query in the system using the tables KONP,MBEW & A018 i could join tables KONP & MBEW but i am not able to add the table A018 and a error message is displayed
    Error Message:
    Table A018 cannot be used in a join
    Message no. AQ501
    Diagnosis
    1. You cannot read the selected table with SELECT statements (because, for example, it is a structure without a database table). Therefore, this table cannot be read within a table join either.
    2. The chosen table is a pool or cluster table. These tables may not be used in a table join.
    Can anyone tell me a alternative to join this table to MBEW & KONP.
    I want this Join Conditions:
    MBEW-MATNR = A018-MATNR
    A018-KAPPL = KONP-KAPPL     
    A018-KSCHL = KONP-KSCHL     
    A018-KNUMH = KONP-KNUMH
    Thanks & Regards
    Andrew
    Edited by: Andrew J on Dec 18, 2008 2:49 PM

    hi,
    use  FOR ALL ENTRIES
    EXAMPLE:
    Exporting all flight data for a specified departure city. The relevant airlines and flight numbers are first put in an internal table entry_tab, which is evaluated in the WHERE condition of the subsquent SELECT statement.
    PARAMETERS p_city TYPE spfli-cityfrom.
    TYPES: BEGIN OF entry_tab_type,
             carrid TYPE spfli-carrid,
             connid TYPE spfli-connid,
           END OF entry_tab_type.
    DATA: entry_tab   TYPE TABLE OF entry_tab_type,
          sflight_tab TYPE SORTED TABLE OF sflight
                           WITH UNIQUE KEY carrid connid fldate.
    SELECT carrid connid
           FROM spfli
           INTO CORRESPONDING FIELDS OF TABLE entry_tab
           WHERE cityfrom = p_city.
    SELECT carrid connid fldate
           FROM sflight
           INTO CORRESPONDING FIELDS OF TABLE sflight_tab
           FOR ALL ENTRIES IN entry_tab
           WHERE carrid = entry_tab-carrid AND
                 connid = entry_tab-connid.
    REGARDS
    RAHUL

  • URGENT - very weird ClassCastException

    hello everyone,
    im debugging now for about 4h and time is running out, i have no idea what the following exception could mean.
    im calling several webservices and store their results (plain integer) in VC datastores, the datastores are properly populated.
    the called webservice is an application-service with full logging, it doesnt throw any exception.
    in NWA the log is blown up with this exception (something serious it seems, every stacktrace-step is an separate log-entry, very weird)
    java.lang.ClassCastException: class java.lang.Integer:null incompatible with interface com.sapportals.connector.execution.structures.IAbstractRecord:library:[email protected]ParentClassLoader@693985fc@alive
    at com.sap.tc.wd4vc.core.xgl2_2.infoactors.java.PortalWebserviceInfoactorXGL2_2_V_1_1_0_0.getNestedlogRecord(PortalWebserviceInfoactorXGL2_2_V_1_1_0_0.java:291)
    at com.sap.tc.wd4vc.core.xgl2_2.infoactors.java.PortalWebserviceInfoactorXGL2_2_V_1_1_0_0.fillExecutionResult(PortalWebserviceInfoactorXGL2_2_V_1_1_0_0.java:317)
    after (in time) this exception, the log is full with these entries:
    findByRealKey, cVersDBObject == null for v=sap.com n=test/wkbt_impl t=DC s=NO_SUBSYS
    the whole application-service runs smoothly but something is kicking this exception...
    i checked every line of code for null-values, nothing. i double-checked each VC-connection for bogus mappings, nothing.
    i do not see any light, any help very appreciated!
    thanks,
    kai

    thanks for your answer atul, i already checked all passed values twice and didnt find anything null, all values seem to get properly passed, the applicationservice is properly executed and then the whole webdynpro-thing crashes.
    have you already seen these log-entries? and what about exceptions with the stacktrace having seperate log-entries?
    currently, i am recreating the VC-model from scratch. it seems using datastores as a poor-mans-alternative to JOINs messes things up....
    so long,
    kai

  • MariaDB installed again and can't run mysqld.service

    Hi,
    It started when I dropped root user in mysql. I panicked and removed mariadb by yaourt, and any of files "mysql" name(manually).
    Later I installed mariadb again. While install i get this output:
    Installing MariaDB/MySQL system tables in './data' ...
    141113 22:41:22 [Note] InnoDB: Using mutexes to ref count buffer pool pages
    141113 22:41:22 [Note] InnoDB: The InnoDB memory heap is disabled
    141113 22:41:22 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
    141113 22:41:22 [Note] InnoDB: Memory barrier is not used
    141113 22:41:22 [Note] InnoDB: Compressed tables use zlib 1.2.8
    141113 22:41:22 [Note] InnoDB: Using Linux native AIO
    141113 22:41:22 [Note] InnoDB: Using CPU crc32 instructions
    141113 22:41:22 [Note] InnoDB: Initializing buffer pool, size = 128.0M
    141113 22:41:22 [Note] InnoDB: Completed initialization of buffer pool
    141113 22:41:22 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
    141113 22:41:22 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB
    141113 22:41:22 [Note] InnoDB: Database physically writes the file full: wait...
    141113 22:41:22 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB
    141113 22:41:23 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB
    141113 22:41:24 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
    141113 22:41:24 [Warning] InnoDB: New log files created, LSN=45781
    141113 22:41:24 [Note] InnoDB: Doublewrite buffer not found: creating new
    141113 22:41:24 [Note] InnoDB: Doublewrite buffer created
    141113 22:41:24 [Note] InnoDB: 128 rollback segment(s) are active.
    141113 22:41:24 [Warning] InnoDB: Creating foreign key constraint system tables.
    141113 22:41:24 [Note] InnoDB: Foreign key constraint system tables created
    141113 22:41:24 [Note] InnoDB: Creating tablespace and datafile system tables.
    141113 22:41:24 [Note] InnoDB: Tablespace and datafile system tables created.
    141113 22:41:24 [Note] InnoDB: Waiting for purge to start
    141113 22:41:24 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.20-68.0 started; log sequence number 0
    141113 22:41:24 [Warning] Failed to load slave replication state from table mysql.gtid_slave_pos: 1146: Table 'mysql.gtid_slave_pos' doesn't exist
    141113 22:41:28 [Note] InnoDB: FTS optimize thread exiting.
    141113 22:41:28 [Note] InnoDB: Starting shutdown...
    141113 22:41:30 [Note] InnoDB: Shutdown completed; log sequence number 1616697
    OK
    Filling help tables...
    141113 22:41:31 [Note] InnoDB: Using mutexes to ref count buffer pool pages
    141113 22:41:31 [Note] InnoDB: The InnoDB memory heap is disabled
    141113 22:41:31 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
    141113 22:41:31 [Note] InnoDB: Memory barrier is not used
    141113 22:41:31 [Note] InnoDB: Compressed tables use zlib 1.2.8
    141113 22:41:31 [Note] InnoDB: Using Linux native AIO
    141113 22:41:31 [Note] InnoDB: Using CPU crc32 instructions
    141113 22:41:31 [Note] InnoDB: Initializing buffer pool, size = 128.0M
    141113 22:41:31 [Note] InnoDB: Completed initialization of buffer pool
    141113 22:41:31 [Note] InnoDB: Highest supported file format is Barracuda.
    141113 22:41:31 [Note] InnoDB: 128 rollback segment(s) are active.
    141113 22:41:31 [Note] InnoDB: Waiting for purge to start
    141113 22:41:31 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.20-68.0 started; log sequence number 1616697
    141113 22:41:31 [Note] InnoDB: FTS optimize thread exiting.
    141113 22:41:31 [Note] InnoDB: Starting shutdown...
    141113 22:41:33 [Note] InnoDB: Shutdown completed; log sequence number 1616707
    OK
    To start mysqld at boot time you have to copy
    support-files/mysql.server to the right place for your system
    PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
    To do so, start the server, then issue the following commands:
    '/usr/bin/mysqladmin' -u root password 'new-password'
    '/usr/bin/mysqladmin' -u root -h laptop password 'new-password'
    Alternatively you can run:
    '/usr/bin/mysql_secure_installation'
    which will also give you the option of removing the test
    databases and anonymous user created by default. This is
    strongly recommended for production servers.
    See the MariaDB Knowledgebase at http://mariadb.com/kb or the
    MySQL manual for more instructions.
    You can start the MariaDB daemon with:
    cd '/usr' ; /usr/bin/mysqld_safe --datadir='./data'
    You can test the MariaDB daemon with mysql-test-run.pl
    cd '/usr/mysql-test' ; perl mysql-test-run.pl
    Please report any problems at http://mariadb.org/jira
    The latest information about MariaDB is available at http://mariadb.org/.
    You can find additional information about the MySQL part at:
    http://dev.mysql.com
    Support MariaDB development by buying support/new features from
    SkySQL Ab. You can contact us about this at [email protected].
    Alternatively consider joining our community based development effort:
    http://mariadb.com/kb/en/contributing-to-the-mariadb-project/
    here are 2 warnings, but i ignored them.
    next step(following wiki) is running mysqld.service. I try, and the output is:
    Job for mysqld.service failed. See "systemctl status mysqld.service" and "journalctl -xe" for details.
    next:
    systemctl status mysqld.service
    ● mysqld.service - MariaDB database server
    Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled)
    Active: activating (start-post) since Thu 2014-11-13 22:48:14 CET; 57s ago
    Main PID: 6692 (mysqld); : 6693 (mysqld-post)
    CGroup: /system.slice/mysqld.service
    ├─6692 /usr/bin/mysqld --pid-file=/run/mysqld/mysqld.pid
    └─control
    ├─6693 /bin/sh /usr/bin/mysqld-post
    └─7119 sleep 1
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Completed initialization of buffer pool
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Highest supported file format is Barracuda.
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: 128 rollback segment(s) are active.
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Waiting for purge to start
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.20-68.0 started; log sequence number 1616857
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] Plugin 'FEEDBACK' is disabled.
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] Server socket created on IP: '::'.
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] Event Scheduler: Loaded 0 events
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] /usr/bin/mysqld: ready for connections.
    Nov 13 22:48:14 laptop mysqld[6692]: Version: '10.0.14-MariaDB-log' socket: '/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
    more:
    journalctl -xe
    -- Unit mysqld.service has failed.
    -- The result is failed.
    Nov 13 22:48:13 laptop systemd[1]: Unit mysqld.service entered failed state.
    Nov 13 22:48:13 laptop systemd[1]: mysqld.service failed.
    Nov 13 22:48:13 laptop sudo[6328]: pam_unix(sudo:session): session closed for user root
    Nov 13 22:48:14 laptop systemd[1]: mysqld.service holdoff time over, scheduling restart.
    Nov 13 22:48:14 laptop systemd[1]: Stopping MariaDB database server...
    -- Subject: Unit mysqld.service has begun shutting down
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit mysqld.service has begun shutting down.
    Nov 13 22:48:14 laptop systemd[1]: Starting MariaDB database server...
    -- Subject: Unit mysqld.service has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit mysqld.service has begun starting up.
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Using mutexes to ref count buffer pool pages
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: The InnoDB memory heap is disabled
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Memory barrier is not used
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Compressed tables use zlib 1.2.8
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Using Linux native AIO
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Using CPU crc32 instructions
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Initializing buffer pool, size = 128.0M
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Completed initialization of buffer pool
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Highest supported file format is Barracuda.
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: 128 rollback segment(s) are active.
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Waiting for purge to start
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.20-68.0 started; log sequence number 1616857
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] Plugin 'FEEDBACK' is disabled.
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] Server socket created on IP: '::'.
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] Event Scheduler: Loaded 0 events
    Nov 13 22:48:14 laptop mysqld[6692]: 141113 22:48:14 [Note] /usr/bin/mysqld: ready for connections.
    Nov 13 22:48:14 laptop mysqld[6692]: Version: '10.0.14-MariaDB-log' socket: '/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
    Nov 13 22:48:58 laptop sudo[7027]: rlk120 : TTY=pts/0 ; PWD=/home/rlk120 ; USER=root ; COMMAND=/usr/bin/systemctl status mysqld.service
    Nov 13 22:48:58 laptop sudo[7027]: pam_unix(sudo:session): session opened for user root by rlk120(uid=0)
    Nov 13 22:48:58 laptop sudo[7027]: pam_unix(sudo:session): session closed for user root
    Nov 13 22:49:03 laptop kernel: perf interrupt took too long (2515 > 2495), lowering kernel.perf_event_max_sample_rate to 50100
    Nov 13 22:49:11 laptop sudo[7120]: rlk120 : TTY=pts/0 ; PWD=/home/rlk120 ; USER=root ; COMMAND=/usr/bin/systemctl status mysqld.service
    Nov 13 22:49:11 laptop sudo[7120]: pam_unix(sudo:session): session opened for user root by rlk120(uid=0)
    Nov 13 22:49:11 laptop sudo[7120]: pam_unix(sudo:session): session closed for user root
    Anybody can help? I considered even reinstall Arch because of this, i really need fast fix this database.

    MlchaelLAX wrote:
    If you are unable to upgrade your Microsoft Office products consider installing Snow Leopard (and Rosetta) into Parallels 7 in Lion and run Microsoft Office 2004 concurrently:
    Some people have expressed compatibility problems with data files from 2004 when opened in MS Office 2008 or 2011. 
    For example, I have an important spreadsheet with a chart created in Excel 2004 that when opened in Excel 2011, the chart is completely unusable.  I continue to use this file weekly and I do so with Excel 2004 in my Parallels 7 Snow Leopard Environment with ease.
    Full Snow Leopard installation instructions here:
    http://forums.macrumors.com/showthread.php?t=1365439
    Whooa! Here we go! Never heard of this hack before!! Most simply update their programs.
    Marvellous.
    Thank you Mr. Lax (ative)
    Pete

  • No Results From Subselect

    Hello, brand new user here. I am trying to get ALL the roles/records listed for anyone who has the role of 'XMLP Report Developer' and what I get is an empty results set. Thank you for any help you can provide.
    SELECT A.ROLEUSER, A.ROLENAME
    FROM PSROLEUSER A
    WHERE A.ROLEUSER IN
    (SELECT A.ROLENAME
    FROM PSROLEUSER A
    WHERE A.ROLENAME = 'XMLP Report Developer');

    Well, your IN clause has a mistake - your are comparing A.ROLEUSER to A.ROLENAME, which will probably never be true.
    EDIT: specifically, you could use:
    SELECT A.ROLEUSER, A.ROLENAME
    FROM PSROLEUSER A
    WHERE A.ROLEUSER IN
    (SELECT A.ROLEUSER
    FROM PSROLEUSER A
    WHERE A.ROLENAME = 'XMLP Report Developer');or alternatively, self join:
    SELECT A.ROLEUSER, A.ROLENAME
    FROM PSROLEUSER A
            JOIN PSROLEUSER B
               on a.ROLEUSER = b.ROLEUSER
    WHERE B.ROLENAME = 'XMLP Report Developer';Edited by: rcdev on Oct 27, 2010 9:32 AM

  • After update lxqt wont start [Solved]

    The update went smoothly but after reboot I get this error message:
    lxqt-session: symbol lookup error: lxqt-session:unidentified symbol
    xinit: connection x server lost waiting for x server to shut down
    Last edited by jmak (2014-11-08 16:04:38)

    drcouzelis wrote:
    jmak wrote:I upgraded the lxqt new packages using yaourt. Before everything worked correctly.
    Are you going to give me a list of all of the packages you upgraded? Is it a secret? It's easiest to just post your pacman log.
    When did you upgrade? The "lxqt" packages in the AUR haven't been updated for a few weeks now...
    There were new updated lxqt packages today.
    Here is the pacman.log file
    [2014-09-22 15:06] [PACMAN] Running 'pacman -r /mnt -Sy --cachedir=/mnt/var/cache/pacman/pkg --noconfirm base base-devel'
    [2014-09-22 15:06] [PACMAN] synchronizing package lists
    [2014-09-22 15:12] [PACMAN] installed linux-api-headers (3.16.2-1)
    [2014-09-22 15:12] [PACMAN] installed tzdata (2014g-1)
    [2014-09-22 15:12] [PACMAN] installed iana-etc (2.30-4)
    [2014-09-22 15:12] [PACMAN] installed filesystem (2014.07-1)
    [2014-09-22 15:12] [PACMAN] installed glibc (2.20-2)
    [2014-09-22 15:12] [PACMAN] installed ncurses (5.9-6)
    [2014-09-22 15:12] [PACMAN] installed readline (6.3.006-1)
    [2014-09-22 15:12] [PACMAN] installed bash (4.3.024-1)
    [2014-09-22 15:12] [PACMAN] installed bzip2 (1.0.6-5)
    [2014-09-22 15:12] [PACMAN] installed zlib (1.2.8-3)
    [2014-09-22 15:12] [PACMAN] installed cracklib (2.9.1-1)
    [2014-09-22 15:12] [PACMAN] installed libutil-linux (2.25.1-1)
    [2014-09-22 15:12] [PACMAN] installed e2fsprogs (1.42.11-1)
    [2014-09-22 15:12] [PACMAN] installed gdbm (1.11-1)
    [2014-09-22 15:12] [PACMAN] installed gcc-libs (4.9.1-2)
    [2014-09-22 15:12] [PACMAN] installed db (5.3.28-1)
    [2014-09-22 15:12] [PACMAN] installed perl (5.20.1-1)
    [2014-09-22 15:12] [PACMAN] installed openssl (1.0.1.i-1)
    [2014-09-22 15:12] [PACMAN] installed libsasl (2.1.26-7)
    [2014-09-22 15:12] [PACMAN] installed libldap (2.4.39-1)
    [2014-09-22 15:12] [PACMAN] installed keyutils (1.5.9-1)
    [2014-09-22 15:12] [PACMAN] installed krb5 (1.12.2-1)
    [2014-09-22 15:12] [PACMAN] installed libtirpc (0.2.5-1)
    [2014-09-22 15:12] [PACMAN] installed pambase (20130928-1)
    [2014-09-22 15:12] [PACMAN] installed pam (1.1.8-5)
    [2014-09-22 15:12] [PACMAN] installed attr (2.4.47-1)
    [2014-09-22 15:12] [PACMAN] installed acl (2.2.52-2)
    [2014-09-22 15:12] [PACMAN] installed gmp (6.0.0-1)
    [2014-09-22 15:12] [PACMAN] installed libcap (2.24-1)
    [2014-09-22 15:12] [PACMAN] installed coreutils (8.23-1)
    [2014-09-22 15:12] [PACMAN] installed libdbus (1.8.8-1)
    [2014-09-22 15:12] [PACMAN] installed expat (2.1.0-3)
    [2014-09-22 15:12] [PACMAN] installed dbus (1.8.8-1)
    [2014-09-22 15:12] [PACMAN] installed pcre (8.35-1)
    [2014-09-22 15:12] [PACMAN] installed libffi (3.1-2)
    [2014-09-22 15:12] [PACMAN] installed glib2 (2.40.0-2)
    [2014-09-22 15:12] [PACMAN] installed kbd (2.0.2-1)
    [2014-09-22 15:12] [PACMAN] installed kmod (18-1)
    [2014-09-22 15:12] [PACMAN] installed hwids (20140602-1)
    [2014-09-22 15:12] [PACMAN] installed libgpg-error (1.14-1)
    [2014-09-22 15:12] [PACMAN] installed libgcrypt (1.6.2-1)
    [2014-09-22 15:12] [PACMAN] installed xz (5.0.6-1)
    [2014-09-22 15:12] [PACMAN] installed libsystemd (216-3)
    [2014-09-22 15:12] [PACMAN] installed libseccomp (2.1.1-1)
    [2014-09-22 15:12] [PACMAN] installed shadow (4.2.1-1)
    [2014-09-22 15:12] [PACMAN] installed util-linux (2.25.1-1)
    [2014-09-22 15:12] [ALPM-SCRIPTLET] Created symlink from /etc/systemd/system/getty.target.wants/[email protected] to /usr/lib/systemd/system/[email protected].
    [2014-09-22 15:12] [ALPM-SCRIPTLET] :: Append 'init=/usr/lib/systemd/systemd' to your kernel command line in your
    [2014-09-22 15:12] [ALPM-SCRIPTLET] bootloader to replace sysvinit with systemd, or install systemd-sysvcompat
    [2014-09-22 15:12] [PACMAN] installed systemd (216-3)
    [2014-09-22 15:12] [PACMAN] installed device-mapper (2.02.111-1)
    [2014-09-22 15:12] [PACMAN] installed popt (1.16-7)
    [2014-09-22 15:12] [PACMAN] installed cryptsetup (1.6.6-1)
    [2014-09-22 15:12] [PACMAN] installed dhcpcd (6.4.3-1)
    [2014-09-22 15:12] [PACMAN] installed diffutils (3.3-2)
    [2014-09-22 15:12] [PACMAN] installed file (5.19-1)
    [2014-09-22 15:12] [PACMAN] installed findutils (4.4.2-6)
    [2014-09-22 15:12] [PACMAN] installed mpfr (3.1.2.p10-1)
    [2014-09-22 15:12] [PACMAN] installed gawk (4.1.1-1)
    [2014-09-22 15:12] [PACMAN] installed libunistring (0.9.4-1)
    [2014-09-22 15:12] [PACMAN] installed gettext (0.19.2-2)
    [2014-09-22 15:12] [PACMAN] installed grep (2.20-1)
    [2014-09-22 15:12] [PACMAN] installed less (458-1)
    [2014-09-22 15:12] [PACMAN] installed gzip (1.6-1)
    [2014-09-22 15:12] [PACMAN] installed inetutils (1.9.2-1)
    [2014-09-22 15:12] [PACMAN] installed iptables (1.4.21-1)
    [2014-09-22 15:12] [PACMAN] installed iproute2 (3.15.0-1)
    [2014-09-22 15:12] [PACMAN] installed sysfsutils (2.1.0-9)
    [2014-09-22 15:12] [PACMAN] installed iputils (20121221-3)
    [2014-09-22 15:12] [PACMAN] installed jfsutils (1.1.15-4)
    [2014-09-22 15:12] [PACMAN] installed licenses (20140629-1)
    [2014-09-22 15:12] [PACMAN] installed linux-firmware (20140828.13eb208-1)
    [2014-09-22 15:12] [PACMAN] installed mkinitcpio-busybox (1.21.1-2)
    [2014-09-22 15:12] [PACMAN] installed lzo (2.08-3)
    [2014-09-22 15:12] [PACMAN] installed libarchive (3.1.2-8)
    [2014-09-22 15:12] [PACMAN] installed mkinitcpio (18-2)
    [2014-09-22 15:12] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-09-22 15:12] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> Starting build: 3.16.3-1-ARCH
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux.img
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> Starting build: 3.16.3-1-ARCH
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-fallback.img
    [2014-09-22 15:12] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-09-22 15:12] [PACMAN] installed linux (3.16.3-1)
    [2014-09-22 15:12] [PACMAN] installed logrotate (3.8.7-3)
    [2014-09-22 15:12] [PACMAN] installed libaio (0.3.109-7)
    [2014-09-22 15:12] [PACMAN] installed thin-provisioning-tools (0.4.1-1)
    [2014-09-22 15:12] [PACMAN] installed lvm2 (2.02.111-1)
    [2014-09-22 15:12] [PACMAN] installed groff (1.22.2-6)
    [2014-09-22 15:12] [PACMAN] installed libpipeline (1.3.0-1)
    [2014-09-22 15:12] [ALPM-SCRIPTLET] it's recommended to create an initial
    [2014-09-22 15:12] [ALPM-SCRIPTLET] database running as root:
    [2014-09-22 15:12] [ALPM-SCRIPTLET] "/usr/bin/mandb --quiet"
    [2014-09-22 15:12] [PACMAN] installed man-db (2.6.7.1-1)
    [2014-09-22 15:12] [PACMAN] installed man-pages (3.72-1)
    [2014-09-22 15:12] [PACMAN] installed mdadm (3.3.1-2)
    [2014-09-22 15:12] [PACMAN] installed nano (2.2.6-3)
    [2014-09-22 15:12] [PACMAN] installed openresolv (3.5.7-1)
    [2014-09-22 15:12] [PACMAN] installed netctl (1.9-1)
    [2014-09-22 15:12] [PACMAN] installed run-parts (4.4-1)
    [2014-09-22 15:12] [PACMAN] installed sed (4.2.2-3)
    [2014-09-22 15:12] [PACMAN] installed ca-certificates (20140325-1)
    [2014-09-22 15:12] [PACMAN] installed libssh2 (1.4.3-2)
    [2014-09-22 15:12] [PACMAN] installed curl (7.38.0-1)
    [2014-09-22 15:12] [PACMAN] installed pth (2.0.7-5)
    [2014-09-22 15:12] [PACMAN] installed libksba (1.3.0-1)
    [2014-09-22 15:12] [PACMAN] installed libassuan (2.1.1-1)
    [2014-09-22 15:12] [PACMAN] installed pinentry (0.8.3-1)
    [2014-09-22 15:12] [PACMAN] installed dirmngr (1.1.1-3)
    [2014-09-22 15:12] [PACMAN] installed gnupg (2.0.26-1)
    [2014-09-22 15:12] [PACMAN] installed gpgme (1.5.1-1)
    [2014-09-22 15:12] [PACMAN] installed pacman-mirrorlist (20140901-1)
    [2014-09-22 15:12] [PACMAN] installed archlinux-keyring (20140908-1)
    [2014-09-22 15:12] [PACMAN] installed pacman (4.1.2-6)
    [2014-09-22 15:12] [PACMAN] installed pciutils (3.2.1-1)
    [2014-09-22 15:12] [PACMAN] installed pcmciautils (018-7)
    [2014-09-22 15:12] [PACMAN] installed procps-ng (3.3.9-3)
    [2014-09-22 15:12] [PACMAN] installed psmisc (22.21-2)
    [2014-09-22 15:12] [PACMAN] installed reiserfsprogs (3.6.24-1)
    [2014-09-22 15:12] [PACMAN] installed s-nail (14.7.6-1)
    [2014-09-22 15:12] [PACMAN] installed systemd-sysvcompat (216-3)
    [2014-09-22 15:12] [PACMAN] installed tar (1.28-1)
    [2014-09-22 15:12] [PACMAN] installed texinfo (5.2-2)
    [2014-09-22 15:12] [PACMAN] installed libusb (1.0.19-1)
    [2014-09-22 15:12] [PACMAN] installed usbutils (007-1)
    [2014-09-22 15:12] [PACMAN] installed vi (1:050325-4)
    [2014-09-22 15:12] [PACMAN] installed which (2.20-7)
    [2014-09-22 15:12] [PACMAN] installed xfsprogs (3.2.1-1)
    [2014-09-22 15:12] [PACMAN] installed m4 (1.4.17-1)
    [2014-09-22 15:12] [PACMAN] installed autoconf (2.69-2)
    [2014-09-22 15:12] [PACMAN] installed automake (1.14.1-1)
    [2014-09-22 15:12] [PACMAN] installed binutils (2.24-7)
    [2014-09-22 15:12] [PACMAN] installed bison (3.0.2-1)
    [2014-09-22 15:12] [PACMAN] installed fakeroot (1.20.1-1)
    [2014-09-22 15:12] [PACMAN] installed flex (2.5.39-1)
    [2014-09-22 15:12] [PACMAN] installed libmpc (1.0.2-2)
    [2014-09-22 15:12] [PACMAN] installed isl (0.13-1)
    [2014-09-22 15:12] [PACMAN] installed cloog (0.18.1-3)
    [2014-09-22 15:12] [PACMAN] installed gcc (4.9.1-2)
    [2014-09-22 15:12] [PACMAN] installed libltdl (2.4.2-14)
    [2014-09-22 15:12] [PACMAN] installed libtool (2.4.2-14)
    [2014-09-22 15:12] [PACMAN] installed libatomic_ops (7.4.2-1)
    [2014-09-22 15:12] [PACMAN] installed gc (7.4.2-2)
    [2014-09-22 15:12] [PACMAN] installed guile (2.0.11-2)
    [2014-09-22 15:12] [PACMAN] installed make (4.0-2)
    [2014-09-22 15:12] [PACMAN] installed patch (2.7.1-3)
    [2014-09-22 15:12] [PACMAN] installed pkg-config (0.28-2)
    [2014-09-22 15:12] [PACMAN] installed sudo (1.8.10.p3-1)
    [2014-09-22 15:13] [PACMAN] Running 'pacman -r /mnt -Sy --cachedir=/mnt/var/cache/pacman/pkg --noconfirm grub-bios'
    [2014-09-22 15:13] [PACMAN] synchronizing package lists
    [2014-09-22 15:13] [ALPM-SCRIPTLET] Generating grub.cfg.example config file...
    [2014-09-22 15:13] [ALPM-SCRIPTLET] This may fail on some machines running a custom kernel.
    [2014-09-22 15:13] [ALPM-SCRIPTLET] done.
    [2014-09-22 15:13] [PACMAN] installed grub (1:2.02.beta2-4)
    [2014-09-22 15:25] [PACMAN] Running 'pacman -S os-prober'
    [2014-09-22 15:25] [PACMAN] installed os-prober (1.58-1)
    [2014-09-22 15:36] [PACMAN] Running 'pacman -S sudo'
    [2014-09-22 15:36] [PACMAN] reinstalled sudo (1.8.10.p3-1)
    [2014-09-22 15:38] [PACMAN] Running 'pacman -S xorg-server xorg-xinit xorg-server-utils'
    [2014-09-22 15:38] [PACMAN] installed libepoxy (1.2-2)
    [2014-09-22 15:38] [PACMAN] installed xproto (7.0.26-1)
    [2014-09-22 15:38] [PACMAN] installed libxdmcp (1.1.1-2)
    [2014-09-22 15:38] [PACMAN] installed libpng (1.6.13-1)
    [2014-09-22 15:38] [PACMAN] installed graphite (1:1.2.4-1)
    [2014-09-22 15:38] [PACMAN] installed harfbuzz (0.9.35-1)
    [2014-09-22 15:38] [PACMAN] installed freetype2 (2.5.3-2)
    [2014-09-22 15:38] [PACMAN] installed libfontenc (1.1.2-1)
    [2014-09-22 15:38] [PACMAN] installed fontsproto (2.1.3-1)
    [2014-09-22 15:38] [PACMAN] installed libxfont (1.5.0-1)
    [2014-09-22 15:38] [PACMAN] installed libpciaccess (0.13.2-2)
    [2014-09-22 15:38] [PACMAN] installed libdrm (2.4.56-1)
    [2014-09-22 15:38] [PACMAN] installed pixman (0.32.6-1)
    [2014-09-22 15:38] [PACMAN] installed libxau (1.0.8-2)
    [2014-09-22 15:38] [PACMAN] installed xkeyboard-config (2.12-1)
    [2014-09-22 15:38] [PACMAN] installed xcb-proto (1.11-1)
    [2014-09-22 15:38] [PACMAN] installed libxcb (1.11-1)
    [2014-09-22 15:38] [PACMAN] installed kbproto (1.0.6-2)
    [2014-09-22 15:38] [PACMAN] installed libx11 (1.6.2-2)
    [2014-09-22 15:38] [PACMAN] installed libxkbfile (1.0.8-2)
    [2014-09-22 15:38] [PACMAN] installed xorg-xkbcomp (1.2.4-2)
    [2014-09-22 15:38] [PACMAN] installed xorg-setxkbmap (1.3.0-2)
    [2014-09-22 15:38] [PACMAN] installed xorg-fonts-encodings (1.0.4-4)
    [2014-09-22 15:38] [PACMAN] installed xorg-fonts-alias (1.0.3-1)
    [2014-09-22 15:38] [PACMAN] installed xorg-bdftopcf (1.0.4-2)
    [2014-09-22 15:38] [PACMAN] installed xorg-mkfontscale (1.1.1-1)
    [2014-09-22 15:38] [PACMAN] installed xorg-mkfontdir (1.0.7-2)
    [2014-09-22 15:38] [PACMAN] installed xorg-font-util (1.3.0-2)
    [2014-09-22 15:38] [PACMAN] installed xorg-font-utils (7.6-4)
    [2014-09-22 15:38] [ALPM-SCRIPTLET]
    [2014-09-22 15:38] [ALPM-SCRIPTLET] Fontconfig configuration is done via /etc/fonts/conf.avail and conf.d.
    [2014-09-22 15:38] [ALPM-SCRIPTLET] Read /etc/fonts/conf.d/README for more information.
    [2014-09-22 15:38] [ALPM-SCRIPTLET]
    [2014-09-22 15:38] [ALPM-SCRIPTLET] Configuration via /etc/fonts/local.conf is still possible,
    [2014-09-22 15:38] [ALPM-SCRIPTLET] but is no longer recommended for options available in conf.avail.
    [2014-09-22 15:38] [ALPM-SCRIPTLET]
    [2014-09-22 15:38] [ALPM-SCRIPTLET] Main systemwide configuration should be done by symlinks
    [2014-09-22 15:38] [ALPM-SCRIPTLET] (especially for autohinting, sub-pixel and lcdfilter):
    [2014-09-22 15:38] [ALPM-SCRIPTLET]
    [2014-09-22 15:38] [ALPM-SCRIPTLET] cd /etc/fonts/conf.d
    [2014-09-22 15:38] [ALPM-SCRIPTLET] ln -s ../conf.avail/XX-foo.conf
    [2014-09-22 15:38] [ALPM-SCRIPTLET]
    [2014-09-22 15:38] [ALPM-SCRIPTLET] Check also https://wiki.archlinux.org/index.php/Font_Configuration
    [2014-09-22 15:38] [ALPM-SCRIPTLET] and https://wiki.archlinux.org/index.php/Fonts.
    [2014-09-22 15:38] [ALPM-SCRIPTLET]
    [2014-09-22 15:39] [ALPM-SCRIPTLET] updating font cache... done.
    [2014-09-22 15:39] [PACMAN] installed fontconfig (2.11.1-1)
    [2014-09-22 15:39] [ALPM-SCRIPTLET] Updating font cache... done.
    [2014-09-22 15:39] [PACMAN] installed xorg-fonts-misc (1.0.1-3)
    [2014-09-22 15:39] [PACMAN] installed xorg-server-common (1.16.0-6)
    [2014-09-22 15:39] [PACMAN] installed mtdev (1.1.5-1)
    [2014-09-22 15:39] [PACMAN] installed libevdev (1.3-1)
    [2014-09-22 15:39] [PACMAN] installed xf86-input-evdev (2.9.0-2)
    [2014-09-22 15:39] [PACMAN] installed libxshmfence (1.1-1)
    [2014-09-22 15:39] [ALPM-SCRIPTLET] >>> xorg-server has now the ability to run without root rights with
    [2014-09-22 15:39] [ALPM-SCRIPTLET] the help of systemd-logind. xserver will fail to run if not launched
    [2014-09-22 15:39] [ALPM-SCRIPTLET] from the same virtual terminal as was used to log in.
    [2014-09-22 15:39] [ALPM-SCRIPTLET] Without root rights, log files will be in ~/.local/share/xorg/ directory.
    [2014-09-22 15:39] [ALPM-SCRIPTLET]
    [2014-09-22 15:39] [ALPM-SCRIPTLET] Old behavior can be restored through Xorg.wrap config file.
    [2014-09-22 15:39] [ALPM-SCRIPTLET] See Xorg.wrap man page (man xorg.wrap).
    [2014-09-22 15:39] [PACMAN] installed xorg-server (1.16.0-6)
    [2014-09-22 15:39] [PACMAN] installed xextproto (7.3.0-1)
    [2014-09-22 15:39] [PACMAN] installed libxext (1.3.3-1)
    [2014-09-22 15:39] [PACMAN] installed libice (1.0.9-1)
    [2014-09-22 15:39] [PACMAN] installed libsm (1.2.2-2)
    [2014-09-22 15:39] [PACMAN] installed libxt (1.1.4-1)
    [2014-09-22 15:39] [PACMAN] installed libxmu (1.1.2-1)
    [2014-09-22 15:39] [PACMAN] installed xorg-xauth (1.0.9-1)
    [2014-09-22 15:39] [PACMAN] installed xorg-xinit (1.3.4-1)
    [2014-09-22 15:39] [PACMAN] installed xorg-iceauth (1.0.6-1)
    [2014-09-22 15:39] [PACMAN] installed xorg-sessreg (1.0.8-2)
    [2014-09-22 15:39] [PACMAN] installed xorg-xcmsdb (1.0.4-2)
    [2014-09-22 15:39] [PACMAN] installed xcb-util (0.3.9-2)
    [2014-09-22 15:39] [PACMAN] installed xorg-xbacklight (1.2.1-1)
    [2014-09-22 15:39] [PACMAN] installed xf86vidmodeproto (2.3.1-3)
    [2014-09-22 15:39] [PACMAN] installed libxxf86vm (1.1.3-1)
    [2014-09-22 15:39] [PACMAN] installed xorg-xgamma (1.0.5-2)
    [2014-09-22 15:39] [PACMAN] installed xorg-xhost (1.0.6-1)
    [2014-09-22 15:39] [PACMAN] installed inputproto (2.3.1-1)
    [2014-09-22 15:39] [PACMAN] installed libxi (1.7.4-1)
    [2014-09-22 15:39] [PACMAN] installed renderproto (0.11.1-3)
    [2014-09-22 15:39] [PACMAN] installed libxrender (0.9.8-1)
    [2014-09-22 15:39] [PACMAN] installed randrproto (1.4.0-2)
    [2014-09-22 15:39] [PACMAN] installed libxrandr (1.4.2-2)
    [2014-09-22 15:39] [PACMAN] installed xorg-xrandr (1.4.3-1)
    [2014-09-22 15:39] [PACMAN] installed xineramaproto (1.2.1-3)
    [2014-09-22 15:39] [PACMAN] installed libxinerama (1.1.3-2)
    [2014-09-22 15:39] [PACMAN] installed xorg-xinput (1.6.1-1)
    [2014-09-22 15:39] [PACMAN] installed xorg-xmodmap (1.0.8-1)
    [2014-09-22 15:39] [PACMAN] installed mcpp (2.7.2-5)
    [2014-09-22 15:39] [PACMAN] installed xorg-xrdb (1.1.0-1)
    [2014-09-22 15:39] [PACMAN] installed xorg-xrefresh (1.0.5-1)
    [2014-09-22 15:39] [PACMAN] installed xorg-xset (1.2.3-1)
    [2014-09-22 15:39] [PACMAN] installed fixesproto (5.0-3)
    [2014-09-22 15:39] [PACMAN] installed libxfixes (5.0.1-1)
    [2014-09-22 15:39] [PACMAN] installed libxcursor (1.1.14-2)
    [2014-09-22 15:39] [PACMAN] installed xorg-xsetroot (1.1.1-2)
    [2014-09-22 15:39] [PACMAN] installed xorg-server-utils (7.6-4)
    [2014-09-22 15:39] [PACMAN] Running 'pacman -S mesa'
    [2014-09-22 15:39] [PACMAN] installed wayland (1.5.0-1)
    [2014-09-22 15:39] [PACMAN] installed damageproto (1.2.1-3)
    [2014-09-22 15:39] [PACMAN] installed libxdamage (1.1.4-2)
    [2014-09-22 15:39] [PACMAN] installed elfutils (0.159-1)
    [2014-09-22 15:39] [PACMAN] installed llvm-libs (3.5.0-2.1)
    [2014-09-22 15:39] [PACMAN] installed mesa (10.2.8-1)
    [2014-09-22 15:39] [PACMAN] Running 'pacman -S nvidia'
    [2014-09-22 15:40] [PACMAN] installed nvidia-utils (340.32-1)
    [2014-09-22 15:40] [PACMAN] installed nvidia-libgl (340.32-1)
    [2014-09-22 15:40] [ALPM-SCRIPTLET] depmod: ERROR: failed to load symbols from /lib/modules/3.16.3-1-ARCH/kernel/drivers/net/ethernet/sfc/sfc.ko.gz: Invalid argument
    [2014-09-22 15:40] [ALPM-SCRIPTLET] depmod: ERROR: failed to load symbols from /lib/modules/3.16.3-1-ARCH/kernel/drivers/staging/lustre/lustre/llite/lustre.ko.gz: Invalid argument
    [2014-09-22 15:40] [ALPM-SCRIPTLET] depmod: ERROR: failed to load symbols from /lib/modules/3.16.3-1-ARCH/kernel/net/ceph/libceph.ko.gz: Invalid argument
    [2014-09-22 15:40] [ALPM-SCRIPTLET] In order to use nvidia module, reboot the system.
    [2014-09-22 15:40] [PACMAN] installed nvidia (340.32-2)
    [2014-09-22 15:41] [PACMAN] Running 'pacman -S xorg-twm xorg-xclock xterm'
    [2014-09-22 15:41] [PACMAN] installed xorg-twm (1.0.8-3)
    [2014-09-22 15:41] [PACMAN] installed libxpm (3.5.11-1)
    [2014-09-22 15:41] [PACMAN] installed libxaw (1.0.12-1)
    [2014-09-22 15:41] [PACMAN] installed libxft (2.3.2-1)
    [2014-09-22 15:41] [PACMAN] installed xorg-xclock (1.0.7-1)
    [2014-09-22 15:41] [PACMAN] installed xorg-luit (1.1.1-2)
    [2014-09-22 15:41] [PACMAN] installed xbitmaps (1.1.1-3)
    [2014-09-22 15:41] [PACMAN] installed libutempter (1.1.6-2)
    [2014-09-22 15:41] [PACMAN] installed xterm (311-1)
    [2014-09-22 15:42] [PACMAN] Running 'pacman -S ttf-dejavu'
    [2014-09-22 15:42] [PACMAN] installed ttf-dejavu (2.34-1)
    [2014-09-22 15:44] [PACMAN] Running 'pacman -S alsa-utils alsa-oss'
    [2014-09-22 15:44] [PACMAN] installed alsa-lib (1.0.28-1)
    [2014-09-22 15:44] [PACMAN] installed dialog (1:1.2_20140911-1)
    [2014-09-22 15:44] [PACMAN] installed libogg (1.3.1-2)
    [2014-09-22 15:44] [PACMAN] installed flac (1.3.0-3)
    [2014-09-22 15:44] [PACMAN] installed libvorbis (1.3.4-1)
    [2014-09-22 15:44] [PACMAN] installed libsndfile (1.0.25-3)
    [2014-09-22 15:44] [PACMAN] installed libsamplerate (0.1.8-3)
    [2014-09-22 15:44] [PACMAN] installed alsa-utils (1.0.28-1)
    [2014-09-22 15:44] [PACMAN] installed alsa-oss (1.0.28-1)
    [2014-09-22 15:45] [PACMAN] Running 'pacman -S lxde'
    [2014-09-22 15:46] [PACMAN] installed atk (2.12.0-1)
    [2014-09-22 15:46] [PACMAN] installed libdatrie (0.2.6-1)
    [2014-09-22 15:46] [PACMAN] installed libthai (0.1.19-1)
    [2014-09-22 15:46] [PACMAN] installed cairo (1.12.16-3)
    [2014-09-22 15:46] [PACMAN] installed pango (1.36.6-1)
    [2014-09-22 15:46] [PACMAN] installed compositeproto (0.4.2-3)
    [2014-09-22 15:46] [PACMAN] installed libxcomposite (0.4.4-2)
    [2014-09-22 15:46] [PACMAN] installed libxml2 (2.9.1-5)
    [2014-09-22 15:46] [PACMAN] installed shared-mime-info (1.3-1)
    [2014-09-22 15:46] [PACMAN] installed libjpeg-turbo (1.3.1-1)
    [2014-09-22 15:46] [PACMAN] installed libtiff (4.0.3-4)
    [2014-09-22 15:46] [PACMAN] installed libdaemon (0.14-3)
    [2014-09-22 15:46] [PACMAN] installed avahi (0.6.31-13)
    [2014-09-22 15:46] [PACMAN] installed libcups (1.7.5-1)
    [2014-09-22 15:46] [PACMAN] installed jasper (1.900.1-10)
    [2014-09-22 15:46] [PACMAN] installed gdk-pixbuf2 (2.30.8-1)
    [2014-09-22 15:46] [PACMAN] installed hicolor-icon-theme (0.13-1)
    [2014-09-22 15:46] [PACMAN] installed gtk-update-icon-cache (2.24.24-1)
    [2014-09-22 15:46] [PACMAN] installed gtk2 (2.24.24-1)
    [2014-09-22 15:46] [PACMAN] installed desktop-file-utils (0.22-1)
    [2014-09-22 15:46] [PACMAN] installed xdg-utils (1.1.0.git20140630-1)
    [2014-09-22 15:46] [PACMAN] installed gpicview (0.2.4-1)
    [2014-09-22 15:46] [PACMAN] installed dbus-glib (0.102-1)
    [2014-09-22 15:46] [PACMAN] installed lxappearance (0.5.6-1)
    [2014-09-22 15:46] [PACMAN] installed startup-notification (0.12-4)
    [2014-09-22 15:46] [PACMAN] installed giflib (5.1.0-1)
    [2014-09-22 15:46] [PACMAN] installed libid3tag (0.15.1b-8)
    [2014-09-22 15:46] [PACMAN] installed imlib2 (1.4.6-3)
    [2014-09-22 15:46] [PACMAN] installed libcroco (0.6.8-2)
    [2014-09-22 15:46] [PACMAN] installed librsvg (1:2.40.2-1)
    [2014-09-22 15:46] [PACMAN] installed openbox (3.5.2-7)
    [2014-09-22 15:46] [PACMAN] installed lxappearance-obconf (0.2.1-2)
    [2014-09-22 15:46] [PACMAN] installed gtk-engines (2.21.0-2)
    [2014-09-22 15:46] [PACMAN] installed lxde-icon-theme (0.5.0-2)
    [2014-09-22 15:46] [PACMAN] installed lxsession (1:0.4.6.1-2)
    [2014-09-22 15:46] [PACMAN] installed lxde-common (0.5.5-3)
    [2014-09-22 15:46] [PACMAN] installed lxdm (0.5.0-1)
    [2014-09-22 15:46] [PACMAN] installed lxinput (0.3.3-1)
    [2014-09-22 15:46] [PACMAN] installed lxmenu-data (0.1.4-1)
    [2014-09-22 15:46] [PACMAN] installed menu-cache (0.6.0-1)
    [2014-09-22 15:46] [PACMAN] installed lxlauncher (0.2.2-5)
    [2014-09-22 15:46] [PACMAN] installed libnotify (0.7.6-1)
    [2014-09-22 15:46] [PACMAN] installed sqlite (3.8.6-1)
    [2014-09-22 15:46] [PACMAN] installed libmad (0.15.1b-7)
    [2014-09-22 15:46] [ALPM-SCRIPTLET] -- DO NOT FORGET edit /etc/conf.d/xmms2.conf!
    [2014-09-22 15:46] [PACMAN] installed xmms2 (0.8DrO_o-29)
    [2014-09-22 15:46] [PACMAN] installed lxmusic (0.4.5-2)
    [2014-09-22 15:46] [PACMAN] installed libxres (1.0.7-1)
    [2014-09-22 15:46] [PACMAN] installed libwnck (2.30.7-2)
    [2014-09-22 15:46] [PACMAN] installed libexif (0.6.21-2)
    [2014-09-22 15:46] [PACMAN] installed libfm (1.2.2.1-1)
    [2014-09-22 15:46] [PACMAN] installed lxpanel (0.7.0-2)
    [2014-09-22 15:46] [PACMAN] installed nspr (4.10.6-1)
    [2014-09-22 15:46] [PACMAN] installed js17 (17.0.0-1)
    [2014-09-22 15:46] [PACMAN] installed polkit (0.112-2)
    [2014-09-22 15:46] [PACMAN] installed lxpolkit (0.1.0-3)
    [2014-09-22 15:46] [PACMAN] installed lxrandr (0.3.0-1)
    [2014-09-22 15:46] [PACMAN] installed lxtask (0.1.4-5)
    [2014-09-22 15:46] [PACMAN] installed vte-common (0.36.3-1)
    [2014-09-22 15:46] [PACMAN] installed vte (0.28.2-4)
    [2014-09-22 15:46] [PACMAN] installed lxterminal (0.1.11-3)
    [2014-09-22 15:46] [PACMAN] installed pcmanfm (1.2.2-1)
    [2014-09-22 15:47] [PACMAN] Running 'pacman -S udisks gvfs'
    [2014-09-22 15:49] [PACMAN] Running 'pacman -S udisks gvfs'
    [2014-09-22 15:49] [PACMAN] installed sg3_utils (1.39-1)
    [2014-09-22 15:49] [PACMAN] installed parted (3.2-1)
    [2014-09-22 15:49] [PACMAN] installed libatasmart (0.19-3)
    [2014-09-22 15:49] [PACMAN] installed lsof (4.87-2)
    [2014-09-22 15:49] [PACMAN] installed udisks (1.0.5-1)
    [2014-09-22 15:49] [PACMAN] installed dconf (0.20.0-1)
    [2014-09-22 15:49] [PACMAN] installed fuse (2.9.3-2)
    [2014-09-22 15:49] [PACMAN] installed libcddb (1.3.2-4)
    [2014-09-22 15:49] [PACMAN] installed libcdio (0.92-1)
    [2014-09-22 15:49] [PACMAN] installed libcdio-paranoia (10.2+0.90+1-2)
    [2014-09-22 15:49] [PACMAN] installed libproxy (0.4.11-4)
    [2014-09-22 15:49] [PACMAN] installed libtasn1 (4.2-1)
    [2014-09-22 15:49] [PACMAN] installed nettle (2.7.1-1)
    [2014-09-22 15:49] [PACMAN] installed p11-kit (0.20.2-1)
    [2014-09-22 15:49] [PACMAN] installed gnutls (3.3.8-1)
    [2014-09-22 15:49] [PACMAN] installed gsettings-desktop-schemas (3.12.2-1)
    [2014-09-22 15:49] [PACMAN] installed glib-networking (2.40.1-1)
    [2014-09-22 15:49] [PACMAN] installed libsoup (2.46.0-1)
    [2014-09-22 15:49] [PACMAN] installed udisks2 (2.1.3-1)
    [2014-09-22 15:49] [PACMAN] installed libsecret (0.18-1)
    [2014-09-22 15:49] [PACMAN] installed libbluray (0.6.2-1)
    [2014-09-22 15:49] [PACMAN] installed gvfs (1.20.2-1)
    [2014-09-22 15:51] [PACMAN] Running 'pacman -S firefox'
    [2014-09-22 15:52] [ALPM-SCRIPTLET] relogin or source /etc/profile.d/mozilla-common.sh
    [2014-09-22 15:52] [PACMAN] installed mozilla-common (1.4-4)
    [2014-09-22 15:52] [PACMAN] installed mime-types (9-1)
    [2014-09-22 15:52] [PACMAN] installed libvpx (1.3.0-1)
    [2014-09-22 15:52] [PACMAN] installed icu (53.1-1)
    [2014-09-22 15:52] [PACMAN] installed libevent (2.0.21-3)
    [2014-09-22 15:52] [PACMAN] installed nss (3.16.3-1)
    [2014-09-22 15:52] [PACMAN] installed hunspell (1.3.3-1)
    [2014-09-22 15:52] [PACMAN] installed firefox (32.0.1-1)
    [2014-09-22 15:53] [PACMAN] Running 'pacman -S gst-plugins-good gst-libav'
    [2014-09-22 15:53] [PACMAN] installed libasyncns (0.8-5)
    [2014-09-22 15:53] [PACMAN] installed recordproto (1.14.2-2)
    [2014-09-22 15:53] [PACMAN] installed libxtst (1.2.2-1)
    [2014-09-22 15:53] [PACMAN] installed json-c (0.12-2)
    [2014-09-22 15:53] [PACMAN] installed libpulse (5.0-1)
    [2014-09-22 15:53] [PACMAN] installed zita-alsa-pcmi (0.2.0-1)
    [2014-09-22 15:53] [PACMAN] installed zita-resampler (1.3.0-2)
    [2014-09-22 15:53] [PACMAN] installed jack (0.124.1-3)
    [2014-09-22 15:53] [PACMAN] installed gstreamer (1.4.2-1)
    [2014-09-22 15:53] [PACMAN] installed orc (0.4.19-1)
    [2014-09-22 15:53] [PACMAN] installed videoproto (2.3.2-1)
    [2014-09-22 15:53] [PACMAN] installed libxv (1.0.10-1)
    [2014-09-22 15:53] [PACMAN] installed gst-plugins-base-libs (1.4.2-1)
    [2014-09-22 15:53] [PACMAN] installed wavpack (4.70.0-2)
    [2014-09-22 15:53] [PACMAN] installed gpm (1.20.7-4)
    [2014-09-22 15:53] [PACMAN] installed aalib (1.4rc5-10)
    [2014-09-22 15:53] [PACMAN] installed taglib (1.9.1-1)
    [2014-09-22 15:53] [PACMAN] installed libdv (1.0.0-6)
    [2014-09-22 15:53] [PACMAN] installed libtheora (1.1.1-3)
    [2014-09-22 15:53] [PACMAN] installed speex (1.2rc1-4)
    [2014-09-22 15:53] [PACMAN] installed libshout (1:2.3.1-2)
    [2014-09-22 15:53] [PACMAN] installed libcaca (0.99.beta18-2)
    [2014-09-22 15:53] [PACMAN] installed libraw1394 (2.1.0-2)
    [2014-09-22 15:53] [PACMAN] installed libavc1394 (0.5.4-2)
    [2014-09-22 15:53] [PACMAN] installed libiec61883 (1.2.0-4)
    [2014-09-22 15:53] [PACMAN] installed v4l-utils (1.2.1-1)
    [2014-09-22 15:53] [PACMAN] installed gst-plugins-good (1.4.2-1)
    [2014-09-22 15:53] [PACMAN] installed gst-libav (1.4.2-1)
    [2014-09-22 16:20] [PACMAN] Running 'pacman -S leafpad'
    [2014-09-22 16:20] [PACMAN] installed leafpad (0.8.18.1-4)
    [2014-09-22 17:01] [PACMAN] Running 'pacman -S acpid'
    [2014-09-22 17:39] [PACMAN] Running 'pacman -Syu'
    [2014-09-22 17:39] [PACMAN] synchronizing package lists
    [2014-09-22 17:39] [PACMAN] starting full system upgrade
    [2014-09-22 17:39] [PACMAN] Running 'pacman -S yaourt'
    [2014-09-22 17:39] [PACMAN] installed yajl (2.1.0-1)
    [2014-09-22 17:39] [PACMAN] installed package-query (1.4-1)
    [2014-09-22 17:39] [PACMAN] installed yaourt (1.5-1)
    [2014-09-22 17:40] [PACMAN] Running 'pacman -S rsync'
    [2014-09-22 17:40] [PACMAN] installed rsync (3.1.1-2)
    [2014-09-22 17:43] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/git'
    [2014-09-22 17:43] [PACMAN] installed perl-error (0.17022-1)
    [2014-09-22 17:43] [PACMAN] installed git (2.1.0-1)
    [2014-09-22 17:44] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/cmake'
    [2014-09-22 17:44] [PACMAN] installed cmake (3.0.2-1)
    [2014-09-22 17:44] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/qt5-tools extra/qt5-base extra/qt5-x11extras'
    [2014-09-22 17:45] [PACMAN] installed xcb-util-keysyms (0.3.9-2)
    [2014-09-22 17:45] [PACMAN] installed xcb-util-wm (0.4.1-1)
    [2014-09-22 17:45] [PACMAN] installed xcb-util-image (0.3.9-2)
    [2014-09-22 17:45] [PACMAN] installed qtchooser (41-1)
    [2014-09-22 17:45] [PACMAN] installed qt5-base (5.3.2-1)
    [2014-09-22 17:45] [PACMAN] installed qt5-xmlpatterns (5.3.2-1)
    [2014-09-22 17:45] [PACMAN] installed libxkbcommon (0.4.3-1)
    [2014-09-22 17:45] [PACMAN] installed libxkbcommon-x11 (0.4.3-1)
    [2014-09-22 17:45] [PACMAN] installed qt5-declarative (5.3.2-1)
    [2014-09-22 17:45] [PACMAN] installed qt5-sensors (5.3.2-1)
    [2014-09-22 17:45] [PACMAN] installed qt5-location (5.3.2-1)
    [2014-09-22 17:45] [PACMAN] installed cdparanoia (10.2-5)
    [2014-09-22 17:45] [PACMAN] installed libvisual (0.4.0-5)
    [2014-09-22 17:45] [PACMAN] installed gst-plugins-base (1.4.2-1)
    [2014-09-22 17:45] [PACMAN] installed libxslt (1.1.28-3)
    [2014-09-22 17:45] [PACMAN] installed qt5-webkit (5.3.2-1)
    [2014-09-22 17:45] [PACMAN] installed qt5-translations (5.3.2-1)
    [2014-09-22 17:45] [PACMAN] installed qt5-tools (5.3.2-1)
    [2014-09-22 17:45] [PACMAN] installed qt5-x11extras (5.3.2-1)
    [2014-09-22 17:46] [PACMAN] Running 'pacman --color auto -Rs qt5-base qt5-x11extras qt5-tools'
    [2014-09-22 17:47] [PACMAN] Running 'pacman --color auto -Rs cmake'
    [2014-09-22 17:47] [PACMAN] Running 'pacman --color auto -Rs git'
    [2014-09-22 20:27] [PACMAN] Running 'pacman -Scc'
    [2014-09-22 20:28] [PACMAN] Running 'pacman -S gcc'
    [2014-09-22 20:28] [PACMAN] reinstalled gcc (4.9.1-2)
    [2014-09-22 20:29] [PACMAN] Running 'pacman -S cmake'
    [2014-09-22 20:29] [PACMAN] Running 'pacman -R cmake'
    [2014-09-22 20:29] [PACMAN] removed cmake (3.0.2-1)
    [2014-09-22 20:29] [PACMAN] Running 'pacman -S cmake'
    [2014-09-22 20:30] [PACMAN] installed cmake (3.0.2-1)
    [2014-09-22 20:31] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.Qct/libqtxdg-qt5-git-1.0.0.2.g456069a-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:31] [PACMAN] installed libqtxdg-qt5-git (1.0.0.2.g456069a-1)
    [2014-09-22 20:32] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.7hB/liblxqt-git-0.7.0.41.g9154441-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:32] [PACMAN] installed liblxqt-git (0.7.0.41.g9154441-1)
    [2014-09-22 20:32] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.f3U/lxqt-about-git-0.7.0.5.g28f9c07-2-x86_64.pkg.tar.xz'
    [2014-09-22 20:33] [PACMAN] installed lxqt-about-git (0.7.0.5.g28f9c07-2)
    [2014-09-22 20:33] [PACMAN] Running 'pacman --color auto -S --asdeps --needed community/liboobs'
    [2014-09-22 20:33] [PACMAN] installed perl-xml-parser (2.41-5)
    [2014-09-22 20:33] [PACMAN] installed perl-text-iconv (1.7-9)
    [2014-09-22 20:33] [PACMAN] installed perl-xml-twig (3.48-1)
    [2014-09-22 20:33] [PACMAN] installed perl-net-dbus (1.0.0-4)
    [2014-09-22 20:33] [PACMAN] installed system-tools-backends (2.10.2-5)
    [2014-09-22 20:33] [PACMAN] installed liboobs (3.0.0-3)
    [2014-09-22 20:35] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.dNL/lxqt-admin-git-13.342cf5a-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:35] [PACMAN] installed lxqt-admin-git (13.342cf5a-1)
    [2014-09-22 20:36] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.zSw/lxqt-common-git-0.7.0.12.g8fb59e4-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:36] [PACMAN] installed lxqt-common-git (0.7.0.12.g8fb59e4-1)
    [2014-09-22 20:38] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.u7N/lxqt-config-git-0.7.0.54.gd176184-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:38] [PACMAN] installed lxqt-config-git (0.7.0.54.gd176184-1)
    [2014-09-22 20:39] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.FJH/lxqt-config-randr-git-0.7.0.6.g9dbf9f7-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:39] [PACMAN] installed lxqt-config-randr-git (0.7.0.6.g9dbf9f7-1)
    [2014-09-22 20:41] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.RFk/lxqt-globalkeys-git-0.7.0.10.g64a56ee-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:41] [PACMAN] installed lxqt-globalkeys-git (0.7.0.10.g64a56ee-1)
    [2014-09-22 20:42] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.I4e/lxqt-notificationd-git-0.7.0.7.g0d8bbac-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:42] [PACMAN] installed lxqt-notificationd-git (0.7.0.7.g0d8bbac-1)
    [2014-09-22 20:42] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.xoE/lxqt-openssh-askpass-git-0.7.0.3.g23c5181-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:42] [PACMAN] installed lxqt-openssh-askpass-git (0.7.0.3.g23c5181-1)
    [2014-09-22 20:43] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.V8E/liblxqt-mount-git-0.7.0.11.gae22e05-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:43] [PACMAN] installed liblxqt-mount-git (0.7.0.11.gae22e05-1)
    [2014-09-22 20:43] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.vIf/libsysstat-qt5-git-0.1.0.4.g151ef16-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:43] [PACMAN] installed libsysstat-qt5-git (0.1.0.4.g151ef16-1)
    [2014-09-22 20:47] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.qN3/lxqt-panel-git-0.7.0.69.ge0e0544-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:47] [PACMAN] installed lxqt-panel-git (0.7.0.69.ge0e0544-1)
    [2014-09-22 20:47] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/polkit-qt5'
    [2014-09-22 20:48] [PACMAN] installed polkit-qt5 (0.112-1)
    [2014-09-22 20:48] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.Cd4/lxqt-policykit-git-0.7.0.5.g081a7ff-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:48] [PACMAN] installed lxqt-policykit-git (0.7.0.5.g081a7ff-1)
    [2014-09-22 20:48] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/upower extra/qt5-svg'
    [2014-09-22 20:48] [PACMAN] installed libplist (1.11-1)
    [2014-09-22 20:48] [PACMAN] installed libusbmuxd (1.0.9-1)
    [2014-09-22 20:48] [PACMAN] installed libimobiledevice (1.1.6-1)
    [2014-09-22 20:48] [PACMAN] installed upower (0.99.0-3)
    [2014-09-22 20:48] [PACMAN] installed qt5-svg (5.3.2-1)
    [2014-09-22 20:49] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.WBx/lxqt-powermanagement-git-0.7.0.13.g29b815f-2-x86_64.pkg.tar.xz'
    [2014-09-22 20:49] [PACMAN] installed lxqt-powermanagement-git (0.7.0.13.g29b815f-2)
    [2014-09-22 20:49] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.OMy/lxqt-qtplugin-git-0.7.0.17.gad8c650-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:49] [PACMAN] installed lxqt-qtplugin-git (0.7.0.17.gad8c650-1)
    [2014-09-22 20:49] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/qt5-script'
    [2014-09-22 20:50] [PACMAN] installed qt5-script (5.3.2-1)
    [2014-09-22 20:50] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.rUh/lxqt-runner-git-0.7.0.6.g930ac3c-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:50] [PACMAN] installed lxqt-runner-git (0.7.0.6.g930ac3c-1)
    [2014-09-22 20:51] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.4Gh/lxqt-session-git-0.7.0.12.g0425919-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:51] [PACMAN] installed lxqt-session-git (0.7.0.12.g0425919-1)
    [2014-09-22 20:52] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-mak/PKGDEST.eTZ/lxqt-desktop-git-0.7.0.15.gd559dfc-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:52] [ALPM-SCRIPTLET] If you upgraded LXQt from <0.7.0, you may need to reset your lxqt-session settings
    [2014-09-22 20:52] [ALPM-SCRIPTLET] Do that with the following command: rm ~/.config/lxqt/session.conf
    [2014-09-22 20:52] [PACMAN] installed lxqt-desktop-git (0.7.0.15.gd559dfc-1)
    [2014-09-22 20:57] [PACMAN] Running 'pacman --color auto -U --asdeps /tmp/yaourt-tmp-mak/PKGDEST.6wF/pcmanfm-qt-git-0.7.0.81.g4f17674-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:57] [PACMAN] installed pcmanfm-qt-git (0.7.0.81.g4f17674-1)
    [2014-09-22 20:58] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-mak/PKGDEST.dwC/lximage-qt-git-0.2.0.4.gf9be7ac-1-x86_64.pkg.tar.xz'
    [2014-09-22 20:58] [PACMAN] installed lximage-qt-git (0.2.0.4.gf9be7ac-1)
    [2014-09-22 20:58] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/qscintilla'
    [2014-09-22 20:59] [PACMAN] installed lcms2 (2.6-1)
    [2014-09-22 20:59] [PACMAN] installed libmng (2.0.2-3)
    [2014-09-22 20:59] [PACMAN] installed qt4 (4.8.6-1)
    [2014-09-22 20:59] [PACMAN] installed qscintilla (2.8.4-1)
    [2014-09-22 21:03] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-mak/PKGDEST.4Qr/juffed-0.10-1-x86_64.pkg.tar.xz'
    [2014-09-22 21:03] [PACMAN] installed juffed (0.10-1)
    [2014-09-22 21:05] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-mak/PKGDEST.Gqr/screengrab-1.0-2-x86_64.pkg.tar.xz'
    [2014-09-22 21:05] [PACMAN] installed screengrab (1.0-2)
    [2014-09-22 21:05] [PACMAN] Running 'pacman --color auto -S community/qps'
    [2014-09-22 21:05] [PACMAN] installed qps (1.10.16-3)
    [2014-09-22 21:09] [PACMAN] Running 'pacman -S kdebase-workspace'
    [2014-09-22 21:15] [PACMAN] installed attica (0.4.2-1)
    [2014-09-22 21:15] [PACMAN] installed scrnsaverproto (1.2.2-2)
    [2014-09-22 21:15] [PACMAN] installed libxss (1.2.2-2)
    [2014-09-22 21:15] [PACMAN] installed grantlee-qt4 (0.5.0-2)
    [2014-09-22 21:15] [PACMAN] installed qca (2.0.3-5)
    [2014-09-22 21:15] [PACMAN] installed libdbusmenu-qt (0.9.2-3)
    [2014-09-22 21:15] [PACMAN] installed polkit-qt4 (0.112-1)
    [2014-09-22 21:15] [ALPM-SCRIPTLET] ==> aspell comes with no default dictionary
    [2014-09-22 21:15] [PACMAN] installed aspell (0.60.6.1-2)
    [2014-09-22 21:15] [PACMAN] installed hspell (1.2-2)
    [2014-09-22 21:15] [PACMAN] installed enchant (1.6.0-5)
    [2014-09-22 21:15] [PACMAN] installed ilmbase (2.1.0-1)
    [2014-09-22 21:15] [PACMAN] installed openexr (2.1.0-1)
    [2014-09-22 21:15] [PACMAN] installed exiv2 (0.24-1)
    [2014-09-22 21:15] [PACMAN] installed strigi (0.7.8-5)
    [2014-09-22 21:15] [PACMAN] installed docbook-xml (4.5-6)
    [2014-09-22 21:15] [PACMAN] installed docbook-xsl (1.78.1-1)
    [2014-09-22 21:15] [PACMAN] installed phonon-qt4-gstreamer (4.8.0-2)
    [2014-09-22 21:15] [PACMAN] installed libqzeitgeist (0.8.0-4)
    [2014-09-22 21:15] [PACMAN] installed phonon-qt4 (4.8.0-1)
    [2014-09-22 21:15] [PACMAN] installed python (3.4.1-1)
    [2014-09-22 21:15] [PACMAN] installed media-player-info (19-1)
    [2014-09-22 21:15] [PACMAN] installed qtwebkit (2.3.3-2)
    [2014-09-22 21:15] [PACMAN] installed kdelibs (4.14.0-1)
    [2014-09-22 21:15] [PACMAN] installed kglobalaccel (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kwidgetsaddons (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kconfig (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kcompletion (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed ki18n (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed gamin (0.1.10-8)
    [2014-09-22 21:15] [PACMAN] installed kcoreaddons (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kwindowsystem (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kcrash (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kdbusaddons (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kservice (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kauth (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kcodecs (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kguiaddons (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kconfigwidgets (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kitemviews (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kiconthemes (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed sonnet (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed ktextwidgets (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed attica-qt5 (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kxmlgui (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kcmutils (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed solid (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed karchive (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kjobwidgets (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kbookmarks (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed phonon-qt5-gstreamer (4.8.0-2)
    [2014-09-22 21:15] [PACMAN] installed phonon-qt5 (4.8.0-1)
    [2014-09-22 21:15] [PACMAN] installed libdbusmenu-qt5 (0.9.3+14.10.20140619-1)
    [2014-09-22 21:15] [PACMAN] installed knotifications (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kwallet (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kio (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kdeclarative (5.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed kactivities-frameworks (5.2.0-2)
    [2014-09-22 21:15] [PACMAN] installed libkactivities4 (4.13.3-1)
    [2014-09-22 21:15] [PACMAN] installed libcap-ng (0.7.4-1)
    [2014-09-22 21:15] [PACMAN] installed talloc (2.1.1-1)
    [2014-09-22 21:15] [PACMAN] installed libbsd (0.7.0-1)
    [2014-09-22 21:15] [PACMAN] installed libwbclient (4.1.12-1)
    [2014-09-22 21:15] [PACMAN] installed cifs-utils (6.3-2)
    [2014-09-22 21:15] [PACMAN] installed tdb (1.3.0-2)
    [2014-09-22 21:15] [PACMAN] installed tevent (0.9.21-3)
    [2014-09-22 21:15] [PACMAN] installed ldb (1.1.17-1)
    [2014-09-22 21:15] [PACMAN] installed python2 (2.7.8-1)
    [2014-09-22 21:15] [PACMAN] installed smbclient (4.1.12-1)
    [2014-09-22 21:15] [PACMAN] installed libssh (0.6.3-1)
    [2014-09-22 21:15] [PACMAN] installed sound-theme-freedesktop (0.8-2)
    [2014-09-22 21:15] [PACMAN] installed libcanberra (0.30-4)
    [2014-09-22 21:15] [PACMAN] installed oxygen-icons (4.14.0-1)
    [2014-09-22 21:15] [PACMAN] installed libwebp (0.4.1-1)
    [2014-09-22 21:15] [PACMAN] installed kdebase-runtime (4.14.0-1)
    [2014-09-22 21:15] [PACMAN] installed boost-libs (1.56.0-1)
    [2014-09-22 21:15] [PACMAN] installed libmariadbclient (10.0.13-1)
    [2014-09-22 21:15] [PACMAN] installed mariadb-clients (10.0.13-1)
    [2014-09-22 21:15] [ALPM-SCRIPTLET] Installing MariaDB/MySQL system tables in '/var/lib/mysql' ...
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Using mutexes to ref count buffer pool pages
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: The InnoDB memory heap is disabled
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Compressed tables use zlib 1.2.8
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Using Linux native AIO
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Not using CPU crc32 instructions
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Initializing buffer pool, size = 128.0M
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Completed initialization of buffer pool
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Database physically writes the file full: wait...
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Warning] InnoDB: New log files created, LSN=45781
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Doublewrite buffer not found: creating new
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Doublewrite buffer created
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: 128 rollback segment(s) are active.
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Warning] InnoDB: Creating foreign key constraint system tables.
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Foreign key constraint system tables created
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Creating tablespace and datafile system tables.
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Tablespace and datafile system tables created.
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:31 [Note] InnoDB: Waiting for purge to start
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:32 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.19-67.0 started; log sequence number 0
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:32 [Warning] Failed to load slave replication state from table mysql.gtid_slave_pos: 1146: Table 'mysql.gtid_slave_pos' doesn't exist
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:32 [Note] InnoDB: FTS optimize thread exiting.
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:32 [Note] InnoDB: Starting shutdown...
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Shutdown completed; log sequence number 1616697
    [2014-09-22 21:15] [ALPM-SCRIPTLET] OK
    [2014-09-22 21:15] [ALPM-SCRIPTLET] Filling help tables...
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Using mutexes to ref count buffer pool pages
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: The InnoDB memory heap is disabled
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Compressed tables use zlib 1.2.8
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Using Linux native AIO
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Not using CPU crc32 instructions
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Initializing buffer pool, size = 128.0M
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Completed initialization of buffer pool
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Highest supported file format is Barracuda.
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: 128 rollback segment(s) are active.
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Waiting for purge to start
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.19-67.0 started; log sequence number 1616697
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: FTS optimize thread exiting.
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:34 [Note] InnoDB: Starting shutdown...
    [2014-09-22 21:15] [ALPM-SCRIPTLET] 140922 21:15:36 [Note] InnoDB: Shutdown completed; log sequence number 1616707
    [2014-09-22 21:15] [ALPM-SCRIPTLET] OK
    [2014-09-22 21:15] [ALPM-SCRIPTLET]
    [2014-09-22 21:15] [ALPM-SCRIPTLET] To start mysqld at boot time you have to copy
    [2014-09-22 21:15] [ALPM-SCRIPTLET] support-files/mysql.server to the right place for your system
    [2014-09-22 21:15] [ALPM-SCRIPTLET]
    [2014-09-22 21:15] [ALPM-SCRIPTLET] PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
    [2014-09-22 21:15] [ALPM-SCRIPTLET] To do so, start the server, then issue the following commands:
    [2014-09-22 21:15] [ALPM-SCRIPTLET]
    [2014-09-22 21:15] [ALPM-SCRIPTLET] '/usr/bin/mysqladmin' -u root password 'new-password'
    [2014-09-22 21:15] [ALPM-SCRIPTLET] '/usr/bin/mysqladmin' -u root -h myhost password 'new-password'
    [2014-09-22 21:15] [ALPM-SCRIPTLET]
    [2014-09-22 21:15] [ALPM-SCRIPTLET] Alternatively you can run:
    [2014-09-22 21:15] [ALPM-SCRIPTLET] '/usr/bin/mysql_secure_installation'
    [2014-09-22 21:15] [ALPM-SCRIPTLET]
    [2014-09-22 21:15] [ALPM-SCRIPTLET] which will also give you the option of removing the test
    [2014-09-22 21:15] [ALPM-SCRIPTLET] databases and anonymous user created by default. This is
    [2014-09-22 21:15] [ALPM-SCRIPTLET] strongly recommended for production servers.
    [2014-09-22 21:15] [ALPM-SCRIPTLET]
    [2014-09-22 21:15] [ALPM-SCRIPTLET] See the MariaDB Knowledgebase at http://mariadb.com/kb or the
    [2014-09-22 21:15] [ALPM-SCRIPTLET] MySQL manual for more instructions.
    [2014-09-22 21:15] [ALPM-SCRIPTLET]
    [2014-09-22 21:15] [ALPM-SCRIPTLET] You can start the MariaDB daemon with:
    [2014-09-22 21:15] [ALPM-SCRIPTLET] cd '/usr' ; /usr/bin/mysqld_safe --datadir='/var/lib/mysql'
    [2014-09-22 21:15] [ALPM-SCRIPTLET]
    [2014-09-22 21:15] [ALPM-SCRIPTLET] You can test the MariaDB daemon with mysql-test-run.pl
    [2014-09-22 21:15] [ALPM-SCRIPTLET] cd '/usr/mysql-test' ; perl mysql-test-run.pl
    [2014-09-22 21:15] [ALPM-SCRIPTLET]
    [2014-09-22 21:15] [ALPM-SCRIPTLET] Please report any problems at http://mariadb.org/jira
    [2014-09-22 21:15] [ALPM-SCRIPTLET]
    [2014-09-22 21:15] [ALPM-SCRIPTLET] The latest information about MariaDB is available at http://mariadb.org/.
    [2014-09-22 21:15] [ALPM-SCRIPTLET] You can find additional information about the MySQL part at:
    [2014-09-22 21:15] [ALPM-SCRIPTLET] http://dev.mysql.com
    [2014-09-22 21:15] [ALPM-SCRIPTLET] Support MariaDB development by buying support/new features from
    [2014-09-22 21:15] [ALPM-SCRIPTLET] SkySQL Ab. You can contact us about this at [email protected].
    [2014-09-22 21:15] [ALPM-SCRIPTLET] Alternatively consider joining our community based development effort:
    [2014-09-22 21:15] [ALPM-SCRIPTLET] http://mariadb.com/kb/en/contributing-to-the-mariadb-project/
    [2014-09-22 21:15] [ALPM-SCRIPTLET]
    [2014-09-22 21:15] [PACMAN] installed mariadb (10.0.13-1)
    [2014-09-22 21:15] [PACMAN] installed akonadi (1.13.0-2)
    [2014-09-22 21:15] [PACMAN] installed libical (1.0-3)
    [2014-09-22 21:15] [PACMAN] installed libdmtx (0.7.4-5)
    [2014-09-22 21:15] [PACMAN] installed qrencode (3.4.4-1)
    [2014-09-22 21:15] [PACMAN] installed prison (1.1.1-1)
    [2014-09-22 21:15] [PACMAN] installed qjson (0.8.1-3)
    [2014-09-22 21:15] [PACMAN] installed kdepimlibs (4.14.0-1)
    [2014-09-22 21:15] [PACMAN] installed libkgapi (2.2.0-1)
    [2014-09-22 21:15] [PACMAN] installed xerces-c (3.1.1-5)
    [2014-09-22 21:15] [PACMAN] installed libkolabxml (1.0.2-1)
    [2014-09-22 21:15] [PACMAN] installed libkolab (0.5.3-1)
    [2014-09-22 21:15] [PACMAN] installed libkfbapi (1.0-1)
    [2014-09-22 21:15] [PACMAN] installed libaccounts-glib (1.17-1)
    [2014-09-22 21:15] [PACMAN] installed libaccounts-qt (1.13-1)
    [2014-09-22 21:15] [PACMAN] installed signon (8.57-1)
    [2014-09-22 21:15] [PACMAN] installed kdepim-runtime (4.14.0-3)
    [2014-09-22 21:15] [PACMAN] installed lm_sensors (3.3.5-1)
    [2014-09-22 21:15] [PACMAN] installed qimageblitz (0.0.6-4)
    [2014-09-22 21:15] [PACMAN] installed polkit-kde (0.99.0-3)
    [2014-09-22 21:15] [PACMAN] installed xorg-xprop (1.2.2-1)
    [2014-09-22 21:15] [PACMAN] installed cln (1.3.3-2)
    [2014-09-22 21:15] [PACMAN] installed libqalculate (0.9.7-4)
    [2014-09-22 21:15] [PACMAN] installed iso-codes (3.52-1)
    [2014-09-22 21:15] [PACMAN] installed libxklavier (5.4-1)
    [2014-09-22 21:15] [PACMAN] installed xorg-xmessage (1.0.4-2)
    [2014-09-22 21:15] [PACMAN] installed libusb-compat (0.1.5-1)
    [2014-09-22 21:15] [PACMAN] installed kde-base-artwork (4.14.0-1)
    [2014-09-22 21:15] [PACMAN] installed xcb-util-renderutil (0.3.9-1)
    [2014-09-22 21:15] [PACMAN] installed glu (9.0.0-3)
    [2014-09-22 21:15] [PACMAN] installed kdebase-workspace (4.11.11-2)
    [2014-09-22 21:25] [PACMAN] Running 'pacman -S qtcurve'
    [2014-09-22 21:26] [PACMAN] installed qtcurve-utils (1.8.18-2)
    [2014-09-22 21:26] [PACMAN] installed qtcurve-gtk2 (1.8.18-2)
    [2014-09-22 21:27] [PACMAN] installed qtcurve-kde4 (1.8.18-2)
    [2014-09-22 21:27] [PACMAN] installed qtcurve-qt4 (1.8.18-2)
    [2014-09-22 21:27] [PACMAN] installed qtcurve-qt5 (1.8.18-2)
    [2014-09-22 21:34] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-mak/PKGDEST.Hey/ttf-ms-fonts-2.0-10-any.pkg.tar.xz'
    [2014-09-22 21:34] [ALPM-SCRIPTLET] Updating font cache... done.
    [2014-09-22 21:34] [PACMAN] installed ttf-ms-fonts (2.0-10)
    [2014-09-22 21:35] [PACMAN] Running 'pacman --color auto -S community/ttf-droid'
    [2014-09-22 21:35] [ALPM-SCRIPTLET] Updating font cache... done.
    [2014-09-22 21:35] [PACMAN] installed ttf-droid (20121017-3)
    [2014-09-22 21:38] [PACMAN] Running 'pacman -Syyu'
    [2014-09-22 21:38] [PACMAN] synchronizing package lists
    [2014-09-22 21:39] [PACMAN] starting full system upgrade
    [2014-09-22 21:39] [PACMAN] installed ca-certificates-utils (20140325-2)
    [2014-09-22 21:39] [PACMAN] installed ca-certificates-mozilla (3.17-3)
    [2014-09-22 21:39] [PACMAN] installed ca-certificates-cacert (20140824-1)
    [2014-09-22 21:39] [PACMAN] upgraded ca-certificates (20140325-1 -> 20140325-2)
    [2014-09-22 21:39] [PACMAN] upgraded nspr (4.10.6-1 -> 4.10.7-1)
    [2014-09-22 21:39] [PACMAN] upgraded nss (3.16.3-1 -> 3.17-3)
    [2014-09-22 21:39] [PACMAN] upgraded openresolv (3.5.7-1 -> 3.5.7-2)
    [2014-09-22 21:39] [PACMAN] Running 'pacman -S infinality-bundle'
    [2014-09-22 21:40] [PACMAN] removed freetype2 (2.5.3-2)
    [2014-09-22 21:40] [ALPM-SCRIPTLET]
    [2014-09-22 21:40] [ALPM-SCRIPTLET] Check for dead symlinks and leftover files
    [2014-09-22 21:40] [ALPM-SCRIPTLET] in /etc/fonts/conf.d/
    [2014-09-22 21:40] [ALPM-SCRIPTLET]
    [2014-09-22 21:40] [PACMAN] removed fontconfig (2.11.1-1)
    [2014-09-22 21:40] [PACMAN] removed cairo (1.12.16-3)
    [2014-09-22 21:40] [ALPM-SCRIPTLET] If you have been using freetype2-infinality from the AUR,
    [2014-09-22 21:40] [ALPM-SCRIPTLET] the runtime file that came with it has been saved as
    [2014-09-22 21:40] [ALPM-SCRIPTLET] /etc/profile.d/infinality-settings.sh.pacsave and the new
    [2014-09-22 21:40] [ALPM-SCRIPTLET] one was installed in its place. You can manually delete
    [2014-09-22 21:40] [ALPM-SCRIPTLET] infinality-settings.sh.pacsave as it is not needed anymore.
    [2014-09-22 21:40] [ALPM-SCRIPTLET]
    [2014-09-22 21:40] [ALPM-SCRIPTLET] If you are using [multilib], please install/upgrade
    [2014-09-22 21:40] [ALPM-SCRIPTLET] lib32-freetype2-infinality-ultimate, too.
    [2014-09-22 21:40] [PACMAN] installed freetype2-infinality-ultimate (2.5.3-12)
    [2014-09-22 21:40] [ALPM-SCRIPTLET]
    [2014-09-22 21:40] [ALPM-SCRIPTLET] Thank you for checking out fontconfig-infinality-ultimate.
    [2014-09-22 21:40] [ALPM-SCRIPTLET]
    [2014-09-22 21:40] [ALPM-SCRIPTLET] By default, fontconfig will use presets for the free font collection
    [2014-09-22 21:40] [ALPM-SCRIPTLET] from [infinality-bundle-fonts] repository.
    [2014-09-22 21:40] [ALPM-SCRIPTLET]
    [2014-09-22 21:40] [ALPM-SCRIPTLET] If you are going to use either a custom font collection or core
    [2014-09-22 21:40] [ALPM-SCRIPTLET] Microsoft families, set the appropriate presets using
    [2014-09-22 21:40] [ALPM-SCRIPTLET] fc-presets command.
    [2014-09-22 21:40] [ALPM-SCRIPTLET]
    [2014-09-22 21:40] [ALPM-SCRIPTLET] Removing redundant symlinks ...
    [2014-09-22 21:40] [ALPM-SCRIPTLET] Done.
    [2014-09-22 21:40] [ALPM-SCRIPTLET] Creating symlinks for free font collection ...
    [2014-09-22 21:40] [ALPM-SCRIPTLET] Done.
    [2014-09-22 21:40] [ALPM-SCRIPTLET] Updating font cache...
    [2014-09-22 21:40] [ALPM-SCRIPTLET] Done.
    [2014-09-22 21:40] [PACMAN] installed fontconfig-infinality-ultimate (2.11.1-20)
    [2014-09-22 21:40] [PACMAN] installed cairo-infinality-ultimate (1.13.1-1)
    [2014-09-22 17:56] [PACMAN] Running 'pacman -S alsa-utils alsa-oss'
    [2014-09-22 17:56] [PACMAN] Running 'pacman -S kmix'
    [2014-09-22 17:57] [PACMAN] Running 'pacman -S kdemultimedia-kmix'
    [2014-09-22 17:58] [PACMAN] installed kdemultimedia-kmix (4.14.0-1)
    [2014-09-22 18:01] [PACMAN] Running 'pacman -S gimp'
    [2014-09-22 18:01] [PACMAN] installed libglade (2.6.4-5)
    [2014-09-22 18:01] [PACMAN] installed python2-cairo (1.10.0-2)
    [2014-09-22 18:01] [PACMAN] installed pygobject2-devel (2.28.6-11)
    [2014-09-22 18:01] [PACMAN] installed python2-gobject2 (2.28.6-11)
    [2014-09-22 18:01] [PACMAN] installed pygtk (2.24.0-4)
    [2014-09-22 18:01] [PACMAN] installed lcms (1.19-5)
    [2014-09-22 18:01] [ALPM-SCRIPTLET] Updating font cache... done.
    [2014-09-22 18:01] [PACMAN] installed gsfonts (1.0.7pre44-4)
    [2014-09-22 18:01] [PACMAN] installed libwmf (0.2.8.4-12)
    [2014-09-22 18:01] [PACMAN] installed babl (0.1.10-2)
    [2014-09-22 18:01] [PACMAN] installed libspiro (1:0.2-1)
    [2014-09-22 18:01] [PACMAN] installed gegl (0.2.0-11)
    [2014-09-22 18:01] [PACMAN] installed gimp (2.8.14-1)
    [2014-09-22 18:02] [PACMAN] Running 'pacman -S libreoffice'
    [2014-09-22 18:05] [PACMAN] installed librevenge (0.0.1-2)
    [2014-09-22 18:05] [PACMAN] installed libwpd (0.10.0-1)
    [2014-09-22 18:05] [PACMAN] installed libwps (0.3.0-1)
    [2014-09-22 18:05] [PACMAN] installed neon (0.30.0-1)
    [2014-09-22 18:05] [PACMAN] installed raptor (2.0.14-1)
    [2014-09-22 18:05] [PACMAN] installed rasqal (1:0.9.32-1)
    [2014-09-22 18:05] [PACMAN] installed redland (1:1.0.17-2)
    [2014-09-22 18:05] [PACMAN] installed hyphen (2.8.8-1)
    [2014-09-22 18:05] [PACMAN] installed lpsolve (5.5.2.0-3)
    [2014-09-22 18:05] [PACMAN] installed openjpeg (1.5.2-1)
    [2014-09-22 18:05] [PACMAN] installed poppler (0.26.4-1)
    [2014-09-22 18:05] [PACMAN] installed libwpg (0.3.0-1)
    [2014-09-22 18:05] [PACMAN] installed libvisio (0.1.0-1)
    [2014-09-22 18:05] [PACMAN] installed libetonyek (0.1.1-1)
    [2014-09-22 18:05] [PACMAN] installed libodfgen (0.1.1-1)
    [2014-09-22 18:05] [PACMAN] installed libcdr (0.1.0-1)
    [2014-09-22 18:05] [PACMAN] installed libmspub (0.1.1-1)
    [2014-09-22 18:05] [PACMAN] installed harfbuzz-icu (0.9.35-1)
    [2014-09-22 18:05] [PACMAN] installed gconf (3.2.6-3)
    [2014-09-22 18:05] [PACMAN] installed glew (1.11.0-1)
    [2014-09-22 18:05] [PACMAN] installed clucene (2.3.3.4-8)
    [2014-09-22 18:05] [PACMAN] installed libreoffice-fresh (4.3.1-1)
    [2014-09-22 18:08] [PACMAN] Running 'pacman -S flashplugin'
    [2014-09-22 18:08] [ALPM-SCRIPTLET] >>
    [2014-09-22 18:08] [ALPM-SCRIPTLET] >> If you have an NVIDIA card that supports libvdpau or Broadcom Crystal HD chips,
    [2014-09-22 18:08] [ALPM-SCRIPTLET] >> uncomment EnableLinuxHWVideoDecode=1 from /etc/adobe/mms.cfg.
    [2014-09-22 18:08] [ALPM-SCRIPTLET] >> If you run into problems, please contact nVidia or Broadcom along with your system config info / driver version.
    [2014-09-22 18:08] [ALPM-SCRIPTLET] >>
    [2014-09-22 18:08] [PACMAN] installed flashplugin (11.2.202.406-1)
    [2014-09-22 18:08] [PACMAN] Running 'pacman -S libvdpau'
    [2014-09-22 18:08] [PACMAN] installed libvdpau (0.8-1)
    [2014-09-22 18:14] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-mak/PKGDEST.qiU/profile-sync-daemon-5.52-1-any.pkg.tar.xz'
    [2014-09-22 18:14] [ALPM-SCRIPTLET] --> Define which users will make use of the sync in /etc/psd.conf
    [2014-09-22 18:14] [ALPM-SCRIPTLET] --> Read the manpage before use or see the wiki page
    [2014-09-22 18:14] [ALPM-SCRIPTLET] --> https://wiki.archlinux.org/index.php/Profile-sync-daemon
    [2014-09-22 18:14] [ALPM-SCRIPTLET]
    [2014-09-22 18:14] [ALPM-SCRIPTLET] --> ALWAYS backup your profile data before using utils like psd!
    [2014-09-22 18:14] [PACMAN] installed profile-sync-daemon (5.52-1)
    [2014-09-22 19:03] [PACMAN] Running 'pacman -S conky'
    [2014-09-22 19:04] [PACMAN] installed lua (5.2.3-1)
    [2014-09-22 19:04] [PACMAN] installed wireless_tools (30.pre9-1)
    [2014-09-22 19:04] [PACMAN] installed conky (1.9.0-4)
    [2014-09-22 19:44] [PACMAN] Running 'pacman --color auto -S --asdeps --needed community/lsb-release'
    [2014-09-22 19:44] [PACMAN] installed lsb-release (1.4-14)
    [2014-09-22 19:46] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-mak/PKGDEST.Une/google-talkplugin-5.4.2.0-1-x86_64.pkg.tar.xz'
    [2014-09-22 19:46] [PACMAN] installed google-talkplugin (5.4.2.0-1)
    [2014-09-22 19:46] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/opus extra/speech-dispatcher extra/snappy'
    [2014-09-22 19:46] [PACMAN] installed opus (1.1-1)
    [2014-09-22 19:46] [PACMAN] installed python-xdg (0.25-2)
    [2014-09-22 19:46] [PACMAN] installed dotconf (1.3-4)
    [2014-09-22 19:46] [PACMAN] installed speech-dispatcher (0.8-3)
    [2014-09-22 19:46] [PACMAN] installed snappy (1.1.1-1)
    [2014-09-22 21:28] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-mak/PKGDEST.6tQ/google-chrome-37.0.2062.120-1-x86_64.pkg.tar.xz'
    [2014-09-22 21:28] [ALPM-SCRIPTLET] (B[m[1m[34m==>(B[m[1m Updating desktop MIME database...(B[m
    [2014-09-22 21:28] [ALPM-SCRIPTLET] (B[m[1m[34m==>(B[m[1m Updating icon cache..(B[m
    [2014-09-22 21:28] [ALPM-SCRIPTLET] (B[m[1m[34m==>(B[m[1m[33m NOTE:(B[m[1m The binary is called: 'google-chrome-stable'(B[m
    [2014-09-22 21:28] [PACMAN] installed google-chrome (37.0.2062.120-1)
    [2014-09-22 23:01] [PACMAN] Running 'pacman -Syu'
    [2014-09-22 23:01] [PACMAN] synchronizing package lists
    [2014-09-22 23:01] [PACMAN] starting full system upgrade
    [2014-09-23 11:16] [PACMAN] Running 'pacman -Syu'
    [2014-09-23 11:16] [PACMAN] synchronizing package lists
    [2014-09-23 11:16] [PACMAN] starting full system upgrade
    [2014-09-23 17:29] [PACMAN] Running 'pacman -S vim'
    [2014-09-23 17:29] [PACMAN] installed vim-runtime (7.4.410-1)
    [2014-09-23 17:29] [PACMAN] installed libyaml (0.1.6-1)
    [2014-09-23 17:29] [ALPM-SCRIPTLET] The default location of gem installs is $HOME/.gem/ruby
    [2014-09-23 17:29] [ALPM-SCRIPTLET] Add the following line to your PATH if you plan to install using gem
    [2014-09-23 17:29] [ALPM-SCRIPTLET] $(ruby -rubygems -e "puts Gem.user_dir")/bin
    [2014-09-23 17:29] [ALPM-SCRIPTLET] If you want to install to the system wide location, you must either:
    [2014-09-23 17:29] [ALPM-SCRIPTLET] edit /etc/gemrc or run gem with the --no-user-install flag.
    [2014-09-23 17:29] [PACMAN] installed ruby (2.1.2-1)
    [2014-09-23 17:29] [PACMAN] installed vim (7.4.410-1)
    [2014-09-23 20:36] [PACMAN] Running 'pacman -Syu'
    [2014-09-23 20:36] [PACMAN] synchronizing package lists
    [2014-09-23 20:36] [PACMAN] starting full system upgrade
    [2014-09-23 20:37] [PACMAN] upgraded gegl (0.2.0-11 -> 0.2.0-12)
    [2014-09-23 20:37] [PACMAN] upgraded libgpg-error (1.14-1 -> 1.16-1)
    [2014-09-23 20:37] [PACMAN] upgraded lxde-icon-theme (0.5.0-2 -> 0.5.1-1)
    [2014-09-23 20:37] [PACMAN] upgraded lxlauncher (0.2.2-5 -> 0.2.3-1)
    [2014-09-23 20:37] [PACMAN] upgraded xmms2 (0.8DrO_o-29 -> 0.8DrO_o-30)
    [2014-09-23 20:37] [PACMAN] upgraded lxmusic (0.4.5-2 -> 0.4.6-1)
    [2014-09-23 20:37] [PACMAN] upgraded lxtask (0.1.4-5 -> 0.1.5-1)
    [2014-09-23 20:37] [PACMAN] upgraded xorg-server-common (1.16.0-6 -> 1.16.1-1)
    [2014-09-23 20:37] [PACMAN] upgraded xorg-server (1.16.0-6 -> 1.16.1-1)
    [2014-09-23 20:37] [PACMAN] upgraded xz (5.0.6-1 -> 5.0.7-1)
    [2014-09-24 11:06] [PACMAN] Running 'pacman -Syu'
    [2014-09-24 11:06] [PACMAN] synchronizing package lists
    [2014-09-24 11:06] [PACMAN] starting full system upgrade
    [2014-09-24 11:07] [PACMAN] upgraded firefox (32.0.1-1 -> 32.0.2-1)
    [2014-09-24 11:56] [PACMAN] Running 'pacman -S xscreensaver'
    [2014-09-24 11:56] [PACMAN] installed xorg-appres (1.0.4-1)
    [2014-09-24 11:56] [PACMAN] installed perl-encode-locale (1.03-2)
    [2014-09-24 11:56] [PACMAN] installed perl-http-date (6.02-2)
    [2014-09-24 11:56] [PACMAN] installed perl-file-listing (6.04-2)
    [2014-09-24 11:56] [PACMAN] installed perl-html-tagset (3.20-4)
    [2014-09-24 11:56] [PACMAN] installed perl-html-parser (3.71-3)
    [2014-09-24 11:56] [PACMAN] installed perl-lwp-mediatypes (6.02-2)
    [2014-09-24 11:56] [PACMAN] installed perl-uri (1.64-1)
    [2014-09-24 11:56] [PACMAN] installed perl-http-message (6.06-2)
    [2014-09-24 11:56] [PACMAN] installed perl-http-cookies (6.01-2)
    [2014-09-24 11:56] [PACMAN] installed perl-http-daemon (6.01-2)
    [2014-09-24 11:56] [PACMAN] installed perl-http-negotiate (6.01-2)
    [2014-09-24 11:56] [PACMAN] installed perl-net-http (6.07-1)
    [2014-09-24 11:56] [PACMAN] installed perl-www-robotrules (6.02-2)
    [2014-09-24 11:56] [PACMAN] installed perl-libwww (6.08-1)
    [2014-09-24 11:56] [PACMAN] installed xscreensaver (5.30-1)
    [2014-09-26 19:59] [PACMAN] Running 'pacman -Syu'
    [2014-09-26 19:59] [PACMAN] synchronizing package lists
    [20

  • Alternative for inner joins

    Hi,
    please check this code and suggest me of an alternative for this performance wise.
    SELECT b~partner
                      APPENDING CORRESPONDING FIELDS OF
                      TABLE t_db_pos_match
                        FROM adrc AS a
                        JOIN but020 AS b
                          ON   aaddrnumber = baddrnumber
                        JOIN but000 AS c
                          ON   bpartner    = cpartner
                        WHERE  c~partner   NE t_bp_obj-act-ekun-partner
                          AND  c~mc_name1   = t_bp_obj-act-ekun-name_last
                          AND  a~city1      = wa-city1
                          AND  a~post_code1 = wa-post_code1
                          AND  a~po_box     = wa-po_box
                          AND  a~street     = wa-street
                          AND  a~house_num1 = wa-house_num1
                          AND  a~house_num2 = wa-house_num2
                          AND  a~region     = wa-region
                          AND  a~addr_group = 'BP'.
    awaiting your reply.
    Binay.

    HI
    *PARAMETERS P_CITY TYPE SPFLI-CITYFROM.
    **TYPES: BEGIN OF ENTRY_TAB_TYPE,
            CARRID TYPE SPFLI-CARRID,
            CONNID TYPE SPFLI-CONNID,
          END OF ENTRY_TAB_TYPE.
    **DATA: ENTRY_TAB   TYPE TABLE OF ENTRY_TAB_TYPE,
         SFLIGHT_TAB TYPE SORTED TABLE OF SFLIGHT
                          WITH UNIQUE KEY CARRID CONNID FLDATE.
    **SELECT CARRID CONNID
          FROM SPFLI
          INTO CORRESPONDING FIELDS OF TABLE ENTRY_TAB
          WHERE CITYFROM = P_CITY.
    **SELECT CARRID CONNID FLDATE
          FROM SFLIGHT
          INTO CORRESPONDING FIELDS OF TABLE SFLIGHT_TAB
          FOR ALL ENTRIES IN ENTRY_TAB
          WHERE CARRID = ENTRY_TAB-CARRID AND
                CONNID = ENTRY_TAB-CONNID.
    TRY LIKE THIS
    REWARD IF USEFULL

  • How to join two internal table rows in alternative manner into one internal table?

    How to join two internal table rows in alternative manner into one internal table?
    two internal tables are suppose itab1 &  itab2 & its data
    Header 1
    Header 2
    Header 3
    a
    b
    c
    d
    e
    f
    g
    h
    i
    Header 1
    Header 2
    Header 3
    1
    2
    3
    4
    5
    6
    7
    8
    9
    INTO itab3 data
    Header 1
    Header 2
    Header 3
    a
    b
    c
    1
    2
    3
    d
    e
    f
    4
    5
    6
    g
    h
    i
    7
    8
    9

    Hi Soubhik,
    I have added two additional columns for each internal table.
    Table_Count - It represents the Internal Table Number(ITAB1 -> 1, ITAB2 -> 2)
    Row_Count  - It represents the Row Count Number, increase the row count value 1 by one..
    ITAB1:
    Header 1
    Header 2
    Header 3
    Table_Count
    Row_Count
    a
    b
    c
    1
    1
    d
    e
    f
    1
    2
    g
    h
    i
    1
    3
    ITAB2:
    Header 1
    Header 2
    Header 3
    Table_Count
    Row_Count
    1
    2
    3
    2
    1
    4
    5
    6
    2
    2
    7
    8
    9
    2
    3
    Create the Final Internal table as same as the ITAB1/ITAB2 structure.
    "Data Declarations
    DATA: IT_FINAL LIKE TABLE OF ITAB1.          "Final Internal Table
    FIELD-SYMBOLS: <FS_TAB1> TYPE TY_TAB1,     "TAB1
                                   <FS_TAB2> TYPE TY_TAB2.     "TAB2
    "Assign the values for the additional two column for ITAB1
    LOOP AT ITAB1 ASSIGNING <FS_TAB1>.
         <FS_TAB1>-TABLE_COUNT = 1.             "Table value same for all row
         <FS_TAB1>-ROW_COUNT = SY-TABIX. "Index value
    ENDLOOP.
    "Assign the values for the additional two column for ITAB2
    LOOP AT ITAB2 ASSIGNING <FS_TAB2>.    
         <FS_TAB2>-TABLE_COUNT = 2.                  "Table value same for all row
         <FS_TAB2>-ROW_COUNT = SY-TABIX.      "Index value
    ENDLOOP.
    "Copy the First Internal Table 'ITAB1' to Final Table
    IT_FINAL[] = ITAB1[].
    "Copy the Second Internal Table 'ITAB2' to Final Table
    APPEND IT
    LOOP AT ITAB2 INTO WA_TAB2.
    APPEND WA_TAB2 TO IT_FINAL.
    ENDLOOP.
    "Sort the Internal Table based on TABLE_COUNT & ROW_COUNT
    SORT IT_FINAL BY  ROW_COUNT TABLE_COUNT.
    After sorting, check the output for IT_FINAL Table, you can find the required output as shown above.
    Regards
    Rajkumar Narasimman

  • Outer Joins with multiple conditions - alternatives to UNION?

    It is my understanding that Oracle 8i does not directly support mutiple conditions for outer joins. For instance, I'm looking for PEOPLE who may, or may not, be on MEDICATIONS.
    All MEDICATIONS are listed with DRUGNAME and DRUGID. There thousand of different drugs. I'm only looking for PEOPLE on either one or two of them (to make it simple) or no drug at all (ignoring all other DRUGS they're on..) IF they are on the DRUG, it's gerts printed.
    I'd ideally do a LEFT OUTER JOIN to do this with multiple conditions:
    SELECT DISTINCT
    PERSON.NAME,
    MEDICATION.DRUGNAME,
    MEDICATION.DRUGID
    FROM
    PERSON,
    MEDICATION
    WHERE
    PERSON.ID = MEDICATION.ID (+) AND
    (MEDICATION.DRUGID (+) = 632 OR
    MEDICATION.DRUGID (+) = 956)
    This, of course, is not valid, at least in 8i...
    So I've taken the UNION approach:
    SELECT DISTINCT
    PERSON.NAME,
    MEDICATION.DRUGNAME,
    MEDICATION.DRUGID
    FROM
    PERSON,
    MEDICATION
    WHERE
    PERSON.ID = MEDICATION.ID (+) AND
    MEDICATION.DRUGID (+) = 632
    UNION
    SELECT DISTINCT
    PERSON.NAME,
    MEDICATION.DRUGNAME,
    MEDICATION.DRUGID
    FROM
    PERSON,
    MEDICATION
    WHERE
    PERSON.ID = MEDICATION.ID (+) AND
    MEDICATION.DRUGID (+) = 956
    This of course, does work, but as I've added more drugs this becomes quite unwieldly and not really sure what this does to performance. (There are also several more joins to other tables, not relevent here.)
    In addition, if I import this into Crystal Reports 8.5 (as opposed to the Crystal Query Designer), it refuses to recognize the UNION.
    -- Any suggestions for alternative syntax ???
    -- Has this been addressed in 9i ???
    Thanks,
    Will

    You could try
    select Distinct Person.Name, Med.DrugName, Med.DrugId
    from Person,
    (select ID, DrugName, DrugId from Medication
    where DrugId in (632, 956) ) Med
    where Person.ID = Med.ID(+)
    SELECT DISTINCT
    PERSON.NAME,
    MEDICATION.DRUGNAME,
    MEDICATION.DRUGID
    FROM
    PERSON,
    MEDICATION
    WHERE
    PERSON.ID = MEDICATION.ID (+) AND
    (MEDICATION.DRUGID (+) = 632 OR
    MEDICATION.DRUGID (+) = 956)
    This, of course, is not valid, at least in 8i...
    So I've taken the UNION approach:
    SELECT DISTINCT
    PERSON.NAME,
    MEDICATION.DRUGNAME,
    MEDICATION.DRUGID
    FROM
    PERSON,
    MEDICATION
    WHERE
    PERSON.ID = MEDICATION.ID (+) AND
    MEDICATION.DRUGID (+) = 632
    UNION
    SELECT DISTINCT
    PERSON.NAME,
    MEDICATION.DRUGNAME,
    MEDICATION.DRUGID
    FROM
    PERSON,
    MEDICATION
    WHERE
    PERSON.ID = MEDICATION.ID (+) AND
    MEDICATION.DRUGID (+) = 956
    This of course, does work, but as I've added more drugs this becomes quite unwieldly and not really sure what this does to performance. (There are also several more joins to other tables, not relevent here.)
    In addition, if I import this into Crystal Reports 8.5 (as opposed to the Crystal Query Designer), it refuses to recognize the UNION.
    -- Any suggestions for alternative syntax ???
    -- Has this been addressed in 9i ???
    Thanks,
    Will

  • Alternative for Inner Join

    Hi all,
    Im extracting different fields from material master data into different internal tables. I need to have all the data in these internal table in one final internal table, I don't want to use inner join to get the data into the final internal table. Can you suggest any alternative for this?
    Thanks.

    hi check this..this is the alternative for the joins..
    REPORT  ZZZZ000000.
    tables:mara,marc,mard,makt.
    data:begin of it_mara occurs 0,
         matnr like mara-matnr,
         mtart like mara-mtart,
         meins like mara-meins,
         end of it_mara.
    data:begin of it_marc occurs 0,
         matnr like marc-matnr,
         pstat like marc-pstat,
         werks like marc-werks,
         end of it_marc.
    data:begin of it_mard occurs 0,
         werks like mard-werks,
         lgort like mard-lgort,
         labst like mard-labst,
         end of it_mard.
    data:begin of it_final occurs 0,
         matnr like mara-matnr,
         mtart like mara-mtart,
         meins like mara-meins,
         pstat like marc-pstat,
         werks like marc-werks,
         lgort like mard-lgort,
         labst like mard-labst,
         maktx like makt-maktx,
         end of it_final.
    select-options:s_matnr for mara-matnr.
    select  matnr
            mtart
            meins
            from mara
            into table it_mara
            where matnr in s_matnr.
            if not it_mara[] is initial.
            select matnr
                   pstat
                   werks
                   from marc
                   into table it_marc
                   for all entries in it_mara
                   where matnr = it_mara-matnr.
                   if not it_marc[] is initial.
                   select werks
                          lgort
                          labst
                          from mard
                          into table it_mard
                          for all entries in it_marc
                          where werks = it_marc-werks.
                   endif.
          endif.
    loop at it_mara.
    it_final-matnr = it_mara-matnr.
    it_final-mtart = it_mara-mtart.
    it_final-meins = it_mara-meins.
    read table it_marc with key matnr = it_mara-matnr.
    it_final-werks = it_marc-werks.
    it_final-pstat = it_marc-pstat.
    read table it_mard with key werks = it_marc-werks.
    it_final-lgort = it_mard-lgort.
    it_final-labst = it_mard-labst.
    if sy-subrc = 0.
    select maktx from makt into it_final-maktx where matnr = it_final-matnr.
    endselect.
    endif.
    append it_final.
    endloop.
    loop at it_final.
    write:/ it_final-matnr under 'material',
            it_final-mtart under 'material type',
            it_final-meins under 'unit of measure',
            it_final-werks under 'plant' ,
            it_final-pstat under 'status',
            it_final-lgort under 'storage loc',
            it_final-labst under 'stock',
            it_final-maktx.
    endloop.
    regards,
    venkat

  • Alternative for double inner join

    SELECT SINGLE ALNUM INTO P_ITAB-ALNUM_AL FROM  MAEX
             JOIN MARC ON MARCMATNR = MAEXMATNR
             JOIN T001W ON T001WWERKS = MARCWERKS
                 WHERE  MAEX~MATNR  = P_VBPLP-MATNR
                 AND    MARC~WERKS  = T_VBDPL-WERKS
                 AND    MAEXALAND  = T001WLAND1
                 AND    MAEX~GEGRU  = 'DE'.
    Can anyone suggest the best way to modify the above statement to improve the performence.
    Thanks,
    Khasimsa

    Hi Shaik,
               Dont use the select query within the loop.
              Performance wise it is not recommended.
    Instead you select the above join query in an internal table i.e.,
    SELECT a  b   c,  d  INTO P_ITAB FROM MAEX
    JOIN MARC ON MARCMATNR = MAEXMATNR
    JOIN T001W ON T001WWERKS = MARCWERKS
    WHERE MAEX~MATNR = P_VBPLP-MATNR
    AND MARC~WERKS = T_VBDPL-WERKS
    AND MAEXALAND = T001WLAND1
    AND MAEX~GEGRU = 'DE'.
    Then
    Loop at itab.
    read p_itab with key a
    endloop.
    This will improve your performance as well.
    Regards,
    Md Ziauddin

  • Alternative to Outer Join Required !!!

    d/b version 11g R2
    i have 3 tables a,b and c.Below is the data in the tables.
    table A
    SQL> select id from a;
            ID
             1
             2
             3
             4
             5
    table B
    SQL> select id from b;
            ID
             1
             2
             3
             4
             5
             6
             7
             8
             9
            10
    table C
    SQL> select id from c;
            ID
             1
             2
             3
             4
             5
             6
             7
             8
             9
            10
            11
            12
            13
            14
            15
    I would like to rewrite the below query's in the form of union set operators, Could some body help me out
    select a.id,b.id,c.id from a full outer join b on (a.id=b.id) left outer join on (b.id=c.id);
    select a.id,b.id,c.id from a full outer join b on (a.id=b.id) right outer join on (b.id=c.id);

    You need to post expected results. Your both queries have syntax issues. Theay are missing table c name and ON clause. For eample, corrected first query:
    with a as (select level id from dual connect by level <= 5),
         b as (select level id from dual connect by level <= 10),
         c as (select level id from dual connect by level <= 15)
    select  a.id,
            b.id,
            c.id
      from      a
            full outer join
                b
              on a.id=b.id
            left outer join
                c
              on b.id=c.id
            ID         ID         ID
             1          1          1
             2          2          2
             3          3          3
             4          4          4
             5          5          5
                        6          6
                        7          7
                        8          8
                        9          9
                       10         10
    10 rows selected.
    SQL> But is it expected result? Are you looking for:
    with a as (select level id from dual connect by level <= 5),
         b as (select level id from dual connect by level <= 10),
         c as (select level id from dual connect by level <= 15)
    select  a.id,
            b.id,
            c.id
      from      a
            full outer join
                b
              on a.id=b.id
            full outer join
                c
              on b.id=c.id
            ID         ID         ID
             1          1          1
             2          2          2
             3          3          3
             4          4          4
             5          5          5
                        6          6
                        7          7
                        8          8
                        9          9
                       10         10
                                  15
            ID         ID         ID
                                  12
                                  14
                                  13
                                  11
    15 rows selected.
    SQL> SY.

Maybe you are looking for

  • How to include External files

    Am Developing an application using servlet jsp and jakarta tomcat 5. Am using MVC frame work also web.xml(deployment descriptor). I could not include script files and image files in my jsp page as its not getting those file although i specified the p

  • N70 Internet - Can it be connected to my household...

    I was just wondering if a NOkia n70 could be connected to my wireless connection at home? If yes, how do i do it? Thanks

  • Private messaging?

    Is there a way to send a private message to another user here? I don't see one, though it's unusual for that to not be available these days on message boards. Assuming PM isn't implemented here, I suggest that it be added. Among other things, it's al

  • Passing PERNR to HR program

    Hello, HAve a requirement in which i will need to  pass pernr from a normal program to an HR program, I am using a submit program for the same, how do i default the selection screen of my HR program with the pernr number i pass from my normal program

  • Display driver error on my Equium A60-155

    I have an Equium A60 - 155. I have been having consistent problems where I get a message saying that my the ati display driver has stopped working. I have downloaded the driver again and still no change. I have seen the blue screen of death several t