Alternative to senstive t-codes

Hello everyone,
i need to pick your brains please.
I need alternative t-codes to the following:
SM50
SM51
SE37
SM12
If no alternatives, can you please explain what the risk is with them?
many thanks

Hi,
an addition to the post of Sunil regarding the IGS monitoring: if you are not interested in a permanent but in a single monitoring of the IGS you can only use the information "call transaction se38 and execute the program graphics_igs_admin" of the provided link.
Note <a href="http://service.sap.com/sap/support/notes/995471">995471</a> gives more information about this report.
Regards
Matthias

Similar Messages

  • Help in Optimizing code

    Hello experts, I have a function module that runs so slow, I just want to seek some advice to help me have a better performance speed what can I used and alternatives to make my codes faster... any advice can help
    Heres my <b> code </b>
    <b>Declaration</b>
    FUNCTION-POOL YXBW_0PRODORDER_ATTR.         "MESSAGE-ID ..
    TYPE-POOLS: RSAP, RSSG, SRSC, SRSD, RSAOT, RSFH.
    DATA: ippord_bw LIKE ppord_bw.
    DATA : itabix LIKE sy-tabix.
    DATA : V_OBJNR LIKE JEST-OBJNR.
    DATA : BEGIN OF i_data_temp OCCURS 0.
            INCLUDE STRUCTURE ppord_bw.
    DATA : END OF i_data_temp.
    data:  begin of i_jest_obj occurs 0,
    objnr like jest-objnr,
    end of i_jest_obj.
    *TYPES Declaration             *
    TYPES : BEGIN OF t_afpo,
             aufnr LIKE afpo-aufnr, "Order Number
             plnum LIKE afpo-plnum, "Planned order number
             psamg LIKE afpo-psamg, "Scrap quantity in item
             psmng LIKE afpo-psmng, "Order item quantity
             wemng LIKE afpo-wemng, "Quantity of goods for the order item
             amein LIKE afpo-amein, "Unit of measure for in-house production
             meins LIKE afpo-meins, "Base unit of measure
             pamng LIKE afpo-pamng, "Fixed quantity of scrap from production
             pgmng LIKE afpo-pgmng, "Total planned order quantity
             ablad LIKE afpo-ablad, "Unloading point
            END OF t_afpo.
    TYPES:  BEGIN OF t_afko,
             aufnr LIKE afko-aufnr, "Order Number
             gltrp LIKE afko-gltrp, "Basic finish date
             gstrp LIKE afko-gstrp, "Basic start date
             ftrms LIKE afko-ftrms, "Scheduled release date
             gltrs LIKE afko-gltrs, "Scheduled finish
             gstrs LIKE afko-gstrs, "Scheduled start
             gstri LIKE afko-gstri, "Actual start date
             gltri LIKE afko-gltri, "Actual finish date
             ftrmi LIKE afko-ftrmi, "Actual release date
             gmein LIKE afko-gmein, "Base unit of measure
             plnty LIKE afko-plnty, "Task list type
             plnnr LIKE afko-plnnr, "Key for task groupKey
             plnal LIKE afko-plnal, "Group counter
             aufld LIKE afko-aufld, "Date of BOM routing transfer
             aufpl  LIKE afko-aufpl,"Routing number for operations
             igmng LIKE afko-igmng, "Yield confirmed order confirmation
             iasmg LIKE afko-iasmg, "Scrap confirmed for order
            END OF t_afko.
    TYPES:  BEGIN OF t_afvc,
             aufpl LIKE afvc-aufpl, "Routing number for operations order
             arbid LIKE afvc-arbid, "Object ID of the resource
            END OF t_afvc.
    TYPES:  BEGIN OF t_zbw_afvv_c,
             aufpl LIKE zbw_afvv_c-aufpl, "Routing number
             ism03 LIKE zbw_afvv_c-ism03, "Previously confirmed activity
             ile03 LIKE zbw_afvv_c-ile03, "Unit of measure
             vgw02 LIKE zbw_afvv_c-vgw02, "Standard value
             vge02 LIKE zbw_afvv_c-vge02, "Unit of measure standard value
             isdd  LIKE zbw_afvv_c-isdd,  "Actual start: Execution (date)
             isdz  LIKE zbw_afvv_c-isdz,  "Actual start: Execution (time)
            END OF t_zbw_afvv_c.
    TYPES: BEGIN OF t_CRHD,
             objid LIKE crhd-objid, "Object ID of the resource
             arbpl LIKE crhd-arbpl, "Work Center
           END OF t_CRHD.
    TYPES: BEGIN OF t_jest,
             objnr LIKE jest-objnr, "Object Number
             stat  LIKE jest-stat,  "Status
           END OF t_jest.
    *Internal Table Declaration    *
    DATA: i_afpo    TYPE STANDARD TABLE OF t_afpo,
          wa_afpo   TYPE t_afpo,
          i_afko    TYPE STANDARD TABLE OF t_afko,
          wa_afko   TYPE t_afko,
          i_afvc    TYPE STANDARD TABLE OF t_afvc,
          wa_afvc   TYPE t_afvc,
          i_afvc_d  TYPE STANDARD TABLE OF t_afvc,
          wa_afvc_d TYPE t_afvc,
          i_jest    TYPE STANDARD TABLE OF t_jest,
          wa_jest   TYPE t_jest,
          i_zbw_afvv_c    TYPE STANDARD TABLE OF t_zbw_afvv_c,
          wa_zbw_afvv_c   TYPE t_zbw_afvv_c,
          i_CRHD    TYPE STANDARD TABLE OF t_CRHD,
          wa_CRHD   TYPE t_CRHD.
    <b>Actual Code</b>
      i_data_temp[] = i_t_data[].
      IF i_data_temp[] IS INITIAL.
        RAISE rsap_customer_exit_error.
        EXIT.
      ELSE.
    retrieves values of appended fields from afpo table
        SELECT aufnr     "Order Number
               plnum     "Planned order number
               psamg     "Scrap quantity in item
               psmng     "Order item quantity
               wemng     "Quantity of goods for the order item
               amein     "Unit of measure for in-house production
               meins     "Base unit of measure
               pamng     "Fixed quantity of scrap from production
               pgmng     "Total planned order quantity
               ablad     "Unloading point
          FROM afpo
          INTO TABLE i_afpo
           FOR ALL ENTRIES IN i_data_temp
         WHERE aufnr = i_data_temp-aufnr.
        IF sy-subrc = 0.
        ENDIF.
    retrieves values of appended fields and aufpl from afko table that
    will be used as a look up in table afvv
        SELECT aufnr     "Order Number
               gltrp     "Basic finish date
               gstrp     "Basic start date
               ftrms     "Scheduled release date
               gltrs     "Scheduled finish
               gstrs     "Scheduled start
               gstri     "Actual start date
               gltri     "Actual finish date
               ftrmi     "Actual release date
               gmein     "Base unit of measure
               plnty     "Task list type
               plnnr     "Key for task groupKey
               plnal     "Group counter
               aufld     "Date of BOM routing transfer
               aufpl     "Routing number for operations
               igmng     "Yield confirmed order confirmation
               iasmg     "Scrap confirmed for order
          FROM afko
          INTO TABLE i_afko
           FOR ALL ENTRIES IN i_afpo
         WHERE aufnr = i_afpo-aufnr.
        IF sy-subrc = 0.
        ENDIF.
    loop at i_data_temp.
      CONCATENATE 'OR' i_data_temp-aufnr into i_jest_obj-objnr.
      append i_jest_obj.
    endloop.
    retrieves appended fields from afvv table
        SELECT aufpl      "Routing number
               ism03      "Previously confirmed activity
               ile03      "Unit of measure
               vgw02      "Standard value
               vge02      "Unit of measure standard value
               isdd       "Actual start: Execution (date)
               isdz       "Actual start: Execution (time)
          FROM zbw_afvv_c
          INTO TABLE i_zbw_afvv_c
           FOR ALL ENTRIES IN i_afko
         WHERE aufpl = i_afko-aufpl.
        IF sy-subrc = 0.
        ENDIF.
    retrieves ARBID from afvc table that will be used as a lookup in CHRD
    table to get the workcenter
        SELECT aufpl       "Routing number for operations order
               arbid       "Object ID of the resource
          FROM afvc
          INTO TABLE i_afvc
           FOR ALL ENTRIES IN i_afko
         WHERE aufpl = i_afko-aufpl.
        IF sy-subrc = 0.
        ENDIF.
    retrieves Work Center based on the arbid selected from afvc table
        SELECT objid      "Object ID of the resource
               arbpl      " Work Center
          FROM crhd
          INTO TABLE i_crhd
           FOR ALL ENTRIES IN i_afvc
         WHERE objid = i_afvc-arbid.
        IF sy-subrc = 0.
        ENDIF.
        SELECT objnr     "Object Number
               stat      "Status
          FROM jest
          INTO TABLE i_jest
          for all entries in i_jest_obj
       where objnr = i_jest_obj-objnr
        AND   ( stat EQ 'I0045' OR stat EQ 'I0076' OR stat EQ 'I0012' ).
        IF SY-SUBRC = 0.
        ENDIF.
      ENDIF.
    MAIN PROCESSING  *****
      i_afvc_d[] = i_afvc[].
      SORT i_afvc   BY aufpl ASCENDING.
      SORT i_afvc_d BY aufpl DESCENDING.
      SORT : i_afko BY aufnr,
             i_afpo BY aufnr,
             i_zbw_afvv_c BY aufpl.
      LOOP AT i_t_data INTO ippord_bw.
        itabix = sy-tabix.
    clears work area
        CLEAR: wa_afpo,
               wa_afko,
               wa_afvc,
               wa_zbw_afvv_c,
               wa_crhd.
    read internal table i_afpo
        READ TABLE i_afpo INTO wa_afpo
                          WITH KEY aufnr = ippord_bw-aufnr.
        IF sy-subrc = 0.
          ippord_bw-zzwemng = wa_afpo-wemng.
          ippord_bw-zzamein = wa_afpo-amein.
          ippord_bw-amein   = wa_afpo-amein.
          ippord_bw-zzpsamg = wa_afpo-psamg.
          ippord_bw-zzpgmng = wa_afpo-pgmng.
          ippord_bw-zzpamng = wa_afpo-pamng.
          ippord_bw-zzpsmng = wa_afpo-psmng.
          ippord_bw-psmng   = wa_afpo-psmng.
          ippord_bw-zzmeins = wa_afpo-meins.
          ippord_bw-zzplnum = wa_afpo-plnum.
          ippord_bw-zzablad = wa_afpo-ablad.
        ENDIF.
    read internal table i_afko
        READ TABLE i_afko INTO wa_afko
                          WITH KEY aufnr = ippord_bw-aufnr.
        IF sy-subrc = 0.
          ippord_bw-zzftrms = wa_afko-ftrms.
          ippord_bw-zzgstri = wa_afko-gstri.
          ippord_bw-zzftrmi = wa_afko-ftrmi.
          ippord_bw-zzgstrp = wa_afko-gstrp.
          ippord_bw-zziasmg = wa_afko-iasmg.
          ippord_bw-zzigmng = wa_afko-igmng.
          ippord_bw-zzgmein = wa_afko-gmein.
          ippord_bw-zzplnnr = wa_afko-plnnr.
          ippord_bw-zzplnty = wa_afko-plnty.
          ippord_bw-zzplnal = wa_afko-plnal.
          ippord_bw-zzaufld = wa_afko-aufld.
          ippord_bw-zzgltrs = wa_afko-gltrs.
          ippord_bw-zzgstrs = wa_afko-gstrs.
          ippord_bw-zzgltri = wa_afko-gltri.
          ippord_bw-zzgltrp = wa_afko-gltrp.
    read internal table i_afvv
          READ TABLE i_zbw_afvv_c INTO wa_zbw_afvv_c
                            WITH KEY aufpl = wa_afko-aufpl.
          IF sy-subrc = 0.
              ippord_bw-ism03 = wa_zbw_afvv_c-ism03.
              ippord_bw-ile03 = wa_zbw_afvv_c-ile03.
              ippord_bw-vgw02 = wa_zbw_afvv_c-vgw02.
              ippord_bw-vge02 = wa_zbw_afvv_c-vge02.
              ippord_bw-isdd  = wa_zbw_afvv_c-isdd.
              ippord_bw-isdz  = wa_zbw_afvv_c-isdz.
          ENDIF.
    *Pull first resource
          READ TABLE i_afvc INTO wa_afvc
                            WITH KEY wa_zbw_afvv_c-aufpl.
          IF sy-subrc = 0.
            READ TABLE i_crhd INTO wa_crhd
                              WITH KEY objid = wa_afvc-arbid.
            IF sy-subrc = 0.
              ippord_bw-zzarbpl1 = wa_crhd-arbpl.
            ENDIF. "read i_crhd
          ENDIF. "read i_afvc
    *Pull last resource
          CLEAR: wa_afvc_d,
                 wa_crhd.
          READ TABLE i_afvc_d INTO wa_afvc_d
                            WITH KEY wa_zbw_afvv_c-aufpl.
          IF sy-subrc = 0.
            READ TABLE i_crhd INTO wa_crhd
                              WITH KEY objid = wa_afvc_d-arbid.
            IF sy-subrc = 0.
              ippord_bw-zzarbpl2 = wa_crhd-arbpl.
            ENDIF. "read i_crhd
          ENDIF.  "read i_afvc
        ENDIF. "read i_afko
        CLEAR v_objnr.
        READ TABLE i_data_temp INDEX itabix.
        SHIFT i_data_temp-aufnr LEFT BY 5 PLACES.
        CONCATENATE 'OR00000' i_data_temp-aufnr INTO v_objnr.
    TECO Status
        READ TABLE i_jest INTO  wa_jest
                          WITH KEY objnr = v_objnr
                               stat  = 'I0045'.
          IF sy-subrc = 0.
            ippord_bw-zzteco = 'X'.
          ENDIF.
    Deletion Flag Status
        READ TABLE i_jest INTO  wa_jest
                          WITH KEY objnr = v_objnr
                                   stat  = 'I0076'.
          IF sy-subrc = 0.
            ippord_bw-zzdlfl = 'X'.
          ENDIF.
    Delivered Status
        READ TABLE i_jest INTO  wa_jest
                          WITH KEY objnr = v_objnr
                                   stat  = 'I0012'.
          IF sy-subrc = 0.
            ippord_bw-zzdlv = 'X'.
          ENDIF.
        MODIFY i_t_data FROM ippord_bw INDEX itabix.
      ENDLOOP.
    refreshes content of internal table
      REFRESH: i_data_temp,
               i_afko,
               i_afpo,
               i_afvc,
               i_afvc_d,
               i_jest,
               i_zbw_afvv_c.
    frees up the memory space containing the internal table
      FREE:    i_data_temp,
               i_afko,
               i_afpo,
               i_afvc,
               i_afvc_d,
               i_jest,
               i_crhd.

    Also this select could be improved:
    * retrieves Work Center based on the arbid selected from afvc table
    SELECT objid "Object ID of the resource
    arbpl " Work Center
    FROM crhd
    INTO TABLE i_crhd
    FOR ALL ENTRIES IN i_afvc
    WHERE objid = i_afvc-arbid.
    IF sy-subrc = 0.
    ENDIF.
    Try:
    * retrieves Work Center based on the arbid selected from afvc table
    SELECT objid "Object ID of the resource
    arbpl " Work Center
    FROM crhd
    INTO TABLE i_crhd
    FOR ALL ENTRIES IN i_afvc
    <b>WHERE OBJTY in ('A', 'AA', 'FH', 'H')</b>
    WHERE objid = i_afvc-arbid.
    IF sy-subrc = 0.
    ENDIF.

  • C# code stored in Oracle

    Has anyone heard of the following?
    http://www.oracle.com/goto/newsletters/netdev/0409/idc_interop-pdf.html?msgid=7590204
    An interesting capability first introduced in Oracle Database 10g is the ability to run
    .NET code as Oracle stored procedures. It is common knowledge that much
    enterprise application code continues to be developed and maintained in database
    stored procedures. Stored procedures provide a declarative (SQL) and thus highly
    compact and productive approach to development with the added benefit of a much
    lower impedance mismatch factor between database objects and types and
    application code objects and types. Thus, much of the business logic of many
    important applications was developed, mostly during the era of preapplication server
    client/server architectures when the network inefficiencies of putting code on the
    client were prohibitive. The emergence of standardized SQL in the late 1980s and
    early 1990s provided an easy and productive alternative, but writing application code
    in SQL is a skill that seems to be increasingly lost to the more procedurally oriented
    world of application developers. What’s more, the set of tools and capabilities (e.g.,
    version, configuration, and project management) were largely absent for this type of
    code, at least in anything resembling an integrated manner. Thus, to retain the
    benefits of code that is tightly coupled to the database and provide languages more
    familiar to the typical application developer, a desire emerged to support stored
    procedures in multiple languages. Oracle was early to the game in the mid-1990s with
    Java stored procedures, and then with SQL Server 2005, Microsoft began to integrate
    the .NET Common Language Runtime (CLR) with the SQL Server stored procedure
    engine. Not to be outdone, Oracle invested in similar engineering skills to additionally
    support CLR stored procedures in the Oracle database. Today this capability is
    available in the form of Oracle Database Extensions for .NET. While the jury is out on
    whether such capabilities, for any database, will become mainstream approaches to
    application development, there are applications that are simultaneously database and
    algorithmically intensive in an intertwined fashion that can benefit greatly from them.
    Thus Oracle has continued to maintain this capability and further supports it with the
    deployment mechanism in the Oracle Developer Tools profiled earlier.This majority of this article focused on running Oracle in a Windows Server environment. Would that be required to run C# code, as mentioned above?
    Thanks,
    --=Chuck

    Maybe I should've waited before I posted. We're adopting .NET (WinForms) as our primary Development environment, and this was a feature I'd never heard of. Turns out, we're running Oracle on LINUX, so this doesn't work for us without changing O/S's.
    Maybe my question should have been ...
    For those who have worked with procedures stored in Oracle, written in C# or VB, has it worked well for you? Or is it a relatively underutilized feature? I'm asking, because I am always a proponent of writing business rule logic in PL/SQL in the database tier, but our Applications Manager is concerned that it's tougher to find job applicants with PL/SQL skills - than with C#/VB skills. So he likes the code in a middle tier. This would seem to be the best of both worlds (even if you went to yet another Application Development platform, like ColdFusion, which, since it interacts with the db, it would in-turn also call this C# code).
    --=Chuck

  • Alternative account number issue for GL master

    Hi,
    There is one GL.100000 is extended in two company codes.
    Company code : A (Balance available)
    Company code: B(Balance available)
    Whenever I change the alternative account in company code  A, it is accepting whereas company code  B is not accepting and showing error message : FH007.
    What might be the issue?
    Rgds
    Swapna.

    Hi,
      Postings might be done In the second company code. It might be the reason.
    Check with the below link
    Message no. FH007 while assigning Alternative account number
    GL Alternative Acct Number - error message FH007
    regards,
    Radhika.
    Edited by: Balaji Radhika on Apr 5, 2010 1:39 PM

  • Re: Alternative Solution for Field-Groups.

    Dear Experts,
    I have copied one program from older version system to new version system, in this program field groups are used.
    In the new version i have to modify this program as per programming guide lines, so i used Code Inspector(SCI), so in Code Inspector check for field groups error is showing and this error message cannot be hidden using pseudo-comment.
    So anyone could please suggest the alternative solution.
    Below code is used in the program.
    {FIELD-GROUPS: HEADER, ITEM.
    INSERT T001-BUKRS MARA-MATNR INTO HEADER.
    INSERT MAKT-MAKTX MARC-XCHAR T001-BUTXT T001W-NAME1VBBE-OMENG INTO ITEM.
    other processing
    EXTRACT ITEM.
    other processing}

    Hi Friends, I have a requirement as below Source NUM1 123456789 TARGETNUM1,2,3,46,7,8,9.... I WANT TO LOAD FIRST FOUR RECORDS FROM SOUCE INTO SINGLE RECORDS IN TARGET AND SO ON.. PLEASE PROVDE SOLUTION FOR ABOVE SCENARIOTHANKS IN ADVANCE

  • WF_SURVEYDEMO Code (wfsrvb.sql) for Master/Detail?

    Hi,
    I'm investigating the master/detail approach to a workflow issue I'm having.
    I've become somewhat familiar with the Oracle Workflow Guide, and now I'm looking for the code behind the package WF_SURVEYDEMO, but I can't find a /demo or /demo/US directory anywhere.
    Does anyone know where I might be able to find the code behind the WF_SURVEYDEMO package (filename wfsrvb.sql)?
    Thanks.

    Hi,
    Are you using standalone or embedded Workflow?
    Emebedded should be in $FND_TOP/admin/sql. Standalone should be in $ORACLE_HOME/wf/admin/sql I think.
    Alternatively, just pull the code out of the database by selecting from user_source or all_source.
    HTH,
    Matt
    Alpha review chapters from my book "Developing With Oracle Workflow" are available on my website:
    http://www.workflowfaq.com
    http://forum.workflowfaq.com

  • Parallel release codes - customizing

    We have the release strategy say S1, which has 3 release codes, say L1, L2 and L3. Now, we want to have the alternative release at the first level (L1), ie we want to have another code say L4, added at the first level as an alternative to the release code L1. So that either L1 can approve or L4 can approve and then it will go to the level L2.
    In the end, only L1, L2, L3  OR L4, L2, L3 should be the final release statuses.
    How can I achieve this?

    Hi,
    Please refer below links..
    Alternative release - when big boss release it....
    Alternative approver for release stratergy
    Kuber

  • Alternative query

    Hi experts,
    I want convert columns to row,
    I search for alternatives to the following code
    CREATE TABLE T
      ID  NUMBER,
      T1  NUMBER,
      T2  NUMBER,
      T3  NUMBER,
      T4  NUMBER
    Insert into T
       (ID, T1, T2, T3, T4)
    Values
       (1, 10, 20, 30, 40);
    Insert into T
       (ID, T1, T2, T3, T4)
    Values
       (2, 50, 60, 70, 80);
    Insert into T
       (ID, T1, T2, T3, T4)
    Values
       (3, 90, 100, NULL, NULL);
    Insert into T
       (ID, T1, T2, T3, T4)
    Values
       (4, 110, NULL, 120, NULL);
    Insert into T
       (ID, T1, T2, T3, T4)
    Values
       (5, NULL, 130, NULL, NULL);
    COMMIT;
    WITH DATA1 AS(
    SELECT id,num
    FROM
        SELECT id,t1 AS num FROM t WHERE t1 IS NOT NULL
        UNION ALL
        SELECT id,t2 AS num FROM t WHERE t2 IS NOT NULL
        UNION ALL
        SELECT id,t3 AS num FROM t WHERE t3 IS NOT NULL
        UNION ALL
        SELECT id,t4 AS num FROM t WHERE t4 IS NOT NULL
    ,DATA2 AS (
    SELECT id,num
    FROM   DATA1
    ORDER BY id,num
    SELECT id,num,ROW_NUMBER () OVER (PARTITION BY id ORDER BY num) AS RN
    FROM   DATA2;
    Output
            ID        NUM         RN
             1         10          1
             1         20          2
             1         30          3
             1         40          4
             2         50          1
             2         60          2
             2         70          3
             2         80          4
             3         90          1
             3        100          2
             4        110          1
             4        120          2
             5        130          1Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    Thanks in advance
    Edited by: 905689 on Jan 5, 2012 10:49 AM

    with tbl as (
                 select  id,
                         c,
                         case c
                           when 1 then t1
                           when 2 then t2
                           when 3 then t3
                           else t4
                         end num
                   from  t,
                          select  level c
                            from  dual
                            connect by level <= 4
    select  id,
            num,
            row_number() over(partition by id order by c) rn
      from  tbl
      where num is not null
      order by id,rn
            ID        NUM         RN
             1         10          1
             1         20          2
             1         30          3
             1         40          4
             2         50          1
             2         60          2
             2         70          3
             2         80          4
             3         90          1
             3        100          2
             4        110          1
            ID        NUM         RN
             4        120          2
             5        130          1
    13 rows selected.
    SQL> SY.

  • Catalyst 10.10 - Xorg 1.9.2 crash and random system freezes

    Hello.
    I have Radeon HD4650 AGP graphics card.
    I have up to date(no testing repos) Archlinux.
    I installed catalyst 10.10 from AUR - http://aur.archlinux.org/packages.php?ID=29111.
    Everything is ok, but two problems:
    1) When I switching TTY(eg. Ctrl-Alt-F6) while loading KDE(OpenGL splash is running) Xorg crashes:
    kdm.log:
    X.Org X Server 1.9.2
    Release Date: 2010-10-30
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.35-ARCH i686
    Current Operating System: Linux myhost 2.6.35-ARCH #1 SMP PREEMPT Sat Oct 30 19:57:05 UTC 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/223249f9-5c17-4b09-9886-55ac67009986 ro elevator=deadline nomodeset vga=33556
    Build Date: 01 November 2010 10:23:07PM
    Current version of pixman: 0.18.4
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Nov 8 10:37:11 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    > Ignoring extra symbols
    Errors from xkbcomp are not fatal to the X server
    Backtrace:
    0: /usr/bin/X (xorg_backtrace+0x3b) [0x80e5ebb]
    1: /usr/bin/X (0x8048000+0x5cd65) [0x80a4d65]
    2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb785240c]
    3: /usr/bin/X (0x8048000+0x143986) [0x818b986]
    4: /usr/bin/X (0x8048000+0x545c9) [0x809c5c9]
    5: /usr/bin/X (0x8048000+0x16de3b) [0x81b5e3b]
    6: /usr/bin/X (FreeCursor+0x57) [0x8062bd7]
    7: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0xb6979000+0x7b0b91) [0xb7129b91]
    8: /usr/bin/X (0x8048000+0x14349a) [0x818b49a]
    9: /usr/bin/X (miPointerUpdateSprite+0x2bd) [0x809d47d]
    10: /usr/bin/X (0x8048000+0x556d3) [0x809d6d3]
    11: /usr/bin/X (0x8048000+0xa34f6) [0x80eb4f6]
    12: /usr/bin/X (0x8048000+0x16dcad) [0x81b5cad]
    13: /usr/bin/X (0x8048000+0x2f31d) [0x807731d]
    14: /usr/bin/X (ProcChangeActivePointerGrab+0x141) [0x807b901]
    15: /usr/bin/X (0x8048000+0x27187) [0x806f187]
    16: /usr/bin/X (0x8048000+0x1a1b5) [0x80621b5]
    17: /lib/libc.so.6 (__libc_start_main+0xe6) [0xb7582c76]
    18: /usr/bin/X (0x8048000+0x19d91) [0x8061d91]
    Segmentation fault at address 0x21f000e6
    Fatal server error:
    Caught signal 11 (Segmentation fault). Server aborting
    kernel.log
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys cpuset
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys cpu
    Nov 8 10:37:07 localhost kernel: Linux version 2.6.35-ARCH (tobias@T-POWA-LX) (gcc version 4.5.1 (GCC) ) #1 SMP PREEMPT Sat Oct 30 19:57:05 UTC 2010
    Nov 8 10:37:07 localhost kernel: BIOS-provided physical RAM map:
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 0000000000100000 - 00000000bfff0000 (usable)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000bfff0000 - 00000000bfff8000 (ACPI data)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000bfff8000 - 00000000c0000000 (ACPI NVS)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    Nov 8 10:37:07 localhost kernel: Notice: NX (Execute Disable) protection missing in CPU or disabled in BIOS!
    Nov 8 10:37:07 localhost kernel: DMI 2.3 present.
    Nov 8 10:37:07 localhost kernel: AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    Nov 8 10:37:07 localhost kernel: e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    Nov 8 10:37:07 localhost kernel: e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    Nov 8 10:37:07 localhost kernel: e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    Nov 8 10:37:07 localhost kernel: last_pfn = 0xbfff0 max_arch_pfn = 0x100000
    Nov 8 10:37:07 localhost kernel: MTRR default type: uncachable
    Nov 8 10:37:07 localhost kernel: MTRR fixed ranges enabled:
    Nov 8 10:37:07 localhost kernel: 00000-9FFFF write-back
    Nov 8 10:37:07 localhost kernel: A0000-EFFFF uncachable
    Nov 8 10:37:07 localhost kernel: F0000-FFFFF write-protect
    Nov 8 10:37:07 localhost kernel: MTRR variable ranges enabled:
    Nov 8 10:37:07 localhost kernel: 0 base 000000000 mask F80000000 write-back
    Nov 8 10:37:07 localhost kernel: 1 base 080000000 mask FC0000000 write-back
    Nov 8 10:37:07 localhost kernel: 2 disabled
    Nov 8 10:37:07 localhost kernel: 3 disabled
    Nov 8 10:37:07 localhost kernel: 4 disabled
    Nov 8 10:37:07 localhost kernel: 5 base 0E0000000 mask FFC000000 write-combining
    Nov 8 10:37:07 localhost kernel: 6 disabled
    Nov 8 10:37:07 localhost kernel: 7 disabled
    Nov 8 10:37:07 localhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Nov 8 10:37:07 localhost kernel: Scanning 0 areas for low memory corruption
    Nov 8 10:37:07 localhost kernel: modified physical RAM map:
    Nov 8 10:37:07 localhost kernel: modified: 0000000000000000 - 0000000000010000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 0000000000010000 - 000000000009fc00 (usable)
    Nov 8 10:37:07 localhost kernel: modified: 000000000009fc00 - 00000000000a0000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 00000000000f0000 - 0000000000100000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 0000000000100000 - 00000000bfff0000 (usable)
    Nov 8 10:37:07 localhost kernel: modified: 00000000bfff0000 - 00000000bfff8000 (ACPI data)
    Nov 8 10:37:07 localhost kernel: modified: 00000000bfff8000 - 00000000c0000000 (ACPI NVS)
    Nov 8 10:37:07 localhost kernel: modified: 00000000fec00000 - 00000000fec01000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 00000000fee00000 - 00000000fee01000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 00000000fff80000 - 0000000100000000 (reserved)
    Nov 8 10:37:07 localhost kernel: initial memory mapped : 0 - 01800000
    Nov 8 10:37:07 localhost kernel: found SMP MP-table at [c00fb930] fb930
    Nov 8 10:37:07 localhost kernel: init_memory_mapping: 0000000000000000-00000000377fe000
    Nov 8 10:37:07 localhost kernel: 0000000000 - 0000400000 page 4k
    Nov 8 10:37:07 localhost kernel: 0000400000 - 0037400000 page 2M
    Nov 8 10:37:07 localhost kernel: 0037400000 - 00377fe000 page 4k
    Nov 8 10:37:07 localhost kernel: kernel direct mapping tables up to 377fe000 @ 15000-1a000
    Nov 8 10:37:07 localhost kernel: RAMDISK: 7fda7000 - 7fff0000
    Nov 8 10:37:07 localhost kernel: Allocated new RAMDISK: 00100000 - 003480c5
    Nov 8 10:37:07 localhost kernel: Move RAMDISK from 000000007fda7000 - 000000007ffef0c4 to 00100000 - 003480c4
    Nov 8 10:37:07 localhost kernel: ACPI: RSDP 000fa980 00014 (v00 AMI )
    Nov 8 10:37:07 localhost kernel: ACPI: RSDT bfff0000 0002C (v01 AMIINT VIA_K7 00000010 MSFT 00000097)
    Nov 8 10:37:07 localhost kernel: ACPI: FACP bfff0030 00081 (v01 AMIINT VIA_K7 00000011 MSFT 00000097)
    Nov 8 10:37:07 localhost kernel: ACPI: DSDT bfff0120 03362 (v01 VIA VIA_K7 00001000 MSFT 0100000D)
    Nov 8 10:37:07 localhost kernel: ACPI: FACS bfff8000 00040
    Nov 8 10:37:07 localhost kernel: ACPI: APIC bfff00c0 00054 (v01 AMIINT VIA_K7 00000009 MSFT 00000097)
    Nov 8 10:37:07 localhost kernel: ACPI: Local APIC address 0xfee00000
    Nov 8 10:37:07 localhost kernel: 2183MB HIGHMEM available.
    Nov 8 10:37:07 localhost kernel: 887MB LOWMEM available.
    Nov 8 10:37:07 localhost kernel: mapped low ram: 0 - 377fe000
    Nov 8 10:37:07 localhost kernel: low ram: 0 - 377fe000
    Nov 8 10:37:07 localhost kernel: Zone PFN ranges:
    Nov 8 10:37:07 localhost kernel: DMA 0x00000010 -> 0x00001000
    Nov 8 10:37:07 localhost kernel: Normal 0x00001000 -> 0x000377fe
    Nov 8 10:37:07 localhost kernel: HighMem 0x000377fe -> 0x000bfff0
    Nov 8 10:37:07 localhost kernel: Movable zone start PFN for each node
    Nov 8 10:37:07 localhost kernel: early_node_map[2] active PFN ranges
    Nov 8 10:37:07 localhost kernel: 0: 0x00000010 -> 0x0000009f
    Nov 8 10:37:07 localhost kernel: 0: 0x00000100 -> 0x000bfff0
    Nov 8 10:37:07 localhost kernel: On node 0 totalpages: 786303
    Nov 8 10:37:07 localhost kernel: free_area_init_node: node 0, pgdat c1418ac0, node_mem_map c157d200
    Nov 8 10:37:07 localhost kernel: DMA zone: 32 pages used for memmap
    Nov 8 10:37:07 localhost kernel: DMA zone: 0 pages reserved
    Nov 8 10:37:07 localhost kernel: DMA zone: 3951 pages, LIFO batch:0
    Nov 8 10:37:07 localhost kernel: Normal zone: 1744 pages used for memmap
    Nov 8 10:37:07 localhost kernel: Normal zone: 221486 pages, LIFO batch:31
    Nov 8 10:37:07 localhost kernel: HighMem zone: 4368 pages used for memmap
    Nov 8 10:37:07 localhost kernel: HighMem zone: 554722 pages, LIFO batch:31
    Nov 8 10:37:07 localhost kernel: Using APIC driver default
    Nov 8 10:37:07 localhost kernel: ACPI: PM-Timer IO Port: 0x808
    Nov 8 10:37:07 localhost kernel: ACPI: Local APIC address 0xfee00000
    Nov 8 10:37:07 localhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Nov 8 10:37:07 localhost kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Nov 8 10:37:07 localhost kernel: IOAPIC[0]: apic_id 2, version 3, address 0xfec00000, GSI 0-23
    Nov 8 10:37:07 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Nov 8 10:37:07 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Nov 8 10:37:07 localhost kernel: ACPI: IRQ0 used by override.
    Nov 8 10:37:07 localhost kernel: ACPI: IRQ2 used by override.
    Nov 8 10:37:07 localhost kernel: ACPI: IRQ9 used by override.
    Nov 8 10:37:07 localhost kernel: Using ACPI (MADT) for SMP configuration information
    Nov 8 10:37:07 localhost kernel: SMP: Allowing 1 CPUs, 0 hotplug CPUs
    Nov 8 10:37:07 localhost kernel: nr_irqs_gsi: 40
    Nov 8 10:37:07 localhost kernel: early_res array is doubled to 64 at [16000 - 167ff]
    Nov 8 10:37:07 localhost kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Nov 8 10:37:07 localhost kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    Nov 8 10:37:07 localhost kernel: PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    Nov 8 10:37:07 localhost kernel: Allocating PCI resources starting at c0000000 (gap: c0000000:3ec00000)
    Nov 8 10:37:07 localhost kernel: Booting paravirtualized kernel on bare hardware
    Nov 8 10:37:07 localhost kernel: setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
    Nov 8 10:37:07 localhost kernel: PERCPU: Embedded 14 pages/cpu @c3000000 s34880 r0 d22464 u4194304
    Nov 8 10:37:07 localhost kernel: pcpu-alloc: s34880 r0 d22464 u4194304 alloc=1*4194304
    Nov 8 10:37:07 localhost kernel: pcpu-alloc: [0] 0
    Nov 8 10:37:07 localhost kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 780159
    Nov 8 10:37:07 localhost kernel: Kernel command line: root=/dev/disk/by-uuid/223249f9-5c17-4b09-9886-55ac67009986 ro elevator=deadline nomodeset vga=33556
    Nov 8 10:37:07 localhost kernel: PID hash table entries: 4096 (order: 2, 16384 bytes)
    Nov 8 10:37:07 localhost kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Nov 8 10:37:07 localhost kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Nov 8 10:37:07 localhost kernel: Enabling fast FPU save and restore... done.
    Nov 8 10:37:07 localhost kernel: Enabling unmasked SIMD FPU exception support... done.
    Nov 8 10:37:07 localhost kernel: Initializing CPU#0
    Nov 8 10:37:07 localhost kernel: allocated 15728000 bytes of page_cgroup
    Nov 8 10:37:07 localhost kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Nov 8 10:37:07 localhost kernel: Subtract (46 early reservations)
    Nov 8 10:37:07 localhost kernel: #1 [0000001000 - 0000002000] EX TRAMPOLINE
    Nov 8 10:37:07 localhost kernel: #2 [0001000000 - 0001574184] TEXT DATA BSS
    Nov 8 10:37:07 localhost kernel: #3 [0001575000 - 000157b108] BRK
    Nov 8 10:37:07 localhost kernel: #4 [00000fb940 - 0000100000] BIOS reserved
    Nov 8 10:37:07 localhost kernel: #5 [00000fb930 - 00000fb940] MP-table mpf
    Nov 8 10:37:07 localhost kernel: #6 [000009fc00 - 00000f6630] BIOS reserved
    Nov 8 10:37:07 localhost kernel: #7 [00000f6738 - 00000fb930] BIOS reserved
    Nov 8 10:37:07 localhost kernel: #8 [00000f6630 - 00000f6738] MP-table mpc
    Nov 8 10:37:07 localhost kernel: #9 [0000010000 - 0000011000] TRAMPOLINE
    Nov 8 10:37:07 localhost kernel: #10 [0000011000 - 0000015000] ACPI WAKEUP
    Nov 8 10:37:07 localhost kernel: #11 [0000015000 - 0000016000] PGTABLE
    Nov 8 10:37:07 localhost kernel: #12 [0000100000 - 0000349000] NEW RAMDISK
    Nov 8 10:37:07 localhost kernel: #13 [000157c000 - 000157d000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #14 [000157d000 - 0002d7d000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #15 [00015741c0 - 00015741c4] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #16 [0001574200 - 00015742c0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #17 [00015742c0 - 0001574314] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #18 [0002d7d000 - 0002d80000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #19 [0001574340 - 0001574410] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #20 [0002d80000 - 0002d8c000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #21 [0001574440 - 0001574467] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #22 [0001574480 - 0001574598] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #23 [00015745c0 - 0001574600] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #24 [0001574600 - 0001574640] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #25 [0001574640 - 0001574680] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #26 [0001574680 - 00015746c0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #27 [00015746c0 - 0001574700] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #28 [0001574700 - 0001574740] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #29 [0001574740 - 0001574780] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #30 [0001574780 - 00015747c0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #31 [00015747c0 - 0001574800] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #32 [0001574800 - 0001574810] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #33 [0001574840 - 00015748a5] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #34 [00015748c0 - 0001574925] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #35 [0003000000 - 000300e000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #36 [0001574940 - 0001574944] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #37 [0001574980 - 0001574984] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #38 [00015749c0 - 00015749c4] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #39 [0001574a00 - 0001574a04] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #40 [0001574a40 - 0001574af0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #41 [0001574b00 - 0001574ba8] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #42 [0002d8c000 - 0002d90000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #43 [0002d90000 - 0002e10000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #44 [0002e10000 - 0002e50000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #45 [000300e000 - 0003f0dd80] BOOTMEM
    Nov 8 10:37:07 localhost kernel: Initializing HighMem for node 0 (000377fe:000bfff0)
    Nov 8 10:37:07 localhost kernel: Memory: 3096392k/3145664k available (2987k kernel code, 48820k reserved, 1237k data, 416k init, 2236360k highmem)
    Nov 8 10:37:07 localhost kernel: virtual kernel memory layout:
    Nov 8 10:37:07 localhost kernel: fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    Nov 8 10:37:07 localhost kernel: pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    Nov 8 10:37:07 localhost kernel: vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    Nov 8 10:37:07 localhost kernel: lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    Nov 8 10:37:07 localhost kernel: .init : 0xc1421000 - 0xc1489000 ( 416 kB)
    Nov 8 10:37:07 localhost kernel: .data : 0xc12eac4c - 0xc1420200 (1237 kB)
    Nov 8 10:37:07 localhost kernel: .text : 0xc1000000 - 0xc12eac4c (2987 kB)
    Nov 8 10:37:07 localhost kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Nov 8 10:37:07 localhost kernel: SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Nov 8 10:37:07 localhost kernel: Hierarchical RCU implementation.
    Nov 8 10:37:07 localhost kernel: RCU-based detection of stalled CPUs is disabled.
    Nov 8 10:37:07 localhost kernel: Verbose stalled-CPUs detection is disabled.
    Nov 8 10:37:07 localhost kernel: NR_IRQS:512
    Nov 8 10:37:07 localhost kernel: Console: colour VGA+ 132x43
    Nov 8 10:37:07 localhost kernel: console [tty0] enabled
    Nov 8 10:37:07 localhost kernel: Fast TSC calibration using PIT
    Nov 8 10:37:07 localhost kernel: Detected 1666.888 MHz processor.
    Nov 8 10:37:07 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3335.68 BogoMIPS (lpj=5556293)
    Nov 8 10:37:07 localhost kernel: pid_max: default: 32768 minimum: 301
    Nov 8 10:37:07 localhost kernel: Security Framework initialized
    Nov 8 10:37:07 localhost kernel: Mount-cache hash table entries: 512
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys ns
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys cpuacct
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys memory
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys devices
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys freezer
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys net_cls
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys blkio
    Nov 8 10:37:07 localhost kernel: mce: CPU supports 4 MCE banks
    Nov 8 10:37:07 localhost kernel: Performance Events: AMD PMU driver.
    Nov 8 10:37:07 localhost kernel: ... version: 0
    Nov 8 10:37:07 localhost kernel: ... bit width: 48
    Nov 8 10:37:07 localhost kernel: ... generic registers: 4
    Nov 8 10:37:07 localhost kernel: ... value mask: 0000ffffffffffff
    Nov 8 10:37:07 localhost kernel: ... max period: 00007fffffffffff
    Nov 8 10:37:07 localhost kernel: ... fixed-purpose events: 0
    Nov 8 10:37:07 localhost kernel: ... event mask: 000000000000000f
    Nov 8 10:37:07 localhost kernel: SMP alternatives: switching to UP code
    Nov 8 10:37:07 localhost kernel: Freeing SMP alternatives: 12k freed
    Nov 8 10:37:07 localhost kernel: ACPI: Core revision 20100428
    Nov 8 10:37:07 localhost kernel: Enabling APIC mode: Flat. Using 1 I/O APICs
    Nov 8 10:37:07 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Nov 8 10:37:07 localhost kernel: CPU0: AMD Athlon(tm) XP 2000+ stepping 00
    Nov 8 10:37:07 localhost kernel: Brought up 1 CPUs
    Nov 8 10:37:07 localhost kernel: Total of 1 processors activated (3335.68 BogoMIPS).
    Nov 8 10:37:07 localhost kernel: devtmpfs: initialized
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 16
    Nov 8 10:37:07 localhost kernel: ACPI: bus type pci registered
    Nov 8 10:37:07 localhost kernel: PCI: PCI BIOS revision 2.10 entry at 0xfdaf1, last bus=1
    Nov 8 10:37:07 localhost kernel: PCI: Using configuration type 1 for base access
    Nov 8 10:37:07 localhost kernel: bio: create slab <bio-0> at 0
    Nov 8 10:37:07 localhost kernel: ACPI: EC: Look up EC in DSDT
    Nov 8 10:37:07 localhost kernel: ACPI: Interpreter enabled
    Nov 8 10:37:07 localhost kernel: ACPI: (supports S0 S3 S4 S5)
    Nov 8 10:37:07 localhost kernel: ACPI: Using IOAPIC for interrupt routing
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [URP1] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [URP2] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [FDDP] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [LPTP] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: No dock devices found.
    Nov 8 10:37:07 localhost kernel: PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0xc0000000-0xffdfffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0xfee01000-0xffdfffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci 0000:00:00.0: reg 10: [mem 0xe0000000-0xe3ffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: supports D1
    Nov 8 10:37:07 localhost kernel: pci 0000:00:0b.0: reg 10: [mem 0xdc000000-0xdfffffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:0b.0: reg 30: [mem 0xdbff0000-0xdbffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: reg 20: [io 0xe400-0xe41f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: PME# disabled
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: reg 20: [io 0xe800-0xe81f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: PME# disabled
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: reg 20: [io 0xec00-0xec1f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: PME# disabled
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: reg 10: [mem 0xdbfeff00-0xdbfeffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: PME# disabled
    Nov 8 10:37:07 localhost kernel: HPET not enabled in BIOS. You might try hpet=force boot option
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.0: quirk: [io 0x0800-0x087f] claimed by vt8235 PM
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.0: quirk: [io 0x0400-0x040f] claimed by vt8235 SMB
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.1: reg 20: [io 0xfc00-0xfc0f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.5: reg 10: [io 0xe000-0xe0ff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.5: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 14: [io 0xc800-0xc8ff]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 18: [mem 0xd7ef0000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 30: [mem 0xd7ec0000-0xd7edffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd7e00000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xb7d00000-0xd7cfffff pref]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:00: on NUMA node 0
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs *3 4 5 6 7 10 11 12 14 15)
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    Nov 8 10:37:07 localhost kernel: HEST: Table is not found!
    Nov 8 10:37:07 localhost kernel: vgaarb: device added: PCI:0000:00:0b.0,decodes=io+mem,owns=io+mem,locks=none
    Nov 8 10:37:07 localhost kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    Nov 8 10:37:07 localhost kernel: vgaarb: loaded
    Nov 8 10:37:07 localhost kernel: PCI: Using ACPI for IRQ routing
    Nov 8 10:37:07 localhost kernel: PCI: pci_cache_line_size set to 32 bytes
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: address space collision: [mem 0xb7d00000-0xd7cfffff pref] conflicts with System RAM [mem 0x00100000-0xbffeffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: no compatible bridge window for [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: reserve RAM buffer: 000000000009fc00 - 000000000009ffff
    Nov 8 10:37:07 localhost kernel: reserve RAM buffer: 00000000bfff0000 - 00000000bfffffff
    Nov 8 10:37:07 localhost kernel: NetLabel: Initializing
    Nov 8 10:37:07 localhost kernel: NetLabel: domain hash size = 128
    Nov 8 10:37:07 localhost kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Nov 8 10:37:07 localhost kernel: NetLabel: unlabeled traffic allowed by default
    Nov 8 10:37:07 localhost kernel: Switching to clocksource tsc
    Nov 8 10:37:07 localhost kernel: pnp: PnP ACPI init
    Nov 8 10:37:07 localhost kernel: ACPI: bus type pnp registered
    Nov 8 10:37:07 localhost kernel: pnp 00:01: disabling [io 0x0820-0x0821] because it overlaps 0000:00:11.0 BAR 13 [io 0x0800-0x087f]
    Nov 8 10:37:07 localhost kernel: pnp: PnP ACPI: found 9 devices
    Nov 8 10:37:07 localhost kernel: ACPI: ACPI bus type pnp unregistered
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x0290-0x0297] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x03f0-0x03f1] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x04d0-0x04d1] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x0400-0x040f] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: BAR 15: assigned [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: BAR 0: assigned [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: BAR 0: set to [mem 0xc0000000-0xcfffffff pref] (PCI address [0xc0000000-0xcfffffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd7e00000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: setting latency timer to 64
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:01: resource 1 [mem 0xd7e00000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 2
    Nov 8 10:37:07 localhost kernel: IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    Nov 8 10:37:07 localhost kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    Nov 8 10:37:07 localhost kernel: TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    Nov 8 10:37:07 localhost kernel: TCP: Hash tables configured (established 131072 bind 65536)
    Nov 8 10:37:07 localhost kernel: TCP reno registered
    Nov 8 10:37:07 localhost kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Nov 8 10:37:07 localhost kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 1
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: disabling DAC on VIA PCI bridge
    Nov 8 10:37:07 localhost kernel: pci 0000:00:0b.0: Boot video device
    Nov 8 10:37:07 localhost kernel: PCI: CLS 32 bytes, default 32
    Nov 8 10:37:07 localhost kernel: Unpacking initramfs...
    Nov 8 10:37:07 localhost kernel: Freeing initrd memory: 2340k freed
    Nov 8 10:37:07 localhost kernel: apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    Nov 8 10:37:07 localhost kernel: apm: overridden by ACPI.
    Nov 8 10:37:07 localhost kernel: Scanning for low memory corruption every 60 seconds
    Nov 8 10:37:07 localhost kernel: audit: initializing netlink socket (disabled)
    Nov 8 10:37:07 localhost kernel: type=2000 audit(1289212597.233:1): initialized
    Nov 8 10:37:07 localhost kernel: highmem bounce pool size: 64 pages
    Nov 8 10:37:07 localhost kernel: VFS: Disk quotas dquot_6.5.2
    Nov 8 10:37:07 localhost kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Nov 8 10:37:07 localhost kernel: msgmni has been set to 1684
    Nov 8 10:37:07 localhost kernel: alg: No test for stdrng (krng)
    Nov 8 10:37:07 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    Nov 8 10:37:07 localhost kernel: io scheduler noop registered
    Nov 8 10:37:07 localhost kernel: io scheduler deadline registered (default)
    Nov 8 10:37:07 localhost kernel: io scheduler cfq registered
    Nov 8 10:37:07 localhost kernel: ERST: Table is not found!
    Nov 8 10:37:07 localhost kernel: isapnp: Scanning for PnP cards...
    Nov 8 10:37:07 localhost kernel: isapnp: No Plug & Play device found
    Nov 8 10:37:07 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Nov 8 10:37:07 localhost kernel: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Nov 8 10:37:07 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Nov 8 10:37:07 localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Nov 8 10:37:07 localhost kernel: mice: PS/2 mouse device common for all mice
    Nov 8 10:37:07 localhost kernel: cpuidle: using governor ladder
    Nov 8 10:37:07 localhost kernel: cpuidle: using governor menu
    Nov 8 10:37:07 localhost kernel: TCP cubic registered
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 17
    Nov 8 10:37:07 localhost kernel: Using IPI No-Shortcut mode
    Nov 8 10:37:07 localhost kernel: PM: Resume from disk failed.
    Nov 8 10:37:07 localhost kernel: registered taskstats version 1
    Nov 8 10:37:07 localhost kernel: Initalizing network drop monitor service
    Nov 8 10:37:07 localhost kernel: Freeing unused kernel memory: 416k freed
    Nov 8 10:37:07 localhost kernel: udev[31]: starting version 163
    Nov 8 10:37:07 localhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Nov 8 10:37:07 localhost kernel: Linux agpgart interface v0.103
    Nov 8 10:37:07 localhost kernel: agpgart: Detected VIA KT400/KT400A/KT600 chipset
    Nov 8 10:37:07 localhost kernel: agpgart-via 0000:00:00.0: AGP aperture is 64M @ 0xe0000000
    Nov 8 10:37:07 localhost kernel: [drm] Initialized drm 1.1.0 20060810
    Nov 8 10:37:07 localhost kernel: [drm] VGACON disable radeon kernel modesetting.
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: enabling device (0000 -> 0003)
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Nov 8 10:37:07 localhost kernel: [drm] Initialized radeon 1.33.0 20080528 for 0000:01:00.0 on minor 0
    Nov 8 10:37:07 localhost kernel: SCSI subsystem initialized
    Nov 8 10:37:07 localhost kernel: Floppy drive(s): fd0 is 1.44M
    Nov 8 10:37:07 localhost kernel: FDC 0 is a post-1991 82077
    Nov 8 10:37:07 localhost kernel: libata version 3.00 loaded.
    Nov 8 10:37:07 localhost kernel: pata_via 0000:00:11.1: version 0.3.4
    Nov 8 10:37:07 localhost kernel: pata_via 0000:00:11.1: can't derive routing for PCI INT A
    Nov 8 10:37:07 localhost kernel: scsi0 : pata_via
    Nov 8 10:37:07 localhost kernel: scsi1 : pata_via
    Nov 8 10:37:07 localhost kernel: ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xfc00 irq 14
    Nov 8 10:37:07 localhost kernel: ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xfc08 irq 15
    Nov 8 10:37:07 localhost kernel: ata1.00: ATA-6: ST380011A, 3.04, max UDMA/100
    Nov 8 10:37:07 localhost kernel: ata1.00: 156301488 sectors, multi 16: LBA48
    Nov 8 10:37:07 localhost kernel: ata1.00: configured for UDMA/100
    Nov 8 10:37:07 localhost kernel: scsi 0:0:0:0: Direct-Access ATA ST380011A 3.04 PQ: 0 ANSI: 5
    Nov 8 10:37:07 localhost kernel: ata2.00: ATAPI: LITE-ON DVD SOHD-16P9S, FS0J, max UDMA/33
    Nov 8 10:37:07 localhost kernel: ata2.01: ATAPI: LITE-ON LTR-52246S, 6S0F, max UDMA/33
    Nov 8 10:37:07 localhost kernel: ata2.00: configured for UDMA/33
    Nov 8 10:37:07 localhost kernel: ata2.01: configured for UDMA/33
    Nov 8 10:37:07 localhost kernel: scsi 1:0:0:0: CD-ROM LITE-ON DVD SOHD-16P9S FS0J PQ: 0 ANSI: 5
    Nov 8 10:37:07 localhost kernel: scsi 1:0:1:0: CD-ROM LITE-ON LTR-52246S 6S0F PQ: 0 ANSI: 5
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Write Protect is off
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Nov 8 10:37:07 localhost kernel: sda:sr0: scsi3-mmc drive: 4x/48x cd/rw xa/form2 cdda tray
    Nov 8 10:37:07 localhost kernel: Uniform CD-ROM driver Revision: 3.20
    Nov 8 10:37:07 localhost kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Nov 8 10:37:07 localhost kernel: sda1 sda2 sda3 sda4 < sda5 sda6 sda7sr1: scsi3-mmc drive: 15x/52x writer cd/rw xa/form2 cdda tray
    Nov 8 10:37:07 localhost kernel: sr 1:0:1:0: Attached scsi CD-ROM sr1
    Nov 8 10:37:07 localhost kernel: sda8 sda9 sda10 >
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Nov 8 10:37:07 localhost kernel: EXT3-fs: barriers not enabled
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda2): mounted filesystem with writeback data mode
    Nov 8 10:37:07 localhost kernel: kjournald starting. Commit interval 5 seconds
    Nov 8 10:37:07 localhost kernel: rtc_cmos 00:03: RTC can wake from S4
    Nov 8 10:37:07 localhost kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    Nov 8 10:37:07 localhost kernel: rtc0: alarms up to one year, y3k, 114 bytes nvram
    Nov 8 10:37:07 localhost kernel: udev[496]: starting version 163
    Nov 8 10:37:07 localhost kernel: fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    Nov 8 10:37:07 localhost kernel: Disabling lock debugging due to kernel taint
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
    Nov 8 10:37:07 localhost kernel: sr 1:0:0:0: Attached scsi generic sg1 type 5
    Nov 8 10:37:07 localhost kernel: sr 1:0:1:0: Attached scsi generic sg2 type 5
    Nov 8 10:37:07 localhost kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Nov 8 10:37:07 localhost kernel: input: PC Speaker as /devices/platform/pcspkr/input/input1
    Nov 8 10:37:07 localhost kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Nov 8 10:37:07 localhost kernel: usbcore: registered new interface driver usbfs
    Nov 8 10:37:07 localhost kernel: usbcore: registered new interface driver hub
    Nov 8 10:37:07 localhost kernel: usbcore: registered new device driver usb
    Nov 8 10:37:07 localhost kernel: psmouse serio1: ID: 10 00 64
    Nov 8 10:37:07 localhost kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: UHCI Host Controller
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 1
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: irq 21, io base 0x0000e400
    Nov 8 10:37:07 localhost kernel: hub 1-0:1.0: USB hub found
    Nov 8 10:37:07 localhost kernel: hub 1-0:1.0: 2 ports detected
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: UHCI Host Controller
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 2
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: irq 21, io base 0x0000e800
    Nov 8 10:37:07 localhost kernel: hub 2-0:1.0: USB hub found
    Nov 8 10:37:07 localhost kernel: hub 2-0:1.0: 2 ports detected
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: PCI INT C -> GSI 21 (level, low) -> IRQ 21
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: UHCI Host Controller
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 3
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: irq 21, io base 0x0000ec00
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 23
    Nov 8 10:37:07 localhost kernel: [fglrx] Maximum main memory to use for locked dma buffers: 2880 MBytes.
    Nov 8 10:37:07 localhost kernel: [fglrx] vendor: 1002 device: 9495 count: 1
    Nov 8 10:37:07 localhost kernel: [fglrx] ioport: bar 1, base 0xc800, size: 0x100
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: PCI: Disallowing DAC for device
    Nov 8 10:37:07 localhost kernel: [fglrx] Kernel PAT support is enabled
    Nov 8 10:37:07 localhost kernel: [fglrx] module loaded - fglrx 8.78.6 [Oct 5 2010] with 1 minors
    Nov 8 10:37:07 localhost kernel: hub 3-0:1.0: USB hub found
    Nov 8 10:37:07 localhost kernel: hub 3-0:1.0: 2 ports detected
    Nov 8 10:37:07 localhost kernel: ACPI: acpi_idle registered with cpuidle
    Nov 8 10:37:07 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    Nov 8 10:37:07 localhost kernel: ACPI: Power Button [PWRB]
    Nov 8 10:37:07 localhost kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    Nov 8 10:37:07 localhost kernel: ACPI: Sleep Button [SLPB]
    Nov 8 10:37:07 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Nov 8 10:37:07 localhost kernel: ACPI: Power Button [PWRF]
    Nov 8 10:37:07 localhost kernel: usb 1-1: new full speed USB device using uhci_hcd and address 2
    Nov 8 10:37:07 localhost kernel: input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input5
    Nov 8 10:37:07 localhost kernel: ACPI: resource vt596_smbus [io 0x0400-0x0407] conflicts with ACPI region SMOV [??? 0x00000400-0x00000406 flags 0x56]
    Nov 8 10:37:07 localhost kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Nov 8 10:37:07 localhost kernel: VIA 82xx Audio 0000:00:11.5: PCI INT C -> GSI 22 (level, low) -> IRQ 22
    Nov 8 10:37:07 localhost kernel: VIA 82xx Audio 0000:00:11.5: setting latency timer to 64
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 8
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 20
    Nov 8 10:37:07 localhost kernel: usb 1-1: reset full speed USB device using uhci_hcd and address 2
    Nov 8 10:37:07 localhost kernel: usbcore: registered new interface driver speedtch
    Nov 8 10:37:07 localhost kernel: speedtch 1-1:1.0: found stage 1 firmware speedtch-1.bin.4.00
    Nov 8 10:37:07 localhost kernel: speedtch 1-1:1.0: found stage 2 firmware speedtch-2.bin.4.00
    Nov 8 10:37:07 localhost kernel: ATM dev 0: ADSL line is synchronising
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda2): using internal journal
    Nov 8 10:37:07 localhost kernel: EXT3-fs: barriers not enabled
    Nov 8 10:37:07 localhost kernel: kjournald starting. Commit interval 5 seconds
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda6): using internal journal
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda6): mounted filesystem with writeback data mode
    Nov 8 10:37:07 localhost kernel: EXT3-fs: barriers not enabled
    Nov 8 10:37:07 localhost kernel: kjournald starting. Commit interval 5 seconds
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda3): using internal journal
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda3): mounted filesystem with writeback data mode
    Nov 8 10:37:07 localhost kernel: EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
    Nov 8 10:37:07 localhost kernel: Adding 1052220k swap on /dev/sda5. Priority:-1 extents:1 across:1052220k
    Nov 8 10:37:09 localhost kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
    Nov 8 10:37:09 localhost kernel: nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    Nov 8 10:37:09 localhost kernel: CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
    Nov 8 10:37:09 localhost kernel: nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or
    Nov 8 10:37:09 localhost kernel: sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
    Nov 8 10:37:11 localhost kernel: PPP generic driver version 2.4.2
    Nov 8 10:37:13 localhost kernel: [fglrx] AGP detected, AgpState = 0x1f000a1b (hardware caps of chipset)
    Nov 8 10:37:13 localhost kernel: [fglrx] [agp] enabling AGP with mode=0x1f000b1a
    Nov 8 10:37:13 localhost kernel: agpgart-via 0000:00:00.0: AGP 3.5 bridge
    Nov 8 10:37:13 localhost kernel: agpgart-via 0000:00:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:37:13 localhost kernel: fglrx_pci 0000:01:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:37:13 localhost kernel: [fglrx] AGP enabled, AgpCommand = 0x1f000312 (selected caps)
    Nov 8 10:37:13 localhost kernel: [fglrx] Setup AGP aperture
    Nov 8 10:37:13 localhost kernel: [fglrx] Could not enable MSI; System prevented initialization
    Nov 8 10:37:13 localhost kernel: [fglrx] Firegl kernel thread PID: 2202
    Nov 8 10:37:13 localhost kernel: [fglrx] IRQ 16 Enabled
    Nov 8 10:37:14 localhost kernel: [fglrx] Gart cacheable size:1318 M.
    Nov 8 10:37:14 localhost kernel: [fglrx] Reserved FB block: Shared offset:0, size:1000000
    Nov 8 10:37:14 localhost kernel: [fglrx] Reserved FB block: Unshared offset:fd0a000, size:2f6000
    Nov 8 10:37:14 localhost kernel: [fglrx] Reserved FB block: Unshared offset:3fffd000, size:3000
    Nov 8 10:37:20 localhost kernel: ATM dev 0: ADSL line is up (5312 kb/s down | 320 kb/s up)
    Nov 8 10:38:09 localhost kernel: [fglrx] IRQ 16 Disabled
    Nov 8 10:38:09 localhost kernel: BUG: scheduling while atomic: X/2191/0x00000002
    Nov 8 10:38:09 localhost kernel: Modules linked in: pppoatm ppp_generic slhc xt_tcpudp nf_conntrack_ipv4 nf_defrag_ipv4 xt_state nf_conntrack iptable_filter ip_tables x_tables ext4 jbd2 crc16 ext2 speedtch usbatm atm snd_via82xx gameport snd_ac97_codec ac97_bus snd_pcm snd_timer snd_page_alloc snd_mpu401_uart snd_rawmidi snd_seq_device i2c_viapro snd soundcore button thermal processor via_ircc uhci_hcd irda crc_ccitt psmouse usbcore fglrx(P) shpchp pcspkr serio_raw pci_hotplug sg evdev rtc_cmos rtc_core rtc_lib ext3 jbd mbcache sd_mod sr_mod cdrom pata_acpi pata_via libata floppy scsi_mod radeon ttm drm_kms_helper drm i2c_algo_bit i2c_core via_agp agpgart
    Nov 8 10:38:09 localhost kernel: Pid: 2191, comm: X Tainted: P 2.6.35-ARCH #1
    Nov 8 10:38:09 localhost kernel: Call Trace:
    Nov 8 10:38:09 localhost kernel: [<c1034d1d>] __schedule_bug+0x5d/0x70
    Nov 8 10:38:09 localhost kernel: [<c12e6dcf>] schedule+0x47f/0x6f0
    Nov 8 10:38:09 localhost kernel: [<f8761b22>] ? KAS_Event_Set+0x92/0xa0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<c12e9505>] ? _raw_spin_unlock_irqrestore+0x25/0x30
    Nov 8 10:38:09 localhost kernel: [<f87624a6>] KAS_Thread_WaitForFinish+0x86/0xc0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<c105eb30>] ? autoremove_wake_function+0x0/0x40
    Nov 8 10:38:09 localhost kernel: [<f877bafa>] MCIL_WorkerThread+0x1da/0x2c0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f8841790>] ? PassiveRing_Cleanup+0x60/0xc0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f8791e58>] ? firegl_trace+0x28/0x190 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f8840d01>] IRQMGR_FreeResources+0x21/0x60 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f877e87e>] irqmgr_wrap_shutdown+0x17e/0x1d0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f876e4c9>] ? firegl_takedown+0x989/0xa60 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f885600d>] ? amdPcsClose+0x3d/0x40 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f876d35f>] ? firegl_release+0x14f/0x220 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f875e5be>] ? ip_firegl_release+0xe/0x10 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<c10f8153>] ? fput+0xf3/0x1f0
    Nov 8 10:38:09 localhost kernel: [<c10f4f69>] ? filp_close+0x49/0x70
    Nov 8 10:38:09 localhost kernel: [<c1046d57>] ? put_files_struct+0x87/0x100
    Nov 8 10:38:09 localhost kernel: [<c1046e72>] ? exit_files+0x42/0x60
    Nov 8 10:38:09 localhost kernel: [<c104727a>] ? do_exit+0x14a/0x770
    Nov 8 10:38:09 localhost kernel: [<c1053f0d>] ? __sigqueue_free+0x2d/0x30
    Nov 8 10:38:09 localhost kernel: [<c1053162>] ? recalc_sigpending+0x12/0x30
    Nov 8 10:38:09 localhost kernel: [<c1047ab9>] ? do_group_exit+0x39/0xa0
    Nov 8 10:38:09 localhost kernel: [<c10563ad>] ? get_signal_to_deliver+0x25d/0x470
    Nov 8 10:38:09 localhost kernel: [<c1054e12>] ? __send_signal+0x162/0x390
    Nov 8 10:38:09 localhost kernel: [<c1002909>] ? do_signal+0x69/0x870
    Nov 8 10:38:09 localhost kernel: [<c105592f>] ? do_send_specific+0x7f/0xc0
    Nov 8 10:38:09 localhost kernel: [<c1183c90>] ? _atomic_dec_and_lock+0x50/0x70
    Nov 8 10:38:09 localhost kernel: [<c110e426>] ? mntput_no_expire+0x16/0x90
    Nov 8 10:38:09 localhost kernel: [<c1053162>] ? recalc_sigpending+0x12/0x30
    Nov 8 10:38:09 localhost kernel: [<c1053e65>] ? sigprocmask+0x75/0xf0
    Nov 8 10:38:09 localhost kernel: [<c10567b4>] ? sys_rt_sigprocmask+0xc4/0xe0
    Nov 8 10:38:09 localhost kernel: [<c10567b4>] ? sys_rt_sigprocmask+0xc4/0xe0
    Nov 8 10:38:09 localhost kernel: [<c10033fd>] ? do_notify_resume+0x5d/0x70
    Nov 8 10:38:09 localhost kernel: [<c12e9af8>] ? work_notifysig+0x13/0x1b
    Nov 8 10:38:10 localhost kernel: [fglrx] AGP detected, AgpState = 0x1f000a1b (hardware caps of chipset)
    Nov 8 10:38:10 localhost kernel: [fglrx] [agp] enabling AGP with mode=0x1f000b1a
    Nov 8 10:38:10 localhost kernel: agpgart-via 0000:00:00.0: AGP 3.5 bridge
    Nov 8 10:38:10 localhost kernel: agpgart-via 0000:00:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:38:10 localhost kernel: fglrx_pci 0000:01:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:38:10 localhost kernel: [fglrx] AGP enabled, AgpCommand = 0x1f000312 (selected caps)
    Nov 8 10:38:10 localhost kernel: [fglrx] Setup AGP aperture
    Nov 8 10:38:10 localhost kernel: [fglrx] Firegl kernel thread PID: 2426
    Nov 8 10:38:10 localhost kernel: [fglrx] IRQ 16 Enabled
    Nov 8 10:38:11 localhost kernel: [fglrx] Gart cacheable size:1318 M.
    Nov 8 10:38:11 localhost kernel: [fglrx] Reserved FB block: Shared offset:0, size:1000000
    Nov 8 10:38:11 localhost kernel: [fglrx] Reserved FB block: Unshared offset:fd0a000, size:2f6000
    Nov 8 10:38:11 localhost kernel: [fglrx] Reserved FB block: Unshared offset:3fffd000, size:3000
    Nov 8 10:38:33 localhost kernel: [fglrx] IRQ 16 Disabled
    2) Sometimes computer freeze while I working in KDE. I don't save logs, but I remeber that:
    X: page allocation failure
    in kernel.log.
    Can anyone has tips or workarounds for this bugs (or just catalyst proprietary driver is piece of sh*t?)?
    Can anyone help?

    I guess I have the same issue ( https://bbs.archlinux.org/viewtopic.php?id=108083 ). I removed the catalyst package and installed the open source driver (packages: xf86-video-ati and ati-dri) as a workaround to wait until the issue is resolved. If you want to do that, remember to update your xorg.conf (you can simple rename that... it's not needed with ati driver) and rc.conf (unblacklist the radeon module). Maybe downgrading to Xorg 1.8 and installing older driver would help. Hopefully somebody with greater knowledge will notice this problem.
    Last edited by kleofas (2010-11-11 12:42:38)

  • Failed boot after moving hard drive (IDE not SATA)

    Greetings all.
    I am attempting to setup a headless box, and in doing so I am installing Arch on one system (Sapphire Axion A3-M275 Motherboard), then moving the hard drive to the new system (SGS1660, a VIA CLE266/VT8235 based headless rack-solution). After moving the drive into the SGS1660, the system fails to boot. Attached output from the Serial Console:
    Booting 'Arch Linux'
    root (hd0,0)
    Filesystem type is ext2fs, partition type 0x83
    kernel /vmlinuz26 root=/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b r
    o console=ttyS0,115200
    [Linux-bzImage, setup=0x3600, size=0x1ad6d0]
    initrd /kernel26.img
    [Linux-initrd @ 0x2ff21000, 0x9e7a5 bytes]
    Linux version 2.6.30-ARCH (root@T-POWA-LX) (gcc version 4.4.0 20090630 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jul 20 11:20:32 UTC 2009
    KERNEL supported cpus:
    Intel GenuineIntel
    AMD AuthenticAMD
    NSC Geode by NSC
    Cyrix CyrixInstead
    Centaur CentaurHauls
    Transmeta GenuineTMx86
    Transmeta TransmetaCPU
    UMC UMC UMC UMC
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000002ffd0000 (usable)
    BIOS-e820: 000000002ffd0000 - 000000002ffde000 (ACPI data)
    BIOS-e820: 000000002ffde000 - 0000000030000000 (ACPI NVS)
    BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    BIOS-e820: 00000000ff780000 - 0000000100000000 (reserved)
    DMI 2.3 present.
    AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    last_pfn = 0x2ffd0 max_arch_pfn = 0x100000
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Scanning 0 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009fc00 (usable)
    modified: 000000000009fc00 - 00000000000a0000 (reserved)
    modified: 00000000000e0000 - 0000000000100000 (reserved)
    modified: 0000000000100000 - 000000002ffd0000 (usable)
    modified: 000000002ffd0000 - 000000002ffde000 (ACPI data)
    modified: 000000002ffde000 - 0000000030000000 (ACPI NVS)
    modified: 00000000fec00000 - 00000000fec01000 (reserved)
    modified: 00000000ff780000 - 0000000100000000 (reserved)
    init_memory_mapping: 0000000000000000-000000002ffd0000
    RAMDISK: 2ff21000 - 2ffbf7a5
    ACPI: RSDP 000f6ad0 00014 (v00 ACPIAM)
    ACPI: RSDT 2ffd0000 0002C (v01 A M I OEMRSDT 09000521 MSFT 00000097)
    ACPI: FACP 2ffd0200 00084 (v02 A M I OEMFACP 09000521 MSFT 00000097)
    ACPI: DSDT 2ffd0390 03270 (v01 MiniV MiniV080 00000080 INTL 02002026)
    ACPI: FACS 2ffde000 00040
    ACPI: OEMB 2ffde040 00046 (v01 A M I AMI_OEM 09000521 MSFT 00000097)
    0MB HIGHMEM available.
    767MB LOWMEM available.
    mapped low ram: 0 - 2ffd0000
    low ram: 0 - 2ffd0000
    node 0 low ram: 00000000 - 2ffd0000
    node 0 bootmap 00011000 - 00016ffc
    (9 early reservations) ==> bootmem [0000000000 - 002ffd0000]
    #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
    #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
    #3 [0000100000 - 0000626e44] TEXT DATA BSS ==> [0000100000 - 0000626e44]
    #4 [002ff21000 - 002ffbf7a5] RAMDISK ==> [002ff21000 - 002ffbf7a5]
    #5 [0000099c00 - 0000100000] BIOS reserved ==> [0000099c00 - 0000100000]
    #6 [0000627000 - 0000629230] BRK ==> [0000627000 - 0000629230]
    #7 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000]
    #8 [0000011000 - 0000017000] BOOTMAP ==> [0000011000 - 0000017000]
    Zone PFN ranges:
    DMA 0x00000010 -> 0x00001000
    Normal 0x00001000 -> 0x0002ffd0
    HighMem 0x0002ffd0 -> 0x0002ffd0
    Movable zone start PFN for each node
    early_node_map[2] active PFN ranges
    0: 0x00000010 -> 0x0000009f
    0: 0x00000100 -> 0x0002ffd0
    Using APIC driver default
    ACPI: PM-Timer IO Port: 0x808
    SMP: Allowing 1 CPUs, 0 hotplug CPUs
    No local APIC present or hardware disabled
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Allocating PCI resources starting at 40000000 (gap: 30000000:cec00000)
    NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
    PERCPU: Embedded 11 pages at c1606000, static data 24444 bytes
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 194911
    Kernel command line: root=/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b ro console=ttyS0,115200
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    NR_IRQS:512
    PID hash table entries: 4096 (order: 12, 16384 bytes)
    Fast TSC calibration using PIT
    Detected 1326.894 MHz processor.
    Console: colour dummy device 80x25
    console [ttyS0] enabled
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Initializing HighMem for node 0 (00000000:00000000)
    Memory: 772708k/786240k available (2905k kernel code, 12976k reserved, 1052k data, 392k init, 0k highmem)
    virtual kernel memory layout:
    fixmap : 0xfff4e000 - 0xfffff000 ( 708 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf07d0000 - 0xff7fe000 ( 240 MB)
    lowmem : 0xc0000000 - 0xeffd0000 ( 767 MB)
    .init : 0xc04e3000 - 0xc0545000 ( 392 kB)
    .data : 0xc03d647f - 0xc04dd6a8 (1052 kB)
    .text : 0xc0100000 - 0xc03d647f (2905 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Calibrating delay loop (skipped), value calculated using timer frequency.. 2654.36 BogoMIPS (lpj=4422980)
    Security Framework initialized
    Mount-cache hash table entries: 512
    CPU: L1 I Cache: 64K (32 bytes/line), D cache 64K (32 bytes/line)
    CPU: L2 Cache: 64K (32 bytes/line)
    Checking 'hlt' instruction... OK.
    SMP alternatives: switching to UP code
    Freeing SMP alternatives: 10k freed
    ACPI: Core revision 20090320
    ACPI: setting ELCR to 0200 (from 8c20)
    weird, boot CPU (#0) not listed by the BIOS.
    SMP motherboard not detected.
    Local APIC not detected. Using dummy APIC emulation.
    SMP disabled
    Brought up 1 CPUs
    Total of 1 processors activated (2654.36 BogoMIPS).
    net_namespace: 1056 bytes
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: PCI BIOS revision 2.10 entry at 0xf0031, last bus=1
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S3 S4 S5)
    ACPI: Using PIC for interrupt routing
    ACPI: Power Resource [URP1] (off)
    ACPI: Power Resource [URP2] (off)
    ACPI: Power Resource [FDDP] (off)
    ACPI: Power Resource [LPTP] (off)
    ACPI: No dock devices found.
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:07.0: PME# disabled
    pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:10.0: PME# disabled
    pci 0000:00:10.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:10.1: PME# disabled
    pci 0000:00:10.2: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:10.2: PME# disabled
    HPET not enabled in BIOS. You might try hpet=force boot option
    pci 0000:00:11.0: quirk: region 0800-087f claimed by vt8235 PM
    pci 0000:00:11.0: quirk: region 0400-040f claimed by vt8235 SMB
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 12 14 *15)
    PCI: Using ACPI for IRQ routing
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 10 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:05: ioport range 0xe900-0xe90f has been reserved
    system 00:05: ioport range 0xea00-0xea0f has been reserved
    system 00:05: ioport range 0xeb00-0xeb2f has been reserved
    system 00:05: ioport range 0xec00-0xec7f has been reserved
    system 00:05: ioport range 0xe800-0xe83f has been reserved
    system 00:07: ioport range 0x3e0-0x3e7 has been reserved
    system 00:07: ioport range 0x4d0-0x4d1 has been reserved
    system 00:07: ioport range 0x800-0x87f has been reserved
    system 00:07: ioport range 0x400-0x41f could not be reserved
    system 00:09: iomem range 0x0-0x9ffff could not be reserved
    system 00:09: iomem range 0xe0000-0xfffff could not be reserved
    system 00:09: iomem range 0x100000-0x2fffffff could not be reserved
    pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
    pci 0000:00:01.0: IO window: disabled
    pci 0000:00:01.0: MEM window: 0xddd00000-0xdfdfffff
    pci 0000:00:01.0: PREFETCH window: 0x000000d5c00000-0x000000ddbfffff
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    NET: Registered protocol family 1
    Unpacking initramfs...
    Freeing initrd memory: 633k freed
    apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    apm: overridden by ACPI.
    Scanning for low memory corruption every 60 seconds
    audit: initializing netlink socket (disabled)
    type=2000 audit(1248948860.509:1): initialized
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1510
    alg: No test for stdrng (krng)
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pci 0000:00:01.0: disabling DAC on VIA PCI bridge
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    input: Macintosh mouse button emulation as /devices/virtual/input/input0
    PNP: No PS/2 controller found. Probing ports directly.
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    registered taskstats version 1
    Initalizing network drop monitor service
    Freeing unused kernel memory: 392k freed
    :: Loading Initramfs
    :: Running Hook [udev]
    :: Loading udev...SCSI subsystem initialized
    pata_acpi 0000:00:11.1: can't derive routing for PCI INT A
    pata_acpi 0000:00:11.1: can't derive routing for PCI INT A
    done.
    Waiting 10 seconds for device /dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b ...
    Root device '/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b' doesn't exist, attempting to create it
    ERROR: Failed to parse block device ids for '/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b'
    ERROR: Unable to detect or create root device '/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b'
    You are being dropped to a recovery shell
    Type 'reboot' to reboot
    Type 'exit' to try and continue booting
    NOTE: klibc contains no 'ls' binary, use 'echo *' instead
    If the device '/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b' gets created while you are here,
    try adding 'rootdelay=10' or higher to the kernel command-line
    ramfs$
    I think what is happening is that the kernel does not have the drivers for the IDE controller on the board for the CLE266/VT8235. Does this seem accurrate? And if so, how can I verify the current kernel config, then compile a kernel with everything else Arch needs to boot properly? I am familiar with the old means of setting up a kernel using the 'make menuconfig; make; make modules_install' etc method.
    Thanks for the help in advance!

    Hi, not sure if this is still causing you an issue, but I just ran into the same problem.
    For me, I have a Sharp PC=MM1110 which has no cd drive and doesn't like to boot from USB. To get Arch installed on it, I had to attach it to another PC (via it's docking cradle, which lets it show up as a USB hard drive), then boot the other PC from an Arch install cd and select the USB hdd for all of the partitioning etc.
    When I rebooted after the installation, the Sharp wouldn't boot.
    First, I had to edit the grub menu entry to point to (hd0,0), at which point I got the error listed in the first post... Failed to parse block device id's.
    If i booted into fallback mode, it booted without a problem.
    For me, the solution to finally get it working was to boot into fallback mode, remount the filesystem as r/w, and run mkinitcpio -g filename to rebuild the kernel. Once completed all I had to do was point grub to the new kernel image and it booted ok.
    Hope this is useful to someone

  • Long boot due to ata recognition problems [SOLVED]

    As the message says my boot is taking about 10 minutes, of which 95% of the time is spent trying to recognize ata4 device.
    I'm using the x86_64 version of arch, which works just fine on my laptop, and on my desktop - when it boots that is.
    Another thing that puzzles me is how am I getting those errors, considering I don't really have 4 ata drives, yet only two - hard disk and dvd rom.
    Anyway, this is my dmesg output :
    Linux version 2.6.24-ARCH (root@artin) (gcc version 4.3.0 (GCC) ) #1 SMP PREEMPT Sun Mar 30 10:50:22 CEST 2008
    Command line: root=/dev/sda1 ro vga=791
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
    BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
    BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
    BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
    BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
    BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    Entering add_active_range(0, 0, 159) 0 entries of 256 used
    Entering add_active_range(0, 256, 524000) 1 entries of 256 used
    end_pfn_map = 1048576
    DMI 2.4 present.
    ACPI: RSDP 000F9210, 0014 (r0 IntelR)
    ACPI: RSDT 7FEE3040, 003C (r1 IntelR AWRDACPI 42302E31 AWRD 0)
    ACPI: FACP 7FEE30C0, 0074 (r1 IntelR AWRDACPI 42302E31 AWRD 0)
    ACPI: DSDT 7FEE3180, 4BB6 (r1 INTELR AWRDACPI 1000 MSFT 100000E)
    ACPI: FACS 7FEE0000, 0040
    ACPI: HPET 7FEE7E80, 0038 (r1 IntelR AWRDACPI 42302E31 AWRD 98)
    ACPI: MCFG 7FEE7F00, 003C (r1 IntelR AWRDACPI 42302E31 AWRD 0)
    ACPI: APIC 7FEE7D80, 0084 (r1 IntelR AWRDACPI 42302E31 AWRD 0)
    ACPI: SSDT 7FEE7F80, 015C (r1 PmRef Cpu0Ist 3000 INTL 20060912)
    ACPI: SSDT 7FEE8410, 02F1 (r1 PmRef CpuPm 3000 INTL 20040311)
    Entering add_active_range(0, 0, 159) 0 entries of 256 used
    Entering add_active_range(0, 256, 524000) 1 entries of 256 used
    Zone PFN ranges:
    DMA 0 -> 4096
    DMA32 4096 -> 1048576
    Normal 1048576 -> 1048576
    Movable zone start PFN for each node
    early_node_map[2] active PFN ranges
    0: 0 -> 159
    0: 256 -> 524000
    On node 0 totalpages: 523903
    DMA zone: 56 pages used for memmap
    DMA zone: 1354 pages reserved
    DMA zone: 2589 pages, LIFO batch:0
    DMA32 zone: 7108 pages used for memmap
    DMA32 zone: 512796 pages, LIFO batch:31
    Normal zone: 0 pages used for memmap
    Movable zone: 0 pages used for memmap
    ACPI: PM-Timer IO Port: 0x408
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Processor #0 (Bootup-CPU)
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Processor #1
    ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
    ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 4, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Setting APIC routing to flat
    ACPI: HPET id: 0x10b9a201 base: 0xfed00000
    Using ACPI (MADT) for SMP configuration information
    swsusp: Registered nosave memory region: 000000000009f000 - 00000000000a0000
    swsusp: Registered nosave memory region: 00000000000a0000 - 00000000000f0000
    swsusp: Registered nosave memory region: 00000000000f0000 - 0000000000100000
    Allocating PCI resources starting at 80000000 (gap: 7ff00000:60100000)
    SMP: Allowing 4 CPUs, 2 hotplug CPUs
    PERCPU: Allocating 33200 bytes of per cpu data
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 515385
    Kernel command line: root=/dev/sda1 ro vga=791
    Initializing CPU#0
    PID hash table entries: 4096 (order: 12, 32768 bytes)
    hpet clockevent registered
    TSC calibrated against HPET
    time.c: Detected 2395.908 MHz processor.
    Console: colour dummy device 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Checking aperture...
    Calgary: detecting Calgary via BIOS EBDA area
    Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Memory: 2057296k/2096000k available (2958k kernel code, 38092k reserved, 1092k data, 248k init)
    SLUB: Genslabs=11, HWalign=64, Order=0-1, MinObjects=4, CPUs=4, Nodes=1
    Calibrating delay using timer specific routine.. 4796.31 BogoMIPS (lpj=7990897)
    Security Framework initialized
    Capability LSM initialized
    Mount-cache hash table entries: 256
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 4096K
    using mwait in idle threads.
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    CPU0: Thermal monitoring enabled (TM1)
    SMP alternatives: switching to UP code
    Early unpacking initramfs... done
    ACPI: Core revision 20070126
    ACPI: Looking for DSDT in initramfs... error, file /DSDT.aml not found.
    Using local APIC timer interrupts.
    APIC timer calibration result 16638250
    Detected 16.638 MHz APIC timer.
    SMP alternatives: switching to SMP code
    Booting processor 1/2 APIC 0x1
    Initializing CPU#1
    Calibrating delay using timer specific routine.. 4793.45 BogoMIPS (lpj=7986329)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 4096K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 1
    CPU1: Thermal monitoring enabled (TM2)
    Intel(R) Core(TM)2 CPU 6600 @ 2.40GHz stepping 06
    checking TSC synchronization [CPU#0 -> CPU#1]: passed.
    Brought up 2 CPUs
    net_namespace: 120 bytes
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: Using MMCONFIG at e0000000 - efffffff
    ACPI: EC: Look up EC in DSDT
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    PCI quirk: region 0400-047f claimed by ICH6 ACPI/GPIO/TCO
    PCI quirk: region 0480-04bf claimed by ICH6 GPIO
    PCI: Transparent bridge - 0000:00:1e.0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 *10 11 14 15)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 *10 11 14 15)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 14 15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 14 15)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 *5 7 9 10 11 14 15)
    ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 7 *9 10 11 14 15)
    ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 11 14 15) *0, disabled.
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 16 devices
    ACPI: ACPI bus type pnp unregistered
    SCSI subsystem initialized
    PCI: Using ACPI for IRQ routing
    PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    PCI-GART: No AMD northbridge found.
    ACPI: RTC can wake from S4
    Time: tsc clocksource has been installed.
    system 00:01: ioport range 0x4d0-0x4d1 has been reserved
    system 00:01: ioport range 0xa00-0xa7f has been reserved
    system 00:01: ioport range 0x880-0x88f has been reserved
    system 00:0c: ioport range 0x400-0x4bf could not be reserved
    system 00:0e: iomem range 0xe0000000-0xefffffff could not be reserved
    system 00:0f: iomem range 0xf0000-0xfffff could not be reserved
    system 00:0f: iomem range 0xfed00000-0xfed000ff has been reserved
    system 00:0f: iomem range 0x7fee0000-0x7fefffff could not be reserved
    system 00:0f: iomem range 0x0-0x9ffff could not be reserved
    system 00:0f: iomem range 0x100000-0x7fedffff could not be reserved
    system 00:0f: iomem range 0xfec00000-0xfec00fff has been reserved
    system 00:0f: iomem range 0xfed14000-0xfed1dfff has been reserved
    system 00:0f: iomem range 0xfed20000-0xfed9ffff has been reserved
    system 00:0f: iomem range 0xfee00000-0xfee00fff could not be reserved
    system 00:0f: iomem range 0xffb00000-0xffb7ffff has been reserved
    system 00:0f: iomem range 0xfff00000-0xffffffff has been reserved
    system 00:0f: iomem range 0xe0000-0xeffff has been reserved
    PCI: Bridge: 0000:00:01.0
    IO window: d000-dfff
    MEM window: fa000000-fcffffff
    PREFETCH window: d0000000-dfffffff
    PCI: Bridge: 0000:00:1c.0
    IO window: b000-bfff
    MEM window: fdb00000-fdbfffff
    PREFETCH window: fdc00000-fdcfffff
    PCI: Bridge: 0000:00:1e.0
    IO window: c000-cfff
    MEM window: fde00000-fdefffff
    PREFETCH window: fdd00000-fddfffff
    ACPI: PCI Interrupt 0000:00:01.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:01.0 to 64
    ACPI: PCI Interrupt 0000:00:1c.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:1c.0 to 64
    PCI: Setting latency timer of device 0000:00:1e.0 to 64
    NET: Registered protocol family 2
    IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
    TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    TCP: Hash tables configured (established 262144 bind 65536)
    TCP reno registered
    checking if image is initramfs... it is
    Freeing initrd memory: 690k freed
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Installing knfsd (copyright (C) 1996 [email protected]).
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    Boot video device is 0000:01:00.0
    PCI: Setting latency timer of device 0000:00:01.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:01.0:pcie00]
    Allocate Port Service[0000:00:01.0:pcie03]
    PCI: Setting latency timer of device 0000:00:1c.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:1c.0:pcie00]
    Allocate Port Service[0000:00:1c.0:pcie02]
    Allocate Port Service[0000:00:1c.0:pcie03]
    vesafb: framebuffer at 0xd0000000, mapped to 0xffffc20010100000, using 3072k, total 262144k
    vesafb: mode is 1024x768x16, linelength=2048, pages=1
    vesafb: scrolling: redraw
    vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
    Console: switching to colour frame buffer device 128x48
    fb0: VESA VGA frame buffer device
    Linux agpgart interface v0.102
    Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
    serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksize
    loop: module loaded
    input: Macintosh mouse button emulation as /devices/virtual/input/input0
    PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    serio: i8042 KBD port at 0x60,0x64 irq 1
    mice: PS/2 mouse device common for all mice
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 1
    NET: Registered protocol family 17
    RPC: Registered udp transport module.
    RPC: Registered tcp transport module.
    Freeing unused kernel memory: 248k freed
    libata version 3.00 loaded.
    PCI: Enabling device 0000:02:00.1 (0000 -> 0001)
    ACPI: PCI Interrupt 0000:02:00.1[b] -> GSI 17 (level, low) -> IRQ 17
    Switched to high resolution mode on CPU 1
    PCI: Setting latency timer of device 0000:02:00.1 to 64
    scsi0 : pata_jmicron
    Switched to high resolution mode on CPU 0
    scsi1 : pata_jmicron
    ata1: PATA max UDMA/100 cmd 0xbf00 ctl 0xbe00 bmdma 0xbb00 irq 17
    ata2: PATA max UDMA/100 cmd 0xbd00 ctl 0xbc00 bmdma 0xbb08 irq 17
    ata1.00: ATA-7: ST3200826A, 3.06, max UDMA/100
    ata1.00: 390721968 sectors, multi 0: LBA48
    ata1.01: ATAPI: HL-DT-ST DVDRAM GSA-4120B, A101, max UDMA/33
    ata1.00: configured for UDMA/100
    ata1.01: configured for UDMA/33
    scsi 0:0:0:0: Direct-Access ATA ST3200826A 3.06 PQ: 0 ANSI: 5
    scsi 0:0:1:0: CD-ROM HL-DT-ST DVDRAM GSA-4120B A101 PQ: 0 ANSI: 5
    ahci 0000:02:00.0: version 3.0
    ACPI: PCI Interrupt 0000:02:00.0[A] -> GSI 16 (level, low) -> IRQ 16
    ahci 0000:02:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
    ahci 0000:02:00.0: flags: 64bit ncq pm led clo pmp pio slum part
    PCI: Setting latency timer of device 0000:02:00.0 to 64
    scsi2 : ahci
    scsi3 : ahci
    ata3: SATA max UDMA/133 abar m8192@0xfdbfe000 port 0xfdbfe100 irq 16
    ata4: SATA max UDMA/133 abar m8192@0xfdbfe000 port 0xfdbfe180 irq 16
    ata3: SATA link down (SStatus 0 SControl 300)
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 8 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: limiting SATA link speed to 1.5 Gbps
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata_piix 0000:00:1f.2: version 2.12
    ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    ACPI: PCI Interrupt 0000:00:1f.2[b] -> GSI 19 (level, low) -> IRQ 19
    PCI: Setting latency timer of device 0000:00:1f.2 to 64
    scsi4 : ata_piix
    scsi5 : ata_piix
    ata5: SATA max UDMA/133 cmd 0xfa00 ctl 0xf900 bmdma 0xf600 irq 19
    ata6: SATA max UDMA/133 cmd 0xf800 ctl 0xf700 bmdma 0xf608 irq 19
    ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
    ACPI: PCI Interrupt 0000:00:1f.5[b] -> GSI 19 (level, low) -> IRQ 19
    PCI: Setting latency timer of device 0000:00:1f.5 to 64
    scsi6 : ata_piix
    scsi7 : ata_piix
    ata7: SATA max UDMA/133 cmd 0xf300 ctl 0xf200 bmdma 0xef00 irq 19
    ata8: SATA max UDMA/133 cmd 0xf100 ctl 0xf000 bmdma 0xef08 irq 19
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    USB Universal Host Controller Interface driver v3.0
    ACPI: PCI Interrupt 0000:00:1a.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:1a.0 to 64
    uhci_hcd 0000:00:1a.0: UHCI Host Controller
    uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000ff00
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1a.1[b] -> GSI 21 (level, low) -> IRQ 21
    PCI: Setting latency timer of device 0000:00:1a.1 to 64
    uhci_hcd 0000:00:1a.1: UHCI Host Controller
    uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000fe00
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 23 (level, low) -> IRQ 23
    PCI: Setting latency timer of device 0000:00:1d.0 to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000fd00
    usb usb3: configuration #1 chosen from 1 choice
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1d.1[b] -> GSI 19 (level, low) -> IRQ 19
    PCI: Setting latency timer of device 0000:00:1d.1 to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000fc00
    usb usb4: configuration #1 chosen from 1 choice
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1d.2[C] -> GSI 18 (level, low) -> IRQ 18
    PCI: Setting latency timer of device 0000:00:1d.2 to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000fb00
    usb usb5: configuration #1 chosen from 1 choice
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1a.7[C] -> GSI 18 (level, low) -> IRQ 18
    PCI: Setting latency timer of device 0000:00:1a.7 to 64
    ehci_hcd 0000:00:1a.7: EHCI Host Controller
    ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 6
    PCI: cache line size of 32 is not supported by device 0000:00:1a.7
    ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfdfff000
    usb 4-1: new low speed USB device using uhci_hcd and address 2
    ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb6: configuration #1 chosen from 1 choice
    hub 6-0:1.0: USB hub found
    hub 6-0:1.0: 4 ports detected
    ACPI: PCI Interrupt 0000:00:1d.7[A] -> GSI 23 (level, low) -> IRQ 23
    PCI: Setting latency timer of device 0000:00:1d.7 to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 7
    PCI: cache line size of 32 is not supported by device 0000:00:1d.7
    ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfdffe000
    usb 4-1: string descriptor 0 read error: -71
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb7: configuration #1 chosen from 1 choice
    hub 7-0:1.0: USB hub found
    hub 7-0:1.0: 6 ports detected
    usb 4-1: string descriptor 0 read error: -71
    usb 4-1: configuration #1 chosen from 1 choice
    usb 4-1: can't set config #1, error -71
    usb 4-1: USB disconnect, address 2
    Driver 'sd' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors (200050 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Driver 'sr' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors (200050 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3
    sd 0:0:0:0: [sda] Attached SCSI disk
    sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 0:0:1:0: Attached scsi CD-ROM sr0
    kjournald starting. Commit interval 5 seconds
    EXT3-fs: mounted filesystem with ordered data mode.
    usb 4-1: new low speed USB device using uhci_hcd and address 3
    usb 4-1: configuration #1 chosen from 1 choice
    rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month
    r8169 Gigabit Ethernet driver 2.2LK loaded
    ACPI: PCI Interrupt 0000:03:06.0[A] -> GSI 21 (level, low) -> IRQ 21
    eth0: RTL8169sc/8110sc at 0xffffc20000024000, 00:16:17:b2:2b:11, XID 18000000 IRQ 21
    ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 22 (level, low) -> IRQ 22
    PCI: Setting latency timer of device 0000:00:1b.0 to 64
    hda_codec: Unknown model for ALC883, trying auto-probe from BIOS...
    input: Power Button (FF) as /devices/virtual/input/input2
    ACPI: Power Button (FF) [PWRF]
    input: Power Button (CM) as /devices/virtual/input/input3
    ACPI: Power Button (CM) [PWRB]
    ACPI: Fan [FAN] (on)
    ACPI: SSDT 7FEE8380, 0087 (r1 PmRef Cpu1Ist 3000 INTL 20060912)
    ACPI Exception (processor_core-0816): AE_NOT_FOUND, Processor Device is not present [20070126]
    ACPI Exception (processor_core-0816): AE_NOT_FOUND, Processor Device is not present [20070126]
    ACPI: Thermal Zone [THRM] (43 C)
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    sr 0:0:1:0: Attached scsi generic sg1 type 5
    ACPI: PCI Interrupt 0000:00:1f.3[b] -> GSI 19 (level, low) -> IRQ 19
    nvidia: module license 'NVIDIA' taints kernel.
    PPP generic driver version 2.4.2
    usbcore: registered new interface driver hiddev
    input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb4/4-1/4-1:1.0/input/input4
    lp: driver loaded but no devices found
    input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.1-1
    usbcore: registered new interface driver usbhid
    drivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver
    ppdev: user-space parallel port driver
    ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:01:00.0 to 64
    NVRM: loading NVIDIA UNIX x86_64 Kernel Module 169.12 Thu Feb 14 17:51:09 PST 2008
    parport_pc 00:0a: reported by Plug and Play ACPI
    parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
    lp0: using parport0 (interrupt-driven).
    EXT3 FS on sda1, internal journal
    kjournald starting. Commit interval 5 seconds
    EXT3 FS on sda2, internal journal
    EXT3-fs: mounted filesystem with ordered data mode.
    Adding 29294516k swap on /dev/sda3. Priority:-1 extents:1 across:29294516k
    r8169: eth0: link up
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    eth0: no IPv6 routers present
    That's the entire code, the part on which it holds on is :
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 8 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: limiting SATA link speed to 1.5 Gbps
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata_piix 0000:00:1f.2: version 2.12
    ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    Also I might add that on my first boot it didn't go this slow - I can't remember if I got the error or not though since I didn't pay attention.
    I don't think it's necessarily a hardware issue, even though this PC had it's issues with linux - had to flash my bios just so grub would detect hard drives, this doesn't seem like one of those.
    At least, I think it isn't since Mandriva booted just fine, and I don't think it's using a different kernel or some such, is it? Altough it was 32bit, but still, I find this quite odd.
    Now if this really is an error, not just buggy software, is there a way to ignore the error - I mean it boots up eventually anyway, just takes a hell of a lot of time.
    Last edited by gajo (2008-06-20 10:12:52)

    I'm going to bring up this issue again, still haven't fixed it and it remains unsolved with the newest kernel.
    The following links seem to have the same issue:
    http://www.ubuntu-forum.net/showthread.php?t=765486
    http://www.slackwarehelp.org/post-6750. … 194ecb9f80
    http://www.archlinux.it/forum/viewtopic.php?pid=11632
    http://www.linuxquestions.org/questions … 26-644368/
    Some of those threads link to this one as well, pretty much all seem to be unresolved or lack any given solution.
    One thing I noticed though, it seems that in nearly all cases the users report to have an MSI motherboard, coincidence? Hope so.
    Any clues on how one might fix this? Facts are, the kernel boots eventually, always, and it works like there is no problem; the issue is that it takes it's time, about 5-10 times the amount it would be normally (or before 2.6.x). Note that in the old kernel the delay was only about 5 seconds or less, with just one error message.
    Also, it seems to boot just fine in Windows, bit sad that Windows seems more stable/reliable eh?
    So where to next? I really want to fix this. It seems Google can't spit out the solution, should I report a bug to the kernel devs and pray that they look it up? Or perhaps it might be feasible to just change the source code of the kernel so it doesn't try 4 times for 10, 10, 30 seconds yet only once for 1 second? Surely it would be a matter of a simple for loop, just a matter of finding it!
    Please, even if you ain't got a solution to the particular issue, at least give me(and the people who google for the problem since this thread seems to be topping the results) an advice on what approach to take next, I'm fairly sure that everything can be fixed with common sense and a bit of C knowledge, only thing that's needed is a bit of experience.

  • [systemd] shutdown takes a long time

    Hello.
    It takes quite a long time for my system to shutdown. The systemd ArchWiki suggests to log the shutdown like this. I am not quite sure what to look for. I suspect that smplayer or deluged might be the problem. Am I right and furthermore what can I do about it?
    Thank you for your time.
    Here the shutdown log:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.5.3-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Aug 26 09:14:51 CEST 2012
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=55614e59-14b9-47c5-a609-fd76662e6403 ro systemd.log_level=debug systemd.log_target=kmsg log_buf_len=1M enforcing=0 quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009c000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000005ffeffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000005fff0000-0x000000005fff2fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000005fff3000-0x000000005fffffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.2 present.
    [ 0.000000] DMI: /MS-7030, BIOS 6.00 PG 11/10/2005
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP bridge at 00:00:00
    [ 0.000000] Aperture from AGP @ e0000000 old size 32 MB
    [ 0.000000] Aperture size 4096 MB (APSIZE 0) is not right, using settings from NB
    [ 0.000000] Aperture from AGP @ e0000000 size 32 MB (APSIZE 0)
    [ 0.000000] e820: last_pfn = 0x5fff0 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-C7FFF write-protect
    [ 0.000000] C8000-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask FFC0000000 write-back
    [ 0.000000] 1 base 0040000000 mask FFE0000000 write-back
    [ 0.000000] 2 base 00E0000000 mask FFF0000000 write-combining
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000f4fc0-0x000f4fcf] mapped at [ffff8800000f4fc0]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000096000] 96000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x5ffeffff]
    [ 0.000000] [mem 0x00000000-0x5fdfffff] page 2M
    [ 0.000000] [mem 0x5fe00000-0x5ffeffff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0x5ffeffff @ [mem 0x1fcfd000-0x1fffffff]
    [ 0.000000] log_buf_len: 1048576
    [ 0.000000] early log buf free: 521388(99%)
    [ 0.000000] RAMDISK: [mem 0x37a32000-0x37d10fff]
    [ 0.000000] ACPI: RSDP 00000000000f8eb0 00014 (v00 Nvidia)
    [ 0.000000] ACPI: RSDT 000000005fff3040 00034 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: FACP 000000005fff30c0 00074 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: DSDT 000000005fff3180 048C1 (v01 NVIDIA AWRDACPI 00001000 MSFT 0100000E)
    [ 0.000000] ACPI: FACS 000000005fff0000 00040
    [ 0.000000] ACPI: SSDT 000000005fff7b80 000D6 (v01 PTLTD POWERNOW 00000001 LTP 00000001)
    [ 0.000000] ACPI: SRAT 000000005fff7cc0 00090 (v01 AMD HAMMER 00000001 AMD 00000001)
    [ 0.000000] ACPI: APIC 000000005fff7ac0 0007C (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
    [ 0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
    [ 0.000000] SRAT: Node 0 PXM 0 [mem 0x00100000-0x5fffffff]
    [ 0.000000] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0x5ffeffff] -> [mem 0x00000000-0x5ffeffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x5ffeffff]
    [ 0.000000] NODE_DATA [mem 0x5feec000-0x5feeffff]
    [ 0.000000] [ffffea0000000000-ffffea00017fffff] PMD -> [ffff88005de00000-ffff88005f5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal empty
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009bfff]
    [ 0.000000] node 0: [mem 0x00100000-0x5ffeffff]
    [ 0.000000] On node 0 totalpages: 393084
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3910 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 6080 pages used for memmap
    [ 0.000000] DMA32 zone: 383024 pages, LIFO batch:31
    [ 0.000000] Nvidia board detected. Ignoring ACPI timer override.
    [ 0.000000] If you got timer trouble try acpi_use_timer_override
    [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: BIOS IRQ0 override ignored.
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] ACPI: IRQ14 used by override.
    [ 0.000000] ACPI: IRQ15 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] SMP: Allowing 2 CPUs, 1 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] e820: [mem 0x60000000-0xfebfffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88005fc00000 s83392 r8192 d23104 u1048576
    [ 0.000000] pcpu-alloc: s83392 r8192 d23104 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 386934
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=55614e59-14b9-47c5-a609-fd76662e6403 ro systemd.log_level=debug systemd.log_target=kmsg log_buf_len=1M enforcing=0 quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Checking aperture...
    [ 0.000000] AGP bridge at 00:00:00
    [ 0.000000] Aperture from AGP @ e0000000 old size 32 MB
    [ 0.000000] Aperture size 4096 MB (APSIZE 0) is not right, using settings from NB
    [ 0.000000] Aperture from AGP @ e0000000 size 32 MB (APSIZE 0)
    [ 0.000000] Node 0: aperture @ e0000000 size 256 MB
    [ 0.000000] Memory: 1532356k/1572800k available (4635k kernel code, 464k absent, 39980k reserved, 4212k data, 756k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 6291456 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 2009.231 MHz processor.
    [ 0.000000] Marking TSC unstable due to TSCs unsynchronized
    [ 0.006673] Calibrating delay loop (skipped), value calculated using timer frequency.. 4020.89 BogoMIPS (lpj=6697436)
    [ 0.006678] pid_max: default: 32768 minimum: 301
    [ 0.006716] Security Framework initialized
    [ 0.006725] AppArmor: AppArmor disabled by boot time parameter
    [ 0.006963] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.010848] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.012136] Mount-cache hash table entries: 256
    [ 0.012496] Initializing cgroup subsys cpuacct
    [ 0.012500] Initializing cgroup subsys memory
    [ 0.012520] Initializing cgroup subsys devices
    [ 0.012522] Initializing cgroup subsys freezer
    [ 0.012524] Initializing cgroup subsys net_cls
    [ 0.012526] Initializing cgroup subsys blkio
    [ 0.012564] tseg: 0000000000
    [ 0.012585] mce: CPU supports 5 MCE banks
    [ 0.012635] SMP alternatives: switching to UP code
    [ 0.018800] ACPI: Core revision 20120320
    [ 0.022927] ftrace: allocating 17956 entries in 71 pages
    [ 0.030518] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
    [ 0.064541] CPU0: AMD Athlon(tm) 64 Processor 3000+ stepping 00
    [ 0.066663] Performance Events: AMD PMU driver.
    [ 0.066663] ... version: 0
    [ 0.066663] ... bit width: 48
    [ 0.066663] ... generic registers: 4
    [ 0.066663] ... value mask: 0000ffffffffffff
    [ 0.066663] ... max period: 00007fffffffffff
    [ 0.066663] ... fixed-purpose events: 0
    [ 0.066663] ... event mask: 000000000000000f
    [ 0.083576] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.083636] Brought up 1 CPUs
    [ 0.083638] Total of 1 processors activated (4020.89 BogoMIPS).
    [ 0.084405] devtmpfs: initialized
    [ 0.086410] PM: Registering ACPI NVS region [mem 0x5fff0000-0x5fff2fff] (12288 bytes)
    [ 0.087408] NET: Registered protocol family 16
    [ 0.087567] node 0 link 0: io port [9000, ffff]
    [ 0.087570] TOM: 0000000060000000 aka 1536M
    [ 0.087573] node 0 link 0: mmio [a0000, bffff]
    [ 0.087577] node 0 link 0: mmio [d0000000, fe02ffff]
    [ 0.087580] bus: [00, 02] on node 0 link 0
    [ 0.087583] bus: 00 [io 0x0000-0xffff]
    [ 0.087585] bus: 00 [mem 0x000a0000-0x000bffff]
    [ 0.087587] bus: 00 [mem 0x60000000-0xfcffffffff]
    [ 0.087627] ACPI: bus type pci registered
    [ 0.087696] PCI: Using configuration type 1 for base access
    [ 0.088295] bio: create slab <bio-0> at 0
    [ 0.088374] ACPI: Added _OSI(Module Device)
    [ 0.088376] ACPI: Added _OSI(Processor Device)
    [ 0.088378] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.088380] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.089228] ACPI: EC: Look up EC in DSDT
    [ 0.093337] ACPI: Interpreter enabled
    [ 0.093342] ACPI: (supports S0 S1 S4 S5)
    [ 0.093368] ACPI: Using IOAPIC for interrupt routing
    [ 0.094190] ACPI: Power Resource [ISAV] (on)
    [ 0.099077] ACPI: No dock devices found.
    [ 0.099086] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.099148] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.099226] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    [ 0.099229] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    [ 0.099233] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.099236] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
    [ 0.099238] pci_root PNP0A03:00: host bridge window [mem 0x60000000-0xfebfffff] (ignored)
    [ 0.099241] PCI: root bus 00: hardware-probed resources
    [ 0.099287] PCI host bridge to bus 0000:00
    [ 0.099291] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.099293] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.099296] pci_bus 0000:00: root bus resource [mem 0x60000000-0xfcffffffff]
    [ 0.099312] pci 0000:00:00.0: [10de:00e1] type 00 class 0x060000
    [ 0.099321] pci 0000:00:00.0: reg 10: [mem 0xe0000000-0xefffffff pref]
    [ 0.099381] pci 0000:00:01.0: [10de:00e0] type 00 class 0x060100
    [ 0.099413] pci 0000:00:01.1: [10de:00e4] type 00 class 0x0c0500
    [ 0.099420] pci 0000:00:01.1: reg 10: [io 0xfc00-0xfc1f]
    [ 0.099432] pci 0000:00:01.1: reg 20: [io 0x4c00-0x4c3f]
    [ 0.099437] pci 0000:00:01.1: reg 24: [io 0x4c40-0x4c7f]
    [ 0.099451] pci 0000:00:01.1: PME# supported from D3hot D3cold
    [ 0.099470] pci 0000:00:02.0: [10de:00e7] type 00 class 0x0c0310
    [ 0.099477] pci 0000:00:02.0: reg 10: [mem 0xfe02f000-0xfe02ffff]
    [ 0.099502] pci 0000:00:02.0: supports D1 D2
    [ 0.099504] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.099518] pci 0000:00:02.1: [10de:00e7] type 00 class 0x0c0310
    [ 0.099525] pci 0000:00:02.1: reg 10: [mem 0xfe02e000-0xfe02efff]
    [ 0.099550] pci 0000:00:02.1: supports D1 D2
    [ 0.099552] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.099567] pci 0000:00:02.2: [10de:00e8] type 00 class 0x0c0320
    [ 0.099575] pci 0000:00:02.2: reg 10: [mem 0xfe02d000-0xfe02d0ff]
    [ 0.099605] pci 0000:00:02.2: supports D1 D2
    [ 0.099607] pci 0000:00:02.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.099628] pci 0000:00:06.0: [10de:00ea] type 00 class 0x040100
    [ 0.099635] pci 0000:00:06.0: reg 10: [io 0xf000-0xf0ff]
    [ 0.099640] pci 0000:00:06.0: reg 14: [io 0xec00-0xec7f]
    [ 0.099645] pci 0000:00:06.0: reg 18: [mem 0xfe02c000-0xfe02cfff]
    [ 0.099665] pci 0000:00:06.0: supports D1 D2
    [ 0.099680] pci 0000:00:08.0: [10de:00e5] type 00 class 0x01018a
    [ 0.099696] pci 0000:00:08.0: reg 20: [io 0xe000-0xe00f]
    [ 0.099723] pci 0000:00:09.0: [10de:00ee] type 00 class 0x010185
    [ 0.099730] pci 0000:00:09.0: reg 10: [io 0x09e0-0x09e7]
    [ 0.099735] pci 0000:00:09.0: reg 14: [io 0x0be0-0x0be3]
    [ 0.099740] pci 0000:00:09.0: reg 18: [io 0x0960-0x0967]
    [ 0.099744] pci 0000:00:09.0: reg 1c: [io 0x0b60-0x0b63]
    [ 0.099749] pci 0000:00:09.0: reg 20: [io 0xcc00-0xcc0f]
    [ 0.099754] pci 0000:00:09.0: reg 24: [io 0xc800-0xc87f]
    [ 0.099779] pci 0000:00:0a.0: [10de:00e3] type 00 class 0x010185
    [ 0.099786] pci 0000:00:0a.0: reg 10: [io 0x09f0-0x09f7]
    [ 0.099791] pci 0000:00:0a.0: reg 14: [io 0x0bf0-0x0bf3]
    [ 0.099796] pci 0000:00:0a.0: reg 18: [io 0x0970-0x0977]
    [ 0.099801] pci 0000:00:0a.0: reg 1c: [io 0x0b70-0x0b73]
    [ 0.099806] pci 0000:00:0a.0: reg 20: [io 0xb400-0xb40f]
    [ 0.099810] pci 0000:00:0a.0: reg 24: [io 0xb000-0xb07f]
    [ 0.099834] pci 0000:00:0b.0: [10de:00e2] type 01 class 0x060400
    [ 0.099865] pci 0000:00:0e.0: [10de:00ed] type 01 class 0x060400
    [ 0.099892] pci 0000:00:18.0: [1022:1100] type 00 class 0x060000
    [ 0.099913] pci 0000:00:18.1: [1022:1101] type 00 class 0x060000
    [ 0.099931] pci 0000:00:18.2: [1022:1102] type 00 class 0x060000
    [ 0.099951] pci 0000:00:18.3: [1022:1103] type 00 class 0x060000
    [ 0.100003] pci 0000:01:00.0: [10de:0221] type 00 class 0x030000
    [ 0.100017] pci 0000:01:00.0: reg 10: [mem 0xfa000000-0xfaffffff]
    [ 0.100025] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff pref]
    [ 0.100033] pci 0000:01:00.0: reg 18: [mem 0xfb000000-0xfbffffff]
    [ 0.100056] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.100111] pci 0000:00:0b.0: PCI bridge to [bus 01-01]
    [ 0.100115] pci 0000:00:0b.0: bridge window [io 0xa000-0xafff]
    [ 0.100119] pci 0000:00:0b.0: bridge window [mem 0xfa000000-0xfcffffff]
    [ 0.100123] pci 0000:00:0b.0: bridge window [mem 0xd0000000-0xdfffffff pref]
    [ 0.100147] pci 0000:02:07.0: [1814:0301] type 00 class 0x028000
    [ 0.100158] pci 0000:02:07.0: reg 10: [mem 0xfdff0000-0xfdff7fff]
    [ 0.100216] pci 0000:02:08.0: [10ec:8139] type 00 class 0x020000
    [ 0.100228] pci 0000:02:08.0: reg 10: [io 0x9c00-0x9cff]
    [ 0.100235] pci 0000:02:08.0: reg 14: [mem 0xfdfff000-0xfdfff0ff]
    [ 0.100260] pci 0000:02:08.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    [ 0.100278] pci 0000:02:08.0: supports D1 D2
    [ 0.100280] pci 0000:02:08.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.100298] pci 0000:02:09.0: [1106:3038] type 00 class 0x0c0300
    [ 0.100326] pci 0000:02:09.0: reg 20: [io 0x9800-0x981f]
    [ 0.100351] pci 0000:02:09.0: supports D1 D2
    [ 0.100354] pci 0000:02:09.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.100371] pci 0000:02:09.1: [1106:3038] type 00 class 0x0c0300
    [ 0.100399] pci 0000:02:09.1: reg 20: [io 0x9400-0x941f]
    [ 0.100424] pci 0000:02:09.1: supports D1 D2
    [ 0.100427] pci 0000:02:09.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.100445] pci 0000:02:09.2: [1106:3104] type 00 class 0x0c0320
    [ 0.100456] pci 0000:02:09.2: reg 10: [mem 0xfdffe000-0xfdffe0ff]
    [ 0.100499] pci 0000:02:09.2: supports D1 D2
    [ 0.100501] pci 0000:02:09.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.100527] pci 0000:00:0e.0: PCI bridge to [bus 02-02]
    [ 0.100531] pci 0000:00:0e.0: bridge window [io 0x9000-0x9fff]
    [ 0.100534] pci 0000:00:0e.0: bridge window [mem 0xfdf00000-0xfdffffff]
    [ 0.100537] pci 0000:00:0e.0: bridge window [mem 0xfde00000-0xfdefffff pref]
    [ 0.100546] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.100629] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
    [ 0.100813] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGPB._PRT]
    [ 0.100901] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
    [ 0.125942] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.125994] ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.126043] ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    [ 0.126092] ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.126140] ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126195] ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.126245] ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.126293] ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126341] ACPI: PCI Interrupt Link [LAPU] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126391] ACPI: PCI Interrupt Link [LACI] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    [ 0.126440] ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.126489] ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    [ 0.126538] ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    [ 0.126591] ACPI: PCI Interrupt Link [LFIR] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126640] ACPI: PCI Interrupt Link [L3CM] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126697] ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126753] ACPI: PCI Interrupt Link [LSID] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.126812] ACPI: PCI Interrupt Link [LFID] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.126889] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0
    [ 0.126950] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0
    [ 0.127010] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
    [ 0.127070] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0
    [ 0.127110] ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled.
    [ 0.127183] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
    [ 0.127250] ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0
    [ 0.127316] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0, disabled.
    [ 0.127382] ACPI: PCI Interrupt Link [APCI] (IRQs 20 21 22 23) *0, disabled.
    [ 0.127449] ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0
    [ 0.127515] ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0
    [ 0.127581] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
    [ 0.127647] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
    [ 0.127713] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
    [ 0.127780] ACPI: PCI Interrupt Link [AP3C] (IRQs 20 21 22 23) *0, disabled.
    [ 0.127847] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
    [ 0.127919] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
    [ 0.127991] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
    [ 0.128144] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.128148] vgaarb: loaded
    [ 0.128149] vgaarb: bridge control possible 0000:01:00.0
    [ 0.128204] PCI: Using ACPI for IRQ routing
    [ 0.128208] PCI: pci_cache_line_size set to 64 bytes
    [ 0.128221] pci 0000:00:00.0: address space collision: [mem 0xe0000000-0xefffffff pref] conflicts with GART [mem 0xe0000000-0xefffffff]
    [ 0.128280] e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff]
    [ 0.128283] e820: reserve RAM buffer [mem 0x5fff0000-0x5fffffff]
    [ 0.128429] NetLabel: Initializing
    [ 0.128430] NetLabel: domain hash size = 128
    [ 0.128432] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.128453] NetLabel: unlabeled traffic allowed by default
    [ 0.139353] pnp: PnP ACPI init
    [ 0.139383] ACPI: bus type pnp registered
    [ 0.139432] pnp 00:00: [io 0x4000-0x407f]
    [ 0.139434] pnp 00:00: [io 0x4080-0x40ff]
    [ 0.139437] pnp 00:00: [io 0x4400-0x447f]
    [ 0.139439] pnp 00:00: [io 0x4480-0x44ff]
    [ 0.139441] pnp 00:00: [io 0x4800-0x487f]
    [ 0.139444] pnp 00:00: [io 0x4880-0x48ff]
    [ 0.139550] system 00:00: [io 0x4000-0x407f] has been reserved
    [ 0.139554] system 00:00: [io 0x4080-0x40ff] has been reserved
    [ 0.139557] system 00:00: [io 0x4400-0x447f] has been reserved
    [ 0.139560] system 00:00: [io 0x4480-0x44ff] has been reserved
    [ 0.139563] system 00:00: [io 0x4800-0x487f] has been reserved
    [ 0.139566] system 00:00: [io 0x4880-0x48ff] has been reserved
    [ 0.139572] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.139776] pnp 00:01: [mem 0x0009e000-0x000a1fff]
    [ 0.139779] pnp 00:01: [mem 0x000cec00-0x000cffff]
    [ 0.139781] pnp 00:01: [mem 0x000f0000-0x000fbfff]
    [ 0.139784] pnp 00:01: [mem 0x000fc000-0x000fffff]
    [ 0.139786] pnp 00:01: [mem 0x5fff0000-0x5fffffff]
    [ 0.139789] pnp 00:01: [mem 0xffff0000-0xffffffff]
    [ 0.139792] pnp 00:01: [mem 0x00000000-0x0009ffff]
    [ 0.139794] pnp 00:01: [mem 0x00100000-0x5ffeffff]
    [ 0.139797] pnp 00:01: [mem 0xfec00000-0xfec00fff]
    [ 0.139799] pnp 00:01: [mem 0xfee00000-0xfeefffff]
    [ 0.139802] pnp 00:01: [mem 0xfefff000-0xfeffffff]
    [ 0.139804] pnp 00:01: [mem 0xfff80000-0xfff80fff]
    [ 0.139807] pnp 00:01: [mem 0xfff90000-0xfffbffff]
    [ 0.139809] pnp 00:01: [mem 0xfffed000-0xfffeffff]
    [ 0.139815] pnp 00:01: disabling [mem 0x0009e000-0x000a1fff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139819] pnp 00:01: disabling [mem 0x000cec00-0x000cffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139823] pnp 00:01: disabling [mem 0x000f0000-0x000fbfff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139827] pnp 00:01: disabling [mem 0x000fc000-0x000fffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139830] pnp 00:01: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139834] pnp 00:01: disabling [mem 0x00100000-0x5ffeffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139885] system 00:01: [mem 0x5fff0000-0x5fffffff] could not be reserved
    [ 0.139889] system 00:01: [mem 0xffff0000-0xffffffff] has been reserved
    [ 0.139892] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.139895] system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
    [ 0.139898] system 00:01: [mem 0xfefff000-0xfeffffff] has been reserved
    [ 0.139902] system 00:01: [mem 0xfff80000-0xfff80fff] has been reserved
    [ 0.139905] system 00:01: [mem 0xfff90000-0xfffbffff] has been reserved
    [ 0.139908] system 00:01: [mem 0xfffed000-0xfffeffff] has been reserved
    [ 0.139912] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.139976] pnp 00:02: [bus 00-ff]
    [ 0.140003] pnp 00:02: [io 0x0cf8-0x0cff]
    [ 0.140006] pnp 00:02: [io 0x0cf0-0x0cf3]
    [ 0.140009] pnp 00:02: [io 0x0000-0x0cf7 window]
    [ 0.140011] pnp 00:02: [io 0x0d00-0xffff window]
    [ 0.140014] pnp 00:02: [mem 0x000a0000-0x000bffff window]
    [ 0.140017] pnp 00:02: [mem 0x000c0000-0x000dffff window]
    [ 0.140020] pnp 00:02: [mem 0x60000000-0xfebfffff window]
    [ 0.140101] pnp 00:02: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.140629] pnp 00:03: [io 0x0010-0x001f]
    [ 0.140631] pnp 00:03: [io 0x0022-0x003f]
    [ 0.140634] pnp 00:03: [io 0x0044-0x005f]
    [ 0.140636] pnp 00:03: [io 0x0062-0x0063]
    [ 0.140639] pnp 00:03: [io 0x0065-0x006f]
    [ 0.140641] pnp 00:03: [io 0x0074-0x007f]
    [ 0.140644] pnp 00:03: [io 0x0091-0x0093]
    [ 0.140646] pnp 00:03: [io 0x00a2-0x00bf]
    [ 0.140648] pnp 00:03: [io 0x00e0-0x00ef]
    [ 0.140651] pnp 00:03: [io 0x0b78-0x0b7b]
    [ 0.140653] pnp 00:03: [io 0x0f78-0x0f7b]
    [ 0.140656] pnp 00:03: [io 0x0a78-0x0a7b]
    [ 0.140658] pnp 00:03: [io 0x0e78-0x0e7b]
    [ 0.140660] pnp 00:03: [io 0x0bbc-0x0bbf]
    [ 0.140663] pnp 00:03: [io 0x0fbc-0x0fbf]
    [ 0.140665] pnp 00:03: [io 0x04d0-0x04d1]
    [ 0.140741] system 00:03: [io 0x0b78-0x0b7b] has been reserved
    [ 0.140744] system 00:03: [io 0x0f78-0x0f7b] has been reserved
    [ 0.140748] system 00:03: [io 0x0a78-0x0a7b] has been reserved
    [ 0.140751] system 00:03: [io 0x0e78-0x0e7b] has been reserved
    [ 0.140754] system 00:03: [io 0x0bbc-0x0bbf] has been reserved
    [ 0.140757] system 00:03: [io 0x0fbc-0x0fbf] has been reserved
    [ 0.140760] system 00:03: [io 0x04d0-0x04d1] has been reserved
    [ 0.140763] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.140777] pnp 00:04: [dma 4]
    [ 0.140780] pnp 00:04: [io 0x0000-0x000f]
    [ 0.140782] pnp 00:04: [io 0x0080-0x0090]
    [ 0.140785] pnp 00:04: [io 0x0094-0x009f]
    [ 0.140787] pnp 00:04: [io 0x00c0-0x00df]
    [ 0.140832] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.140844] pnp 00:05: [io 0x0070-0x0073]
    [ 0.140862] pnp 00:05: [irq 8]
    [ 0.140904] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.140914] pnp 00:06: [io 0x0061]
    [ 0.140959] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.140969] pnp 00:07: [io 0x00f0-0x00ff]
    [ 0.140976] pnp 00:07: [irq 13]
    [ 0.141019] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.141243] pnp 00:08: [io 0x03f8-0x03ff]
    [ 0.141251] pnp 00:08: [irq 4]
    [ 0.141340] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.141514] pnp 00:09: [io 0x02f8-0x02ff]
    [ 0.141522] pnp 00:09: [irq 3]
    [ 0.141596] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.141881] pnp 00:0a: [io 0x0378-0x037f]
    [ 0.141883] pnp 00:0a: [io 0x0778-0x077b]
    [ 0.141890] pnp 00:0a: [irq 7]
    [ 0.141960] pnp 00:0a: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.142046] pnp 00:0b: [io 0x0060]
    [ 0.142049] pnp 00:0b: [io 0x0064]
    [ 0.142055] pnp 00:0b: [irq 1]
    [ 0.142106] pnp 00:0b: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.142129] pnp: PnP ACPI: found 12 devices
    [ 0.142131] ACPI: ACPI bus type pnp unregistered
    [ 0.148689] Switching to clocksource acpi_pm
    [ 0.148760] pci 0000:01:00.0: BAR 6: assigned [mem 0xfc000000-0xfc01ffff pref]
    [ 0.148765] pci 0000:00:0b.0: PCI bridge to [bus 01-01]
    [ 0.148769] pci 0000:00:0b.0: bridge window [io 0xa000-0xafff]
    [ 0.148774] pci 0000:00:0b.0: bridge window [mem 0xfa000000-0xfcffffff]
    [ 0.148778] pci 0000:00:0b.0: bridge window [mem 0xd0000000-0xdfffffff pref]
    [ 0.148787] pci 0000:02:08.0: BAR 6: assigned [mem 0xfde00000-0xfde0ffff pref]
    [ 0.148790] pci 0000:00:0e.0: PCI bridge to [bus 02-02]
    [ 0.148793] pci 0000:00:0e.0: bridge window [io 0x9000-0x9fff]
    [ 0.148796] pci 0000:00:0e.0: bridge window [mem 0xfdf00000-0xfdffffff]
    [ 0.148799] pci 0000:00:0e.0: bridge window [mem 0xfde00000-0xfdefffff pref]
    [ 0.148814] pci 0000:00:0e.0: setting latency timer to 64
    [ 0.148818] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.148821] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    [ 0.148824] pci_bus 0000:00: resource 6 [mem 0x60000000-0xfcffffffff]
    [ 0.148827] pci_bus 0000:01: resource 0 [io 0xa000-0xafff]
    [ 0.148829] pci_bus 0000:01: resource 1 [mem 0xfa000000-0xfcffffff]
    [ 0.148832] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff pref]
    [ 0.148835] pci_bus 0000:02: resource 0 [io 0x9000-0x9fff]
    [ 0.148837] pci_bus 0000:02: resource 1 [mem 0xfdf00000-0xfdffffff]
    [ 0.148840] pci_bus 0000:02: resource 2 [mem 0xfde00000-0xfdefffff pref]
    [ 0.148906] NET: Registered protocol family 2
    [ 0.149029] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.149029] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    [ 0.153406] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.154706] TCP: Hash tables configured (established 262144 bind 65536)
    [ 0.154710] TCP: reno registered
    [ 0.154724] UDP hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.154769] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.154934] NET: Registered protocol family 1
    [ 0.155185] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
    [ 0.223475] ACPI: PCI Interrupt Link [APCG] enabled at IRQ 22
    [ 0.290128] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 21
    [ 0.290189] pci 0000:01:00.0: Boot video device
    [ 0.290265] ACPI: PCI Interrupt Link [APC4] enabled at IRQ 19
    [ 0.290348] ACPI: PCI Interrupt Link [APC1] enabled at IRQ 16
    [ 0.290425] ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
    [ 0.290445] PCI: CLS 32 bytes, default 64
    [ 0.290526] Unpacking initramfs...
    [ 0.372340] Freeing initrd memory: 2940k freed
    [ 0.379476] agpgart-amd64 0000:00:00.0: AGP bridge [10de/00e1]
    [ 0.379485] agpgart-amd64 0000:00:00.0: aperture size 4096 MB is not right, using settings from NB
    [ 0.379493] agpgart-amd64 0000:00:00.0: setting up Nforce3 AGP
    [ 0.388295] agpgart-amd64 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
    [ 0.388742] audit: initializing netlink socket (disabled)
    [ 0.388762] type=2000 audit(1346927638.386:1): initialized
    [ 0.402840] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.405016] VFS: Disk quotas dquot_6.5.2
    [ 0.405085] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.405228] msgmni has been set to 2998
    [ 0.405471] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.405502] io scheduler noop registered
    [ 0.405504] io scheduler deadline registered
    [ 0.405574] io scheduler cfq registered (default)
    [ 0.412567] vesafb: mode is 1280x1024x32, linelength=5120, pages=0
    [ 0.412569] vesafb: scrolling: redraw
    [ 0.412572] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.412814] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90000900000, using 5120k, total 5120k
    [ 0.475467] Console: switching to colour frame buffer device 160x64
    [ 0.537946] fb0: VESA VGA frame buffer device
    [ 0.538002] GHES: HEST is not enabled!
    [ 0.538068] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.558511] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.578950] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    [ 0.599584] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.620075] 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    [ 0.620233] Linux agpgart interface v0.103
    [ 0.620290] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 0.620292] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 0.620995] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.621096] mousedev: PS/2 mouse device common for all mice
    [ 0.621204] rtc_cmos 00:05: RTC can wake from S4
    [ 0.621333] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.621357] rtc0: alarms up to one year, y3k, 242 bytes nvram
    [ 0.621367] cpuidle: using governor ladder
    [ 0.621370] cpuidle: using governor menu
    [ 0.621586] drop_monitor: Initializing network drop monitor service
    [ 0.621691] TCP: cubic registered
    [ 0.621838] NET: Registered protocol family 10
    [ 0.622084] NET: Registered protocol family 17
    [ 0.622099] Key type dns_resolver registered
    [ 0.622262] PM: Hibernation image not present or could not be loaded.
    [ 0.622282] registered taskstats version 1
    [ 0.622840] rtc_cmos 00:05: setting system clock to 2012-09-06 10:33:58 UTC (1346927638)
    [ 0.624542] Freeing unused kernel memory: 756k freed
    [ 0.625249] Write protecting the kernel read-only data: 8192k
    [ 0.631386] Freeing unused kernel memory: 1496k freed
    [ 0.635859] Freeing unused kernel memory: 616k freed
    [ 0.647736] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.654805] systemd-udevd[38]: starting version 189
    [ 0.730408] ACPI: bus type usb registered
    [ 0.730453] usbcore: registered new interface driver usbfs
    [ 0.730468] usbcore: registered new interface driver hub
    [ 0.735252] usbcore: registered new device driver usb
    [ 0.735879] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.739107] SCSI subsystem initialized
    [ 0.746050] ehci_hcd 0000:00:02.2: setting latency timer to 64
    [ 0.746058] ehci_hcd 0000:00:02.2: EHCI Host Controller
    [ 0.746075] ehci_hcd 0000:00:02.2: new USB bus registered, assigned bus number 1
    [ 0.746108] ehci_hcd 0000:00:02.2: debug port 1
    [ 0.746114] ehci_hcd 0000:00:02.2: cache line size of 32 is not supported
    [ 0.746141] ehci_hcd 0000:00:02.2: irq 21, io mem 0xfe02d000
    [ 0.749031] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.750857] uhci_hcd: USB Universal Host Controller Interface driver
    [ 0.753402] ehci_hcd 0000:00:02.2: USB 2.0 started, EHCI 1.00
    [ 0.753609] hub 1-0:1.0: USB hub found
    [ 0.753616] hub 1-0:1.0: 8 ports detected
    [ 0.753784] uhci_hcd 0000:02:09.0: UHCI Host Controller
    [ 0.753793] uhci_hcd 0000:02:09.0: new USB bus registered, assigned bus number 2
    [ 0.753839] uhci_hcd 0000:02:09.0: irq 19, io base 0x00009800
    [ 0.753984] hub 2-0:1.0: USB hub found
    [ 0.753989] hub 2-0:1.0: 2 ports detected
    [ 0.754706] libata version 3.00 loaded.
    [ 0.756811] ohci_hcd 0000:00:02.0: setting latency timer to 64
    [ 0.756817] ohci_hcd 0000:00:02.0: OHCI Host Controller
    [ 0.756829] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 3
    [ 0.756869] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
    [ 0.757452] uhci_hcd 0000:02:09.1: UHCI Host Controller
    [ 0.757461] uhci_hcd 0000:02:09.1: new USB bus registered, assigned bus number 4
    [ 0.757493] uhci_hcd 0000:02:09.1: irq 16, io base 0x00009400
    [ 0.757704] hub 4-0:1.0: USB hub found
    [ 0.757711] hub 4-0:1.0: 2 ports detected
    [ 0.761428] ehci_hcd 0000:02:09.2: EHCI Host Controller
    [ 0.761447] ehci_hcd 0000:02:09.2: new USB bus registered, assigned bus number 5
    [ 0.761512] ehci_hcd 0000:02:09.2: irq 17, io mem 0xfdffe000
    [ 0.770064] ehci_hcd 0000:02:09.2: USB 2.0 started, EHCI 1.00
    [ 0.770287] hub 5-0:1.0: USB hub found
    [ 0.770294] hub 5-0:1.0: 4 ports detected
    [ 0.812239] hub 3-0:1.0: USB hub found
    [ 0.812251] hub 3-0:1.0: 4 ports detected
    [ 0.816572] ohci_hcd 0000:00:02.1: setting latency timer to 64
    [ 0.816577] ohci_hcd 0000:00:02.1: OHCI Host Controller
    [ 0.816589] ohci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 6
    [ 0.816630] ohci_hcd 0000:00:02.1: irq 22, io mem 0xfe02e000
    [ 0.868954] hub 6-0:1.0: USB hub found
    [ 0.868962] hub 6-0:1.0: 4 ports detected
    [ 0.873501] sata_nv 0000:00:09.0: version 3.5
    [ 0.873756] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 20
    [ 0.873833] sata_nv 0000:00:09.0: setting latency timer to 64
    [ 0.874345] scsi0 : sata_nv
    [ 0.874497] scsi1 : sata_nv
    [ 0.874645] ata1: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xcc00 irq 20
    [ 0.874648] ata2: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xcc08 irq 20
    [ 0.878342] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 23
    [ 0.878391] sata_nv 0000:00:0a.0: setting latency timer to 64
    [ 0.878840] scsi2 : sata_nv
    [ 0.878963] scsi3 : sata_nv
    [ 0.879110] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xb400 irq 23
    [ 0.879112] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xb408 irq 23
    [ 0.886479] pata_acpi 0000:00:08.0: power state changed by ACPI to D0
    [ 0.886484] pata_acpi 0000:00:08.0: power state changed by ACPI to D0
    [ 0.886533] pata_acpi 0000:00:08.0: setting latency timer to 64
    [ 1.186695] ata1: SATA link down (SStatus 0 SControl 300)
    [ 1.343364] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.350214] ata3.00: ATA-7: SAMSUNG SP1614C, SW100-34, max UDMA7
    [ 1.350217] ata3.00: 312581808 sectors, multi 16: LBA48
    [ 1.356871] ata3.00: configured for UDMA/133
    [ 1.370024] usb 4-1: new low-speed USB device number 2 using uhci_hcd
    [ 1.500024] ata2: SATA link down (SStatus 0 SControl 300)
    [ 1.500200] scsi 2:0:0:0: Direct-Access ATA SAMSUNG SP1614C SW10 PQ: 0 ANSI: 5
    [ 1.966704] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.020180] ata4.00: ATA-8: WDC WD15EARS-00Z5B1, 80.00A80, max UDMA/133
    [ 2.020183] ata4.00: 2930277168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 2.033588] ata4.00: configured for UDMA/133
    [ 2.033760] scsi 3:0:0:0: Direct-Access ATA WDC WD15EARS-00Z 80.0 PQ: 0 ANSI: 5
    [ 2.036921] pata_amd 0000:00:08.0: version 0.4.1
    [ 2.036948] pata_amd 0000:00:08.0: power state changed by ACPI to D0
    [ 2.036952] pata_amd 0000:00:08.0: power state changed by ACPI to D0
    [ 2.037017] pata_amd 0000:00:08.0: setting latency timer to 64
    [ 2.040074] scsi4 : pata_amd
    [ 2.041581] sd 2:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
    [ 2.041663] sd 2:0:0:0: [sda] Write Protect is off
    [ 2.041667] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.041692] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.042020] scsi5 : pata_amd
    [ 2.042592] ata5: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xe000 irq 14
    [ 2.042595] ata6: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xe008 irq 15
    [ 2.042887] sd 3:0:0:0: [sdb] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB)
    [ 2.042937] sd 3:0:0:0: [sdb] Write Protect is off
    [ 2.042941] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 2.042964] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.055764] sdb: sdb1
    [ 2.056082] sd 3:0:0:0: [sdb] Attached SCSI disk
    [ 2.056117] usbcore: registered new interface driver usbhid
    [ 2.056119] usbhid: USB HID core driver
    [ 2.073368] sda: sda1 sda2 sda3 sda4
    [ 2.073827] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 2.200466] ata5.00: ATA-6: ST340810A, 3.39, max UDMA/100
    [ 2.200473] ata5.00: 78165360 sectors, multi 16: LBA
    [ 2.200484] ata5: nv_mode_filter: 0x3f39f&0x739f->0x739f, BIOS=0x7000 (0xc000c000) ACPI=0x701f (60:120:0x1b)
    [ 2.213741] ata5.00: configured for UDMA/33
    [ 2.213893] scsi 4:0:0:0: Direct-Access ATA ST340810A 3.39 PQ: 0 ANSI: 5
    [ 2.214133] sd 4:0:0:0: [sdc] 78165360 512-byte logical blocks: (40.0 GB/37.2 GiB)
    [ 2.214189] sd 4:0:0:0: [sdc] Write Protect is off
    [ 2.214193] sd 4:0:0:0: [sdc] Mode Sense: 00 3a 00 00
    [ 2.214216] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.244630] sdc: sdc1
    [ 2.244919] sd 4:0:0:0: [sdc] Attached SCSI disk
    [ 2.373623] ata6.00: ATAPI: _NEC DVD_RW ND-3540A, 1.01, max UDMA/33
    [ 2.373634] ata6: nv_mode_filter: 0x739f&0x739f->0x739f, BIOS=0x7000 (0xc000c000) ACPI=0x701f (60:120:0x1b)
    [ 2.386892] ata6.00: configured for UDMA/33
    [ 2.388189] scsi 5:0:0:0: CD-ROM _NEC DVD_RW ND-3540A 1.01 PQ: 0 ANSI: 5
    [ 2.391609] input: OM as /devices/pci0000:00/0000:00:0e.0/0000:02:09.1/usb4/4-1/4-1:1.0/input/input1
    [ 2.393267] hid-generic 0003:04F3:0234.0001: input,hidraw0: USB HID v1.11 Mouse [OM] on usb-0000:02:09.1-1/input0
    [ 2.397693] sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray
    [ 2.397702] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.397986] sr 5:0:0:0: Attached scsi CD-ROM sr0
    [ 3.150376] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.949356] systemd[1]: Successfully opened /dev/kmsg for logging.
    [ 3.949760] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpuset of type cgroup with options cpuset.
    [ 3.949905] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpu,cpuacct of type cgroup with options cpu,cpuacct.
    [ 3.950054] systemd[1]: Mounting cgroup to /sys/fs/cgroup/memory of type cgroup with options memory.
    [ 3.950167] systemd[1]: Mounting cgroup to /sys/fs/cgroup/devices of type cgroup with options devices.
    [ 3.953404] systemd[1]: Mounting cgroup to /sys/fs/cgroup/freezer of type cgroup with options freezer.
    [ 3.953500] systemd[1]: Mounting cgroup to /sys/fs/cgroup/net_cls of type cgroup with options net_cls.
    [ 3.953597] systemd[1]: Mounting cgroup to /sys/fs/cgroup/blkio of type cgroup with options blkio.
    [ 3.956761] systemd[1]: systemd 189 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    [ 3.979310] systemd[1]: Your kernel apparently lacks built-in autofs4 support. Might be a good idea to compile it in. We'll now try to work around this by loading the module...
    [ 4.144298] systemd[1]: Inserted module 'autofs4'
    [ 4.152053] systemd[1]: Set hostname to <box>.
    [ 4.157882] systemd[1]: Using cgroup controller name=systemd. File system hierarchy is at /sys/fs/cgroup/systemd/system.
    [ 4.157991] systemd[1]: Installed release agent.
    [ 4.158142] systemd[1]: Created root group.
    [ 4.158219] systemd[1]: Using notification socket @/org/freedesktop/systemd1/notify
    [ 4.158401] systemd[1]: Successfully created private D-Bus server.
    [ 4.184882] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-cryptsetup-generator as 114
    [ 4.185117] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-system-update-generator as 115
    [ 4.185365] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-getty-generator as 116
    [ 4.185641] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-fstab-generator as 117
    [ 4.255375] systemd[1]: /usr/lib/systemd/system-generators/systemd-cryptsetup-generator exited successfully.
    [ 4.255400] systemd[1]: /usr/lib/systemd/system-generators/systemd-system-update-generator exited successfully.
    [ 4.255408] systemd[1]: /usr/lib/systemd/system-generators/systemd-getty-generator exited successfully.
    [ 4.255416] systemd[1]: /usr/lib/systemd/system-generators/systemd-fstab-generator exited successfully.
    [ 4.313459] systemd[1]: Looking for unit files in:
    [ 4.313463] systemd[1]: /etc/systemd/system
    [ 4.313465] systemd[1]: /run/systemd/generator
    [ 4.313468] systemd[1]: /usr/lib/systemd/system
    [ 4.313471] systemd[1]: Disabled SysV init scripts and rcN.d links support
    [ 4.422041] systemd[1]: Failed to load configuration for syslog.service: No such file or directory
    [ 4.495651] systemd[1]: Failed to load configuration for plymouth-start.service: No such file or directory
    [ 4.564783] systemd[1]: Failed to load configuration for rc-local.service: No such file or directory
    [ 4.564799] systemd[1]: Failed to load configuration for plymouth-quit-wait.service: No such file or directory
    [ 4.709247] systemd[1]: Failed to load configuration for auditd.service: No such file or directory
    [ 4.752803] systemd[1]: -.mount changed dead -> mounted
    [ 4.752894] systemd[1]: Activating default unit: default.target
    [ 4.752901] systemd[1]: Trying to enqueue job graphical.target/start/replace
    [ 4.753079] systemd[1]: Installed new job graphical.target/start as 1
    [ 4.753085] systemd[1]: Installed new job multi-user.target/start as 2
    [ 4.753089] systemd[1]: Installed new job basic.target/start as 3
    [ 4.753094] systemd[1]: Installed new job sysinit.target/start as 4
    [ 4.753098] systemd[1]: Installed new job local-fs.target/start as 5
    [ 4.753102] systemd[1]: Installed new job home-hasardeur-Ext.mount/start as 6
    [ 4.753108] systemd[1]: Installed new job systemd-journald.socket/start as 7
    [ 4.753112] systemd[1]: Installed new job systemd-fsck@dev-disk-by\x2duuid-1A54880F5487EBB7.service/start as 9
    [ 4.753116] systemd[1]: Installed new job dev-disk-by\x2duuid-1A54880F5487EBB7.device/start as 10
    [ 4.753138] systemd[1]: Installed new job local-fs-pre.target/start as 11
    [ 4.753142] systemd[1]: Installed new job home-hasardeur-Space.mount/start as 14
    [ 4.753147] systemd[1]: Installed new job systemd-fsck@dev-disk-by\x2duuid-72290182\x2d7429\x2d4fb3\x2da421\x2d1e3bdf21dda9.service/start as 15
    [ 4.753151] systemd[1]: Installed new job dev-disk-by\x2duuid-72290182\x2d7429\x2d4fb3\x2da421\x2d1e3bdf21dda9.device/start as 16
    [ 4.753161] systemd[1]: Installed new job tmp.mount/start as 17
    [ 4.753164] systemd[1]: Installed new job systemd-fsck-root.service/start as 18
    [ 4.753168] systemd[1]: Installed new job systemd-remount-fs.service/start as 19
    [ 4.753172] systemd[1]: Installed new job swap.target/start as 20
    [ 4.753176] systemd[1]: Installed new job dev-disk-by\x2duuid-b5f8685d\x2d2706\x2d44fc\x2d882d\x2d662cc23e7c07.swap/start as 21
    [ 4.753181] systemd[1]: Installed new job dev-disk-by\x2duuid-b5f8685d\x2d2706\x2d44fc\x2d882d\x2d662cc23e7c07.device/start as 22
    [ 4.753191] systemd[1]: Installed new job systemd-udevd.service/start as 23
    [ 4.753195] systemd[1]: Installed new job systemd-udevd-control.socket/start as 24
    [ 4.753198] systemd[1]: Installed new job systemd-udevd-kernel.socket/start as 25
    [ 4.753202] systemd[1]: Installed new job dev-mqueue.mount/start as 26
    [ 4.753206] systemd[1]: Installed new job sys-kernel-config.mount/start as 27
    [ 4.753209] systemd[1]: Installed new job systemd-random-seed-load.service/start as 28
    [ 4.753213] systemd[1]: Installed new job systemd-ask-password-console.path/start as 29
    [ 4.753217] systemd[1]: Installed new job systemd-udev-trigger.service/start as 30
    [ 4.753220] systemd[1]: Installed new job sys-kernel-debug.mount/start as 31
    [ 4.753224] systemd[1]: Installed new job systemd-modules-load.service/start as 32
    [ 4.753228] systemd[1]: Installed new job sys-fs-fuse-connections.mount/start as 33
    [ 4.753231] systemd[1]: Installed new job proc-sys-fs-binfmt_misc.automount/start as 34
    [ 4.753235] systemd[1]: Installed new job systemd-journald.service/start as 35
    [ 4.753239] systemd[1]: Installed new job systemd-journal-flush.service/start as 36
    [ 4.753242] systemd[1]: Installed new job dev-hugepages.mount/start as 37
    [ 4.753246] systemd[1]: Installed new job systemd-tmpfiles-setup.service/start as 38
    [ 4.753249] systemd[1]: Installed new job cryptsetup.target/start as 39
    [ 4.753253] systemd[1]: Installed new job systemd-sysctl.service/start as 40
    [ 4.753256] systemd[1]: Installed new job systemd-vconsole-setup.service/start as 41
    [ 4.753260] systemd[1]: Installed new job systemd-binfmt.service/start as 42
    [ 4.753263] systemd[1]: Installed new job sockets.target/start as 45
    [ 4.753267] systemd[1]: Installed new job dbus.socket/start as 46
    [ 4.753271] systemd[1]: Installed new job systemd-initctl.socket/start as 47
    [ 4.753274] systemd[1]: Installed new job systemd-shutdownd.socket/start as 48
    [ 4.753278] systemd[1]: Installed new job alsa-restore.service/start as 49
    [ 4.753281] systemd[1]: Installed new job console-kit-log-system-start.service/start as 50
    [ 4.753285] systemd[1]: Installed new job systemd-tmpfiles-clean.timer/start as 51
    [ 4.753289] systemd[1]: Installed new job ntpd.service/start as 52
    [ 4.753292] systemd[1]: Installed new job remote-fs.target/start as 53
    [ 4.753296] systemd[1]: Installed new job netcfg.service/start as 54
    [ 4.753299] systemd[1]: Installed new job network.target/start as 55
    [ 4.753302] systemd[1]: Installed new job cronie.service/start as 56
    [ 4.753306] systemd[1]: Installed new job getty.target/start as 57
    [ 4.753309] systemd[1]: Installed new job [email protected]/start as 58
    [ 4.753313] systemd[1]: Installed new job systemd-ask-password-wall.path/start as 59
    [ 4.753316] systemd[1]: Installed new job dbus.service/start as 60
    [ 4.753320] systemd[1]: Installed new job systemd-logind.service/start as 61
    [ 4.753323] systemd[1]: Installed new job systemd-user-sessions.service/start as 62
    [ 4.753327] systemd[1]: Installed new job systemd-update-utmp-runlevel.service/start as 63
    [ 4.753331] systemd[1]: Installed new job lxdm.service/start as 66
    [ 4.753365] systemd[1]: Enqueued job graphical.target/start as 1
    [ 4.753380] systemd[1]: Loaded units and determined initial transaction in 594ms 940us.
    [ 4.753507] systemd[1]: Got SIGCHLD for process 113 (switch_root)
    [ 4.753580] systemd[1]: Child 113 died (code=exited, status=0/SUCCESS)
    [ 4.753667] systemd[1]: systemd-ask-password-wall.path changed dead -> waiting
    [ 4.753676] systemd[1]: Job systemd-ask-password-wall.path/start finished, result=done
    [ 4.753692] systemd[1]: remote-fs.target changed dead -> active
    [ 4.753700] systemd[1]: Job remote-fs.target/start finished, result=done
    [ 4.753747] systemd[1]: systemd-shutdownd.socket changed dead -> listening
    [ 4.753755] systemd[1]: Job systemd-shutdownd.socket/start finished, result=done
    [ 4.753786] systemd[1]: systemd-initctl.socket changed dead -> listening
    [ 4.753793] systemd[1]: Job systemd-initctl.socket/start finished, result=done
    [ 4.753807] systemd[1]: cryptsetup.target changed dead -> active
    [ 4.753815] systemd[1]: Job cryptsetup.target/start finished, result=done
    [ 4.753875] systemd[1]: Autofs kernel version 1.0
    [ 4.753969] systemd[1]: Autofs protocol version 5.2
    [ 4.753979] systemd[1]: proc-sys-fs-binfmt_misc.automount changed dead -> waiting
    [ 4.753987] systemd[1]: Job proc-sys-fs-binfmt_misc.automount/start finished, result=done
    [ 4.754036] systemd[1]: systemd-ask-password-console.path changed dead -> waiting
    [ 4.754044] systemd[1]: Job systemd-ask-password-console.path/start finished, result=done
    [ 4.754155] systemd[1]: systemd-udevd-kernel.socket changed dead -> listening
    [ 4.754164] systemd[1]: Job systemd-udevd-kernel.socket/start finished, result=done
    [ 4.754246] systemd[1]: systemd-udevd-control.socket changed dead -> listening
    [ 4.754254] systemd[1]: Job systemd-udevd-control.socket/start finished, result=done
    [ 4.754341] systemd[1]: systemd-journald.socket changed dead -> listening
    [ 4.754349] systemd[1]: Job systemd-journald.socket/start finished, result=done
    [ 4.754375] systemd[1]: Starting of systemd-fsck-root.service requested but condition failed. Ignoring.
    [ 4.754379] systemd[1]: Job systemd-fsck-root.service/start finished, result=done
    [ 4.754453] systemd[1]: About to execute: /usr/lib/systemd/systemd-remount-fs
    [ 4.758929] systemd[1]: Forked /usr/lib/systemd/systemd-remount-fs as 118
    [ 4.759050] systemd[1]: systemd-remount-fs.service changed dead -> start
    [ 4.759250] systemd[1]: About to execute: /usr/lib/systemd/systemd-udevd
    [ 4.826866] systemd[1]: Forked /usr/lib/systemd/systemd-udevd as 120
    [ 4.826993] systemd[1]: systemd-udevd.service changed dead -> start
    [ 4.827101] systemd[1]: About to execute: /bin/mount mqueue /dev/mqueue -t mqueue
    [ 4.828859] systemd[1]: Forked /bin/mount as 121
    [ 4.828923] systemd[1]: dev-mqueue.mount changed dead -> mounting
    [ 4.829234] systemd[1]: About to execute: /usr/bin/udevadm trigger --type=subsystems --action=add
    [ 4.833375] systemd[1]: Forked /usr/bin/udevadm as 122
    [ 4.833513] systemd[1]: systemd-udev-trigger.service changed dead -> start
    [ 4.833594] systemd[1]: About to execute: /bin/mount debugfs /sys/kernel/debug -t debugfs
    [ 4.834846] systemd[1]: Forked /bin/mount as 123
    [ 4.834893] systemd[1]: sys-kernel-debug.mount changed dead -> mounting
    [ 4.859660] systemd[1]: About to execute: /usr/lib/systemd/systemd-modules-load
    [ 4.860937] systemd[1]: Forked /usr/lib/systemd/systemd-modules-load as 124
    [ 4.861068] systemd[1]: systemd-modules-load.service changed dead -> start
    [ 4.861180] systemd[1]: About to execute: /bin/mount hugetlbfs /dev/hugepages -t hugetlbfs
    [ 4.863410] systemd[1]: Forked /bin/mount as 125
    [ 4.863451] systemd[1]: dev-hugepages.mount changed dead -> mounting
    [ 4.917003] systemd[1]: About to execute: /usr/lib/systemd/systemd-sysctl
    [ 4.918344] systemd[1]: Forked /usr/lib/systemd/systemd-sysctl as 126
    [ 4.918493] systemd[1]: systemd-sysctl.service changed dead -> start
    [ 4.918602] systemd[1]: About to execute: /usr/lib/systemd/systemd-vconsole-setup
    [ 4.920070] systemd[1]: Forked /usr/lib/systemd/systemd-vconsole-setup as 127
    [ 4.920224] systemd[1]: systemd-vconsole-setup.service changed dead -> start
    [ 4.926908] systemd[1]: Starting of systemd-binfmt.service requested but condition failed. Ignoring.
    [ 4.926918] systemd[1]: Job systemd-binfmt.service/start finished, result=done
    [ 4.927036] systemd[1]: About to execute: /usr/lib/systemd/systemd-journald
    [ 4.928214] systemd[1]: Forked /usr/lib/systemd/systemd-journald as 128
    [ 4.928417] systemd[1]: systemd-journald.service changed dead -> running
    [ 4.928436] systemd[1]: Job systemd-journald.service/start finished, result=done
    [ 4.928562] systemd[1]: Running GC...
    [ 4.929089] systemd[1]: Received SIGCHLD from PID 116 (n/a).
    [ 4.929352] systemd[1]: Incoming traffic on systemd-journald.socket
    [ 4.929370] systemd[1]: systemd-journald.socket changed listening -> running
    [ 4.957457] systemd[1]: Got notification message for unit systemd-udevd.service
    [ 4.957468] systemd[1]: systemd-udevd.service: Got message
    [ 4.957473] systemd[1]: systemd-udevd.service: got READY=1
    [ 4.957551] systemd[1]: systemd-udevd.service changed start -> running
    [ 4.957567] systemd[1]: Job systemd-udevd.service/start finished, result=done
    [ 4.957642] systemd-udevd[120]: starting version 189
    [ 5.064497] systemd[1]: Incoming traffic on systemd-udevd-kernel.socket
    [ 5.064520] systemd[1]: systemd-udevd-kernel.socket changed listening -> running
    [ 5.066198] systemd[1]: Received SIGCHLD from PID 122 (udevadm).
    [ 5.066234] systemd[1]: Got SIGCHLD for process 122 (udevadm)
    [ 5.066313] systemd[1]: Child 122 died (code=exited, status=0/SUCCESS)
    [ 5.066317] systemd[1]: Child 122 belongs to systemd-udev-trigger.service
    [ 5.066333] systemd[1]: systemd-udev-trigger.service: main process exited, code=exited, status=0
    [ 5.066341] systemd[1]: systemd-udev-trigger.service running next main command for state start
    [ 5.066359] systemd[1]: About to execute: /usr/bin/udevadm trigger --type=devices --action=add
    [ 5.067931] systemd[1]: Forked /usr/bin/udevadm as 130
    [ 5.083596] systemd[1]: Received SIGCHLD from PID 130 (udevadm).
    [ 5.083638] systemd[1]: Got SIGCHLD for process 130 (udevadm)
    [ 5.083717] systemd[1]: Child 130 died (code=exited, status=0/SUCCESS)
    [ 5.083721] systemd[1]: Child 130 belongs to systemd-udev-trigger.service
    [ 5.083737] systemd[1]: systemd-udev-trigger.service: main process exited, code=exited, status=0
    [ 5.084106] systemd[1]: systemd-udev-trigger.service changed start -> exited
    [ 5.084118] systemd[1]: Job systemd-udev-trigger.service/start finished, result=done
    [ 5.088748] systemd[1]: Received SIGCHLD from PID 126 (systemd-sysctl).
    [ 5.088779] systemd[1]: Got SIGCHLD for process 126 (systemd-sysctl)
    [ 5.088852] systemd[1]: Child 126 died (code=exited, status=0/SUCCESS)
    [ 5.088856] systemd[1]: Child 126 belongs to systemd-sysctl.service
    [ 5.088873] systemd[1]: systemd-sysctl.service: main process exited, code=exited, status=0
    [ 5.089199] systemd[1]: systemd-sysctl.service changed start -> exited
    [ 5.089210] systemd[1]: Job systemd-sysctl.service/start finished, result=done
    [ 5.336181] FS-Cache: Loaded
    [ 5.379562] RPC: Registered named UNIX socket transport module.
    [ 5.379567] RPC: Registered udp transport module.
    [ 5.379569] RPC: Registered tcp transport module.
    [ 5.379570] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 5.585237] NFS: Registering the id_resolver key type
    [ 5.585264] Key type id_resolver registered
    [ 5.585266] Key type id_legacy registered
    [ 5.585278] FS-Cache: Netfs 'nfs' registered for caching
    [ 5.586108] systemd[1]: Received SIGCHLD from PID 124 (systemd-modules).
    [ 5.586146] systemd[1]: Got SIGCHLD for process 124 (systemd-modules)
    [ 5.586225] systemd[1]: Child 124 died (code=exited, status=0/SUCCESS)
    [ 5.586229] systemd[1]: Child 124 belongs to systemd-modules-load.service
    [ 5.586250] systemd[1]: systemd-modules-load.service: main process exited, code=exited, status=0
    [ 5.586590] systemd[1]: systemd-modules-load.service changed start -> exited
    [ 5.586605] systemd[1]: Job systemd-modules-load.service/start finished, result=done
    [ 5.586717] systemd[1]: Starting of sys-kernel-config.mount requested but condition failed. Ignoring.
    [ 5.586722] systemd[1]: Job sys-kernel-config.mount/start finished, result=done
    [ 5.586742] systemd[1]: Starting of sys-fs-fuse-connections.mount requested but condition failed. Ignoring.
    [ 5.586746] systemd[1]: Job sys-fs-fuse-connections.mount/start finished, result=done
    [ 5.615412] systemd[1]: Accepted connection on private bus.
    [ 5.725920] systemd-journald[128]: Successfully opened /dev/kmsg for logging.
    [ 5.758577] systemd-journald[128]: Fixed max_use=75.1M max_size=9.3M min_size=64.0K keep_free=37.5M
    [ 5.758646] systemd-journald[128]: Reserving 17095 entries in hash table.
    [ 5.759414] systemd-journald[128]: Vacuuming...
    [ 5.759466] systemd-journald[128]: Flushing /dev/kmsg...
    [ 5.777632] systemd[1]: dev-hugepages.mount changed mounting -> mounting-done
    [ 5.777647] systemd[1]: Job dev-hugepages.mount/start finished, result=done
    [ 5.777687] systemd[1]: sys-kernel-debug.mount changed mounting -> mounting-done
    [ 5.777694] systemd[1]: Job sys-kernel-debug.mount/start finished, result=done
    [ 5.777716] systemd[1]: dev-mqueue.mount changed mounting -> mounting-done
    [ 5.777724] systemd[1]: Job dev-mqueue.mount/start finished, result=done
    [ 5.777819] systemd[1]: Received SIGCHLD from PID 125 (mount).
    [ 5.777855] systemd[1]: Got SIGCHLD for process 121 (mount)
    [ 5.777932] systemd[1]: Child 121 died (code=exited, status=0/SUCCESS)
    [ 5.777935] systemd[1]: Child 121 belongs to dev-mqueue.mount
    [ 5.777949] systemd[1]: dev-mqueue.mount mount process exited, code=exited status=0
    [ 5.777962] systemd[1]: dev-mqueue.mount changed mounting-done -> mounted
    [ 5.777998] systemd[1]: Got SIGCHLD for process 123 (mount)
    [ 5.778052] systemd[1]: Child 123 died (code=exited, status=0/SUCCESS)
    [ 5.778056] systemd[1]: Child 123 belongs to sys-kernel-debug.mount
    [ 5.778064] systemd[1]: sys-kernel-debug.mount mount process exited, code=exited status=0
    [ 5.778073] systemd[1]: sys-kernel-debug.mount changed mounting-done -> mounted
    [ 5.778104] systemd[1]: Got SIGCHLD for process 125 (mount)
    [ 5.778159] systemd[1]: Child 125 died (code=exited, status=0/SUCCESS)
    [ 5.778163] systemd[1]: Child 125 belongs to dev-hugepages.mount
    [ 5.778171] systemd[1]: dev-hugepages.mount mount process exited, code=exited status=0
    [ 5.778179] systemd[1]: dev-hugepages.mount changed mounting-done -> mounted
    [ 5.778270] systemd[1]: Accepted connection on private bus.
    [ 5.778429] systemd[1]: Accepted connection on private bus.
    [ 5.778509] systemd[1]: Accepted connection on private bus.
    [ 5.779032] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 5.779152] systemd[1]: systemd-udev-trigger.service: cgroup is empty
    [ 5.779481] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 5.779740] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 5.786928] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 5.790217] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 5.790280] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 5.790338] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 5.796880] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 5.807799] systemd-journald[128]: systemd-journald running as pid 128
    [ 5.808306] systemd[1]: Got notification message for unit systemd-journald.service
    [ 5.808312] systemd[1]: systemd-journald.service: Got message
    [ 5.808318] systemd[1]: systemd-journald.service: got STATUS=Processing requests...
    [ 6.246284] EXT4-fs (sda2): re-mounted. Opts: (null)
    [ 6.247294] systemd[1]: Received SIGCHLD from PID 118 (systemd-remount).
    [ 6.247328] systemd[1]: Got SIGCHLD for process 118 (systemd-remount)
    [ 6.247396] systemd[1]: Child 118 died (code=exited, status=0/SUCCESS)
    [ 6.247401] systemd[1]: Child 118 belongs to systemd-remount-fs.service
    [ 6.247419] systemd[1]: systemd-remount-fs.service: main process exited, code=exited, status=0
    [ 6.247721] systemd[1]: systemd-remount-fs.service changed start -> exited
    [ 6.247733] systemd[1]: Job systemd-remount-fs.service/start finished, result=done
    [ 6.247797] systemd[1]: local-fs-pre.target changed dead -> active
    [ 6.247805] systemd[1]: Job local-fs-pre.target/start finished, result=done
    [ 6.317889] systemd[1]: About to execute: /bin/mount tmpfs /tmp -t tmpfs -o nodev,nosuid
    [ 6.319475] systemd[1]: Forked /bin/mount as 140
    [ 6.319523] systemd[1]: tmp.mount changed dead -> mounting
    [ 6.319680] systemd[1]: About to execute: /usr/lib/systemd/systemd-random-seed load
    [ 6.323401] systemd[1]: Forked /usr/lib/systemd/systemd-random-seed as 141
    [ 6.323546] systemd[1]: systemd-random-seed-load.service changed dead -> start
    [ 6.347887] systemd[1]: tmp.mount changed mounting -> mounting-done
    [ 6.347901] systemd[1]: Job tmp.mount/start finished, result=done
    [ 6.348383] systemd[1]: Received SIGCHLD from PID 140 (mount).
    [ 6.348417] systemd[1]: Got SIGCHLD for process 140 (mount)
    [ 6.348489] systemd[1]: Child 140 died (code=exited, status=0/SUCCESS)
    [ 6.348493] systemd[1]: Child 140 belongs to tmp.mount
    [ 6.348504] systemd[1]: tmp.mount mount process exited, code=exited status=0
    [ 6.348515] systemd[1]: tmp.mount changed mounting-done -> mounted
    [ 6.349779] systemd[1]: Accepted connection on private bus.
    [ 6.350675] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 6.351301] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 6.433691] systemd[1]: dev-ttyS2.device changed dead -> plugged
    [ 6.433715] systemd[1]: sys-devices-platform-serial8250-tty-ttyS2.device changed dead -> plugged
    [ 6.434762] systemd[1]: dev-ttyS3.device changed dead -> plugged
    [ 6.434780] systemd[1]: sys-devices-platform-serial8250-tty-ttyS3.device changed dead -> plugged
    [ 6.439475] systemd[1]: Received SIGCHLD from PID 141 (systemd-random-).
    [ 6.439513] systemd[1]: Got SIGCHLD for process 141 (systemd-random-)
    [ 6.439

    Should I file a bug report? If so, with Arch or upstream?

  • XSLT Mapping with Java class not working in Integration Repository

    Hi,
    I have an XSLT mapping program with Java enhancement and I was able to successfully tested it in Stylus Studio. However, when I imported the Java class and the xslt program in Enterprise Service Builder and tested it, my program does not compile.
    Here is the error message: "Transformer Configuration Exception occurred when loading XSLT mapping_temp.xsl; details: Could not compile stylesheet".
    My java program is in a zip file containing SOAPHeaderHandler.java and SOAPHeaderhandler.class. My Java has a package com.nga.xslt.
    Here is the declaration of my Java class in the XSLT: xmlns:javamap="java:com.nga.xslt.SOAPHeaderHandler"
    It seems that it could not read the java class. Can you please advice what is wrong?

    Hi ,
    select XMLTOOLKIT option in Operation mapping and execute it.
    I am not sure we can call java program in XSLT Program,but alternative is copy the code and use it in XSLT mapping it self,that means your XSLT program will become with JAVA extensions.
    then in Operation mapping level select SAPXMLTOOL kit option and execute it. i hope it will work. if it is not working then you have deploy some JAXP files on server,because the way execution of XSLT Mpaping program got changed,like when eve you executing XSLT with extnasions( if you are not using XMLTOOL kit option) then you have to use latest version of JAXP.JDK files.
    Regards,
    Raj

  • [SOLVED] IBM Thinkpad 600E 3.6.11-1 rt73usb weird wireless issue.

    Hi guys and gals.
    I have been researching this for 3 days now. I have also asked at the #Archlinux channel but they don't seem to know the answer and I cannot seem to find anything relevant... so here goes nothing.
    I have this Belkin rt73usb card - it's connected to this SUPER OLD Thinkpad 600E machine and it's associated always with only 1 router - static IP setup - basically laptop is stationary / not moved. I had little problems with connecting it to the network at boot time but thanks to Boohbah from #Archlinux channel and a bit of research I got it to connect http://sparewotw.wordpress.com/2013/01/ … boot-time/ and to turn off power management and to keep the rate as "fixed" - works well BUT... I have a problem with it - the connection stays up - I can browse the internet from the thinkpad / I can access the sshfs share on my server (from thinkpad) and so on but after a while sshd port - 50505 in my case - goes from open into filtered and I cannot connect to it anymore. Example - rebooted thinkpad - i can connect - thinkpad was left alone for lets say sometimes 10 minutes - sometimes an hour - connection is active but I cannot ssh to the machine anymore.
    I have been running shorewall as a firewall and I said maybe it's a shorewall bug but then I ran as root shorewall clear and it didn't solved it, disabling shorewall or restarting didn't help, restarting sshd service didn't help only restarting the wlan0 service / connection re-opens the port... Any ideas?
    All I get is "No route to host" and when I nmap the port it's not open anymore... it says filtered without firewall enabled / active...
    The connecting method has nothing to do with failures as netcfg (which started connecting at boot time after adding pci=noacpi to the boot time kernel parameters) is doing the exact same thing...
    Also when powermanagement was on and the rate was not fixed the problem was still occuring...
    Connection info is available at the link mentioned above.
    Some more technical data:
    lspci -k
    [root@wishthinkpad andrzejl]# lspci -k
    00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 03)
    Kernel driver in use: agpgart-intel
    00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 03)
    00:02.0 CardBus bridge: Texas Instruments PCI1251A
    Subsystem: IBM Device 00eb
    Kernel driver in use: yenta_cardbus
    00:02.1 CardBus bridge: Texas Instruments PCI1251A
    Subsystem: IBM Device 00eb
    Kernel driver in use: yenta_cardbus
    00:06.0 Multimedia audio controller: Cirrus Logic CS 4610/11 [CrystalClear SoundFusion Audio Accelerator] (rev 01)
    Subsystem: IBM CS4610 SoundFusion Audio Accelerator
    00:07.0 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 02)
    00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)
    Kernel driver in use: ata_piix
    00:07.2 USB controller: Intel Corporation 82371AB/EB/MB PIIX4 USB (rev 01)
    Kernel driver in use: uhci_hcd
    00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 02)
    01:00.0 VGA compatible controller: Neomagic Corporation NM2200 [MagicGraph 256AV] (rev 12)
    Subsystem: IBM ThinkPad 570
    [root@wishthinkpad andrzejl]#
    lscpi -vvv
    [root@wishthinkpad andrzejl]# lspci -vvv
    00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 03)
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
    Latency: 64
    Region 0: Memory at 40000000 (32-bit, prefetchable) [size=64M]
    Capabilities: [a0] AGP version 1.0
    Status: RQ=32 Iso- ArqSz=0 Cal=0 SBA+ ITACoh- GART64- HTrans- 64bit- FW- AGP3- Rate=x1,x2
    Command: RQ=1 ArqSz=0 Cal=0 SBA- AGP- GART64- 64bit- FW- Rate=<none>
    Kernel driver in use: agpgart-intel
    00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 03) (prog-if 00 [Normal decode])
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 168
    Bus: primary=00, secondary=01, subordinate=01, sec-latency=176
    I/O behind bridge: 0000d000-0000dfff
    Memory behind bridge: 70000000-dfffffff
    Prefetchable memory behind bridge: e0000000-f7ffffff
    Secondary status: 66MHz+ FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR+
    BridgeCtl: Parity- SERR- NoISA- VGA+ MAbort- >Reset- FastB2B+
    PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
    00:02.0 CardBus bridge: Texas Instruments PCI1251A
    Subsystem: IBM Device 00eb
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 168, Cache Line Size: 64 bytes
    Interrupt: pin A routed to IRQ 11
    Region 0: Memory at 50102000 (32-bit, non-prefetchable) [size=4K]
    Bus: primary=00, secondary=02, subordinate=05, sec-latency=176
    Memory window 0: 1c000000-1fffffff (prefetchable)
    Memory window 1: 20000000-23ffffff
    I/O window 0: 00001000-000010ff
    I/O window 1: 00001400-000014ff
    BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt+ PostWrite+
    16-bit legacy interface ports at 0001
    Kernel driver in use: yenta_cardbus
    00:02.1 CardBus bridge: Texas Instruments PCI1251A
    Subsystem: IBM Device 00eb
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 168, Cache Line Size: 64 bytes
    Interrupt: pin B routed to IRQ 11
    Region 0: Memory at 50101000 (32-bit, non-prefetchable) [size=4K]
    Bus: primary=00, secondary=06, subordinate=09, sec-latency=176
    Memory window 0: 24000000-27ffffff (prefetchable)
    Memory window 1: 28000000-2bffffff
    I/O window 0: 00001800-000018ff
    I/O window 1: 00001c00-00001cff
    BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt+ PostWrite+
    16-bit legacy interface ports at 0001
    Kernel driver in use: yenta_cardbus
    00:06.0 Multimedia audio controller: Cirrus Logic CS 4610/11 [CrystalClear SoundFusion Audio Accelerator] (rev 01)
    Subsystem: IBM CS4610 SoundFusion Audio Accelerator
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
    Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 32 (1000ns min, 6000ns max)
    Interrupt: pin A routed to IRQ 9
    Region 0: Memory at 50100000 (32-bit, non-prefetchable) [size=4K]
    Region 1: Memory at 50000000 (32-bit, non-prefetchable) [size=1M]
    00:07.0 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 02)
    Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01) (prog-if 80 [Master])
    Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 48
    Region 0: [virtual] Memory at 000001f0 (32-bit, non-prefetchable) [size=8]
    Region 1: [virtual] Memory at 000003f0 (type 3, non-prefetchable)
    Region 2: [virtual] Memory at 00000170 (32-bit, non-prefetchable) [size=8]
    Region 3: [virtual] Memory at 00000370 (type 3, non-prefetchable)
    Region 4: I/O ports at fcf0 [size=16]
    Kernel driver in use: ata_piix
    00:07.2 USB controller: Intel Corporation 82371AB/EB/MB PIIX4 USB (rev 01) (prog-if 00 [UHCI])
    Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 48
    Interrupt: pin D routed to IRQ 11
    Region 4: I/O ports at 8400 [size=32]
    Kernel driver in use: uhci_hcd
    00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 02)
    Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Interrupt: pin ? routed to IRQ 9
    01:00.0 VGA compatible controller: Neomagic Corporation NM2200 [MagicGraph 256AV] (rev 12) (prog-if 00 [VGA controller])
    Subsystem: IBM ThinkPad 570
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 128 (4000ns min, 63750ns max)
    Interrupt: pin A routed to IRQ 11
    Region 0: Memory at e0000000 (32-bit, prefetchable) [size=16M]
    Region 1: Memory at 70000000 (32-bit, non-prefetchable) [size=4M]
    Region 2: Memory at 70400000 (32-bit, non-prefetchable) [size=1M]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: [dc] Power Management version 1
    Flags: PMEClk- DSI+ D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    [root@wishthinkpad andrzejl]#
    inxi -v7
    [root@wishthinkpad andrzejl]# inxi -v7
    System: Host: wishthinkpad.loc Kernel: 3.6.11-1-ARCH i686 (32 bit, gcc: 4.7.2)
    Desktop: N/A info: lxpanel dm: lxdm Distro: Arch Linux
    Machine: Mobo: IBM model: 26458A0 serial: J197K75421N Bios: IBM version: INET24WW date: 05/24/1999
    CPU: Single core Mobile Pentium II (-UP-) cache: 256 KB flags: (-) bmips: 728.23 clocked at 363.955 MHz
    Graphics: Card: Neomagic NM2200 [MagicGraph 256AV] bus-ID: 01:00.0 chip-ID: 10c8:0005
    X.org: 1.13.1 driver: neomagic tty size: 116x32 Advanced Data: N/A for root
    Audio: Card: Cirrus Logic CS 4610/11 [CrystalClear SoundFusion Audio Accelerator]
    driver: CS4239 bus-ID: 00:06.0 chip-ID: 1013:6001
    Sound: Advanced Linux Sound Architecture ver: 1.0.25
    Network: Card: Ralink RT2501/RT2573 Wireless Adapter driver: rt73usb ver: 2.3.0 usb-ID: 001-003 chip-ID: 148f:2573
    IF: wlan0 state: up mac: 00:0e:2e:f4:db:4c
    WAN IP: None Detected! IF: wlan0 ip: 192.168.0.102 ip-v6: N/A
    Drives: HDD Total Size: 40.0GB (84.5% used)
    1: id: /dev/sda model: TOSHIBA_MK4032GA size: 40.0GB serial: 66SJ8501S
    Optical: /dev/sr0 model: N/A rev: N/A dev-links: cdrom
    Features: speed: 24x multisession: yes audio: yes dvd: yes rw: cd-r,cd-rw state: N/A
    Partition: ID: / size: 9.4G used: 6.9G (77%) fs: ext4 dev: /dev/sda1
    label: N/A uuid: 350fa8e9-36fb-4927-abaf-91f4b958a679
    ID: /media/Extra size: 26G used: 24G (99%) fs: ext4 dev: /dev/sda7
    label: Data uuid: e4eb21d7-8ea8-4059-b44b-778690e44675
    ID: /home size: 1004M used: 834M (88%) fs: ext4 dev: /dev/sda6
    label: N/A uuid: 567947ca-cba3-42e4-9677-e9ddeecd2c26
    ID: swap-1 size: 1.02GB used: 0.00GB (0%) fs: swap dev: /dev/sda5
    label: N/A uuid: 0a64bde1-82c3-4cfb-ab68-7178564d8ed5
    RAID: No RAID data available - /proc/mdstat is missing - is md_mod kernel module loaded?
    Unmounted: ID: /dev/sr0 size: 1.07G label: N/A uuid: N/A
    Sensors: System Temperatures: cpu: 60.8C mobo: 24.8C
    Fan Speeds (in rpm): cpu: N/A
    Info: Processes: 85 Uptime: 5 min Memory: 65.5/404.5MB Runlevel: 5 Gcc sys: 4.7.2
    Client: Shell (bash 4.2.42) inxi: 1.8.26
    [root@wishthinkpad andrzejl]#
    lsmod
    [root@wishthinkpad andrzejl]# lsmod
    Module Size Used by
    fuse 60479 4
    ablk_helper 1529 0
    cryptd 7390 1 ablk_helper
    aes_i586 6980 1
    aes_generic 26055 1 aes_i586
    arc4 1604 2
    rt73usb 22629 0
    rt2x00usb 7823 1 rt73usb
    rt2x00lib 32012 2 rt73usb,rt2x00usb
    mac80211 367308 2 rt2x00lib,rt2x00usb
    cfg80211 153457 2 mac80211,rt2x00lib
    rfkill 12569 2 cfg80211
    ppdev 4751 0
    crc_itu_t 1096 1 rt73usb
    joydev 7696 0
    ac 1893 0
    battery 5691 0
    microcode 8922 0
    irda 91023 0
    parport_pc 26474 0
    parport 26032 2 ppdev,parport_pc
    ns558 1832 0
    video 9964 0
    crc_ccitt 1096 1 irda
    gameport 6265 2 ns558
    pcmcia 31186 0
    fan 1999 0
    thermal 6660 0
    intel_agp 8593 1
    psmouse 71891 0
    shpchp 22302 0
    intel_gtt 12212 1 intel_agp
    i2c_piix4 7288 0
    yenta_socket 18841 0
    processor 24040 1
    pci_hotplug 20151 1 shpchp
    agpgart 21936 2 intel_agp,intel_gtt
    pcmcia_rsrc 8809 1 yenta_socket
    serio_raw 3714 0
    button 3711 0
    i2c_core 16944 1 i2c_piix4
    evdev 7663 8
    pcmcia_core 10242 3 pcmcia,pcmcia_rsrc,yenta_socket
    ext4 402657 3
    crc16 1092 1 ext4
    jbd2 66384 1 ext4
    mbcache 4387 1 ext4
    hid_generic 710 0
    usbhid 32211 0
    hid 68226 2 hid_generic,usbhid
    sr_mod 13149 0
    cdrom 30345 1 sr_mod
    sd_mod 27312 5
    ata_generic 2435 0
    pata_acpi 2400 0
    ata_piix 19705 4
    libata 146129 3 pata_acpi,ata_generic,ata_piix
    uhci_hcd 19841 0
    usbcore 126796 4 uhci_hcd,rt73usb,rt2x00usb,usbhid
    scsi_mod 113073 3 libata,sd_mod,sr_mod
    usb_common 623 1 usbcore
    floppy 48487 0
    snd_cs4236 22145 0
    snd_mpu401_uart 4944 1 snd_cs4236
    snd_rawmidi 14983 1 snd_mpu401_uart
    snd_opl3_lib 7187 1 snd_cs4236
    snd_hwdep 4843 1 snd_opl3_lib
    snd_seq_device 4285 2 snd_rawmidi,snd_opl3_lib
    snd_wss_lib 18180 1 snd_cs4236
    snd_pcm 61958 2 snd_wss_lib,snd_cs4236
    snd_page_alloc 5902 2 snd_wss_lib,snd_pcm
    snd_timer 14903 3 snd_wss_lib,snd_pcm,snd_opl3_lib
    snd 45098 9 snd_hwdep,snd_timer,snd_wss_lib,snd_pcm,snd_rawmidi,snd_mpu401_uart,snd_seq_device,snd_cs4236,snd_opl3_lib
    soundcore 4379 1 snd
    [root@wishthinkpad andrzejl]#
    lsusb -v
    [root@wishthinkpad andrzejl]# lsusb -v
    Bus 001 Device 002: ID 058f:9254 Alcor Micro Corp. Hub
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 1.10
    bDeviceClass 9 Hub
    bDeviceSubClass 0 Unused
    bDeviceProtocol 0 Full speed (or root) hub
    bMaxPacketSize0 8
    idVendor 0x058f Alcor Micro Corp.
    idProduct 0x9254 Hub
    bcdDevice 3.12
    iManufacturer 1 ALCOR
    iProduct 2 Generic USB Hub
    iSerial 0
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 25
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0xe0
    Self Powered
    Remote Wakeup
    MaxPower 100mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 9 Hub
    bInterfaceSubClass 0 Unused
    bInterfaceProtocol 0 Full speed (or root) hub
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0001 1x 1 bytes
    bInterval 255
    Hub Descriptor:
    bLength 9
    bDescriptorType 41
    nNbrPorts 4
    wHubCharacteristic 0x0009
    Per-port power switching
    Per-port overcurrent protection
    bPwrOn2PwrGood 22 * 2 milli seconds
    bHubContrCurrent 100 milli Ampere
    DeviceRemovable 0x00
    PortPwrCtrlMask 0xff
    Hub Port Status:
    Port 1: 0000.0103 power enable connect
    Port 2: 0000.0303 lowspeed power enable connect
    Port 3: 0000.0100 power
    Port 4: 0000.0100 power
    Device Status: 0x0001
    Self Powered
    Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 1.10
    bDeviceClass 9 Hub
    bDeviceSubClass 0 Unused
    bDeviceProtocol 0 Full speed (or root) hub
    bMaxPacketSize0 64
    idVendor 0x1d6b Linux Foundation
    idProduct 0x0001 1.1 root hub
    bcdDevice 3.06
    iManufacturer 3 Linux 3.6.11-1-ARCH uhci_hcd
    iProduct 2 UHCI Host Controller
    iSerial 1 0000:00:07.2
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 25
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0xe0
    Self Powered
    Remote Wakeup
    MaxPower 0mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 9 Hub
    bInterfaceSubClass 0 Unused
    bInterfaceProtocol 0 Full speed (or root) hub
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0002 1x 2 bytes
    bInterval 255
    Hub Descriptor:
    bLength 9
    bDescriptorType 41
    nNbrPorts 2
    wHubCharacteristic 0x000a
    No power switching (usb 1.0)
    Per-port overcurrent protection
    bPwrOn2PwrGood 1 * 2 milli seconds
    bHubContrCurrent 0 milli Ampere
    DeviceRemovable 0x00
    PortPwrCtrlMask 0xff
    Hub Port Status:
    Port 1: 0000.0103 power enable connect
    Port 2: 0000.0100 power
    Device Status: 0x0001
    Self Powered
    Bus 001 Device 003: ID 148f:2573 Ralink Technology, Corp. RT2501/RT2573 Wireless Adapter
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 2.00
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 64
    idVendor 0x148f Ralink Technology, Corp.
    idProduct 0x2573 RT2501/RT2573 Wireless Adapter
    bcdDevice 0.01
    iManufacturer 1 Ralink
    iProduct 2 802.11 bg WLAN
    iSerial 0
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 32
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0x80
    (Bus Powered)
    MaxPower 300mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 2
    bInterfaceClass 255 Vendor Specific Class
    bInterfaceSubClass 255 Vendor Specific Subclass
    bInterfaceProtocol 255 Vendor Specific Protocol
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0040 1x 64 bytes
    bInterval 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x01 EP 1 OUT
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0040 1x 64 bytes
    bInterval 0
    Device Qualifier (for other device speed):
    bLength 10
    bDescriptorType 6
    bcdUSB 2.00
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 64
    bNumConfigurations 1
    Device Status: 0x0000
    (Bus Powered)
    Bus 001 Device 004: ID 04fc:0538 Sunplus Technology Co., Ltd Wireless Optical Mouse 2.4G [Bright]
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 1.10
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 8
    idVendor 0x04fc Sunplus Technology Co., Ltd
    idProduct 0x0538 Wireless Optical Mouse 2.4G [Bright]
    bcdDevice 1.10
    iManufacturer 1 MLK
    iProduct 2 Silvercrest OM1008
    iSerial 0
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 34
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 4 HID RF Receiver
    bmAttributes 0xa0
    (Bus Powered)
    Remote Wakeup
    MaxPower 100mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 3 Human Interface Device
    bInterfaceSubClass 1 Boot Interface Subclass
    bInterfaceProtocol 2 Mouse
    iInterface 5 EP1 Interrupt
    HID Device Descriptor:
    bLength 9
    bDescriptorType 33
    bcdHID 1.10
    bCountryCode 0 Not supported
    bNumDescriptors 1
    bDescriptorType 34 Report
    wDescriptorLength 114
    Report Descriptors:
    ** UNAVAILABLE **
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0008 1x 8 bytes
    bInterval 10
    Device Status: 0x0000
    (Bus Powered)
    [root@wishthinkpad andrzejl]#
    iwconfig
    [root@wishthinkpad andrzejl]# iwconfig
    wlan0 IEEE 802.11bg ESSID:"Arch_Linux_User"
    Mode:Managed Frequency:2.412 GHz Access Point: 00:18:39:A0:DB:3E
    Bit Rate=54 Mb/s Tx-Power=20 dBm
    Retry long limit:7 RTS thr:off Fragment thr:off
    Encryption key:off
    Power Management:off
    Link Quality=64/70 Signal level=-46 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:0 Invalid misc:5 Missed beacon:0
    lo no wireless extensions.
    [root@wishthinkpad andrzejl]#
    ifconfig
    [root@wishthinkpad andrzejl]# ifconfig
    lo: flags=73<UP,LOOPBACK,RUNNING> mtu 16436
    inet 127.0.0.1 netmask 255.0.0.0
    loop txqueuelen 0 (Local Loopback)
    RX packets 526 bytes 275160 (268.7 KiB)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 526 bytes 275160 (268.7 KiB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
    wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
    inet 192.168.0.102 netmask 255.255.255.0 broadcast 192.168.0.255
    ether 00:0e:2e:f4:db:4c txqueuelen 1000 (Ethernet)
    RX packets 1590 bytes 381744 (372.7 KiB)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 1238 bytes 194926 (190.3 KiB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
    [root@wishthinkpad andrzejl]#
    dmesg right after reboot when it works
    [root@wishthinkpad andrzejl]# dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.6.11-1-ARCH (tobias@testing) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Tue Dec 18 12:58:46 CET 2012
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000019fcffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000019fd0000-0x0000000019fdefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x0000000019fdf000-0x0000000019fdffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x0000000019fe0000-0x0000000019ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved
    [ 0.000000] Malformed early option 'apic'
    [ 0.000000] Malformed early option 'apic'
    [ 0.000000] Notice: NX (Execute Disable) protection missing in CPU!
    [ 0.000000] DMI 2.2 present.
    [ 0.000000] DMI: IBM 26458A0/26458A0, BIOS INET24WW 05/24/1999
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] e820: last_pfn = 0x19fd0 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CBFFF write-protect
    [ 0.000000] CC000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask FF0000000 write-back
    [ 0.000000] 1 base 010000000 mask FF8000000 write-back
    [ 0.000000] 2 base 018000000 mask FFE000000 write-back
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] PAT not supported by CPU.
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
    [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x19fcffff]
    [ 0.000000] [mem 0x00000000-0x003fffff] page 4k
    [ 0.000000] [mem 0x00400000-0x19bfffff] page 2M
    [ 0.000000] [mem 0x19c00000-0x19fcffff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0x19fcffff @ [mem 0x01bfa000-0x01bfffff]
    [ 0.000000] RAMDISK: [mem 0x18c36000-0x18f14fff]
    [ 0.000000] IBM Thinkpad 600 Series 2645 detected: force use of acpi=noirq
    [ 0.000000] ACPI: RSDP 000fd6e0 00014 (v00 IBM )
    [ 0.000000] ACPI: RSDT 19fd0000 00028 (v01 IBM TP600R 00000001 00000000)
    [ 0.000000] ACPI: FACP 19fd0100 00074 (v01 IBM TP600R 00000001 00000000)
    [ 0.000000] ACPI: DSDT 19fd0200 0B501 (v01 IBM TP600R 0000001D MSFT 0100000B)
    [ 0.000000] ACPI: FACS 19fdf000 00040
    [ 0.000000] 0MB HIGHMEM available.
    [ 0.000000] 415MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 19fd0000
    [ 0.000000] low ram: 0 - 19fd0000
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] Normal [mem 0x01000000-0x19fcffff]
    [ 0.000000] HighMem empty
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0x19fcffff]
    [ 0.000000] On node 0 totalpages: 106335
    [ 0.000000] free_area_init_node: node 0, pgdat c155acc0, node_mem_map d9c8f200
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
    [ 0.000000] Normal zone: 800 pages used for memmap
    [ 0.000000] Normal zone: 101552 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 0.000000] ACPI: PM-Timer IO Port: 0xef08
    [ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
    [ 0.000000] Local APIC disabled by BIOS -- reenabling.
    [ 0.000000] Could not enable APIC!
    [ 0.000000] APIC: disable apic facility
    [ 0.000000] APIC: switched to apic NOOP
    [ 0.000000] nr_irqs_gsi: 16
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] e820: [mem 0x1a000000-0xfffdffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 13 pages/cpu @d9c7e000 s32384 r0 d20864 u53248
    [ 0.000000] pcpu-alloc: s32384 r0 d20864 u53248 alloc=13*4096
    [ 0.000000] pcpu-alloc: [0] 0
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 105503
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=350fa8e9-36fb-4927-abaf-91f4b958a679 ro quiet pci=noacpi lapic apic acpi=noirq apm=on pci=use_crs
    [ 0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 851456 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (00000000:00000000)
    [ 0.000000] Memory: 410744k/425792k available (3974k kernel code, 14596k reserved, 1545k data, 536k init, 0k highmem)
    [ 0.000000] virtual kernel memory layout:
    fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xda7d0000 - 0xff7fe000 ( 592 MB)
    lowmem : 0xc0000000 - 0xd9fd0000 ( 415 MB)
    .init : 0xc1564000 - 0xc15ea000 ( 536 kB)
    .data : 0xc13e18b2 - 0xc1563fc0 (1545 kB)
    .text : 0xc1000000 - 0xc13e18b2 (3974 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: Genslabs=15, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.
    [ 0.000000] NR_IRQS:2304 nr_irqs:256 16
    [ 0.000000] CPU 0 irqstacks, hard=d9408000 soft=d940a000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 363.955 MHz processor
    [ 0.006677] Calibrating delay loop (skipped), value calculated using timer frequency.. 728.23 BogoMIPS (lpj=1213183)
    [ 0.006704] pid_max: default: 32768 minimum: 301
    [ 0.006934] Security Framework initialized
    [ 0.006969] AppArmor: AppArmor disabled by boot time parameter
    [ 0.007122] Mount-cache hash table entries: 512
    [ 0.008703] Initializing cgroup subsys cpuacct
    [ 0.008725] Initializing cgroup subsys memory
    [ 0.008789] Initializing cgroup subsys devices
    [ 0.008805] Initializing cgroup subsys freezer
    [ 0.008820] Initializing cgroup subsys net_cls
    [ 0.008833] Initializing cgroup subsys blkio
    [ 0.010131] mce: CPU supports 5 MCE banks
    [ 0.010255] Last level iTLB entries: 4KB 32, 2MB 0, 4MB 2
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 8
    tlb_flushall_shift is 0x6
    [ 0.010345] SMP alternatives: switching to UP code
    [ 0.030215] Freeing SMP alternatives: 16k freed
    [ 0.030302] ACPI: Core revision 20120711
    [ 0.064159] ACPI: setting ELCR to 0a00 (from 0800)
    [ 0.066739] ftrace: allocating 17427 entries in 35 pages
    [ 0.110222] smpboot: weird, boot CPU (#0) not listed by the BIOS
    [ 0.110255] smpboot: SMP motherboard not detected
    [ 0.110269] smpboot: Local APIC not detected. Using dummy APIC emulation.
    [ 0.110278] smpboot: SMP disabled
    [ 0.110291] Performance Events:
    [ 0.110308] no APIC, boot with the "lapic" boot parameter to force-enable it.
    [ 0.110319] no hardware sampling interrupt available.
    [ 0.110332] p6 PMU driver.
    [ 0.110348] ... version: 0
    [ 0.110358] ... bit width: 32
    [ 0.110367] ... generic registers: 2
    [ 0.110378] ... value mask: 00000000ffffffff
    [ 0.110389] ... max period: 000000007fffffff
    [ 0.110398] ... fixed-purpose events: 0
    [ 0.110408] ... event mask: 0000000000000003
    [ 0.137539] NMI watchdog: disabled (cpu0): not supported (no LAPIC?)
    [ 0.137923] Brought up 1 CPUs
    [ 0.137943] smpboot: Total of 1 processors activated (728.23 BogoMIPS)
    [ 0.139405] devtmpfs: initialized
    [ 0.141359] PM: Registering ACPI NVS region [mem 0x19fdf000-0x19fdffff] (4096 bytes)
    [ 0.152637] NET: Registered protocol family 16
    [ 0.154302] ACPI: bus type pci registered
    [ 0.159739] PCI: PCI BIOS revision 2.10 entry at 0xfd880, last bus=7
    [ 0.159754] PCI: Using configuration type 1 for base access
    [ 0.164680] bio: create slab <bio-0> at 0
    [ 0.165221] ACPI: Added _OSI(Module Device)
    [ 0.165239] ACPI: Added _OSI(Processor Device)
    [ 0.165254] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.165270] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.174743] ACPI: EC: Look up EC in DSDT
    [ 0.561367] ACPI: Interpreter enabled
    [ 0.561420] ACPI: (supports S0 S1 S2 S3 S4 S5)
    [ 0.561831] ACPI: Using PIC for interrupt routing
    [ 0.570305] ACPI: Power Resource [PVID] (on)
    [ 0.572694] ACPI: Power Resource [PSIO] (on)
    [ 0.574878] ACPI: Power Resource [PRSD] (off)
    [ 0.629330] ACPI: Power Resource [PFN0] (off)
    [ 0.630906] ACPI: Power Resource [PFN1] (off)
    [ 0.636194] ACPI: Power Resource [PDCK] (on)
    [ 0.637240] ACPI: EC: GPE = 0x9, I/O: command/status = 0x66, data = 0x62
    [ 0.641373] ACPI: ACPI Dock Station Driver: 1 docks/bays found
    [ 0.641842] vgaarb: loaded
    [ 0.642190] PCI: Probing PCI hardware
    [ 0.642209] PCI: root bus 00: using default resources
    [ 0.642221] PCI: Probing PCI hardware (bus 00)
    [ 0.642464] PCI host bridge to bus 0000:00
    [ 0.642497] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.642519] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
    [ 0.642539] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
    [ 0.642568] pci_bus 0000:00: busn_res: [bus 00-ff] is inserted under domain [bus 00-ff]
    [ 0.642638] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
    [ 0.642688] pci 0000:00:00.0: reg 10: [mem 0x40000000-0x43ffffff pref]
    [ 0.642858] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
    [ 0.642983] pci 0000:00:02.0: [104c:ac1d] type 02 class 0x060700
    [ 0.643038] pci 0000:00:02.0: reg 10: [mem 0x50102000-0x50102fff]
    [ 0.643117] pci 0000:00:02.0: supports D1 D2
    [ 0.643137] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot
    [ 0.643214] pci 0000:00:02.1: [104c:ac1d] type 02 class 0x060700
    [ 0.643333] pci 0000:00:02.1: reg 10: [mem 0x50101000-0x50101fff]
    [ 0.643414] pci 0000:00:02.1: supports D1 D2
    [ 0.643434] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot
    [ 0.643527] pci 0000:00:06.0: [1013:6001] type 00 class 0x040100
    [ 0.643575] pci 0000:00:06.0: reg 10: [mem 0x50100000-0x50100fff]
    [ 0.643613] pci 0000:00:06.0: reg 14: [mem 0x50000000-0x500fffff]
    [ 0.643780] pci 0000:00:07.0: [8086:7110] type 00 class 0x068000
    [ 0.643978] pci 0000:00:07.1: [8086:7111] type 00 class 0x010180
    [ 0.644084] pci 0000:00:07.1: reg 20: [io 0xfcf0-0xfcff]
    [ 0.644199] pci 0000:00:07.2: [8086:7112] type 00 class 0x0c0300
    [ 0.644308] pci 0000:00:07.2: reg 20: [io 0x8400-0x841f]
    [ 0.644422] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
    [ 0.644441] * Found PM-Timer Bug on the chipset. Due to workarounds for a bug,
    * this clock source is slow. Consider trying other clock sources
    [ 0.644601] pci 0000:00:07.3: quirk: [io 0xef00-0xef3f] claimed by PIIX4 ACPI
    [ 0.644626] pci 0000:00:07.3: quirk: [io 0xefa0-0xefaf] claimed by PIIX4 SMB
    [ 0.644652] pci 0000:00:07.3: PIIX4 devres B PIO at 02f8-02ff
    [ 0.644674] pci 0000:00:07.3: PIIX4 devres C PIO at 15e8-15ef
    [ 0.644696] pci 0000:00:07.3: PIIX4 devres E PIO at 0538-053f
    [ 0.644720] pci 0000:00:07.3: PIIX4 devres G PIO at 0130-013f
    [ 0.644744] pci 0000:00:07.3: PIIX4 devres I PIO at 002e-002f
    [ 0.644898] pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-ff]
    [ 0.644954] pci 0000:01:00.0: [10c8:0005] type 00 class 0x030000
    [ 0.645006] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xe0ffffff pref]
    [ 0.645042] pci 0000:01:00.0: reg 14: [mem 0x70000000-0x703fffff]
    [ 0.645077] pci 0000:01:00.0: reg 18: [mem 0x70400000-0x704fffff]
    [ 0.645196] pci 0000:01:00.0: supports D1 D2
    [ 0.645293] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.645319] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.645344] pci 0000:00:01.0: bridge window [mem 0x70000000-0xdfffffff]
    [ 0.645369] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf7ffffff pref]
    [ 0.645481] pci_bus 0000:02: busn_res: [bus 02-ff] is inserted under [bus 00-ff]
    [ 0.645511] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 05
    [ 0.645597] pci_bus 0000:06: busn_res: [bus 06-ff] is inserted under [bus 00-ff]
    [ 0.645625] pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 09
    [ 0.645655] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 09
    [ 0.647922] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.648802] pci 0000:00:07.0: PIIX/ICH IRQ router [8086:7110]
    [ 0.648892] PCI: pci_cache_line_size set to 32 bytes
    [ 0.649047] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    [ 0.649064] e820: reserve RAM buffer [mem 0x19fd0000-0x1bffffff]
    [ 0.649911] NetLabel: Initializing
    [ 0.649928] NetLabel: domain hash size = 128
    [ 0.649990] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.650100] NetLabel: unlabeled traffic allowed by default
    [ 0.650468] Switching to clocksource pit
    [ 0.711237] pnp: PnP ACPI init
    [ 0.711384] ACPI: bus type pnp registered
    [ 0.713292] pnp 00:00: [mem 0x00000000-0x0009ffff]
    [ 0.713318] pnp 00:00: [mem 0x000c0000-0x000cbfff]
    [ 0.713339] pnp 00:00: [mem 0x000f0000-0x000fffff]
    [ 0.713359] pnp 00:00: [mem 0x00100000-0x19ffffff]
    [ 0.713379] pnp 00:00: [mem 0xfffe0000-0xffffffff]
    [ 0.713727] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.713755] system 00:00: [mem 0x000c0000-0x000cbfff] could not be reserved
    [ 0.713779] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    [ 0.713802] system 00:00: [mem 0x00100000-0x19ffffff] could not be reserved
    [ 0.713827] system 00:00: [mem 0xfffe0000-0xffffffff] has been reserved
    [ 0.713864] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.713985] pnp 00:01: [bus 00-ff]
    [ 0.714037] pnp 00:01: [io 0x0cf8-0x0cff]
    [ 0.714060] pnp 00:01: [io 0x0000-0x0cf7 window]
    [ 0.714081] pnp 00:01: [io 0x0d00-0xffff window]
    [ 0.714103] pnp 00:01: [mem 0x000a0000-0x000bffff window]
    [ 0.714124] pnp 00:01: [mem 0x000cc000-0x000effff window]
    [ 0.714145] pnp 00:01: [mem 0x1a000000-0xffdfffff window]
    [ 0.714436] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.714937] pnp 00:02: [io 0x03f0-0x03f5]
    [ 0.714959] pnp 00:02: [io 0x03f7]
    [ 0.714986] pnp 00:02: [irq 6]
    [ 0.715008] pnp 00:02: [dma 2]
    [ 0.715317] pnp 00:02: Plug and Play ACPI device, IDs PNP0700 (active)
    [ 0.715952] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (disabled)
    [ 0.716936] pnp 00:04: [io 0x03bc-0x03bf]
    [ 0.716964] pnp 00:04: [irq 7]
    [ 0.717518] pnp 00:04: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.718750] pnp 00:05: [io 0x03f8-0x03ff]
    [ 0.718775] pnp 00:05: [irq 4]
    [ 0.718795] pnp 00:05: [dma 3]
    [ 0.719828] pnp 00:05: Plug and Play ACPI device, IDs IBM0071 PNP0511 (active)
    [ 0.724699] pnp 00:06: [io 0x0538-0x053f]
    [ 0.725031] pnp 00:06: Plug and Play ACPI device, IDs CSC0110 (active)
    [ 0.733111] pnp 00:07: [io 0x0530-0x0537]
    [ 0.733135] pnp 00:07: [io 0x0388-0x038b]
    [ 0.733155] pnp 00:07: [io 0x0220-0x0233]
    [ 0.733179] pnp 00:07: [irq 5]
    [ 0.733198] pnp 00:07: [dma 1]
    [ 0.733216] pnp 00:07: [dma 0]
    [ 0.733642] pnp 00:07: Plug and Play ACPI device, IDs CSC0100 (active)
    [ 0.735954] pnp 00:08: [io 0x0200-0x0207]
    [ 0.736302] pnp 00:08: Plug and Play ACPI device, IDs CSC0101 PNPb02f (active)
    [ 0.741151] pnp 00:09: Plug and Play ACPI device, IDs CSC0103 (disabled)
    [ 0.749141] pnp 00:0a: [io 0x0130-0x013f]
    [ 0.749165] pnp 00:0a: [io 0x02f8-0x02ff]
    [ 0.749189] pnp 00:0a: [irq 3]
    [ 0.749209] pnp 00:0a: [irq 10]
    [ 0.749228] pnp 00:0a: [dma 7]
    [ 0.752374] pnp 00:0a: Plug and Play ACPI device, IDs IBM3765 (active)
    [ 0.752895] pnp 00:0b: [io 0x0000-0x000f]
    [ 0.752917] pnp 00:0b: [io 0x0080-0x008f]
    [ 0.752937] pnp 00:0b: [io 0x00c0-0x00df]
    [ 0.752956] pnp 00:0b: [dma 4]
    [ 0.753206] pnp 00:0b: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.753287] pnp 00:0c: [io 0x0061]
    [ 0.753520] pnp 00:0c: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.753616] pnp 00:0d: [io 0x0022]
    [ 0.753638] pnp 00:0d: [io 0x0092]
    [ 0.753657] pnp 00:0d: [io 0x00b2]
    [ 0.753676] pnp 00:0d: [io 0x002e-0x002f]
    [ 0.753695] pnp 00:0d: [io 0x15e0-0x15ef]
    [ 0.753714] pnp 00:0d: [io 0xef00-0xef3f]
    [ 0.753733] pnp 00:0d: [io 0xefa0-0xefaf]
    [ 0.754086] system 00:0d: [io 0x15e0-0x15ef] has been reserved
    [ 0.754112] system 00:0d: [io 0xef00-0xef3f] has been reserved
    [ 0.754135] system 00:0d: [io 0xefa0-0xefaf] has been reserved
    [ 0.754168] system 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.754256] pnp 00:0e: [io 0x00f0-0x00ff]
    [ 0.754281] pnp 00:0e: [irq 13]
    [ 0.754519] pnp 00:0e: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.754608] pnp 00:0f: [io 0x0060]
    [ 0.754629] pnp 00:0f: [io 0x0064]
    [ 0.754650] pnp 00:0f: [irq 1]
    [ 0.754887] pnp 00:0f: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.754973] pnp 00:10: [irq 12]
    [ 0.755233] pnp 00:10: Plug and Play ACPI device, IDs IBM3780 PNP0f13 (active)
    [ 0.755324] pnp 00:11: [io 0x0070-0x0073]
    [ 0.755347] pnp 00:11: [irq 8]
    [ 0.755587] pnp 00:11: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.761409] pnp: PnP ACPI: found 18 devices
    [ 0.761429] ACPI: ACPI bus type pnp unregistered
    [ 0.812245] Switching to clocksource acpi_pm
    [ 0.812534] pci 0000:00:02.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    [ 0.812561] pci 0000:00:02.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    [ 0.812586] pci 0000:00:02.1: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    [ 0.812610] pci 0000:00:02.1: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    [ 0.812633] pci 0000:00:02.0: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.812655] pci 0000:00:02.0: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.812760] pci 0000:00:02.1: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.812785] pci 0000:00:02.1: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.812829] pci 0000:00:02.0: BAR 15: assigned [mem 0x1c000000-0x1fffffff pref]
    [ 0.812855] pci 0000:00:02.0: BAR 16: assigned [mem 0x20000000-0x23ffffff]
    [ 0.812882] pci 0000:00:02.1: BAR 15: assigned [mem 0x24000000-0x27ffffff pref]
    [ 0.812907] pci 0000:00:02.1: BAR 16: assigned [mem 0x28000000-0x2bffffff]
    [ 0.812937] pci 0000:00:02.0: BAR 13: assigned [io 0x1000-0x10ff]
    [ 0.812963] pci 0000:00:02.0: BAR 14: assigned [io 0x1400-0x14ff]
    [ 0.812990] pci 0000:00:02.1: BAR 13: assigned [io 0x1800-0x18ff]
    [ 0.813016] pci 0000:00:02.1: BAR 14: assigned [io 0x1c00-0x1cff]
    [ 0.813047] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.813073] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.813101] pci 0000:00:01.0: bridge window [mem 0x70000000-0xdfffffff]
    [ 0.813126] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf7ffffff pref]
    [ 0.813154] pci 0000:00:02.0: CardBus bridge to [bus 02-05]
    [ 0.813174] pci 0000:00:02.0: bridge window [io 0x1000-0x10ff]
    [ 0.813199] pci 0000:00:02.0: bridge window [io 0x1400-0x14ff]
    [ 0.813224] pci 0000:00:02.0: bridge window [mem 0x1c000000-0x1fffffff pref]
    [ 0.813249] pci 0000:00:02.0: bridge window [mem 0x20000000-0x23ffffff]
    [ 0.813273] pci 0000:00:02.1: CardBus bridge to [bus 06-09]
    [ 0.813293] pci 0000:00:02.1: bridge window [io 0x1800-0x18ff]
    [ 0.813316] pci 0000:00:02.1: bridge window [io 0x1c00-0x1cff]
    [ 0.813341] pci 0000:00:02.1: bridge window [mem 0x24000000-0x27ffffff pref]
    [ 0.813416] pci 0000:00:02.1: bridge window [mem 0x28000000-0x2bffffff]
    [ 0.813478] PCI: setting IRQ 11 as level-triggered
    [ 0.813500] pci 0000:00:02.0: found PCI INT A -> IRQ 11
    [ 0.813572] pci 0000:00:02.0: sharing IRQ 11 with 0000:01:00.0
    [ 0.813615] pci 0000:00:02.1: found PCI INT B -> IRQ 11
    [ 0.813694] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.813717] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.813739] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 0.813760] pci_bus 0000:01: resource 1 [mem 0x70000000-0xdfffffff]
    [ 0.813782] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf7ffffff pref]
    [ 0.813804] pci_bus 0000:02: resource 0 [io 0x1000-0x10ff]
    [ 0.813825] pci_bus 0000:02: resource 1 [io 0x1400-0x14ff]
    [ 0.813846] pci_bus 0000:02: resource 2 [mem 0x1c000000-0x1fffffff pref]
    [ 0.813867] pci_bus 0000:02: resource 3 [mem 0x20000000-0x23ffffff]
    [ 0.813889] pci_bus 0000:06: resource 0 [io 0x1800-0x18ff]
    [ 0.813909] pci_bus 0000:06: resource 1 [io 0x1c00-0x1cff]
    [ 0.813931] pci_bus 0000:06: resource 2 [mem 0x24000000-0x27ffffff pref]
    [ 0.813952] pci_bus 0000:06: resource 3 [mem 0x28000000-0x2bffffff]
    [ 0.814282] NET: Registered protocol family 2
    [ 0.815362] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.816017] TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.816894] TCP: Hash tables configured (established 16384 bind 16384)
    [ 0.817202] TCP: reno registered
    [ 0.817236] UDP hash table entries: 256 (order: 1, 8192 bytes)
    [ 0.817312] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
    [ 0.817996] NET: Registered protocol family 1
    [ 0.818107] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
    [ 0.818266] pci 0000:00:07.2: found PCI INT D -> IRQ 11
    [ 0.818392] pci 0000:01:00.0: Boot video device
    [ 0.818413] PCI: CLS 32 bytes, default 32
    [ 0.818831] Unpacking initramfs...
    [ 1.351292] Freeing initrd memory: 2940k freed
    [ 1.376909] IBM machine detected. Enabling interrupts during APM calls.
    [ 1.376944] apm: BIOS not found.
    [ 1.378768] audit: initializing netlink socket (disabled)
    [ 1.378869] type=2000 audit(1357623100.375:1): initialized
    [ 1.456306] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 1.469632] VFS: Disk quotas dquot_6.5.2
    [ 1.470155] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 1.471349] msgmni has been set to 808
    [ 1.472909] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.473145] io scheduler noop registered
    [ 1.473160] io scheduler deadline registered
    [ 1.473241] io scheduler cfq registered (default)
    [ 1.474456] vesafb: mode is 1024x768x24, linelength=3072, pages=0
    [ 1.474471] vesafb: scrolling: redraw
    [ 1.474491] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 1.475741] vesafb: framebuffer at 0xe0000000, mapped to 0xda800000, using 2304k, total 2304k
    [ 1.562964] Console: switching to colour frame buffer device 128x48
    [ 1.649186] fb0: VESA VGA frame buffer device
    [ 1.649300] intel_idle: does not run on family 6 model 6
    [ 1.649488] GHES: HEST is not enabled!
    [ 1.649596] isapnp: Scanning for PnP cards...
    [ 1.962801] isapnp: No Plug & Play device found
    [ 1.963142] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.963546] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
    [ 1.965105] serial 00:03: [io 0x03e8-0x03ef]
    [ 1.965270] serial 00:03: [io 0x02e8-0x02ef]
    [ 1.965370] serial 00:03: unable to assign resources
    [ 1.966235] serial: probe of 00:03 failed with error -16
    [ 1.968618] i8042: PNP: PS/2 Controller [PNP0303:KBD0,PNP0f13:MOU0] at 0x60,0x64 irq 1,12
    [ 1.981778] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.982038] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.982810] mousedev: PS/2 mouse device common for all mice
    [ 1.983547] rtc_cmos 00:11: RTC can wake from S4
    [ 1.984178] rtc_cmos 00:11: rtc core: registered rtc_cmos as rtc0
    [ 1.984245] rtc0: alarms up to one month, y3k, 242 bytes nvram
    [ 1.984391] cpuidle: using governor ladder
    [ 1.984407] cpuidle: using governor menu
    [ 1.985466] drop_monitor: Initializing network drop monitor service
    [ 1.986281] TCP: cubic registered
    [ 1.987523] NET: Registered protocol family 10
    [ 1.988965] NET: Registered protocol family 17
    [ 1.989071] Key type dns_resolver registered
    [ 1.989929] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.991439] Using IPI No-Shortcut mode
    [ 1.992165] PM: Hibernation image not present or could not be loaded.
    [ 1.992247] registered taskstats version 1
    [ 1.993234] rtc_cmos 00:11: setting system clock to 2013-01-08 05:31:41 UTC (1357623101)
    [ 1.994003] Freeing unused kernel memory: 536k freed
    [ 1.998614] Write protecting the kernel text: 3976k
    [ 1.998781] Write protecting the kernel read-only data: 1180k
    [ 2.076151] systemd-udevd[35]: starting version 196
    [ 2.376812] tsc: Refined TSC clocksource calibration: 363.959 MHz
    [ 2.376856] Switching to clocksource tsc
    [ 2.660180] Floppy drive(s): fd0 is 1.44M
    [ 2.675627] FDC 0 is a National Semiconductor PC87306
    [ 2.846218] SCSI subsystem initialized
    [ 2.846867] ACPI: bus type usb registered
    [ 2.847139] usbcore: registered new interface driver usbfs
    [ 2.847247] usbcore: registered new interface driver hub
    [ 2.850735] usbcore: registered new device driver usb
    [ 2.865842] uhci_hcd: USB Universal Host Controller Interface driver
    [ 2.866073] uhci_hcd 0000:00:07.2: found PCI INT D -> IRQ 11
    [ 2.866196] uhci_hcd 0000:00:07.2: UHCI Host Controller
    [ 2.866262] uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 1
    [ 2.866376] uhci_hcd 0000:00:07.2: irq 11, io base 0x00008400
    [ 2.870937] hub 1-0:1.0: USB hub found
    [ 2.870987] hub 1-0:1.0: 2 ports detected
    [ 2.916340] ACPI: bus type scsi registered
    [ 2.925593] libata version 3.00 loaded.
    [ 2.928785] ata_piix 0000:00:07.1: version 2.13
    [ 2.951632] scsi0 : ata_piix
    [ 2.957437] scsi1 : ata_piix
    [ 2.957913] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xfcf0 irq 14
    [ 2.957935] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xfcf8 irq 15
    [ 3.114144] ata2.00: ATAPI: QSI CD-RW/DVD-ROM SBW-242, UD22, max UDMA/33
    [ 3.117407] ata1.00: ATA-6: TOSHIBA MK4032GAX, AD101A, max UDMA/100
    [ 3.117435] ata1.00: 78140160 sectors, multi 16: LBA48
    [ 3.120653] ata2.00: configured for UDMA/33
    [ 3.124030] ata1.00: configured for UDMA/33
    [ 3.124974] scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK4032GA AD10 PQ: 0 ANSI: 5
    [ 3.127443] scsi 1:0:0:0: CD-ROM QSI CDRW/DVD SBW-242 UD22 PQ: 0 ANSI: 5
    [ 3.176936] usb 1-1: new full-speed USB device number 2 using uhci_hcd
    [ 3.243716] sd 0:0:0:0: [sda] 78140160 512-byte logical blocks: (40.0 GB/37.2 GiB)
    [ 3.244277] sd 0:0:0:0: [sda] Write Protect is off
    [ 3.244302] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 3.244530] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.252164] sr0: scsi3-mmc drive: 4x/24x writer cd/rw xa/form2 cdda tray
    [ 3.252195] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 3.255158] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 3.316885] sda: sda1 sda2 < sda5 sda6 sda7 >
    [ 3.322292] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 3.340964] hub 1-1:1.0: USB hub found
    [ 3.342614] hub 1-1:1.0: 4 ports detected
    [ 3.621587] usb 1-1.1: new full-speed USB device number 3 using uhci_hcd
    [ 3.948499] usb 1-1.2: new low-speed USB device number 4 using uhci_hcd
    [ 4.158834] usbcore: registered new interface driver usbhid
    [ 4.158859] usbhid: USB HID core driver
    [ 4.184432] input: MLK Silvercrest OM1008 as /devices/pci0000:00/0000:00:07.2/usb1/1-1/1-1.2/1-1.2:1.0/input/input1
    [ 4.192909] hid-generic 0003:04FC:0538.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [MLK Silvercrest OM1008] on usb-0000:00:07.2-1.2/input0
    [ 4.408087] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.387222] systemd[1]: systemd 196 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    [ 5.436187] systemd[1]: Set hostname to <wishthinkpad.loc>.
    [ 6.018181] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 6.018714] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 6.018876] systemd[1]: Starting Syslog Socket.
    [ 6.019287] systemd[1]: Listening on Syslog Socket.
    [ 6.019417] systemd[1]: Starting Remote File Systems.
    [ 6.019547] systemd[1]: Reached target Remote File Systems.
    [ 6.019670] systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device...
    [ 6.019805] systemd[1]: Starting Delayed Shutdown Socket.
    [ 6.020214] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 6.020346] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 6.020607] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 6.020725] systemd[1]: Starting Encrypted Volumes.
    [ 6.020855] systemd[1]: Reached target Encrypted Volumes.
    [ 6.021185] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 6.022274] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 6.022458] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 6.022858] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 6.023723] systemd[1]: Starting udev Kernel Socket.
    [ 6.024020] systemd[1]: Listening on udev Kernel Socket.
    [ 6.024588] systemd[1]: Starting udev Control Socket.
    [ 6.024899] systemd[1]: Listening on udev Control Socket.
    [ 6.025066] systemd[1]: Expecting device dev-disk-by\x2duuid-0a64bde1\x2d82c3\x2d4cfb\x2dab68\x2d7178564d8ed5.device...
    [ 6.025218] systemd[1]: Expecting device dev-disk-by\x2duuid-567947ca\x2dcba3\x2d42e4\x2d9677\x2de9ddeecd2c26.device...
    [ 6.025358] systemd[1]: Expecting device dev-disk-by\x2duuid-e4eb21d7\x2d8ea8\x2d4059\x2db44b\x2d778690e44675.device...
    [ 6.025517] systemd[1]: Starting Journal Socket.
    [ 6.025993] systemd[1]: Listening on Journal Socket.
    [ 6.026212] systemd[1]: Started File System Check on Root Device.
    [ 6.026347] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 6.034598] systemd[1]: Starting Setup Virtual Console...
    [ 6.044014] systemd[1]: Mounting POSIX Message Queue File System...
    [ 6.055201] systemd[1]: Mounting Debug File System...
    [ 6.098496] systemd[1]: Started Set Up Additional Binary Formats.
    [ 6.098949] systemd[1]: Mounting Huge Pages File System...
    [ 6.106869] systemd[1]: Starting udev Kernel Device Manager...
    [ 6.142067] systemd[1]: Starting Apply Kernel Variables...
    [ 6.167655] systemd[1]: Started Load Kernel Modules.
    [ 6.167933] systemd[1]: Mounted FUSE Control File System.
    [ 6.168090] systemd[1]: Mounted Configuration File System.
    [ 6.168674] systemd[1]: Starting udev Coldplug all Devices...
    [ 6.178256] systemd[1]: Starting Journal Service...
    [ 6.254916] systemd[1]: Started Journal Service.
    [ 6.255257] systemd[1]: Starting Syslog.
    [ 6.255396] systemd[1]: Reached target Syslog.
    [ 6.459181] systemd-udevd[82]: starting version 196
    [ 6.601745] EXT4-fs (sda1): re-mounted. Opts: (null)
    [ 8.687281] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
    [ 8.693686] ACPI: Lid Switch [LID0]
    [ 8.694288] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 8.703735] ACPI: Sleep Button [SLPB]
    [ 8.708032] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 8.710936] ACPI: Power Button [PWRF]
    [ 8.742946] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 8.759509] Linux agpgart interface v0.103
    [ 8.761831] tsc: Marking TSC unstable due to TSC halts in idle
    [ 8.766111] Switching to clocksource acpi_pm
    [ 8.777943] ACPI: acpi_idle registered with cpuidle
    [ 8.790560] piix4_smbus 0000:00:07.3: IBM system detected; this module may corrupt your serial eeprom! Refusing to load module!
    [ 8.792526] piix4_smbus: probe of 0000:00:07.3 failed with error -1
    [ 8.810432] yenta_cardbus 0000:00:02.0: CardBus bridge found [1014:00eb]
    [ 8.810495] yenta_cardbus 0000:00:02.0: Enabling burst memory read transactions
    [ 8.810520] yenta_cardbus 0000:00:02.0: Using CSCINT to route CSC interrupts to PCI
    [ 8.810537] yenta_cardbus 0000:00:02.0: Routing CardBus interrupts to PCI
    [ 8.810562] yenta_cardbus 0000:00:02.0: TI: mfunc 0xfba97543, devctl 0x62
    [ 8.938642] thermal LNXTHERM:00: registered as thermal_zone0
    [ 8.938670] ACPI: Thermal Zone [THM0] (42 C)
    [ 9.004501] ACPI: Fan [FN00] (off)
    [ 9.005012] ACPI: Fan [FN01] (off)
    [ 9.009048] thermal LNXTHERM:01: registered as thermal_zone1
    [ 9.009073] ACPI: Thermal Zone [THM2] (20 C)
    [ 9.009590] ACPI: Fan [FN20] (off)
    [ 9.012203] ACPI: Fan [FN21] (off)
    [ 9.013314] ACPI: Fan [FN60] (off)
    [ 9.014648] ACPI: Fan [FN61] (off)
    [ 9.040764] yenta_cardbus 0000:00:02.0: ISA IRQ mask 0x0498, PCI irq 11
    [ 9.040796] yenta_cardbus 0000:00:02.0: Socket status: 30000006
    [ 9.062521] yenta_cardbus 0000:00:02.1: CardBus bridge found [1014:00eb]
    [ 9.062591] yenta_cardbus 0000:00:02.1: Using CSCINT to route CSC interrupts to PCI
    [ 9.062610] yenta_cardbus 0000:00:02.1: Routing CardBus interrupts to PCI
    [ 9.062634] yenta_cardbus 0000:00:02.1: TI: mfunc 0xfba97543, devctl 0x62
    [ 9.079663] ACPI: Fan [FN70] (off)
    [ 9.093343] thermal LNXTHERM:02: registered as thermal_zone2
    [ 9.095023] ACPI: Thermal Zone [THM6] (27 C)
    [ 9.096320] ACPI: Fan [FN71] (off)
    [ 9.102380] thermal LNXTHERM:03: registered as thermal_zone3
    [ 9.102406] ACPI: Thermal Zone [THM7] (27 C)
    [ 9.290735] yenta_cardbus 0000:00:02.1: ISA IRQ mask 0x0498, PCI irq 11
    [ 9.290767] yenta_cardbus 0000:00:02.1: Socket status: 30000006
    [ 9.298222] psmouse serio1: hgpk: ID: 10 00 64
    [ 9.319131] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 9.321961] agpgart-intel 0000:00:00.0: Intel 440BX Chipset
    [ 9.383513] gameport gameport0: NS558 PnP Gameport is pnp00:08/gameport0, io 0x200, speed 685kHz
    [ 9.449433] agpgart-intel 0000:00:00.0: AGP aperture is 64M @ 0x40000000
    [ 9.572098] parport_pc 00:04: reported by Plug and Play ACPI
    [ 9.572186] parport0: PC-style at 0x3bc, irq 7 [PCSPP,TRISTATE]
    [ 9.621417] NET: Registered protocol family 23
    [ 9.702875] nsc-ircc, chip->init
    [ 9.702902] nsc-ircc, Found chip at base=0x02e
    [ 9.702942] nsc-ircc, driver loaded (Dag Brattli)
    [ 9.703038] nsc_ircc_open(), can't get iobase of 0x3f8
    [ 9.703089] nsc-ircc, Found chip at base=0x02e
    [ 9.703128] nsc-ircc, driver loaded (Dag Brattli)
    [ 9.703173] nsc_ircc_open(), can't get iobase of 0x3f8
    [ 9.710755] nsc-ircc 00:05: disabled
    [ 9.829100] microcode: CPU0 sig=0x66a, pf=0x8, revision=0xa
    [ 9.840431] psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0b, buttons: 3/3
    [ 9.871890] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input5
    [ 10.413153] ppdev: user-space parallel port driver
    [ 10.512439] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 10.681703] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af:
    [ 10.682361] excluding 0x130-0x137 0x170-0x177 0x1f0-0x1f7 0x200-0x207 0x220-0x22f 0x370-0x377 0x388-0x38f
    [ 10.683119] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff:
    [ 10.687638] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x100-0x3af:
    [ 10.688295] excluding 0x130-0x137 0x170-0x177 0x1f0-0x1f7 0x200-0x207 0x220-0x22f 0x370-0x377 0x388-0x38f
    [ 10.689052] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x3e0-0x4ff:
    [ 10.689327] excluding 0x3f0-0x3ff 0x4c0-0x4c7 0x4d0-0x4d7
    [ 10.689737] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x820-0x8ff:
    [ 10.693574] excluding 0x3f0-0x3ff 0x4d0-0x4d7
    [ 10.694068] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff:
    [ 10.694336] excluding 0x850-0x857
    [ 10.694666] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7:
    [ 10.695138] clean.
    [ 10.695329] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff:
    [ 10.695361] excluding 0xc0000-0xcbfff 0xf0000-0xfffff
    [ 10.695577] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff:
    [ 10.695647] excluding 0xa0000000-0xa0ffffff
    [ 10.695820] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff:
    [ 10.695902] clean.
    [ 10.696062] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff:
    [ 10.696552] clean.
    [ 10.699553] clean.
    [ 10.703678] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xc00-0xcf7:
    [ 10.704168] clean.
    [ 10.704390] pcmcia_socket pcmcia_socket1: cs: memory probe 0x0c0000-0x0fffff:
    [ 10.704423] excluding 0xc0000-0xcbfff 0xf0000-0xfffff
    [ 10.704641] pcmcia_socket pcmcia_socket1: cs: memory probe 0xa0000000-0xa0ffffff:
    [ 10.704711] excluding 0xa0000000-0xa0ffffff
    [ 10.704884] pcmcia_socket pcmcia_socket1: cs: memory probe 0x60000000-0x60ffffff:
    [ 10.704966] clean.
    [ 10.705127] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xa00-0xaff:
    [ 10.705615] clean.
    [ 11.538531] Adding

    Hi Dude.
    I will try what You have suggested.
    Which channel do You "recommend"?
    My router is set to G-only as the card is G-only, I have been using channel 1 but I will change it to 11 and see what happens.
    I was using WPA2-Personal with AES but I will change it to WPA2-Mixed (AES + TKIP) and see if that changes anything.
    I was hoping that the upgrade of the linux-firmware (linux-firmware-20130610-1) that I have found in the repo today fixes the issue.
    Installed it and typed in:
    [root@wishthinkpad andrzejl]# iwconfig wlan0 rate 54M fixed
    [root@wishthinkpad andrzejl]# ping go
    and I have lost connection before I could even type in "ping google.com"...
    Edit: Changing router's settings got me nowhere so far Dude:
    [andrzejl@wishmacer ~]$ ssh_ibm
    Last login: Fri Jun 14 16:08:17 2013 from acer.loc
    [andrzejl@wishthinkpad ~]$ su
    Password:
    [root@wishthinkpad andrzejl]# ping google.com
    PING google.com (74.125.24.102) 56(84) bytes of data.
    64 bytes from de-in-f102.1e100.net (74.125.24.102): icmp_seq=1 ttl=47 time=81.5 ms
    64 bytes from de-in-f102.1e100.net (74.125.24.102): icmp_seq=2 ttl=47 time=79.9 ms
    64 bytes from de-in-f102.1e100.net (74.125.24.102): icmp_seq=3 ttl=47 time=85.4 ms
    64 bytes from de-in-f102.1e100.net (74.125.24.102): icmp_seq=4 ttl=47 time=81.6 ms
    64 bytes from de-in-f102.1e100.net (74.125.24.102): icmp_seq=5 ttl=47 time=81.7 ms
    64 bytes from de-in-f102.1e100.net (74.125.24.102): icmp_seq=6 ttl=47 time=94.1 ms
    64 bytes from de-in-f102.1e100.net (74.125.24.102): icmp_seq=7 ttl=47 time=77.0 ms
    ^C
    --- google.com ping statistics ---
    7 packets transmitted, 7 received, 0% packet loss, time 6002ms
    rtt min/avg/max/mdev = 77.097/83.085/94.145/5.084 ms
    [root@wishthinkpad andrzejl]# iwconfig
    wlan0     IEEE 802.11bg  ESSID:"Arch_Linux_User" 
              Mode:Managed  Frequency:2.462 GHz  Access Point: 00:18:39:A0:DB:3E   
              Bit Rate=1 Mb/s   Tx-Power=20 dBm   
              Retry  long limit:7   RTS thr:off   Fragment thr:off
              Encryption key:off
              Power Management:off
              Link Quality=60/70  Signal level=-50 dBm 
              Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
              Tx excessive retries:0  Invalid misc:132   Missed beacon:0
    lo        no wireless extensions.
    [root@wishthinkpad andrzejl]# iwconfig wlan0 rate 54M fixed
    [root@wishthinkpad andrzejl]# ping google.com
    PING google.com (74.125.24.101) 56(84) bytes of data.
    64 bytes from de-in-f101.1e100.net (74.125.24.101): icmp_seq=4 ttl=47 time=34.1 ms
    64 bytes from de-in-f101.1e100.net (74.125.24.101): icmp_seq=8 ttl=47 time=70.3 ms
    64 bytes from de-in-f101.1e100.net (74.125.24.101): icmp_seq=9 ttl=47 time=163 ms
    ^C64 bytes from 74.125.24.101: icmp_seq=13 ttl=47 time=39.7 ms
    --- google.com ping statistics ---
    13 packets transmitted, 4 received, 69% packet loss, time 30364ms
    rtt min/avg/max/mdev = 34.139/76.870/163.269/51.752 ms
    [root@wishthinkpad andrzejl]#
    Here is the log (journalctl -b | grep wlan > dump_wlan) for the entire boot:
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device...
    Jun 14 16:13:14 wishthinkpad.loc ntpd[201]: Listen normally on 3 wlan0 192.168.0.102 UDP 123
    Jun 14 16:13:19 wishthinkpad.loc kernel: IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: authenticate with 00:18:39:a0:db:3e
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: send auth to 00:18:39:a0:db:3e (try 1/3)
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: authenticated
    Jun 14 16:13:19 wishthinkpad.loc kernel: rt73usb 1-1.1:1.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
    Jun 14 16:13:19 wishthinkpad.loc kernel: rt73usb 1-1.1:1.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: associate with 00:18:39:a0:db:3e (try 1/3)
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: RX AssocResp from 00:18:39:a0:db:3e (capab=0x411 status=0 aid=1)
    Jun 14 16:13:19 wishthinkpad.loc kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: associated
    Here is the log (journalctl -b > dump) for the entire boot:
    -- Logs begin at Sat 2013-01-05 05:42:53 GMT, end at Fri 2013-06-14 16:23:56 IST. --
    Jun 14 16:13:03 wishthinkpad.loc systemd-journal[90]: Allowing runtime journal files to grow to 20.2M.
    Jun 14 16:13:03 wishthinkpad.loc kernel: Initializing cgroup subsys cpuset
    Jun 14 16:13:03 wishthinkpad.loc kernel: Initializing cgroup subsys cpu
    Jun 14 16:13:03 wishthinkpad.loc kernel: Linux version 3.9.5-1-ARCH (tobias@testing-i686) (gcc version 4.8.1 (GCC) ) #1 SMP PREEMPT Sat Jun 8 10:10:57 CEST 2013
    Jun 14 16:13:03 wishthinkpad.loc kernel: e820: BIOS-provided physical RAM map:
    Jun 14 16:13:03 wishthinkpad.loc kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    Jun 14 16:13:03 wishthinkpad.loc kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000019fcffff] usable
    Jun 14 16:13:03 wishthinkpad.loc kernel: BIOS-e820: [mem 0x0000000019fd0000-0x0000000019fdefff] ACPI data
    Jun 14 16:13:03 wishthinkpad.loc kernel: BIOS-e820: [mem 0x0000000019fdf000-0x0000000019fdffff] ACPI NVS
    Jun 14 16:13:03 wishthinkpad.loc kernel: BIOS-e820: [mem 0x0000000019fe0000-0x0000000019ffffff] reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: Malformed early option 'apic'
    Jun 14 16:13:03 wishthinkpad.loc kernel: Malformed early option 'apic'
    Jun 14 16:13:03 wishthinkpad.loc kernel: Notice: NX (Execute Disable) protection missing in CPU!
    Jun 14 16:13:03 wishthinkpad.loc kernel: SMBIOS 2.2 present.
    Jun 14 16:13:03 wishthinkpad.loc kernel: DMI: IBM 26458A0/26458A0, BIOS INET24WW 05/24/1999
    Jun 14 16:13:03 wishthinkpad.loc kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jun 14 16:13:03 wishthinkpad.loc kernel: e820: last_pfn = 0x19fd0 max_arch_pfn = 0x100000
    Jun 14 16:13:03 wishthinkpad.loc kernel: MTRR default type: uncachable
    Jun 14 16:13:03 wishthinkpad.loc kernel: MTRR fixed ranges enabled:
    Jun 14 16:13:03 wishthinkpad.loc kernel: 00000-9FFFF write-back
    Jun 14 16:13:03 wishthinkpad.loc kernel: A0000-BFFFF uncachable
    Jun 14 16:13:03 wishthinkpad.loc kernel: C0000-CBFFF write-protect
    Jun 14 16:13:03 wishthinkpad.loc kernel: CC000-EFFFF uncachable
    Jun 14 16:13:03 wishthinkpad.loc kernel: F0000-FFFFF write-protect
    Jun 14 16:13:03 wishthinkpad.loc kernel: MTRR variable ranges enabled:
    Jun 14 16:13:03 wishthinkpad.loc kernel: 0 base 000000000 mask FF0000000 write-back
    Jun 14 16:13:03 wishthinkpad.loc kernel: 1 base 010000000 mask FF8000000 write-back
    Jun 14 16:13:03 wishthinkpad.loc kernel: 2 base 018000000 mask FFE000000 write-back
    Jun 14 16:13:03 wishthinkpad.loc kernel: 3 disabled
    Jun 14 16:13:03 wishthinkpad.loc kernel: 4 disabled
    Jun 14 16:13:03 wishthinkpad.loc kernel: 5 disabled
    Jun 14 16:13:03 wishthinkpad.loc kernel: 6 disabled
    Jun 14 16:13:03 wishthinkpad.loc kernel: 7 disabled
    Jun 14 16:13:03 wishthinkpad.loc kernel: PAT not supported by CPU.
    Jun 14 16:13:03 wishthinkpad.loc kernel: Scanning 1 areas for low memory corruption
    Jun 14 16:13:03 wishthinkpad.loc kernel: initial memory mapped: [mem 0x00000000-0x01bfffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: Base memory trampoline at [c009b000] 9b000 size 16384
    Jun 14 16:13:03 wishthinkpad.loc kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: [mem 0x00000000-0x000fffff] page 4k
    Jun 14 16:13:03 wishthinkpad.loc kernel: init_memory_mapping: [mem 0x19800000-0x19bfffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: [mem 0x19800000-0x19bfffff] page 2M
    Jun 14 16:13:03 wishthinkpad.loc kernel: init_memory_mapping: [mem 0x18000000-0x197fffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: [mem 0x18000000-0x197fffff] page 2M
    Jun 14 16:13:03 wishthinkpad.loc kernel: init_memory_mapping: [mem 0x00100000-0x17ffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: [mem 0x00100000-0x003fffff] page 4k
    Jun 14 16:13:03 wishthinkpad.loc kernel: [mem 0x00400000-0x17ffffff] page 2M
    Jun 14 16:13:03 wishthinkpad.loc kernel: init_memory_mapping: [mem 0x19c00000-0x19fcffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: [mem 0x19c00000-0x19fcffff] page 4k
    Jun 14 16:13:03 wishthinkpad.loc kernel: BRK [0x01742000, 0x01742fff] PGTABLE
    Jun 14 16:13:03 wishthinkpad.loc kernel: RAMDISK: [mem 0x18af1000-0x18eddfff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: IBM Thinkpad 600 Series 2645 detected: force use of acpi=noirq
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: RSDP 000fd6e0 00014 (v00 IBM )
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: RSDT 19fd0000 00028 (v01 IBM TP600R 00000001 00000000)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: FACP 19fd0100 00074 (v01 IBM TP600R 00000001 00000000)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: DSDT 19fd0200 0B501 (v01 IBM TP600R 0000001D MSFT 0100000B)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: FACS 19fdf000 00040
    Jun 14 16:13:03 wishthinkpad.loc kernel: 0MB HIGHMEM available.
    Jun 14 16:13:03 wishthinkpad.loc kernel: 415MB LOWMEM available.
    Jun 14 16:13:03 wishthinkpad.loc kernel: mapped low ram: 0 - 19fd0000
    Jun 14 16:13:03 wishthinkpad.loc kernel: low ram: 0 - 19fd0000
    Jun 14 16:13:03 wishthinkpad.loc kernel: BRK [0x01743000, 0x01743fff] PGTABLE
    Jun 14 16:13:03 wishthinkpad.loc kernel: Zone ranges:
    Jun 14 16:13:03 wishthinkpad.loc kernel: DMA [mem 0x00001000-0x00ffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: Normal [mem 0x01000000-0x19fcffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: HighMem empty
    Jun 14 16:13:03 wishthinkpad.loc kernel: Movable zone start for each node
    Jun 14 16:13:03 wishthinkpad.loc kernel: Early memory node ranges
    Jun 14 16:13:03 wishthinkpad.loc kernel: node 0: [mem 0x00001000-0x0009efff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: node 0: [mem 0x00100000-0x19fcffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: On node 0 totalpages: 106350
    Jun 14 16:13:03 wishthinkpad.loc kernel: free_area_init_node: node 0, pgdat c15aeb00, node_mem_map d9c90020
    Jun 14 16:13:03 wishthinkpad.loc kernel: DMA zone: 32 pages used for memmap
    Jun 14 16:13:03 wishthinkpad.loc kernel: DMA zone: 0 pages reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: DMA zone: 3998 pages, LIFO batch:0
    Jun 14 16:13:03 wishthinkpad.loc kernel: Normal zone: 800 pages used for memmap
    Jun 14 16:13:03 wishthinkpad.loc kernel: Normal zone: 102352 pages, LIFO batch:31
    Jun 14 16:13:03 wishthinkpad.loc kernel: Using APIC driver default
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: PM-Timer IO Port: 0xef08
    Jun 14 16:13:03 wishthinkpad.loc kernel: smpboot: Allowing 1 CPUs, 0 hotplug CPUs
    Jun 14 16:13:03 wishthinkpad.loc kernel: Local APIC disabled by BIOS -- reenabling.
    Jun 14 16:13:03 wishthinkpad.loc kernel: Could not enable APIC!
    Jun 14 16:13:03 wishthinkpad.loc kernel: APIC: disable apic facility
    Jun 14 16:13:03 wishthinkpad.loc kernel: APIC: switched to apic NOOP
    Jun 14 16:13:03 wishthinkpad.loc kernel: nr_irqs_gsi: 16
    Jun 14 16:13:03 wishthinkpad.loc kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Jun 14 16:13:03 wishthinkpad.loc kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    Jun 14 16:13:03 wishthinkpad.loc kernel: PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    Jun 14 16:13:03 wishthinkpad.loc kernel: e820: [mem 0x1a000000-0xfffdffff] available for PCI devices
    Jun 14 16:13:03 wishthinkpad.loc kernel: Booting paravirtualized kernel on bare hardware
    Jun 14 16:13:03 wishthinkpad.loc kernel: setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
    Jun 14 16:13:03 wishthinkpad.loc kernel: PERCPU: Embedded 14 pages/cpu @d9c7e000 s33280 r0 d24064 u57344
    Jun 14 16:13:03 wishthinkpad.loc kernel: pcpu-alloc: s33280 r0 d24064 u57344 alloc=14*4096
    Jun 14 16:13:03 wishthinkpad.loc kernel: pcpu-alloc: [0] 0
    Jun 14 16:13:03 wishthinkpad.loc kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 105518
    Jun 14 16:13:03 wishthinkpad.loc kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=350fa8e9-36fb-4927-abaf-91f4b958a679 ro quiet pci=noacpi lapic apic acpi=noirq apm=on pci=use_crs
    Jun 14 16:13:03 wishthinkpad.loc kernel: PID hash table entries: 2048 (order: 1, 8192 bytes)
    Jun 14 16:13:03 wishthinkpad.loc kernel: Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
    Jun 14 16:13:03 wishthinkpad.loc kernel: Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
    Jun 14 16:13:03 wishthinkpad.loc kernel: __ex_table already sorted, skipping sort
    Jun 14 16:13:03 wishthinkpad.loc kernel: Initializing CPU#0
    Jun 14 16:13:03 wishthinkpad.loc kernel: allocated 851576 bytes of page_cgroup
    Jun 14 16:13:03 wishthinkpad.loc kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jun 14 16:13:03 wishthinkpad.loc kernel: Initializing HighMem for node 0 (00000000:00000000)
    Jun 14 16:13:03 wishthinkpad.loc kernel: Memory: 409236k/425792k available (4177k kernel code, 16164k reserved, 1706k data, 572k init, 0k highmem)
    Jun 14 16:13:03 wishthinkpad.loc kernel: [379B blob data]
    Jun 14 16:13:03 wishthinkpad.loc kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Jun 14 16:13:03 wishthinkpad.loc kernel: SLUB: Genslabs=15, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Jun 14 16:13:03 wishthinkpad.loc kernel: Preemptible hierarchical RCU implementation.
    Jun 14 16:13:03 wishthinkpad.loc kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jun 14 16:13:03 wishthinkpad.loc kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jun 14 16:13:03 wishthinkpad.loc kernel: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.
    Jun 14 16:13:03 wishthinkpad.loc kernel: NR_IRQS:2304 nr_irqs:256 16
    Jun 14 16:13:03 wishthinkpad.loc kernel: CPU 0 irqstacks, hard=d9406000 soft=d9408000
    Jun 14 16:13:03 wishthinkpad.loc kernel: Console: colour dummy device 80x25
    Jun 14 16:13:03 wishthinkpad.loc kernel: console [tty0] enabled
    Jun 14 16:13:03 wishthinkpad.loc kernel: tsc: Fast TSC calibration using PIT
    Jun 14 16:13:03 wishthinkpad.loc kernel: tsc: Detected 363.989 MHz processor
    Jun 14 16:13:03 wishthinkpad.loc kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 728.31 BogoMIPS (lpj=1213296)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pid_max: default: 32768 minimum: 301
    Jun 14 16:13:03 wishthinkpad.loc kernel: Security Framework initialized
    Jun 14 16:13:03 wishthinkpad.loc kernel: AppArmor: AppArmor disabled by boot time parameter
    Jun 14 16:13:03 wishthinkpad.loc kernel: Mount-cache hash table entries: 512
    Jun 14 16:13:03 wishthinkpad.loc kernel: Initializing cgroup subsys cpuacct
    Jun 14 16:13:03 wishthinkpad.loc kernel: Initializing cgroup subsys memory
    Jun 14 16:13:03 wishthinkpad.loc kernel: Initializing cgroup subsys devices
    Jun 14 16:13:03 wishthinkpad.loc kernel: Initializing cgroup subsys freezer
    Jun 14 16:13:03 wishthinkpad.loc kernel: Initializing cgroup subsys net_cls
    Jun 14 16:13:03 wishthinkpad.loc kernel: Initializing cgroup subsys blkio
    Jun 14 16:13:03 wishthinkpad.loc kernel: mce: CPU supports 5 MCE banks
    Jun 14 16:13:03 wishthinkpad.loc kernel: [113B blob data]
    Jun 14 16:13:03 wishthinkpad.loc kernel: Freeing SMP alternatives: 16k freed
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Core revision 20130117
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: All ACPI Tables successfully acquired
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: setting ELCR to 0a00 (from 0800)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ftrace: allocating 18428 entries in 36 pages
    Jun 14 16:13:03 wishthinkpad.loc kernel: smpboot: weird, boot CPU (#0) not listed by the BIOS
    Jun 14 16:13:03 wishthinkpad.loc kernel: smpboot: SMP motherboard not detected
    Jun 14 16:13:03 wishthinkpad.loc kernel: smpboot: Local APIC not detected. Using dummy APIC emulation.
    Jun 14 16:13:03 wishthinkpad.loc kernel: smpboot: SMP disabled
    Jun 14 16:13:03 wishthinkpad.loc kernel: Performance Events:
    Jun 14 16:13:03 wishthinkpad.loc kernel: no APIC, boot with the "lapic" boot parameter to force-enable it.
    Jun 14 16:13:03 wishthinkpad.loc kernel: no hardware sampling interrupt available.
    Jun 14 16:13:03 wishthinkpad.loc kernel: p6 PMU driver.
    Jun 14 16:13:03 wishthinkpad.loc kernel: ... version: 0
    Jun 14 16:13:03 wishthinkpad.loc kernel: ... bit width: 32
    Jun 14 16:13:03 wishthinkpad.loc kernel: ... generic registers: 2
    Jun 14 16:13:03 wishthinkpad.loc kernel: ... value mask: 00000000ffffffff
    Jun 14 16:13:03 wishthinkpad.loc kernel: ... max period: 000000007fffffff
    Jun 14 16:13:03 wishthinkpad.loc kernel: ... fixed-purpose events: 0
    Jun 14 16:13:03 wishthinkpad.loc kernel: ... event mask: 0000000000000003
    Jun 14 16:13:03 wishthinkpad.loc kernel: Brought up 1 CPUs
    Jun 14 16:13:03 wishthinkpad.loc kernel: smpboot: Total of 1 processors activated (728.31 BogoMIPS)
    Jun 14 16:13:03 wishthinkpad.loc kernel: NMI watchdog: disabled (cpu0): not supported (no LAPIC?)
    Jun 14 16:13:03 wishthinkpad.loc kernel: devtmpfs: initialized
    Jun 14 16:13:03 wishthinkpad.loc kernel: PM: Registering ACPI NVS region [mem 0x19fdf000-0x19fdffff] (4096 bytes)
    Jun 14 16:13:03 wishthinkpad.loc kernel: RTC time: 15:12:55, date: 06/14/13
    Jun 14 16:13:03 wishthinkpad.loc kernel: NET: Registered protocol family 16
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: bus type PCI registered
    Jun 14 16:13:03 wishthinkpad.loc kernel: PCI: PCI BIOS revision 2.10 entry at 0xfd880, last bus=7
    Jun 14 16:13:03 wishthinkpad.loc kernel: PCI: Using configuration type 1 for base access
    Jun 14 16:13:03 wishthinkpad.loc kernel: bio: create slab <bio-0> at 0
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Added _OSI(Module Device)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Added _OSI(Processor Device)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: EC: Look up EC in DSDT
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Interpreter enabled
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: (supports S0 S1 S2 S3 S4 S5)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Using PIC for interrupt routing
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Power Resource [PVID] (on)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Power Resource [PSIO] (on)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Power Resource [PRSD] (off)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Power Resource [PFN0] (off)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Power Resource [PFN1] (off)
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: Power Resource [PDCK] (on)
    Jun 14 16:13:03 wishthinkpad.loc kernel: acpi root: \_SB_.PCI0 notify handler is installed
    Jun 14 16:13:03 wishthinkpad.loc kernel: Found 1 acpi root devices
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: EC: GPE = 0x9, I/O: command/status = 0x66, data = 0x62
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: ACPI Dock Station Driver: 1 docks/bays found
    Jun 14 16:13:03 wishthinkpad.loc kernel: vgaarb: loaded
    Jun 14 16:13:03 wishthinkpad.loc kernel: PCI: Probing PCI hardware
    Jun 14 16:13:03 wishthinkpad.loc kernel: PCI: root bus 00: using default resources
    Jun 14 16:13:03 wishthinkpad.loc kernel: PCI: Probing PCI hardware (bus 00)
    Jun 14 16:13:03 wishthinkpad.loc kernel: PCI host bridge to bus 0000:00
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:00.0: reg 10: [mem 0x40000000-0x43ffffff pref]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: [104c:ac1d] type 02 class 0x060700
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: reg 10: [mem 0x50102000-0x50102fff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: supports D1 D2
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: [104c:ac1d] type 02 class 0x060700
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: reg 10: [mem 0x50101000-0x50101fff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: supports D1 D2
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:06.0: [1013:6001] type 00 class 0x040100
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:06.0: reg 10: [mem 0x50100000-0x50100fff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:06.0: reg 14: [mem 0x50000000-0x500fffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.0: [8086:7110] type 00 class 0x068000
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.1: [8086:7111] type 00 class 0x010180
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.1: reg 20: [io 0xfcf0-0xfcff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.2: [8086:7112] type 00 class 0x0c0300
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.2: reg 20: [io 0x8400-0x841f]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
    Jun 14 16:13:03 wishthinkpad.loc kernel: [131B blob data]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.3: quirk: [io 0xef00-0xef3f] claimed by PIIX4 ACPI
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.3: quirk: [io 0xefa0-0xefaf] claimed by PIIX4 SMB
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.3: PIIX4 devres B PIO at 02f8-02ff
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.3: PIIX4 devres C PIO at 15e8-15ef
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.3: PIIX4 devres E PIO at 0538-053f
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.3: PIIX4 devres G PIO at 0130-013f
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.3: PIIX4 devres I PIO at 002e-002f
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:01:00.0: [10c8:0005] type 00 class 0x030000
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xe0ffffff pref]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:01:00.0: reg 14: [mem 0x70000000-0x703fffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:01:00.0: reg 18: [mem 0x70400000-0x704fffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:01:00.0: supports D1 D2
    Jun 14 16:13:03 wishthinkpad.loc kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:01.0: bridge window [mem 0x70000000-0xdfffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf7ffffff pref]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 05
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 09
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 09
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.0: PIIX/ICH IRQ router [8086:7110]
    Jun 14 16:13:03 wishthinkpad.loc kernel: PCI: pci_cache_line_size set to 32 bytes
    Jun 14 16:13:03 wishthinkpad.loc kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: e820: reserve RAM buffer [mem 0x19fd0000-0x1bffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: NetLabel: Initializing
    Jun 14 16:13:03 wishthinkpad.loc kernel: NetLabel: domain hash size = 128
    Jun 14 16:13:03 wishthinkpad.loc kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jun 14 16:13:03 wishthinkpad.loc kernel: NetLabel: unlabeled traffic allowed by default
    Jun 14 16:13:03 wishthinkpad.loc kernel: Switching to clocksource pit
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp: PnP ACPI init
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: bus type PNP registered
    Jun 14 16:13:03 wishthinkpad.loc kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: system 00:00: [mem 0x000c0000-0x000cbfff] could not be reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: system 00:00: [mem 0x00100000-0x19ffffff] could not be reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: system 00:00: [mem 0xfffe0000-0xffffffff] has been reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:02: [dma 2]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0700 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (disabled)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0400 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:05: [dma 3]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:05: Plug and Play ACPI device, IDs IBM0071 PNP0511 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:06: Plug and Play ACPI device, IDs CSC0110 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:07: [dma 1]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:07: [dma 0]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:07: Plug and Play ACPI device, IDs CSC0100 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:08: Plug and Play ACPI device, IDs CSC0101 PNPb02f (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:09: Plug and Play ACPI device, IDs CSC0103 (disabled)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:0a: [dma 7]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:0a: Plug and Play ACPI device, IDs IBM3765 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:0b: [dma 4]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:0b: Plug and Play ACPI device, IDs PNP0200 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:0c: Plug and Play ACPI device, IDs PNP0800 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: system 00:0d: [io 0x15e0-0x15ef] has been reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: system 00:0d: [io 0xef00-0xef3f] has been reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: system 00:0d: [io 0xefa0-0xefaf] has been reserved
    Jun 14 16:13:03 wishthinkpad.loc kernel: system 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:0e: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:0f: Plug and Play ACPI device, IDs PNP0303 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:10: Plug and Play ACPI device, IDs IBM3780 PNP0f13 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp 00:11: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jun 14 16:13:03 wishthinkpad.loc kernel: pnp: PnP ACPI: found 18 devices
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: bus type PNP unregistered
    Jun 14 16:13:03 wishthinkpad.loc kernel: Switching to clocksource acpi_pm
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: BAR 15: assigned [mem 0x1c000000-0x1fffffff pref]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: BAR 16: assigned [mem 0x20000000-0x23ffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: BAR 15: assigned [mem 0x24000000-0x27ffffff pref]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: BAR 16: assigned [mem 0x28000000-0x2bffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: BAR 13: assigned [io 0x1000-0x10ff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: BAR 14: assigned [io 0x1400-0x14ff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: BAR 13: assigned [io 0x1800-0x18ff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: BAR 14: assigned [io 0x1c00-0x1cff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:01.0: bridge window [mem 0x70000000-0xdfffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf7ffffff pref]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: CardBus bridge to [bus 02-05]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: bridge window [io 0x1000-0x10ff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: bridge window [io 0x1400-0x14ff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: bridge window [mem 0x1c000000-0x1fffffff pref]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: bridge window [mem 0x20000000-0x23ffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: CardBus bridge to [bus 06-09]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: bridge window [io 0x1800-0x18ff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: bridge window [io 0x1c00-0x1cff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: bridge window [mem 0x24000000-0x27ffffff pref]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: bridge window [mem 0x28000000-0x2bffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: PCI: setting IRQ 11 as level-triggered
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: found PCI INT A -> IRQ 11
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.0: sharing IRQ 11 with 0000:01:00.0
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:02.1: found PCI INT B -> IRQ 11
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:01: resource 1 [mem 0x70000000-0xdfffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf7ffffff pref]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:02: resource 0 [io 0x1000-0x10ff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:02: resource 1 [io 0x1400-0x14ff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:02: resource 2 [mem 0x1c000000-0x1fffffff pref]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:02: resource 3 [mem 0x20000000-0x23ffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:06: resource 0 [io 0x1800-0x18ff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:06: resource 1 [io 0x1c00-0x1cff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:06: resource 2 [mem 0x24000000-0x27ffffff pref]
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci_bus 0000:06: resource 3 [mem 0x28000000-0x2bffffff]
    Jun 14 16:13:03 wishthinkpad.loc kernel: NET: Registered protocol family 2
    Jun 14 16:13:03 wishthinkpad.loc kernel: TCP established hash table entries: 4096 (order: 3, 32768 bytes)
    Jun 14 16:13:03 wishthinkpad.loc kernel: TCP bind hash table entries: 4096 (order: 3, 32768 bytes)
    Jun 14 16:13:03 wishthinkpad.loc kernel: TCP: Hash tables configured (established 4096 bind 4096)
    Jun 14 16:13:03 wishthinkpad.loc kernel: TCP: reno registered
    Jun 14 16:13:03 wishthinkpad.loc kernel: UDP hash table entries: 256 (order: 1, 8192 bytes)
    Jun 14 16:13:03 wishthinkpad.loc kernel: UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
    Jun 14 16:13:03 wishthinkpad.loc kernel: NET: Registered protocol family 1
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:00:07.2: found PCI INT D -> IRQ 11
    Jun 14 16:13:03 wishthinkpad.loc kernel: pci 0000:01:00.0: Boot video device
    Jun 14 16:13:03 wishthinkpad.loc kernel: PCI: CLS 32 bytes, default 32
    Jun 14 16:13:03 wishthinkpad.loc kernel: Unpacking initramfs...
    Jun 14 16:13:03 wishthinkpad.loc kernel: Freeing initrd memory: 4020k freed
    Jun 14 16:13:03 wishthinkpad.loc kernel: IBM machine detected. Enabling interrupts during APM calls.
    Jun 14 16:13:03 wishthinkpad.loc kernel: apm: BIOS not found.
    Jun 14 16:13:03 wishthinkpad.loc kernel: Scanning for low memory corruption every 60 seconds
    Jun 14 16:13:03 wishthinkpad.loc kernel: audit: initializing netlink socket (disabled)
    Jun 14 16:13:03 wishthinkpad.loc kernel: type=2000 audit(1371222775.660:1): initialized
    Jun 14 16:13:03 wishthinkpad.loc kernel: HugeTLB registered 4 MB page size, pre-allocated 0 pages
    Jun 14 16:13:03 wishthinkpad.loc kernel: VFS: Disk quotas dquot_6.5.2
    Jun 14 16:13:03 wishthinkpad.loc kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Jun 14 16:13:03 wishthinkpad.loc kernel: msgmni has been set to 807
    Jun 14 16:13:03 wishthinkpad.loc kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jun 14 16:13:03 wishthinkpad.loc kernel: io scheduler noop registered
    Jun 14 16:13:03 wishthinkpad.loc kernel: io scheduler deadline registered
    Jun 14 16:13:03 wishthinkpad.loc kernel: io scheduler cfq registered (default)
    Jun 14 16:13:03 wishthinkpad.loc kernel: vesafb: mode is 1024x768x24, linelength=3072, pages=0
    Jun 14 16:13:03 wishthinkpad.loc kernel: vesafb: scrolling: redraw
    Jun 14 16:13:03 wishthinkpad.loc kernel: vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    Jun 14 16:13:03 wishthinkpad.loc kernel: vesafb: framebuffer at 0xe0000000, mapped to 0xda800000, using 2304k, total 2304k
    Jun 14 16:13:03 wishthinkpad.loc kernel: Console: switching to colour frame buffer device 128x48
    Jun 14 16:13:03 wishthinkpad.loc kernel: fb0: VESA VGA frame buffer device
    Jun 14 16:13:03 wishthinkpad.loc kernel: intel_idle: does not run on family 6 model 6
    Jun 14 16:13:03 wishthinkpad.loc kernel: GHES: HEST is not enabled!
    Jun 14 16:13:03 wishthinkpad.loc kernel: isapnp: Scanning for PnP cards...
    Jun 14 16:13:03 wishthinkpad.loc kernel: isapnp: No Plug & Play device found
    Jun 14 16:13:03 wishthinkpad.loc kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jun 14 16:13:03 wishthinkpad.loc kernel: serial 00:03: [io 0x03e8-0x03ef]
    Jun 14 16:13:03 wishthinkpad.loc kernel: serial 00:03: [io 0x02e8-0x02ef]
    Jun 14 16:13:03 wishthinkpad.loc kernel: serial 00:03: unable to assign resources
    Jun 14 16:13:03 wishthinkpad.loc kernel: serial: probe of 00:03 failed with error -16
    Jun 14 16:13:03 wishthinkpad.loc kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
    Jun 14 16:13:03 wishthinkpad.loc kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD0,PNP0f13:MOU0] at 0x60,0x64 irq 1,12
    Jun 14 16:13:03 wishthinkpad.loc kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jun 14 16:13:03 wishthinkpad.loc kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jun 14 16:13:03 wishthinkpad.loc kernel: mousedev: PS/2 mouse device common for all mice
    Jun 14 16:13:03 wishthinkpad.loc kernel: rtc_cmos 00:11: RTC can wake from S4
    Jun 14 16:13:03 wishthinkpad.loc kernel: rtc_cmos 00:11: rtc core: registered rtc_cmos as rtc0
    Jun 14 16:13:03 wishthinkpad.loc kernel: rtc_cmos 00:11: alarms up to one month, y3k, 242 bytes nvram
    Jun 14 16:13:03 wishthinkpad.loc kernel: cpuidle: using governor ladder
    Jun 14 16:13:03 wishthinkpad.loc kernel: cpuidle: using governor menu
    Jun 14 16:13:03 wishthinkpad.loc kernel: EFI Variables Facility v0.08 2004-May-17
    Jun 14 16:13:03 wishthinkpad.loc kernel: drop_monitor: Initializing network drop monitor service
    Jun 14 16:13:03 wishthinkpad.loc kernel: TCP: cubic registered
    Jun 14 16:13:03 wishthinkpad.loc kernel: NET: Registered protocol family 10
    Jun 14 16:13:03 wishthinkpad.loc kernel: NET: Registered protocol family 17
    Jun 14 16:13:03 wishthinkpad.loc kernel: Key type dns_resolver registered
    Jun 14 16:13:03 wishthinkpad.loc kernel: Using IPI No-Shortcut mode
    Jun 14 16:13:03 wishthinkpad.loc kernel: PM: Hibernation image not present or could not be loaded.
    Jun 14 16:13:03 wishthinkpad.loc kernel: registered taskstats version 1
    Jun 14 16:13:03 wishthinkpad.loc kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jun 14 16:13:03 wishthinkpad.loc kernel: Magic number: 1:809:234
    Jun 14 16:13:03 wishthinkpad.loc kernel: rtc_cmos 00:11: setting system clock to 2013-06-14 15:12:57 UTC (1371222777)
    Jun 14 16:13:03 wishthinkpad.loc kernel: Freeing unused kernel memory: 572k freed
    Jun 14 16:13:03 wishthinkpad.loc kernel: Write protecting the kernel text: 4180k
    Jun 14 16:13:03 wishthinkpad.loc kernel: Write protecting the kernel read-only data: 1300k
    Jun 14 16:13:03 wishthinkpad.loc systemd-udevd[37]: starting version 204
    Jun 14 16:13:03 wishthinkpad.loc kernel: tsc: Refined TSC clocksource calibration: 363.959 MHz
    Jun 14 16:13:03 wishthinkpad.loc kernel: Switching to clocksource tsc
    Jun 14 16:13:03 wishthinkpad.loc kernel: Floppy drive(s): fd0 is 1.44M
    Jun 14 16:13:03 wishthinkpad.loc kernel: FDC 0 is a National Semiconductor PC87306
    Jun 14 16:13:03 wishthinkpad.loc kernel: SCSI subsystem initialized
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: bus type USB registered
    Jun 14 16:13:03 wishthinkpad.loc kernel: usbcore: registered new interface driver usbfs
    Jun 14 16:13:03 wishthinkpad.loc kernel: usbcore: registered new interface driver hub
    Jun 14 16:13:03 wishthinkpad.loc kernel: usbcore: registered new device driver usb
    Jun 14 16:13:03 wishthinkpad.loc kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Jun 14 16:13:03 wishthinkpad.loc kernel: uhci_hcd 0000:00:07.2: found PCI INT D -> IRQ 11
    Jun 14 16:13:03 wishthinkpad.loc kernel: uhci_hcd 0000:00:07.2: UHCI Host Controller
    Jun 14 16:13:03 wishthinkpad.loc kernel: uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 1
    Jun 14 16:13:03 wishthinkpad.loc kernel: uhci_hcd 0000:00:07.2: irq 11, io base 0x00008400
    Jun 14 16:13:03 wishthinkpad.loc kernel: hub 1-0:1.0: USB hub found
    Jun 14 16:13:03 wishthinkpad.loc kernel: hub 1-0:1.0: 2 ports detected
    Jun 14 16:13:03 wishthinkpad.loc kernel: ACPI: bus type ATA registered
    Jun 14 16:13:03 wishthinkpad.loc kernel: libata version 3.00 loaded.
    Jun 14 16:13:03 wishthinkpad.loc kernel: ata_piix 0000:00:07.1: version 2.13
    Jun 14 16:13:03 wishthinkpad.loc kernel: scsi0 : ata_piix
    Jun 14 16:13:03 wishthinkpad.loc kernel: scsi1 : ata_piix
    Jun 14 16:13:03 wishthinkpad.loc kernel: ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xfcf0 irq 14
    Jun 14 16:13:03 wishthinkpad.loc kernel: ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xfcf8 irq 15
    Jun 14 16:13:03 wishthinkpad.loc kernel: ata2.00: ATAPI: QSI CD-RW/DVD-ROM SBW-242, UD22, max UDMA/33
    Jun 14 16:13:03 wishthinkpad.loc kernel: ata1.00: ATA-6: TOSHIBA MK4032GAX, AD101A, max UDMA/100
    Jun 14 16:13:03 wishthinkpad.loc kernel: ata1.00: 78140160 sectors, multi 16: LBA48
    Jun 14 16:13:03 wishthinkpad.loc kernel: ata2.00: configured for UDMA/33
    Jun 14 16:13:03 wishthinkpad.loc kernel: ata1.00: configured for UDMA/33
    Jun 14 16:13:03 wishthinkpad.loc kernel: scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK4032GA AD10 PQ: 0 ANSI: 5
    Jun 14 16:13:03 wishthinkpad.loc kernel: scsi 1:0:0:0: CD-ROM QSI CDRW/DVD SBW-242 UD22 PQ: 0 ANSI: 5
    Jun 14 16:13:03 wishthinkpad.loc kernel: usb 1-1: new full-speed USB device number 2 using uhci_hcd
    Jun 14 16:13:03 wishthinkpad.loc kernel: sd 0:0:0:0: [sda] 78140160 512-byte logical blocks: (40.0 GB/37.2 GiB)
    Jun 14 16:13:03 wishthinkpad.loc kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jun 14 16:13:03 wishthinkpad.loc kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jun 14 16:13:03 wishthinkpad.loc kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jun 14 16:13:03 wishthinkpad.loc kernel: sr0: scsi3-mmc drive: 4x/24x writer cd/rw xa/form2 cdda tray
    Jun 14 16:13:03 wishthinkpad.loc kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jun 14 16:13:03 wishthinkpad.loc kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Jun 14 16:13:03 wishthinkpad.loc kernel: sda: sda1 sda2 < sda5 sda6 sda7 >
    Jun 14 16:13:03 wishthinkpad.loc kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jun 14 16:13:03 wishthinkpad.loc kernel: hub 1-1:1.0: USB hub found
    Jun 14 16:13:03 wishthinkpad.loc kernel: hub 1-1:1.0: 4 ports detected
    Jun 14 16:13:03 wishthinkpad.loc kernel: usb 1-1.1: new full-speed USB device number 3 using uhci_hcd
    Jun 14 16:13:03 wishthinkpad.loc kernel: usb 1-1.2: new low-speed USB device number 4 using uhci_hcd
    Jun 14 16:13:03 wishthinkpad.loc kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Jun 14 16:13:03 wishthinkpad.loc kernel: usbcore: registered new interface driver usbhid
    Jun 14 16:13:03 wishthinkpad.loc kernel: usbhid: USB HID core driver
    Jun 14 16:13:03 wishthinkpad.loc kernel: usb 1-1.4: new full-speed USB device number 5 using uhci_hcd
    Jun 14 16:13:03 wishthinkpad.loc kernel: input: MLK Silvercrest OM1008 as /devices/pci0000:00/0000:00:07.2/usb1/1-1/1-1.2/1-1.2:1.0/input/input1
    Jun 14 16:13:03 wishthinkpad.loc kernel: hid-generic 0003:04FC:0538.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [MLK Silvercrest OM1008] on usb-0000:00:07.2-1.2/input0
    Jun 14 16:13:03 wishthinkpad.loc kernel: usb 1-1.4: Parent hub missing LPM exit latency info. Power management will be impacted.
    Jun 14 16:13:03 wishthinkpad.loc kernel: Initializing USB Mass Storage driver...
    Jun 14 16:13:03 wishthinkpad.loc kernel: scsi2 : usb-storage 1-1.4:1.0
    Jun 14 16:13:03 wishthinkpad.loc kernel: usbcore: registered new interface driver usb-storage
    Jun 14 16:13:03 wishthinkpad.loc kernel: USB Mass Storage support registered.
    Jun 14 16:13:03 wishthinkpad.loc kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    Jun 14 16:13:03 wishthinkpad.loc kernel: scsi 2:0:0:0: Direct-Access Corsair Voyager GT 3.0 1.00 PQ: 0 ANSI: 4
    Jun 14 16:13:03 wishthinkpad.loc kernel: sd 2:0:0:0: [sdb] 31334400 512-byte logical blocks: (16.0 GB/14.9 GiB)
    Jun 14 16:13:03 wishthinkpad.loc kernel: sd 2:0:0:0: [sdb] Write Protect is off
    Jun 14 16:13:03 wishthinkpad.loc kernel: sd 2:0:0:0: [sdb] Mode Sense: bf 00 00 00
    Jun 14 16:13:03 wishthinkpad.loc kernel: sd 2:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    Jun 14 16:13:03 wishthinkpad.loc kernel: sdb: sdb1
    Jun 14 16:13:03 wishthinkpad.loc kernel: sd 2:0:0:0: [sdb] Attached SCSI removable disk
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: systemd 204 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Set hostname to <wishthinkpad.loc>.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Cannot add dependency job for unit syslog-ng.service, ignoring: Unit syslog-ng.service failed to load: No such file or directory. See system logs and 'systemctl status syslog-ng.service' for details.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Remote File Systems.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Reached target Remote File Systems.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Delayed Shutdown Socket.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Listening on Delayed Shutdown Socket.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Device-mapper event daemon FIFOs.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting LVM2 metadata daemon socket.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Listening on LVM2 metadata daemon socket.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Encrypted Volumes.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Reached target Encrypted Volumes.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Paths.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Reached target Paths.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting udev Kernel Socket.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Listening on udev Kernel Socket.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting udev Control Socket.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Listening on udev Control Socket.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Journal Socket.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Listening on Journal Socket.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Mounting Huge Pages File System...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Create static device nodes in /dev...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Apply Kernel Variables...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Started Load Kernel Modules.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Mounted FUSE Control File System.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Mounting Configuration File System...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting udev Coldplug all Devices...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Journal Service...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Started Journal Service.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Started Set Up Additional Binary Formats.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Mounting Debug File System...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Mounting POSIX Message Queue File System...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Setup Virtual Console...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Expecting device dev-disk-by\x2duuid-0a64bde1\x2d82c3\x2d4cfb\x2dab68\x2d7178564d8ed5.device...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Started File System Check on Root Device.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Remount Root and Kernel File Systems...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Expecting device dev-disk-by\x2duuid-567947ca\x2dcba3\x2d42e4\x2d9677\x2de9ddeecd2c26.device...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Expecting device dev-disk-by\x2duuid-e4eb21d7\x2d8ea8\x2d4059\x2db44b\x2d778690e44675.device...
    Jun 14 16:13:03 wishthinkpad.loc kernel: EXT4-fs (sda1): re-mounted. Opts: (null)
    Jun 14 16:13:03 wishthinkpad.loc systemd-udevd[99]: starting version 204
    Jun 14 16:13:03 wishthinkpad.loc systemd-journal[90]: Journal started
    Jun 14 16:13:03 wishthinkpad.loc systemd-sysctl[87]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Started Apply Kernel Variables.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Started udev Coldplug all Devices.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Started Create static device nodes in /dev.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting udev Kernel Device Manager...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Mounted Huge Pages File System.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Mounted POSIX Message Queue File System.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Mounted Debug File System.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Mounted Configuration File System.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Started Remount Root and Kernel File Systems.
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Starting Load Random Seed...
    Jun 14 16:13:03 wishthinkpad.loc systemd[1]: Mounted /tmp.
    Jun 14 16:13:04 wishthinkpad.loc systemd[1]: Started Load Random Seed.
    Jun 14 16:13:04 wishthinkpad.loc systemd[1]: Started Setup Virtual Console.
    Jun 14 16:13:05 wishthinkpad.loc kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    Jun 14 16:13:05 wishthinkpad.loc kernel: ACPI: Lid Switch [LID0]
    Jun 14 16:13:05 wishthinkpad.loc kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    Jun 14 16:13:05 wishthinkpad.loc kernel: ACPI: Sleep Button [SLPB]
    Jun 14 16:13:05 wishthinkpad.loc kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Jun 14 16:13:05 wishthinkpad.loc kernel: ACPI: Power Button [PWRF]
    Jun 14 16:13:05 wishthinkpad.loc kernel: Linux agpgart interface v0.103
    Jun 14 16:13:05 wishthinkpad.loc kernel: tsc: Marking TSC unstable due to TSC halts in idle
    Jun 14 16:13:05 wishthinkpad.loc kernel: Switching to clocksource acpi_pm
    Jun 14 16:13:05 wishthinkpad.loc kernel: ACPI: acpi_idle registered with cpuidle
    Jun 14 16:13:05 wishthinkpad.loc kernel: piix4_smbus 0000:00:07.3: IBM system detected; this module may corrupt your serial eeprom! Refusing to load module!
    Jun 14 16:13:05 wishthinkpad.loc kernel: piix4_smbus: probe of 0000:00:07.3 failed with error -1
    Jun 14 16:13:06 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.0: CardBus bridge found [1014:00eb]
    Jun 14 16:13:06 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.0: Enabling burst memory read transactions
    Jun 14 16:13:06 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.0: Using CSCINT to route CSC interrupts to PCI
    Jun 14 16:13:06 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.0: Routing CardBus interrupts to PCI
    Jun 14 16:13:06 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.0: TI: mfunc 0xfba97543, devctl 0x62
    Jun 14 16:13:06 wishthinkpad.loc kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jun 14 16:13:06 wishthinkpad.loc kernel: gameport gameport0: NS558 PnP Gameport is pnp00:08/gameport0, io 0x200, speed 685kHz
    Jun 14 16:13:06 wishthinkpad.loc kernel: parport_pc 00:04: reported by Plug and Play ACPI
    Jun 14 16:13:06 wishthinkpad.loc kernel: parport0: PC-style at 0x3bc, irq 7 [PCSPP,TRISTATE]
    Jun 14 16:13:06 wishthinkpad.loc kernel: NET: Registered protocol family 23
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: AC Adapter [AC] (on-line)
    Jun 14 16:13:06 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.0: ISA IRQ mask 0x0418, PCI irq 11
    Jun 14 16:13:06 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.0: Socket status: 30000006
    Jun 14 16:13:06 wishthinkpad.loc kernel: nsc-ircc, chip->init
    Jun 14 16:13:06 wishthinkpad.loc kernel: nsc-ircc, Found chip at base=0x02e
    Jun 14 16:13:06 wishthinkpad.loc kernel: nsc-ircc, driver loaded (Dag Brattli)
    Jun 14 16:13:06 wishthinkpad.loc kernel: nsc_ircc_open(), can't get iobase of 0x3f8
    Jun 14 16:13:06 wishthinkpad.loc kernel: nsc-ircc, Found chip at base=0x02e
    Jun 14 16:13:06 wishthinkpad.loc kernel: nsc-ircc, driver loaded (Dag Brattli)
    Jun 14 16:13:06 wishthinkpad.loc kernel: nsc_ircc_open(), can't get iobase of 0x3f8
    Jun 14 16:13:06 wishthinkpad.loc kernel: nsc-ircc 00:05: disabled
    Jun 14 16:13:06 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.1: CardBus bridge found [1014:00eb]
    Jun 14 16:13:06 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.1: Using CSCINT to route CSC interrupts to PCI
    Jun 14 16:13:06 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.1: Routing CardBus interrupts to PCI
    Jun 14 16:13:06 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.1: TI: mfunc 0xfba97543, devctl 0x62
    Jun 14 16:13:06 wishthinkpad.loc kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Thermal Zone [THM0] (77 C)
    Jun 14 16:13:06 wishthinkpad.loc kernel: thermal LNXTHERM:01: registered as thermal_zone1
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Thermal Zone [THM2] (35 C)
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Fan [FN00] (off)
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Fan [FN01] (off)
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Fan [FN20] (off)
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Fan [FN21] (off)
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Fan [FN60] (off)
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Fan [FN61] (off)
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Fan [FN70] (off)
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Fan [FN71] (off)
    Jun 14 16:13:06 wishthinkpad.loc kernel: thermal LNXTHERM:02: registered as thermal_zone2
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Thermal Zone [THM6] (27 C)
    Jun 14 16:13:06 wishthinkpad.loc kernel: thermal LNXTHERM:03: registered as thermal_zone3
    Jun 14 16:13:06 wishthinkpad.loc kernel: ACPI: Thermal Zone [THM7] (27 C)
    Jun 14 16:13:06 wishthinkpad.loc systemd[1]: Starting Sound Card.
    Jun 14 16:13:06 wishthinkpad.loc systemd[1]: Reached target Sound Card.
    Jun 14 16:13:07 wishthinkpad.loc kernel: cfg80211: Calling CRDA to update world regulatory domain
    Jun 14 16:13:07 wishthinkpad.loc kernel: microcode: CPU0 sig=0x66a, pf=0x8, revision=0xa
    Jun 14 16:13:07 wishthinkpad.loc kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Jun 14 16:13:07 wishthinkpad.loc kernel: psmouse serio1: alps: Unknown ALPS touchpad: E7=10 00 64, EC=10 00 64
    Jun 14 16:13:07 wishthinkpad.loc kernel: psmouse serio1: hgpk: ID: 10 00 64
    Jun 14 16:13:08 wishthinkpad.loc kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0b, buttons: 3/3
    Jun 14 16:13:08 wishthinkpad.loc kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input5
    Jun 14 16:13:08 wishthinkpad.loc kernel: usb 1-1.1: reset full-speed USB device number 3 using uhci_hcd
    Jun 14 16:13:08 wishthinkpad.loc systemd[1]: Found device TOSHIBA_MK4032GAX.
    Jun 14 16:13:08 wishthinkpad.loc systemd[1]: Starting File System Check on /dev/disk/by-uuid/567947ca-cba3-42e4-9677-e9ddeecd2c26...
    Jun 14 16:13:09 wishthinkpad.loc kernel: phy0 -> rt2x00_set_chip: Info - Chipset detected - rt: 2573, rf: 0002, rev: 000a.
    Jun 14 16:13:09 wishthinkpad.loc systemd[1]: Found device TOSHIBA_MK4032GAX.
    Jun 14 16:13:09 wishthinkpad.loc systemd[1]: Activating swap /dev/disk/by-uuid/0a64bde1-82c3-4cfb-ab68-7178564d8ed5...
    Jun 14 16:13:09 wishthinkpad.loc kernel: ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    Jun 14 16:13:09 wishthinkpad.loc kernel: usbcore: registered new interface driver rt73usb
    Jun 14 16:13:09 wishthinkpad.loc kernel: Adding 995992k swap on /dev/sda5. Priority:-1 extents:1 across:995992k
    Jun 14 16:13:09 wishthinkpad.loc systemd[1]: Activated swap /dev/disk/by-uuid/0a64bde1-82c3-4cfb-ab68-7178564d8ed5.
    Jun 14 16:13:09 wishthinkpad.loc systemd[1]: Starting Swap.
    Jun 14 16:13:09 wishthinkpad.loc systemd[1]: Reached target Swap.
    Jun 14 16:13:09 wishthinkpad.loc systemd-fsck[140]: /dev/sda6: clean, 62025/65280 files, 185105/261048 blocks
    Jun 14 16:13:09 wishthinkpad.loc systemd[1]: Found device TOSHIBA_MK4032GAX.
    Jun 14 16:13:09 wishthinkpad.loc systemd[1]: Starting File System Check on /dev/disk/by-uuid/e4eb21d7-8ea8-4059-b44b-778690e44675...
    Jun 14 16:13:09 wishthinkpad.loc systemd[1]: Started File System Check on /dev/disk/by-uuid/567947ca-cba3-42e4-9677-e9ddeecd2c26.
    Jun 14 16:13:09 wishthinkpad.loc systemd[1]: Mounting /home...
    Jun 14 16:13:09 wishthinkpad.loc kernel: EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    Jun 14 16:13:09 wishthinkpad.loc systemd[1]: Mounted /home.
    Jun 14 16:13:09 wishthinkpad.loc kernel: ppdev: user-space parallel port driver
    Jun 14 16:13:09 wishthinkpad.loc systemd-fsck[152]: Data: clean, 249/1692432 files, 5642949/6757332 blocks
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Started File System Check on /dev/disk/by-uuid/e4eb21d7-8ea8-4059-b44b-778690e44675.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Mounting /media/Extra...
    Jun 14 16:13:10 wishthinkpad.loc systemd-sysctl[165]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Mounted /media/Extra.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Starting Local File Systems.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Reached target Local File Systems.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Starting Trigger Flushing of Journal to Persistent Storage...
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Starting Recreate Volatile Files and Directories...
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Found device RT2501/RT2573 Wireless Adapter.
    Jun 14 16:13:10 wishthinkpad.loc kernel: EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Started Recreate Volatile Files and Directories.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Starting Update UTMP about System Reboot/Shutdown...
    Jun 14 16:13:10 wishthinkpad.loc systemd-journal[90]: Allowing system journal files to grow to 948.4M.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Started Trigger Flushing of Journal to Persistent Storage.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Started Update UTMP about System Reboot/Shutdown.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Starting System Initialization.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Reached target System Initialization.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Starting D-Bus System Message Bus Socket.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Listening on D-Bus System Message Bus Socket.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Starting Sockets.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Reached target Sockets.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Starting Daily Cleanup of Temporary Directories.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Started Daily Cleanup of Temporary Directories.
    Jun 14 16:13:10 wishthinkpad.loc systemd[1]: Starting Timers.
    Jun 14 16:13:19 wishthinkpad.loc kernel: phy0 -> rt2x00lib_request_firmware: Info - Loading firmware file 'rt73.bin'.
    Jun 14 16:13:11 wishthinkpad.loc crond[176]: (CRON) INFO (Syslog will be used instead of sendmail.)
    Jun 14 16:13:11 wishthinkpad.loc crond[176]: (CRON) INFO (running with inotify support)
    Jun 14 16:13:13 wishthinkpad.loc sshd[178]: Server listening on 0.0.0.0 port 50505.
    Jun 14 16:13:14 wishthinkpad.loc ntpd[200]: ntpd [email protected] Mon May 6 10:21:04 UTC 2013 (1)
    Jun 14 16:13:14 wishthinkpad.loc ntpd[201]: proto: precision = 4.469 usec
    Jun 14 16:13:14 wishthinkpad.loc ntpd[201]: ntp_io: estimated max descriptors: 1024, initial socket boundary: 16
    Jun 14 16:13:14 wishthinkpad.loc ntpd[201]: Listen and drop on 0 v4wildcard 0.0.0.0 UDP 123
    Jun 14 16:13:14 wishthinkpad.loc ntpd[201]: Listen and drop on 1 v6wildcard :: UDP 123
    Jun 14 16:13:14 wishthinkpad.loc ntpd[201]: Listen normally on 2 lo 127.0.0.1 UDP 123
    Jun 14 16:13:14 wishthinkpad.loc ntpd[201]: Listen normally on 3 wlan0 192.168.0.102 UDP 123
    Jun 14 16:13:14 wishthinkpad.loc ntpd[201]: peers refreshed
    Jun 14 16:13:19 wishthinkpad.loc kernel: phy0 -> rt2x00lib_request_firmware: Info - Firmware detected - version: 1.7.
    Jun 14 16:13:19 wishthinkpad.loc kernel: IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Jun 14 16:13:19 wishthinkpad.loc systemd-logind[179]: Watching system buttons on /dev/input/event4 (Power Button)
    Jun 14 16:13:19 wishthinkpad.loc systemd-logind[179]: Watching system buttons on /dev/input/event2 (Lid Switch)
    Jun 14 16:13:19 wishthinkpad.loc systemd-logind[179]: Watching system buttons on /dev/input/event3 (Sleep Button)
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: authenticate with 00:18:39:a0:db:3e
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: send auth to 00:18:39:a0:db:3e (try 1/3)
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: authenticated
    Jun 14 16:13:19 wishthinkpad.loc kernel: rt73usb 1-1.1:1.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
    Jun 14 16:13:19 wishthinkpad.loc kernel: rt73usb 1-1.1:1.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: associate with 00:18:39:a0:db:3e (try 1/3)
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: RX AssocResp from 00:18:39:a0:db:3e (capab=0x411 status=0 aid=1)
    Jun 14 16:13:19 wishthinkpad.loc kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    Jun 14 16:13:19 wishthinkpad.loc shorewall[199]: Starting Shorewall....
    Jun 14 16:13:19 wishthinkpad.loc kernel: wlan0: associated
    Jun 14 16:13:19 wishthinkpad.loc kernel: ACPI: Fatal opcode executed
    Jun 14 16:13:19 wishthinkpad.loc kernel: ACPI: Battery Slot [BAT0] (battery present)
    Jun 14 16:13:19 wishthinkpad.loc kernel: ACPI: Battery Slot [BAT1] (battery absent)
    Jun 14 16:13:19 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.1: ISA IRQ mask 0x0418, PCI irq 11
    Jun 14 16:13:19 wishthinkpad.loc kernel: yenta_cardbus 0000:00:02.1: Socket status: 30000006
    Jun 14 16:13:19 wishthinkpad.loc kernel: agpgart-intel 0000:00:00.0: Intel 440BX Chipset
    Jun 14 16:13:19 wishthinkpad.loc kernel: agpgart-intel 0000:00:00.0: AGP aperture is 64M @ 0x40000000
    Jun 14 16:13:19 wishthinkpad.loc kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Jun 14 16:13:19 wishthinkpad.loc kernel: pcmcia_socket pcmcia_socket1: cs: IO port probe 0x100-0x3af:
    Jun 14 16:13:19 wishthinkpad.loc kernel: pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af:
    Jun 14 16:13:19 wishthinkpad.loc shorewall[199]: Initializing...
    Jun 14 16:13:19 wishthinkpad.loc kernel: excluding 0x130-0x137 0x170-0x177 0x1f0-0x1f7 0x200-0x207 0x220-0x22f 0x370-0x377 0x388-0x38f
    Jun 14 16:13:19 wishthinkpad.loc kernel: excluding
    Jun 14 16:13:19 wishthinkpad.loc kernel: 0x130-0x137 0x170-0x177 0x1f0-0x1f7 0x200-0x207 0x220-0x22f 0x370-0x377 0x388-0x38f 0x3a0-0x3a7
    Jun 14 16:13:19 wishthinkpad.loc kernel: pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff:
    Jun 14 16:13:19 wishthinkpad.loc kernel:
    Jun 14 16:13:19 wishthinkpad.loc kernel: pcmcia_socket pcmcia_socket1: cs: IO port probe 0x3e0-0x4ff:
    Jun 14 16:13:19 wishthinkpad.loc kernel: excluding 0x3f0-0x3ff
    Jun 14 16:13:19 wishthinkpad.loc kernel: excluding
    Jun 14 16:13:19 wishthinkpad.loc kernel: 0x3f0-0x3ff 0x4d0-0x4d7
    Jun 14 16:13:19 wishthinkpad.loc kernel: pcmcia_socket pcmcia_socket1: cs: IO port probe 0x820-0x8ff:
    Jun 14 16:13:19 wishthinkpad.loc kernel: clean.
    Jun 14 16:13:19 wishthinkpad.loc kernel: pcmcia_socket pcmcia_socket1: cs: IO port probe 0xc00-0xcf7:
    Jun 14 16:13:19 wishthinkpad.loc kernel: clean.
    Jun 14 16:13:19 wishthinkpad.loc kernel: pcmcia_socket pcmcia_socket1: cs: memory probe 0x0c0000-0x0fffff:
    Jun 14 16:13:19 wishthinkpad.loc kernel: excluding 0xc0000-0xcbfff 0xf0000-0xfffff
    Jun 14 16:13:19 wishthinkpad.loc kernel: pcmcia_socket pcmcia_socket1: cs: memory probe 0xa0000000-0xa0ffffff:
    Jun 14 16:13:19 wishthinkpad.loc kernel:

  • Web Apps FAQ

    Hello,
    I am working on knowledge base entries for developing Web Applications with Sun ONE Studio. I would be interested in whether any of the following are helpful.
    Also, are there other entries you think should be added? Other comments? Corrections?
    Thanks
    Web Apps FAQ
    Creating a Web Application
    Q: Where do I put my JSP files in my web module.
    A: JSP files can go into the web module's document base directory or any
    of its subdirectories except for the subdirectories under WEB-INF. For example,
    the following is correct:
    correctWebModStructure
    + login.jsp
    ++ JSP_files
    +++ shop.jsp
    + WEB-INF
    ++ Classes
    ++ lib
    ++ web.xml
    The following is incorrect:
    incorrectWebModStructure
    + WEB-INF
    ++ login.jsp     
    ++ JSP_files
    +++ shop.jsp     
    ++ Classes
    ++ lib
    ++ web.xml
    Note that with the incorrect structure, the JSP files will compile but
    they will not run on a server.
    Q: Where should I put my servlet source and binary files when I create
    and execute a web module from the IDE?
    A: Your compiled classes must go in the appropriate package directory
    under <web mod document root>/WEB-INF/Classes. The easiest place to
    put the source code is in the same directory as the compiled class. To
    put your source code in a different directory, see "Can I put my source code in
    a different directory from WEB-INF/classes?"
    Note that when a class is imported by another class or by a JSP file, the
    class MUST be in a named namespace (package).
    Q: Where do I put my libraries (JAR files) in a web module?
    A: You can put the libraries in one of several places:
    o If the JAR file will be used only by the module, put it in the
    WEB-INF/lib directory.
    o If the JAR file will be shared by multiple web modules look at the server's
    documentation to find out how to make the library available across web
    modules.
    - If you are using the Sun One Application server, you can either copy
    the JAR into the <instance_dir>/lib directory (such as
         <AppServerInstallDir>\domains\domain1\server1\lib) or edit the
         classpath-suffix attribute of the java-config element in the
         server.xml file. For details about server.xml, see the Sun ONE Application
         Server Administrator�s Configuration File Reference. You must
         restart the server.
    - If you are using the internal Tomcat server, put the JAR file into one of
    the following directories:
    <ide-install-dir>/jwsdp/lib/
    <ide-install-dir>/jwsdp/common/classes
    <ide-install-dir>/jwsdp/common/lib/
    <ide-install-dir>jwsdp/shared/classes
    <ide-install-dir>/jwsdp/shared/lib/
    Note that for compilation, a JAR file must either be mounted as as an
              archive file or the JAR file must be put into <ide-install-dir>\lib\ext.
    When you add a JAR file to WEB-INF/lib directory tree, the IDE mounts
              the JAR file for you automatically.
    Q: Can I put my source code in a different directory from WEB-INF/classes?
    A: Yes. For example, say you have a directory structure as follows:
    myWebApp
    + WEB-INF
    ++ Classes
    +++ myPkg
    + src
    ++ myPkg
    1. In the Filesystems tab, mount myWebApp and separately mount src.
    The Explorer should look like this:
    <path>/myWebApp
    <path>/myWebApp: /WEB-INF/classes <-IDE automatically mounts this
    <path>/src
    2. Open Tools > Options > Building > External Compilation and select this Target:
    <path>/myWebApp: /WEB-INF/classes
    (By default, this setting is project wide, if you click the >> column, you
    can set it at the user or default level.)
    3. Whenever you create a Java file under /WEB-INF/classes, the IDE automatically
    adds a servlet entry and a mapping in the web.xml. Because you are putting
    your source elsewhere, you will have to enter these entries manually, or do
    the following.
    1. Right-click the web.xml node, and choose Properties.
    2. In the Deployment panel of the web.xml properties window,
    click the ellipses (...) in the Servlets value field to display
    the Servlets Property editor.
    In Servlets Property editor, click Add to display the Add Servlet dialog box.
    In the Add Servlet dialog box, type, or browse for, the servlet class name.
    Type in the name by which you want to identify the servlet.
    3. Click the Edit button for Mappings and add the mapping for the servlet.
    4. Click OK to close the Add Servlet dialog box, then click OK to close
    the Servlets property editor.
    Note: If you don't add the web.xml entries, you might get an error like the
    following:
    "The requested object does not exist on this server.
    The link you followed is either outdated, inaccurate,
    or the server has been instructed not to let you have it.
    Please inform the site administrator of the referring page."
    Q: Why do I get invalid package name when I try to add a package to my
    web module.
    You have two options for creating packages in a web module.
    1. Create a package in a subdirectory of WEB-INF/classes.
    2. Create a package in a directory that is not in the WEB-INF tree and
    put the compiled class in the WEB-INF tree. For example, if you have the
    following directory structure, set the compilation target to WEB-INF/classes.
    myWebMod
    + src
    ++ pkg1
    + WEB-INF
    ++ classes
    +++ pkg1
    ++ lib
    In either case, the WEB-INF/classes directory must be mounted. The IDE
    does this automatically when you create a web module or turn a directory
    into a web module.
    To set the compilation target, choose Tools > Options > Building >
    External Compilation and select the target. In this example, you would
    select:
    <path>/myWebMod: /WEB-INF/classes
    Do not use a directory structure like this:
    myWebMod
    + WEB-INF
    ++ src << wrong
    ++ classes
    You can alternatively keep your source code in the appropriate package
    directory under WEB-INF/classes.
    Editing JSP Files
    Q: JSP code completion does not work now that I use the Jakarta recommended
    directory structure and use Ant to build and deploy my web applications? Can
    I fix this?
    To make code completion work, you must mount the following libraries and
    directories in the Filesystems tab of the Explorer window. Mounting a parent
    directory does not work.
    * <working-directory>/src
    * <working-directory>/build
    * Every .jar file that is copied by the build script to
              <working-directory>/build/WEB-INF/lib. (The IDE automatically mounts
                   all the jar files in WEB-INF/lib when you mount working-directory/build.)
    * Any other libraries that are used by the web application, such as
              libraries that have been deployed to the server.
    Deploying a Web Application
    Q: Can I change the URL that is used to execute a JSP page? For example,
    instead of http://localhost/welcome.jsp, can I have the URL be
    http://localhost/shopping/welcome.jsp?
    A: Yes, right-click on the WEB-INF and choose Properties from the contextual
    menu. In the Properties window, type /<name>. For example, type
    /shopping
    Note that youu can use servlet mappings in the web.xml file to control the
    mappings of URLs to servlets.
    Q: Is there a way to copy the compiled code to the server for testing
    without having to create a WAR file?
    A: Yes, this is the default action when you right-click the WEB-INF
    node and choose Deploy from the contextual menu.
    With Internal and External Tomcat installations, the deploy action causes
    the IDE to change the server's configuration file to add a context entry,
    which points to the document root of your working version of the web
    application. For example
    /myApp -> C:\My Working Directory\myApp
    When you deploy to the Sun ONE application server using the IDE's Deploy
    action, the IDE copies the web application's directory structure to
    the server's <instance>/applications/j2ee-modules directory.
    Q: How do I create a WAR file and deploy the WAR file onto different servers.
    A: To create a WAR file, right click the WEB-INF node and choose Export WAR
    file. See the online help for details about adding and filtering out
    components.
    Look at the server's documentation to find out how to deploy the WAR file
    to the server. Here is an example of deploying a WAR file to the Sun ONE
    Application Server 7:
    asadmin deploy user myusername password mypassword \
    -host localhost port 4848 type web contextroot /myApp instance server1 \
    c:\apps\myapp.war
    Note that when you deploy to a server that is registered with the IDE,
    you do not need to create a WAR file. Instead, you can right-click on the
    WEB-INF node and choose Deploy.
    Compiling a Web Application
    Q: Why do I get compiler errors when I compile from the IDE even though
    I don't get errors when I compile from the command line?
    As the IDE's classpath is derived from the mounted filesystems, the problem
    is most likely caused by not mounting the necessary filesystems. For the
    following web app, you must mount in the Explorer AWebApp, WEB-INF/classes
    (this directory is mounted automatically when you create a web app or
    turn a directory into a web app), and every JAR file in the WEB-INF/lib
    directory (which is also done automatically). Note that all classes and
    JAR files that the application needs must be in AWebApp/WEB-INF or
    AWebApp/lib or the server's location for shared libraries and classes.
    Otherwise, the module may compile but it won't run in the server.
    AllMyWebApps
    + AWebApp
    ++ WEB-INF
    +++ classes
    +++ lib
    ++++ a.jar
    ++++ b.jar
    Q: Why do I get a "cannot resolve symbol" compiler error message for my JSP.
    A: Check the import statements in your JSP file. The import statement must
    specify the fully qualified class name (package name plus class), and the
    class must be in a namespace. The namespace restriction is because the Javac
    bytecode compiler in J2SE 1.4.0 is more strict than in previous
    versions in enforcing compliance with the Java Language Specification,
    and thus rejects import statements that import a type from an unnamed namespace.
    Valid import statement:
    <%@page import="org.alpha.beta.MyBean" %>
    Also, make sure your compiled classes are in a subfolder of
    <web-module>/WEB-INF/classes, such as, for the above bean,
    <web-module>/WEB-INF/classes/org/alpha/beta/MyBean.class.
    Note that you will also get this error if you have created a link under
    WEB-INF/classes to a package in another directory. Your package must
    physically exist in the WEB-INF/classes directory.          
    Q: Why do I get " '.' expected" when my JSP is compiled.
    The Javac bytecode compiler in J2SE 1.4.0 is more strict than in previous
    versions in enforcing compliance with the Java Language Specification, and
    thus rejects import statements that import a type from an unnamed namespace.
    For example, if you have an import statement like the following, the compiler
    expects the imported class to be in a package. Therefore, the compiler
    assumes that MyBean is a package and expects the package name to be followed
    by a period (.) and either a subpackage or a class. To resolve the problem,
    put the bean in a package.
    INVALID IMPORT STATEMENT:
    <%@page import="MyBean" %>
    VALID IMPORT STATEMENT
    <%@page import="MyPackage.MyBean" %>
    Q: Why do I get a package does not exist error message when the package exists?
    A: The problem might be that you have not mounted the web module at the
    correct point. You must mount the directory that is directly above the WEB-INF
    directory. For example, if you have the following directory structure
    you must mount the webApp1 filesystem. When you specifically mount
    webApp1, the IDE recognizes the filesystem as a web module. The IDE
    automatically mounts WEB-INF/classes, so that it is in the IDE's classpath,
    and provides the execute and deploy actions when you right-click on the
    WEB-INF node:
    allMyWebApps
    + webApp1
    ++ WEB-INF
    +++ Classes
    ++++ myPkg
    You can also get this error message when you do not put your Classes directory
    under WEB-INF. For example, if you put the Classes directory in web-info, you
    will get this error message.
    You will get this error if you have created a link under WEB-INF/classes
    to a package in another directory. Your package must physically exist in
    the WEB-INF/classes directory.                    
    Running Web Applications
    Q: Why do I get the 404 error message "The requested resource is not available"?
    Why do I get the error message "The requested object does not exist on
    this server"?
    A: If you get either of these errors on a servlet, check the servlet's entry
    in the web.xml. The entry should be similar to the following:
    <servlet>
    <servlet-name>myServlet</servlet-name>
    <servlet-class>org.alpha.beta.MyServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>myServlet</servlet-name>
    <url-pattern>/MyServlet</url-pattern>
    </servlet-mapping>
    The name can be any name as long as it is the same in both mappings.
    The class must be the fully qualified class name. The pattern
    must be a pattern that matches the URI that invokes the servlet. In
    this case, the pattern matches the URI http://localhost:8081/MyServlet.
    Q: Why do I get a Generated Servlet error "Class not found."
    A: This error can occur if the class is not in a package. To resolve the
    problem, put the class in a package.
    If the class is in a package and you still get this message,
    check the import statements in your JSP file. The import statement must
    specify the fully qualified class name (package name plus class).
    For example:
    <%@page "org.alpha.beta.CustomerBean" %>
    Q: Why do I get the error message "Unable to load class" when my JSP calls
    a class from a library?
    This message usually appears because the library's JAR file is not in the
    WEB-INF/lib directory. The server expects all of the web app's JAR files
    to either be in the WEB-INF/lib directory or in the server's
    shared library directory.
    For more information, search for the "File Location in a Web Module" topic
    in the online help.
    Q: Why do I get an error message during JSP compilation that a tld file is not
    found when the file is there?
    A: The problem might be that you have not put the tld file in the correct
    place. It should go in the WEB-INF directory.
    This problem also happens if have not mounted the web module at the
    correct point.
    You must mount the directory that is directly above the WEB-INF directory. For
    example, if you have the following directory structure you must mount the
    myWebApp1 filesystem. When you specifically mount webApp1, the IDE recognizes
    the filesystem as a web module. The IDE automatically mounts WEB-INF/classes,
    which in turn adds the path to the IDE's classpath and provides the execute
    and deploy actions when you right-click on the WEB-INF node:
    allMyWebApps
    + webApp1
    ++ WEB-INF
    +++ Classes
    ++++ myPkg
    Another cause of the problem could be that the uri in your taglib statement
    is incorrect. For example, this statement is wrong:
                        <%@ taglib uri="struts-html.tld" prefix="html" %> <- Incorrect
    Instead, it should be:
                        <%@ taglib uri="WEB-INF/struts-html.tld" prefix="html" %> <- Correct
    Q: Why do I get a java.lang.ClassNotFoundException when I run my JSP file?
    Everything compiles successfully and the source editor does JSP code completion
    for the class. However, when I execute, the runtime system can't find the new
    classes.
    A: There are several causes of this error. Here are some things to check.
    1. If the class is in a library, make sure the JAR file is in the
    WEB-INF/lib directory or the server's directory for shared libraries.
    Otherwise, make sure the class is in a package under the WEB-INF/Classes
    directory.
    When compiling, the IDE builds the classpath from the mounted filesystems.
    However, when you use the deploy action, the IDE only deploys the classes,
    libraries, and files that are stored in the mounted web module.
    2. Make sure all usebean statements use a fully qualified name for
    the class name.
    WRONG:
    <jsp:useBean id="myBean" class="MyBean" scope="request" />
    CORRECT:
    <jsp:useBean id="myBean" class="org.alpha.beta.MyBean" scope="request" />
    Q. Why am I getting a 500 Internal Server Error? My application compiled but
    when I try to run it, I get an Internal Server Error.
    A: There are several reasons for internal server errors. The "root cause" or
    the "Exception" information can help to narrow in on the problem. Here are
    some common causes:
    a) One common reason is that the compiled classes are not in the right directory
    or a required library (JAR file) is not in the WEB-INF/lib directory.
    When you compile, the IDE uses the classpath to find the resources. However,
    when you deploy an application, the application must strictly follow the
    web module directory structure:
    <document root directory>
    + JSP, HTML and other public files
    + WEB-INF
    ++ web.xml
    ++ <tld files>
    ++ classes
    +++ <pkg 1>
    +++ <pkg 2>
    ++ lib
    +++ <.jar>
    For more information, search for the "File Location in a Web Module" topic
    in the online help.
    b) If you are connecting to a database, make sure the driver is put in the
    server's shared library directory or common library directory.
    c) An error occurs when the server compiles the JSP into a servlet. For example,
    the import or usebean statement is not using the fully qualified class
    name for the bean. The following statements show an incorrect and a correct
    import statement.
    import="MyBean" << wrong
    import="com.myCompany.MyBean" << correct
    In this case, the "Exception" or "Root Cause" might be "Class <bean name> not
    found in import."
    Note that a bean must always be in a package. A bean cannot be put into the
    WEB-INF/classes directory. Instead, it must be in a WEB-INF/classes
    subdirectory.
    Accessing Databases from Web Applications
    Q: I put my database driver in WEB-INF/lib but I still can't access the
    database. What do I do?
    A: If your application performs queries or run statements through JDBC, then
    putting the driver in WEB-INF is sufficient. However, if you are connecting to
    the database through the server, you need to put the driver in the
    server's shared library directory or the server's common library directory.
    You must also set up a connection pool in the server.xml file. See the
    documentation for your server on the specifics, as the details vary for
    each server.

    Hello,
    I am working on knowledge base entries for developing Web Applications with Sun ONE Studio. I would be interested in whether any of the following are helpful.
    Also, are there other entries you think should be added? Other comments? Corrections?
    Thanks
    Web Apps FAQ
    Creating a Web Application
    Q: Where do I put my JSP files in my web module.
    A: JSP files can go into the web module's document base directory or any
    of its subdirectories except for the subdirectories under WEB-INF. For example,
    the following is correct:
    correctWebModStructure
    + login.jsp
    ++ JSP_files
    +++ shop.jsp
    + WEB-INF
    ++ Classes
    ++ lib
    ++ web.xml
    The following is incorrect:
    incorrectWebModStructure
    + WEB-INF
    ++ login.jsp     
    ++ JSP_files
    +++ shop.jsp     
    ++ Classes
    ++ lib
    ++ web.xml
    Note that with the incorrect structure, the JSP files will compile but
    they will not run on a server.
    Q: Where should I put my servlet source and binary files when I create
    and execute a web module from the IDE?
    A: Your compiled classes must go in the appropriate package directory
    under <web mod document root>/WEB-INF/Classes. The easiest place to
    put the source code is in the same directory as the compiled class. To
    put your source code in a different directory, see "Can I put my source code in
    a different directory from WEB-INF/classes?"
    Note that when a class is imported by another class or by a JSP file, the
    class MUST be in a named namespace (package).
    Q: Where do I put my libraries (JAR files) in a web module?
    A: You can put the libraries in one of several places:
    o If the JAR file will be used only by the module, put it in the
    WEB-INF/lib directory.
    o If the JAR file will be shared by multiple web modules look at the server's
    documentation to find out how to make the library available across web
    modules.
    - If you are using the Sun One Application server, you can either copy
    the JAR into the <instance_dir>/lib directory (such as
         <AppServerInstallDir>\domains\domain1\server1\lib) or edit the
         classpath-suffix attribute of the java-config element in the
         server.xml file. For details about server.xml, see the Sun ONE Application
         Server Administrator�s Configuration File Reference. You must
         restart the server.
    - If you are using the internal Tomcat server, put the JAR file into one of
    the following directories:
    <ide-install-dir>/jwsdp/lib/
    <ide-install-dir>/jwsdp/common/classes
    <ide-install-dir>/jwsdp/common/lib/
    <ide-install-dir>jwsdp/shared/classes
    <ide-install-dir>/jwsdp/shared/lib/
    Note that for compilation, a JAR file must either be mounted as as an
              archive file or the JAR file must be put into <ide-install-dir>\lib\ext.
    When you add a JAR file to WEB-INF/lib directory tree, the IDE mounts
              the JAR file for you automatically.
    Q: Can I put my source code in a different directory from WEB-INF/classes?
    A: Yes. For example, say you have a directory structure as follows:
    myWebApp
    + WEB-INF
    ++ Classes
    +++ myPkg
    + src
    ++ myPkg
    1. In the Filesystems tab, mount myWebApp and separately mount src.
    The Explorer should look like this:
    <path>/myWebApp
    <path>/myWebApp: /WEB-INF/classes <-IDE automatically mounts this
    <path>/src
    2. Open Tools > Options > Building > External Compilation and select this Target:
    <path>/myWebApp: /WEB-INF/classes
    (By default, this setting is project wide, if you click the >> column, you
    can set it at the user or default level.)
    3. Whenever you create a Java file under /WEB-INF/classes, the IDE automatically
    adds a servlet entry and a mapping in the web.xml. Because you are putting
    your source elsewhere, you will have to enter these entries manually, or do
    the following.
    1. Right-click the web.xml node, and choose Properties.
    2. In the Deployment panel of the web.xml properties window,
    click the ellipses (...) in the Servlets value field to display
    the Servlets Property editor.
    In Servlets Property editor, click Add to display the Add Servlet dialog box.
    In the Add Servlet dialog box, type, or browse for, the servlet class name.
    Type in the name by which you want to identify the servlet.
    3. Click the Edit button for Mappings and add the mapping for the servlet.
    4. Click OK to close the Add Servlet dialog box, then click OK to close
    the Servlets property editor.
    Note: If you don't add the web.xml entries, you might get an error like the
    following:
    "The requested object does not exist on this server.
    The link you followed is either outdated, inaccurate,
    or the server has been instructed not to let you have it.
    Please inform the site administrator of the referring page."
    Q: Why do I get invalid package name when I try to add a package to my
    web module.
    You have two options for creating packages in a web module.
    1. Create a package in a subdirectory of WEB-INF/classes.
    2. Create a package in a directory that is not in the WEB-INF tree and
    put the compiled class in the WEB-INF tree. For example, if you have the
    following directory structure, set the compilation target to WEB-INF/classes.
    myWebMod
    + src
    ++ pkg1
    + WEB-INF
    ++ classes
    +++ pkg1
    ++ lib
    In either case, the WEB-INF/classes directory must be mounted. The IDE
    does this automatically when you create a web module or turn a directory
    into a web module.
    To set the compilation target, choose Tools > Options > Building >
    External Compilation and select the target. In this example, you would
    select:
    <path>/myWebMod: /WEB-INF/classes
    Do not use a directory structure like this:
    myWebMod
    + WEB-INF
    ++ src << wrong
    ++ classes
    You can alternatively keep your source code in the appropriate package
    directory under WEB-INF/classes.
    Editing JSP Files
    Q: JSP code completion does not work now that I use the Jakarta recommended
    directory structure and use Ant to build and deploy my web applications? Can
    I fix this?
    To make code completion work, you must mount the following libraries and
    directories in the Filesystems tab of the Explorer window. Mounting a parent
    directory does not work.
    * <working-directory>/src
    * <working-directory>/build
    * Every .jar file that is copied by the build script to
              <working-directory>/build/WEB-INF/lib. (The IDE automatically mounts
                   all the jar files in WEB-INF/lib when you mount working-directory/build.)
    * Any other libraries that are used by the web application, such as
              libraries that have been deployed to the server.
    Deploying a Web Application
    Q: Can I change the URL that is used to execute a JSP page? For example,
    instead of http://localhost/welcome.jsp, can I have the URL be
    http://localhost/shopping/welcome.jsp?
    A: Yes, right-click on the WEB-INF and choose Properties from the contextual
    menu. In the Properties window, type /<name>. For example, type
    /shopping
    Note that youu can use servlet mappings in the web.xml file to control the
    mappings of URLs to servlets.
    Q: Is there a way to copy the compiled code to the server for testing
    without having to create a WAR file?
    A: Yes, this is the default action when you right-click the WEB-INF
    node and choose Deploy from the contextual menu.
    With Internal and External Tomcat installations, the deploy action causes
    the IDE to change the server's configuration file to add a context entry,
    which points to the document root of your working version of the web
    application. For example
    /myApp -> C:\My Working Directory\myApp
    When you deploy to the Sun ONE application server using the IDE's Deploy
    action, the IDE copies the web application's directory structure to
    the server's <instance>/applications/j2ee-modules directory.
    Q: How do I create a WAR file and deploy the WAR file onto different servers.
    A: To create a WAR file, right click the WEB-INF node and choose Export WAR
    file. See the online help for details about adding and filtering out
    components.
    Look at the server's documentation to find out how to deploy the WAR file
    to the server. Here is an example of deploying a WAR file to the Sun ONE
    Application Server 7:
    asadmin deploy user myusername password mypassword \
    -host localhost port 4848 type web contextroot /myApp instance server1 \
    c:\apps\myapp.war
    Note that when you deploy to a server that is registered with the IDE,
    you do not need to create a WAR file. Instead, you can right-click on the
    WEB-INF node and choose Deploy.
    Compiling a Web Application
    Q: Why do I get compiler errors when I compile from the IDE even though
    I don't get errors when I compile from the command line?
    As the IDE's classpath is derived from the mounted filesystems, the problem
    is most likely caused by not mounting the necessary filesystems. For the
    following web app, you must mount in the Explorer AWebApp, WEB-INF/classes
    (this directory is mounted automatically when you create a web app or
    turn a directory into a web app), and every JAR file in the WEB-INF/lib
    directory (which is also done automatically). Note that all classes and
    JAR files that the application needs must be in AWebApp/WEB-INF or
    AWebApp/lib or the server's location for shared libraries and classes.
    Otherwise, the module may compile but it won't run in the server.
    AllMyWebApps
    + AWebApp
    ++ WEB-INF
    +++ classes
    +++ lib
    ++++ a.jar
    ++++ b.jar
    Q: Why do I get a "cannot resolve symbol" compiler error message for my JSP.
    A: Check the import statements in your JSP file. The import statement must
    specify the fully qualified class name (package name plus class), and the
    class must be in a namespace. The namespace restriction is because the Javac
    bytecode compiler in J2SE 1.4.0 is more strict than in previous
    versions in enforcing compliance with the Java Language Specification,
    and thus rejects import statements that import a type from an unnamed namespace.
    Valid import statement:
    <%@page import="org.alpha.beta.MyBean" %>
    Also, make sure your compiled classes are in a subfolder of
    <web-module>/WEB-INF/classes, such as, for the above bean,
    <web-module>/WEB-INF/classes/org/alpha/beta/MyBean.class.
    Note that you will also get this error if you have created a link under
    WEB-INF/classes to a package in another directory. Your package must
    physically exist in the WEB-INF/classes directory.          
    Q: Why do I get " '.' expected" when my JSP is compiled.
    The Javac bytecode compiler in J2SE 1.4.0 is more strict than in previous
    versions in enforcing compliance with the Java Language Specification, and
    thus rejects import statements that import a type from an unnamed namespace.
    For example, if you have an import statement like the following, the compiler
    expects the imported class to be in a package. Therefore, the compiler
    assumes that MyBean is a package and expects the package name to be followed
    by a period (.) and either a subpackage or a class. To resolve the problem,
    put the bean in a package.
    INVALID IMPORT STATEMENT:
    <%@page import="MyBean" %>
    VALID IMPORT STATEMENT
    <%@page import="MyPackage.MyBean" %>
    Q: Why do I get a package does not exist error message when the package exists?
    A: The problem might be that you have not mounted the web module at the
    correct point. You must mount the directory that is directly above the WEB-INF
    directory. For example, if you have the following directory structure
    you must mount the webApp1 filesystem. When you specifically mount
    webApp1, the IDE recognizes the filesystem as a web module. The IDE
    automatically mounts WEB-INF/classes, so that it is in the IDE's classpath,
    and provides the execute and deploy actions when you right-click on the
    WEB-INF node:
    allMyWebApps
    + webApp1
    ++ WEB-INF
    +++ Classes
    ++++ myPkg
    You can also get this error message when you do not put your Classes directory
    under WEB-INF. For example, if you put the Classes directory in web-info, you
    will get this error message.
    You will get this error if you have created a link under WEB-INF/classes
    to a package in another directory. Your package must physically exist in
    the WEB-INF/classes directory.                    
    Running Web Applications
    Q: Why do I get the 404 error message "The requested resource is not available"?
    Why do I get the error message "The requested object does not exist on
    this server"?
    A: If you get either of these errors on a servlet, check the servlet's entry
    in the web.xml. The entry should be similar to the following:
    <servlet>
    <servlet-name>myServlet</servlet-name>
    <servlet-class>org.alpha.beta.MyServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>myServlet</servlet-name>
    <url-pattern>/MyServlet</url-pattern>
    </servlet-mapping>
    The name can be any name as long as it is the same in both mappings.
    The class must be the fully qualified class name. The pattern
    must be a pattern that matches the URI that invokes the servlet. In
    this case, the pattern matches the URI http://localhost:8081/MyServlet.
    Q: Why do I get a Generated Servlet error "Class not found."
    A: This error can occur if the class is not in a package. To resolve the
    problem, put the class in a package.
    If the class is in a package and you still get this message,
    check the import statements in your JSP file. The import statement must
    specify the fully qualified class name (package name plus class).
    For example:
    <%@page "org.alpha.beta.CustomerBean" %>
    Q: Why do I get the error message "Unable to load class" when my JSP calls
    a class from a library?
    This message usually appears because the library's JAR file is not in the
    WEB-INF/lib directory. The server expects all of the web app's JAR files
    to either be in the WEB-INF/lib directory or in the server's
    shared library directory.
    For more information, search for the "File Location in a Web Module" topic
    in the online help.
    Q: Why do I get an error message during JSP compilation that a tld file is not
    found when the file is there?
    A: The problem might be that you have not put the tld file in the correct
    place. It should go in the WEB-INF directory.
    This problem also happens if have not mounted the web module at the
    correct point.
    You must mount the directory that is directly above the WEB-INF directory. For
    example, if you have the following directory structure you must mount the
    myWebApp1 filesystem. When you specifically mount webApp1, the IDE recognizes
    the filesystem as a web module. The IDE automatically mounts WEB-INF/classes,
    which in turn adds the path to the IDE's classpath and provides the execute
    and deploy actions when you right-click on the WEB-INF node:
    allMyWebApps
    + webApp1
    ++ WEB-INF
    +++ Classes
    ++++ myPkg
    Another cause of the problem could be that the uri in your taglib statement
    is incorrect. For example, this statement is wrong:
                        <%@ taglib uri="struts-html.tld" prefix="html" %> <- Incorrect
    Instead, it should be:
                        <%@ taglib uri="WEB-INF/struts-html.tld" prefix="html" %> <- Correct
    Q: Why do I get a java.lang.ClassNotFoundException when I run my JSP file?
    Everything compiles successfully and the source editor does JSP code completion
    for the class. However, when I execute, the runtime system can't find the new
    classes.
    A: There are several causes of this error. Here are some things to check.
    1. If the class is in a library, make sure the JAR file is in the
    WEB-INF/lib directory or the server's directory for shared libraries.
    Otherwise, make sure the class is in a package under the WEB-INF/Classes
    directory.
    When compiling, the IDE builds the classpath from the mounted filesystems.
    However, when you use the deploy action, the IDE only deploys the classes,
    libraries, and files that are stored in the mounted web module.
    2. Make sure all usebean statements use a fully qualified name for
    the class name.
    WRONG:
    <jsp:useBean id="myBean" class="MyBean" scope="request" />
    CORRECT:
    <jsp:useBean id="myBean" class="org.alpha.beta.MyBean" scope="request" />
    Q. Why am I getting a 500 Internal Server Error? My application compiled but
    when I try to run it, I get an Internal Server Error.
    A: There are several reasons for internal server errors. The "root cause" or
    the "Exception" information can help to narrow in on the problem. Here are
    some common causes:
    a) One common reason is that the compiled classes are not in the right directory
    or a required library (JAR file) is not in the WEB-INF/lib directory.
    When you compile, the IDE uses the classpath to find the resources. However,
    when you deploy an application, the application must strictly follow the
    web module directory structure:
    <document root directory>
    + JSP, HTML and other public files
    + WEB-INF
    ++ web.xml
    ++ <tld files>
    ++ classes
    +++ <pkg 1>
    +++ <pkg 2>
    ++ lib
    +++ <.jar>
    For more information, search for the "File Location in a Web Module" topic
    in the online help.
    b) If you are connecting to a database, make sure the driver is put in the
    server's shared library directory or common library directory.
    c) An error occurs when the server compiles the JSP into a servlet. For example,
    the import or usebean statement is not using the fully qualified class
    name for the bean. The following statements show an incorrect and a correct
    import statement.
    import="MyBean" << wrong
    import="com.myCompany.MyBean" << correct
    In this case, the "Exception" or "Root Cause" might be "Class <bean name> not
    found in import."
    Note that a bean must always be in a package. A bean cannot be put into the
    WEB-INF/classes directory. Instead, it must be in a WEB-INF/classes
    subdirectory.
    Accessing Databases from Web Applications
    Q: I put my database driver in WEB-INF/lib but I still can't access the
    database. What do I do?
    A: If your application performs queries or run statements through JDBC, then
    putting the driver in WEB-INF is sufficient. However, if you are connecting to
    the database through the server, you need to put the driver in the
    server's shared library directory or the server's common library directory.
    You must also set up a connection pool in the server.xml file. See the
    documentation for your server on the specifics, as the details vary for
    each server.

Maybe you are looking for