MINUTES:SECONDS to decimal time, (MINUTES.SECONDS)

I want to be able to convert "colon time" (28:45) minutes:seconds to "decimal time" (28.75).
I have resorted to a work-around: put minutes in one column, seconds in a second column, convert the minutes to seconds, add the two seconds columns, divide by 60 entered in another column. It works, but for what I am doing it takes several columns of formulas.
I only have 08 at home. I am at an APPLE STORE where I can do this easily using iWork 09.
Is there an easier solution for this using 08?
Thank you,
new2SS
(New To Spread Sheets)

Jerrold Green1, Jerry:
Most excellent posts by you, thank you. Your formula was quite clear and it worked. I formatted an entry column as TEXT, and the formula column (to the right) as NUMBER (to two decimal-places, which is what I need).
I found the formulas: LEFT, LEN, and RIGHT under TEXT, as you said it would be. I have yet to figure out the(math—logic) of the formula!
I could not find this formula in APPLE's NUMBERS08 User Guide. Nor could I find a direction for converting MM:SS to decimal minute(s) in the 09 User Guide.
I had printed the 08 guide right after I had bought the software and had downloaded the 09 guide to study as a preview to buying it.
I do have an "issue" with the software of NUMBERS 08.
Using 08, when formatting a column as Date and Time, one has three options: Date and Time, Time only, or Date only.
But when I formated the column for Time only, a date might appear when I clicked on a cell in that column.
To me, it is like being asked if I want cheese on my Big Mac, I say NO, and I receive the Big Mac with cheese! Why ask, sif you don't listen?
So, if anyone knows what the reason for this (the NUMBERS 08—not cheese on my BIg Mac!), please tell.
Thanks.
new2SS

Similar Messages

  • How do I convert time from hours and minutes to decimal time

    I am making a spread sheet a work for payroll. I need to make a formula that converts the time from hours and minutes to decimal time. Please help

    Hi Taryn,
    I can't see much from the photo, but I assume your formula is similar to the one I've used below:
    The same formula is used in F4 and F6, and both return the same result (shown in F4).
    F4 was left on "automatic" cell format, and the column widened to accomodate the repeating decimal to the point where Numbers would begin displaying zeros.
    F6 was formatted as shown in the Cell Inspector to show only two decimal places.
    Neither of these is an "exact" decimal, as it is not possible to use a decimal fraction to "exactly" represent 1/6 (or 10/60).
    The likely reasons for yours showing a whole number of hours is a difference between your formula and the one shown in the example here, or a difference in the number of decimal places set in the cell's format.
    Regards,
    Barry
    PS: To take a screen shot:
    Place the mouse pointer at the top left corner of the area you want to nclude in the shot.
    Press shift-command-4.
    Use the mouse to drag a selection rectangle contining the part of the screen you want to include.
    Release the mouse button. (You'll hear the sound of a camera shutter 'snapping' the picture.)
    The screen shot will be saved to your desktop with the name 'screen shot' followed by the date and time.
    The image may be posted to the discussion using the same steps you used to post the photo above.
    B.

  • Converting comp time into decimal time?

    I'm needing to caption some web movies, but Flash's DFXP format likes decimal time for in/out points. Any clever math to convert the current comp timebase (23.976, 29.97, frames, etc) to a base10 decimal?

    Do you want to convert frame 23.976 to timecode?

  • Painful error trying to convert to/from decimal minutes

    So I have a timecard application and I am trying to design a popup window that allows a user to apply for additional pay.
    The user supplies an hour time, minutes time and AM/PM (all from drop-downs). Then they supply a length of time in hours and minutes (two different fields) and a reason (also from drop-down).
    I am using collections and that part appears to be working fine with one glitch: it only works if I put in a number of minutes divisible by 3. I anticipate that this is because I have to record the decimal time in another field, and for some reason the conversion I am using is dying. Oracle throws up an error "ORA-06502: PL/SQL: numeric or value error: character to number conversion error" if I try to use say 22 as the number of minutes.
    In the background, I am trying to store these as three fields: the JOB_START_TIME (date), the JOB_END_TIME (date) and TASK_HRS (number 5,2).
    Can someone help me look at my database write query and help me correct this?
    declare
      v_tc       NUMBER   := :P12_TC_ID;
      tc_dy      VARCHAR2(12);
      tc_st      DATE;
      tc_ed      DATE;
      tc_shft    VARCHAR2(3);
      beg_dt     DATE;
      ed_dt      DATE;
      tsk_hrs    NUMBER   := 0;
      tsk_min    NUMBER   := 0;
      tsk_ttl    NUMBER   := 0;
      v_loc      NUMBER;
      v_pycd     VARCHAR2(8);
      v_jbcd     VARCHAR2(8);
    begin
      select to_char(DATE_INDEX,'MM/DD/YYYY'), TC_START_TIME, TC_END_TIME, SHIFT
        into tc_dy, tc_st, tc_ed, tc_shft
        from TC where TC_ID = v_tc;
      for cu in (select TO_NUMBER(c001) u_id, c002 st_hrs, c003 st_min, c004 st_am,
                 c005 ed_hrs, c006 ed_min, c007 ed_am,
                 TO_NUMBER(c009) ttl_hrs, TO_NUMBER(c010) ttl_min,
                 TO_NUMBER(c011) rsn_id
               FROM APEX_COLLECTIONS
               WHERE COLLECTION_NAME = 'SUPP_PAY_REQ') loop
        IF cu.u_id = 0 and cu.rsn_id > 0 THEN     -- new row
          select to_date(tc_dy||' '||cu.st_hrs||':'||cu.st_min||' '||cu.st_am,'MM/DD/YYYY HH:MI AM')
            into beg_dt from dual;
          IF beg_dt < tc_st THEN
            beg_dt   := beg_dt + 1;
          END IF;
          tsk_hrs    := cu.ttl_hrs;
          tsk_min    := ROUND(cu.ttl_min*10/6,2);
          tsk_ttl    := to_number(tsk_hrs||'.'||tsk_min);     <---  This is the problem line
          ed_dt      := beg_dt + tsk_ttl/24;
          select LOCATION_ID, PAY_CODE, OLD_CODE into v_loc, v_pycd, v_jbcd
            from OTHR_RATES where OTHR_RATE_ID = cu.rsn_id;
          INSERT INTO TC_OTHR_JOBS (OTHR_HRLY_JOB_ID, TC_ID,
               JOB_START_TIME, JOB_END_TIME, TASK_HRS, HRLY_RATE_ID, PAY_AMT,
               LOCATION_ID, PAY_CODE, OLD_CODE, JOB_COMMENTS, JOB_ENTRY_FLAG)
           VALUES (SEQ_TC_JOBS.nextval, v_tc,
               beg_dt, ed_dt, tsk_ttl, cu.rsn_id, 0,
               v_loc, v_pycd, v_jbcd, 'Submitted by Employee', 3);
        ------ existing row
        ELSIF cu.u_id > 0 THEN
          select to_date(tc_dy||' '||cu.st_hrs||':'||cu.st_min||' '||cu.st_am,'MM/DD/YYYY HH:MI AM')
            into beg_dt from dual;
          IF beg_dt < tc_st THEN
            beg_dt   := beg_dt + 1;
          END IF;
          tsk_hrs    := cu.ttl_hrs;
          tsk_min    := ROUND(cu.ttl_min*10/6,2);
          tsk_ttl    := to_number(tsk_hrs||'.'||tsk_min);     <---  This is the problem line
          ed_dt      := beg_dt + tsk_ttl/24;
          select LOCATION_ID, PAY_CODE, OLD_CODE into v_loc, v_pycd, v_jbcd
            from OTHR_RATES where OTHR_RATE_ID = cu.rsn_id;
          UPDATE TC_OTHR_JOBS SET JOB_START_TIME = beg_dt, JOB_END_TIME = ed_dt,
               TASK_HRS = tsk_ttl, HRLY_RATE_ID = cu.rsn_id,
               LOCATION_ID = v_loc, PAY_CODE = v_pycd, OLD_CODE = v_jbcd,
               JOB_COMMENTS = 'Submitted by Employee',
               JOB_ENTRY_FLAG = 3, PAY_AMT = 0
           WHERE OTHR_HRLY_JOB_ID = cu.u_id;
          UPDATE TC set PROCESS_FLAG = 30 where TC_ID = v_tc;
        END IF;
      end loop;
    end;

    Okay, got it. It turns out that you have to go one-way on your conversions or the decimal minutes get you hung up. Here's the corrected version that works:
    declare
      v_tc       NUMBER   := :P12_TC_ID;
      tc_dy      VARCHAR2(12);
      tc_st      DATE;
      tc_ed      DATE;
      tc_shft    VARCHAR2(3);
      beg_dt     DATE;
      ed_dt      DATE;
      tsk_hrs    NUMBER   := 0;
      tsk_min    NUMBER   := 0;
      tsk_ttl    NUMBER   := 0;
      min_tst    NUMBER   := 0;
      v_loc      NUMBER;
      v_pycd     VARCHAR2(8);
      v_jbcd     VARCHAR2(8);
    begin
      select to_char(DATE_INDEX,'MM/DD/YYYY'), TC_START_TIME, TC_END_TIME, SHIFT
        into tc_dy, tc_st, tc_ed, tc_shft
        from TC where TC_ID = v_tc;
      for cu in (select TO_NUMBER(c001) u_id, c002 st_hrs, c003 st_min, c004 st_am,
                 c005 ed_hrs, c006 ed_min, c007 ed_am,
                 TO_NUMBER(c009) ttl_hrs, TO_NUMBER(c010) ttl_min,
                 TO_NUMBER(c011) rsn_id
               FROM APEX_COLLECTIONS
               WHERE COLLECTION_NAME = 'SUPP_PAY_REQ') loop
        IF cu.u_id = 0 and cu.rsn_id > 0 THEN     -- new row
          select to_date(tc_dy||' '||cu.st_hrs||':'||cu.st_min||' '||cu.st_am,'MM/DD/YYYY HH:MI AM')
            into beg_dt from dual;
          IF beg_dt < tc_st THEN
            beg_dt   := beg_dt + 1;
          END IF;
          tsk_hrs    := cu.ttl_hrs;
          min_tst    := (tsk_hrs*60 + to_number(cu.ttl_min))/60;
          ed_dt      := beg_dt + min_tst/24;
          select LOCATION_ID, PAY_CODE, OLD_CODE into v_loc, v_pycd, v_jbcd
            from OTHR_RATES where OTHR_RATE_ID = cu.rsn_id;
          INSERT INTO TC_OTHR_JOBS (OTHR_HRLY_JOB_ID, TC_ID,
               JOB_START_TIME, JOB_END_TIME, TASK_HRS, HRLY_RATE_ID, PAY_AMT,
               LOCATION_ID, PAY_CODE, OLD_CODE, JOB_COMMENTS, JOB_ENTRY_FLAG)
           VALUES (SEQ_TC_JOBS.nextval, v_tc,
               beg_dt, ed_dt, min_tst, cu.rsn_id, 0,
               v_loc, v_pycd, v_jbcd, 'Submitted by Employee', 3);
          UPDATE TC set PROCESS_FLAG = 30 where TC_ID = v_tc;
        ------ existing row
        ELSIF cu.u_id > 0 THEN
          select to_date(tc_dy||' '||cu.st_hrs||':'||cu.st_min||' '||cu.st_am,'MM/DD/YYYY HH:MI AM')
            into beg_dt from dual;
          IF beg_dt < tc_st THEN
            beg_dt   := beg_dt + 1;
          END IF;
          tsk_hrs    := cu.ttl_hrs;
          min_tst    := (tsk_hrs*60 + to_number(cu.ttl_min))/60;
          ed_dt      := beg_dt + min_tst/24;
          select LOCATION_ID, PAY_CODE, OLD_CODE into v_loc, v_pycd, v_jbcd
            from OTHR_RATES where OTHR_RATE_ID = cu.rsn_id;
          UPDATE TC_OTHR_JOBS SET JOB_START_TIME = beg_dt, JOB_END_TIME = ed_dt,
               TASK_HRS = min_tst, HRLY_RATE_ID = cu.rsn_id,
               LOCATION_ID = v_loc, PAY_CODE = v_pycd, OLD_CODE = v_jbcd,
               JOB_COMMENTS = 'Submitted by Employee',
               JOB_ENTRY_FLAG = 3, PAY_AMT = 0
           WHERE OTHR_HRLY_JOB_ID = cu.u_id;
          UPDATE TC set PROCESS_FLAG = 30 where TC_ID = v_tc;
        END IF;
      end loop;
    end;

  • Numbers: Cell time calculation not adding the correct time

    Greetings,
    First, thank you in advance for your assistance. I have searched the board and where there are many great formulas, I have not found the answer to this challenge.
    Cell A1 has a time for example 5:45 PM
    Cell C1 has an amount of minutes for example 40
    Cell B1 should be adding 40 minutes to 5:45 PM for result of 6:25 PM
    Cell A2 picks up the value of Cell B1 as its starting value so that it can calculate the same formula for the next line.
    This document is a schedule so that it adjusts the times based on the amount of minutes a segment is. I can post an excel file if that will assist, the excel formula for this in the B cell is A1+TIME(0,C1,0)
    Again thank you in advance for any assistance in solving this challenge.
    John

    =TIME(HOUR(A),MINUTE(A)+C,0)
    • Every time I may use them, I uses the "short references", those with no row num embedded.
    • The TIME function requires three parameters,
    a number of hours,
    a number of minutes
    a number of seconds
    but the formula parser is fair enough to understand that, when the given number of minutes is greater than 59, it means some hours + some minutes.
    And of course, mutatis mutandis, it's the same for the number of seconds.
    This is why, when I want to display with the current format hh:mm:ss a decimal time value as those resulting of calculations, I don't spent time to isolate the number of hours, the number of minutes, the number of seconds. I just calculate the total number of seconds.
    if cell B2 contains 0.1234490740741
    I type =TIME(0,0,B24*6060) in cell C2
    Then, applying the yy:mm:ss format I get 02:57:46
    inserting =TIMEVALUE(C) in D2, I get 0.1234490740741
    I know that this behavior is not described in the Help.
    I don't feel that it's a sin.
    It's for passing this kind of details that the forum exists.
    I feel perfectly odd questions whose response is available in the Help but it's always a pleasure to help users to discover features which are only available "between the lines".
    Yvan KOENIG (from FRANCE vendredi 4 juillet 2008 14:48:21)

  • Can't select Duration or Date and Time in Chart

    Thanks for reviewing this and considering helping me out. I am having trouble performing a simple task that I've been able to do in Excel. I want my Y axis in a chart to show time or duration. So that if an average time in January was 3:10 (3 minutes and 10 seconds) and 2:58 for Febuary. Sounds easy but Keynote (and in Numbers) I'm unable to select "Duration" in the format for the Y axis! It's simply grayed out. The fact that it is grayed out not gone completely tells me there must be something I'm doing wrong that is causing it to "turn off" If Apple didn't support it why show it there in the first place?
    Please see my inspector for what I'm talking about:
    I did read the user manual and it explains what the fields are for but not why it is grayed out. I even went to the Apple Store and the guys there couldn't figure it out, I don't blame them, this isn't something they do every day. I use Time Charts all the time in Excel and really really want to make the move to Keynote. Thanks again for reading this! BTW this is Keynote '09
    DP

    Figured it out, had to convert the time to total seconds then divided by 60 to get a decimal time. Then I added a ":00" suffix to the lables on the Y axis. Close enough.

  • Select true date from week/day/time columns

    the scenario
    i have a table with 4 columns
    weekno
    dayno
    start
    finish
    w d st ft
    1     1     0     0
    1     2     480     990
    1     3     480     990
    1     4     480     990
    1     5     480     990
    1     6     480     930
    1     7     480     720
    2     1     0     0
    2     2     480     990
    2     3     480     990
    2     4     480     990
    2     5     480     990
    2     6     480     930
    2     7     480     720
    3     1     0     0
    3     2     480     990
    3     3     480     990
    3     4     480     990
    3     5     480     990
    3     6     480     930
    3     7     480     720
    etc, etc for every day in the year.
    the 3rd and 4th columns are minutes but in decimal time.
    the problem
    what i require is a query to return 2 date columns a start datetime and an end datetime, but from today forward for 365 days (every row) in 'DD-MM-RR HH24-MI' format
    eg
    '10-04-08 08:00' ''10-04-08 16:30'
    '11-04-08 08:00' ''11-04-08 12:00'
    '12-04-08 08:00' ''12-04-08 12:00'
    followed by 364 other days a year from today.
    hope this makes sense.
    any help appreciated
    cheers

    by using
    to_char(TRUNC(sysdate, 'I') + 7 *(wages2_wk_no -1) + wages2_dayno-2 + wages2_n_st / 60 / 24, 'DD-MM-YYYY HH24:MI') start_date,
    to_char(TRUNC(sysdate, 'I') + 7 *(wages2_wk_no -1) + wages2_dayno-2 + wages2_n_end / 60 / 24, 'DD-MM-YYYY HH24:MI') end_date
    i achieved the following. which is correct from today onward (in bold), but anything before today should should follow through to 2009 if that makes sense...
    1     1     SUN     30-12-2007 00:00     30-12-2007 00:00
    1     2     MON     31-12-2007 08:00     31-12-2007 16:30
    1     3     TUE     01-01-2008 08:00     01-01-2008 16:30
    1     4     WED     02-01-2008 08:00     02-01-2008 16:30
    1     5     THU     03-01-2008 08:00     03-01-2008 16:30
    1     6     FRI     04-01-2008 08:00     04-01-2008 15:30
    1     7     SAT     05-01-2008 08:00     05-01-2008 12:00
    2     1     SUN     06-01-2008 00:00     06-01-2008 00:00
    2     2     MON     07-01-2008 08:00     07-01-2008 16:30
    2     3     TUE     08-01-2008 08:00     08-01-2008 16:30
    2     4     WED     09-01-2008 08:00     09-01-2008 16:30
    2     5     THU     10-01-2008 08:00     10-01-2008 16:30
    2     6     FRI     11-01-2008 08:00     11-01-2008 15:30
    2     7     SAT     12-01-2008 08:00     12-01-2008 12:00
    3     1     SUN     13-01-2008 00:00     13-01-2008 00:00
    3     2     MON     14-01-2008 08:00     14-01-2008 16:30
    3     3     TUE     15-01-2008 08:00     15-01-2008 16:30
    3     4     WED     16-01-2008 08:00     16-01-2008 16:30
    3     5     THU     17-01-2008 08:00     17-01-2008 16:30
    3     6     FRI     18-01-2008 08:00     18-01-2008 15:30
    3     7     SAT     19-01-2008 08:00     19-01-2008 12:00
    4     1     SUN     20-01-2008 00:00     20-01-2008 00:00
    4     2     MON     21-01-2008 08:00     21-01-2008 16:30
    4     3     TUE     22-01-2008 08:00     22-01-2008 16:30
    4     4     WED     23-01-2008 08:00     23-01-2008 16:30
    4     5     THU     24-01-2008 08:00     24-01-2008 16:30
    4     6     FRI     25-01-2008 08:00     25-01-2008 15:30
    4     7     SAT     26-01-2008 08:00     26-01-2008 12:00
    5     1     SUN     27-01-2008 00:00     27-01-2008 00:00
    5     2     MON     28-01-2008 08:00     28-01-2008 16:30
    5     3     TUE     29-01-2008 08:00     29-01-2008 16:30
    5     4     WED     30-01-2008 08:00     30-01-2008 16:30
    5     5     THU     31-01-2008 08:00     31-01-2008 16:30
    5     6     FRI     01-02-2008 08:00     01-02-2008 15:30
    5     7     SAT     02-02-2008 08:00     02-02-2008 12:00
    6     1     SUN     03-02-2008 00:00     03-02-2008 00:00
    6     2     MON     04-02-2008 08:00     04-02-2008 16:30
    6     3     TUE     05-02-2008 08:00     05-02-2008 16:30
    6     4     WED     06-02-2008 08:00     06-02-2008 16:30
    6     5     THU     07-02-2008 08:00     07-02-2008 16:30
    6     6     FRI     08-02-2008 08:00     08-02-2008 15:30
    6     7     SAT     09-02-2008 08:00     09-02-2008 12:00
    7     1     SUN     10-02-2008 00:00     10-02-2008 00:00
    7     2     MON     11-02-2008 08:00     11-02-2008 16:30
    7     3     TUE     12-02-2008 08:00     12-02-2008 16:30
    7     4     WED     13-02-2008 08:00     13-02-2008 16:30
    7     5     THU     14-02-2008 08:00     14-02-2008 16:30
    7     6     FRI     15-02-2008 08:00     15-02-2008 15:30
    7     7     SAT     16-02-2008 08:00     16-02-2008 12:00
    8     1     SUN     17-02-2008 00:00     17-02-2008 00:00
    8     2     MON     18-02-2008 08:00     18-02-2008 16:30
    8     3     TUE     19-02-2008 08:00     19-02-2008 16:30
    8     4     WED     20-02-2008 08:00     20-02-2008 16:30
    8     5     THU     21-02-2008 08:00     21-02-2008 16:30
    8     6     FRI     22-02-2008 08:00     22-02-2008 15:30
    8     7     SAT     23-02-2008 08:00     23-02-2008 12:00
    9     1     SUN     24-02-2008 00:00     24-02-2008 00:00
    9     2     MON     25-02-2008 08:00     25-02-2008 16:30
    9     3     TUE     26-02-2008 08:00     26-02-2008 16:30
    9     4     WED     27-02-2008 08:00     27-02-2008 16:30
    9     5     THU     28-02-2008 08:00     28-02-2008 16:30
    9     6     FRI     29-02-2008 08:00     29-02-2008 15:30
    9     7     SAT     01-03-2008 08:00     01-03-2008 12:00
    10     1     SUN     02-03-2008 00:00     02-03-2008 00:00
    10     2     MON     03-03-2008 08:00     03-03-2008 16:30
    10     3     TUE     04-03-2008 08:00     04-03-2008 16:30
    10     4     WED     05-03-2008 08:00     05-03-2008 16:30
    10     5     THU     06-03-2008 08:00     06-03-2008 16:30
    10     6     FRI     07-03-2008 08:00     07-03-2008 15:30
    10     7     SAT     08-03-2008 08:00     08-03-2008 12:00
    11     1     SUN     09-03-2008 00:00     09-03-2008 00:00
    11     2     MON     10-03-2008 08:00     10-03-2008 16:30
    11     3     TUE     11-03-2008 08:00     11-03-2008 16:30
    11     4     WED     12-03-2008 08:00     12-03-2008 16:30
    11     5     THU     13-03-2008 08:00     13-03-2008 16:30
    11     6     FRI     14-03-2008 08:00     14-03-2008 15:30
    11     7     SAT     15-03-2008 08:00     15-03-2008 12:00
    12     1     SUN     16-03-2008 00:00     16-03-2008 00:00
    12     2     MON     17-03-2008 08:00     17-03-2008 16:30
    12     3     TUE     18-03-2008 08:00     18-03-2008 16:30
    12     4     WED     19-03-2008 08:00     19-03-2008 16:30
    12     5     THU     20-03-2008 08:00     20-03-2008 16:30
    12     6     FRI     21-03-2008 08:00     21-03-2008 15:30
    12     7     SAT     22-03-2008 08:00     22-03-2008 12:00
    13     1     SUN     23-03-2008 00:00     23-03-2008 00:00
    13     2     MON     24-03-2008 08:00     24-03-2008 16:30
    13     3     TUE     25-03-2008 08:00     25-03-2008 16:30
    13     4     WED     26-03-2008 08:00     26-03-2008 16:30
    13     5     THU     27-03-2008 08:00     27-03-2008 16:30
    13     6     FRI     28-03-2008 08:00     28-03-2008 15:30
    13     7     SAT     29-03-2008 08:00     29-03-2008 12:00
    14     1     SUN     30-03-2008 00:00     30-03-2008 00:00
    14     2     MON     31-03-2008 08:00     31-03-2008 16:30
    14     3     TUE     01-04-2008 08:00     01-04-2008 16:30
    14     4     WED     02-04-2008 08:00     02-04-2008 16:30
    14     5     THU     03-04-2008 08:00     03-04-2008 16:30
    14     6     FRI     04-04-2008 08:00     04-04-2008 15:30
    14     7     SAT     05-04-2008 08:00     05-04-2008 12:00
    15     1     SUN     06-04-2008 00:00     06-04-2008 00:00
    15     2     MON     07-04-2008 08:00     07-04-2008 16:30
    15     3     TUE     08-04-2008 08:00     08-04-2008 16:30
    15     4     WED     09-04-2008 08:00     09-04-2008 16:30
    15     5     THU     10-04-2008 08:00     10-04-2008 16:30
    15     6     FRI     11-04-2008 08:00     11-04-2008 15:30
    15     7     SAT     12-04-2008 08:00     12-04-2008 12:00
    16     1     SUN     13-04-2008 00:00     13-04-2008 00:00
    16     2     MON     14-04-2008 08:00     14-04-2008 16:30
    16     3     TUE     15-04-2008 08:00     15-04-2008 16:30
    16     4     WED     16-04-2008 08:00     16-04-2008 16:30
    16     5     THU     17-04-2008 08:00     17-04-2008 16:30
    16     6     FRI     18-04-2008 08:00     18-04-2008 15:30
    16     7     SAT     19-04-2008 08:00     19-04-2008 12:00
    17     1     SUN     20-04-2008 00:00     20-04-2008 00:00
    17     2     MON     21-04-2008 08:00     21-04-2008 16:30
    17     3     TUE     22-04-2008 08:00     22-04-2008 16:30
    17     4     WED     23-04-2008 08:00     23-04-2008 16:30
    17     5     THU     24-04-2008 08:00     24-04-2008 16:30
    17     6     FRI     25-04-2008 08:00     25-04-2008 15:30
    17     7     SAT     26-04-2008 08:00     26-04-2008 12:00
    18     1     SUN     27-04-2008 00:00     27-04-2008 00:00
    18     2     MON     28-04-2008 08:00     28-04-2008 16:30
    18     3     TUE     29-04-2008 08:00     29-04-2008 16:30
    18     4     WED     30-04-2008 08:00     30-04-2008 16:30
    18     5     THU     01-05-2008 08:00     01-05-2008 16:30
    18     6     FRI     02-05-2008 08:00     02-05-2008 15:30
    18     7     SAT     03-05-2008 08:00     03-05-2008 12:00
    19     1     SUN     04-05-2008 00:00     04-05-2008 00:00
    19     2     MON     05-05-2008 08:00     05-05-2008 16:30
    19     3     TUE     06-05-2008 08:00     06-05-2008 16:30
    19     4     WED     07-05-2008 08:00     07-05-2008 16:30
    19     5     THU     08-05-2008 08:00     08-05-2008 16:30
    19     6     FRI     09-05-2008 08:00     09-05-2008 15:30
    19     7     SAT     10-05-2008 08:00     10-05-2008 12:00
    20     1     SUN     11-05-2008 00:00     11-05-2008 00:00
    20     2     MON     12-05-2008 08:00     12-05-2008 16:30
    20     3     TUE     13-05-2008 08:00     13-05-2008 16:30
    20     4     WED     14-05-2008 08:00     14-05-2008 16:30
    20     5     THU     15-05-2008 08:00     15-05-2008 16:30
    20     6     FRI     16-05-2008 08:00     16-05-2008 15:30
    20     7     SAT     17-05-2008 08:00     17-05-2008 12:00
    21     1     SUN     18-05-2008 00:00     18-05-2008 00:00
    21     2     MON     19-05-2008 08:00     19-05-2008 16:30
    21     3     TUE     20-05-2008 08:00     20-05-2008 16:30
    21     4     WED     21-05-2008 08:00     21-05-2008 16:30
    21     5     THU     22-05-2008 08:00     22-05-2008 16:30
    21     6     FRI     23-05-2008 08:00     23-05-2008 15:30
    21     7     SAT     24-05-2008 08:00     24-05-2008 12:00
    22     1     SUN     25-05-2008 00:00     25-05-2008 00:00
    22     2     MON     26-05-2008 08:00     26-05-2008 16:30
    22     3     TUE     27-05-2008 08:00     27-05-2008 16:30
    22     4     WED     28-05-2008 08:00     28-05-2008 16:30
    22     5     THU     29-05-2008 08:00     29-05-2008 16:30
    22     6     FRI     30-05-2008 08:00     30-05-2008 15:30
    22     7     SAT     31-05-2008 08:00     31-05-2008 12:00
    23     1     SUN     01-06-2008 00:00     01-06-2008 00:00
    23     2     MON     02-06-2008 08:00     02-06-2008 16:30
    23     3     TUE     03-06-2008 08:00     03-06-2008 16:30
    23     4     WED     04-06-2008 08:00     04-06-2008 16:30
    23     5     THU     05-06-2008 08:00     05-06-2008 16:30
    23     6     FRI     06-06-2008 08:00     06-06-2008 15:30
    23     7     SAT     07-06-2008 08:00     07-06-2008 12:00
    24     1     SUN     08-06-2008 00:00     08-06-2008 00:00
    24     2     MON     09-06-2008 08:00     09-06-2008 16:30
    24     3     TUE     10-06-2008 08:00     10-06-2008 16:30
    24     4     WED     11-06-2008 08:00     11-06-2008 16:30
    24     5     THU     12-06-2008 08:00     12-06-2008 16:30
    24     6     FRI     13-06-2008 08:00     13-06-2008 15:30
    24     7     SAT     14-06-2008 08:00     14-06-2008 12:00
    25     1     SUN     15-06-2008 00:00     15-06-2008 00:00
    25     2     MON     16-06-2008 08:00     16-06-2008 16:30
    25     3     TUE     17-06-2008 08:00     17-06-2008 16:30
    25     4     WED     18-06-2008 08:00     18-06-2008 16:30
    25     5     THU     19-06-2008 08:00     19-06-2008 16:30
    25     6     FRI     20-06-2008 08:00     20-06-2008 15:30
    25     7     SAT     21-06-2008 08:00     21-06-2008 12:00
    26     1     SUN     22-06-2008 00:00     22-06-2008 00:00
    26     2     MON     23-06-2008 08:00     23-06-2008 16:30
    26     3     TUE     24-06-2008 08:00     24-06-2008 16:30
    26     4     WED     25-06-2008 08:00     25-06-2008 16:30
    26     5     THU     26-06-2008 08:00     26-06-2008 16:30
    26     6     FRI     27-06-2008 08:00     27-06-2008 15:30
    26     7     SAT     28-06-2008 08:00     28-06-2008 12:00
    27     1     SUN     29-06-2008 00:00     29-06-2008 00:00
    27     2     MON     30-06-2008 08:00     30-06-2008 16:30
    27     3     TUE     01-07-2008 08:00     01-07-2008 16:30
    27     4     WED     02-07-2008 08:00     02-07-2008 16:30
    27     5     THU     03-07-2008 08:00     03-07-2008 16:30
    27     6     FRI     04-07-2008 08:00     04-07-2008 15:30
    27     7     SAT     05-07-2008 08:00     05-07-2008 12:00
    28     1     SUN     06-07-2008 00:00     06-07-2008 00:00
    28     2     MON     07-07-2008 08:00     07-07-2008 16:30
    28     3     TUE     08-07-2008 08:00     08-07-2008 16:30
    28     4     WED     09-07-2008 08:00     09-07-2008 16:30
    28     5     THU     10-07-2008 08:00     10-07-2008 16:30
    28     6     FRI     11-07-2008 08:00     11-07-2008 15:30
    28     7     SAT     12-07-2008 08:00     12-07-2008 12:00
    29     1     SUN     13-07-2008 00:00     13-07-2008 00:00
    29     2     MON     14-07-2008 08:00     14-07-2008 16:30
    29     3     TUE     15-07-2008 08:00     15-07-2008 16:30
    29     4     WED     16-07-2008 08:00     16-07-2008 16:30
    29     5     THU     17-07-2008 08:00     17-07-2008 16:30
    29     6     FRI     18-07-2008 08:00     18-07-2008 15:30
    29     7     SAT     19-07-2008 08:00     19-07-2008 12:00
    30     1     SUN     20-07-2008 00:00     20-07-2008 00:00
    30     2     MON     21-07-2008 08:00     21-07-2008 16:30
    30     3     TUE     22-07-2008 08:00     22-07-2008 16:30
    30     4     WED     23-07-2008 08:00     23-07-2008 16:30
    30     5     THU     24-07-2008 08:00     24-07-2008 16:30
    30     6     FRI     25-07-2008 08:00     25-07-2008 15:30
    30     7     SAT     26-07-2008 08:00     26-07-2008 12:00
    31     1     SUN     27-07-2008 00:00     27-07-2008 00:00
    31     2     MON     28-07-2008 08:00     28-07-2008 16:30
    31     3     TUE     29-07-2008 08:00     29-07-2008 16:30
    31     4     WED     30-07-2008 08:00     30-07-2008 16:30
    31     5     THU     31-07-2008 08:00     31-07-2008 16:30
    31     6     FRI     01-08-2008 08:00     01-08-2008 15:30
    31     7     SAT     02-08-2008 08:00     02-08-2008 12:00
    32     1     SUN     03-08-2008 00:00     03-08-2008 00:00
    32     2     MON     04-08-2008 08:00     04-08-2008 16:30
    32     3     TUE     05-08-2008 08:00     05-08-2008 16:30
    32     4     WED     06-08-2008 08:00     06-08-2008 16:30
    32     5     THU     07-08-2008 08:00     07-08-2008 16:30
    32     6     FRI     08-08-2008 08:00     08-08-2008 15:30
    32     7     SAT     09-08-2008 08:00     09-08-2008 12:00
    33     1     SUN     10-08-2008 00:00     10-08-2008 00:00
    33     2     MON     11-08-2008 08:00     11-08-2008 16:30
    33     3     TUE     12-08-2008 08:00     12-08-2008 16:30
    33     4     WED     13-08-2008 08:00     13-08-2008 16:30
    33     5     THU     14-08-2008 08:00     14-08-2008 16:30
    33     6     FRI     15-08-2008 08:00     15-08-2008 15:30
    33     7     SAT     16-08-2008 08:00     16-08-2008 12:00
    34     1     SUN     17-08-2008 00:00     17-08-2008 00:00
    34     2     MON     18-08-2008 08:00     18-08-2008 16:30
    34     3     TUE     19-08-2008 08:00     19-08-2008 16:30
    34     4     WED     20-08-2008 08:00     20-08-2008 16:30
    34     5     THU     21-08-2008 08:00     21-08-2008 16:30
    34     6     FRI     22-08-2008 08:00     22-08-2008 15:30
    34     7     SAT     23-08-2008 08:00     23-08-2008 12:00
    35     1     SUN     24-08-2008 00:00     24-08-2008 00:00
    35     2     MON     25-08-2008 08:00     25-08-2008 16:30
    35     3     TUE     26-08-2008 08:00     26-08-2008 16:30
    35     4     WED     27-08-2008 08:00     27-08-2008 16:30
    35     5     THU     28-08-2008 08:00     28-08-2008 16:30
    35     6     FRI     29-08-2008 08:00     29-08-2008 15:30
    35     7     SAT     30-08-2008 08:00     30-08-2008 12:00
    36     1     SUN     31-08-2008 00:00     31-08-2008 00:00
    36     2     MON     01-09-2008 08:00     01-09-2008 16:30
    36     3     TUE     02-09-2008 08:00     02-09-2008 16:30
    36     4     WED     03-09-2008 08:00     03-09-2008 16:30
    36     5     THU     04-09-2008 08:00     04-09-2008 16:30
    36     6     FRI     05-09-2008 08:00     05-09-2008 15:30
    36     7     SAT     06-09-2008 08:00     06-09-2008 12:00
    37     1     SUN     07-09-2008 00:00     07-09-2008 00:00
    37     2     MON     08-09-2008 08:00     08-09-2008 16:30
    37     3     TUE     09-09-2008 08:00     09-09-2008 16:30
    37     4     WED     10-09-2008 08:00     10-09-2008 16:30
    37     5     THU     11-09-2008 08:00     11-09-2008 16:30
    37     6     FRI     12-09-2008 08:00     12-09-2008 15:30
    37     7     SAT     13-09-2008 08:00     13-09-2008 12:00
    38     1     SUN     14-09-2008 00:00     14-09-2008 00:00
    38     2     MON     15-09-2008 08:00     15-09-2008 16:30
    38     3     TUE     16-09-2008 08:00     16-09-2008 16:30
    38     4     WED     17-09-2008 08:00     17-09-2008 16:30
    38     5     THU     18-09-2008 08:00     18-09-2008 16:30
    38     6     FRI     19-09-2008 08:00     19-09-2008 15:30
    38     7     SAT     20-09-2008 08:00     20-09-2008 12:00
    39     1     SUN     21-09-2008 00:00     21-09-2008 00:00
    39     2     MON     22-09-2008 08:00     22-09-2008 16:30
    39     3     TUE     23-09-2008 08:00     23-09-2008 16:30
    39     4     WED     24-09-2008 08:00     24-09-2008 16:30
    39     5     THU     25-09-2008 08:00     25-09-2008 16:30
    39     6     FRI     26-09-2008 08:00     26-09-2008 15:30
    39     7     SAT     27-09-2008 08:00     27-09-2008 12:00
    40     1     SUN     28-09-2008 00:00     28-09-2008 00:00
    40     2     MON     29-09-2008 08:00     29-09-2008 16:30
    40     3     TUE     30-09-2008 08:00     30-09-2008 16:30
    40     4     WED     01-10-2008 08:00     01-10-2008 16:30
    40     5     THU     02-10-2008 08:00     02-10-2008 16:30
    40     6     FRI     03-10-2008 08:00     03-10-2008 15:30
    40     7     SAT     04-10-2008 08:00     04-10-2008 12:00
    41     1     SUN     05-10-2008 00:00     05-10-2008 00:00
    41     2     MON     06-10-2008 08:00     06-10-2008 16:30
    41     3     TUE     07-10-2008 08:00     07-10-2008 16:30
    41     4     WED     08-10-2008 08:00     08-10-2008 16:30
    41     5     THU     09-10-2008 08:00     09-10-2008 16:30
    41     6     FRI     10-10-2008 08:00     10-10-2008 15:30
    41     7     SAT     11-10-2008 08:00     11-10-2008 12:00
    42     1     SUN     12-10-2008 00:00     12-10-2008 00:00
    42     2     MON     13-10-2008 08:00     13-10-2008 16:30
    42     3     TUE     14-10-2008 08:00     14-10-2008 16:30
    42     4     WED     15-10-2008 08:00     15-10-2008 16:30
    42     5     THU     16-10-2008 08:00     16-10-2008 16:30
    42     6     FRI     17-10-2008 08:00     17-10-2008 15:30
    42     7     SAT     18-10-2008 08:00     18-10-2008 12:00
    43     1     SUN     19-10-2008 00:00     19-10-2008 00:00
    43     2     MON     20-10-2008 08:00     20-10-2008 16:30
    43     3     TUE     21-10-2008 08:00     21-10-2008 16:30
    43     4     WED     22-10-2008 08:00     22-10-2008 16:30
    43     5     THU     23-10-2008 08:00     23-10-2008 16:30
    43     6     FRI     24-10-2008 08:00     24-10-2008 15:30
    43     7     SAT     25-10-2008 08:00     25-10-2008 12:00
    44     1     SUN     26-10-2008 00:00     26-10-2008 00:00
    44     2     MON     27-10-2008 08:00     27-10-2008 16:30
    44     3     TUE     28-10-2008 08:00     28-10-2008 16:30
    44     4     WED     29-10-2008 08:00     29-10-2008 16:30
    44     5     THU     30-10-2008 08:00     30-10-2008 16:30
    44     6     FRI     31-10-2008 08:00     31-10-2008 15:30
    44     7     SAT     01-11-2008 08:00     01-11-2008 12:00
    45     1     SUN     02-11-2008 00:00     02-11-2008 00:00
    45     2     MON     03-11-2008 08:00     03-11-2008 16:30
    45     3     TUE     04-11-2008 08:00     04-11-2008 16:30
    45     4     WED     05-11-2008 08:00     05-11-2008 16:30
    45     5     THU     06-11-2008 08:00     06-11-2008 16:30
    45     6     FRI     07-11-2008 08:00     07-11-2008 15:30
    45     7     SAT     08-11-2008 08:00     08-11-2008 12:00
    46     1     SUN     09-11-2008 00:00     09-11-2008 00:00
    46     2     MON     10-11-2008 08:00     10-11-2008 16:30
    46     3     TUE     11-11-2008 08:00     11-11-2008 16:30
    46     4     WED     12-11-2008 08:00     12-11-2008 16:30
    46     5     THU     13-11-2008 08:00     13-11-2008 16:30
    46     6     FRI     14-11-2008 08:00     14-11-2008 15:30
    46     7     SAT     15-11-2008 08:00     15-11-2008 12:00
    47     1     SUN     16-11-2008 00:00     16-11-2008 00:00
    47     2     MON     17-11-2008 08:00     17-11-2008 16:30
    47     3     TUE     18-11-2008 08:00     18-11-2008 16:30
    47     4     WED     19-11-2008 08:00     19-11-2008 16:30
    47     5     THU     20-11-2008 08:00     20-11-2008 16:30
    47     6     FRI     21-11-2008 08:00     21-11-2008 15:30
    47     7     SAT     22-11-2008 08:00     22-11-2008 12:00
    48     1     SUN     23-11-2008 00:00     23-11-2008 00:00
    48     2     MON     24-11-2008 08:00     24-11-2008 16:30
    48     3     TUE     25-11-2008 08:00     25-11-2008 16:30
    48     4     WED     26-11-2008 08:00     26-11-2008 16:30
    48     5     THU     27-11-2008 08:00     27-11-2008 16:30
    48     6     FRI     28-11-2008 08:00     28-11-2008 15:30
    48     7     SAT     29-11-2008 08:00     29-11-2008 12:00
    49     1     SUN     30-11-2008 00:00     30-11-2008 00:00
    49     2     MON     01-12-2008 08:00     01-12-2008 16:30
    49     3     TUE     02-12-2008 08:00     02-12-2008 16:30
    49     4     WED     03-12-2008 08:00     03-12-2008 16:30
    49     5     THU     04-12-2008 08:00     04-12-2008 16:30
    49     6     FRI     05-12-2008 08:00     05-12-2008 15:30
    49     7     SAT     06-12-2008 08:00     06-12-2008 12:00
    50     1     SUN     07-12-2008 00:00     07-12-2008 00:00
    50     2     MON     08-12-2008 08:00     08-12-2008 16:30
    50     3     TUE     09-12-2008 08:00     09-12-2008 16:30
    50     4     WED     10-12-2008 08:00     10-12-2008 16:30
    50     5     THU     11-12-2008 08:00     11-12-2008 16:30
    50     6     FRI     12-12-2008 08:00     12-12-2008 15:30
    50     7     SAT     13-12-2008 08:00     13-12-2008 12:00
    51     1     SUN     14-12-2008 00:00     14-12-2008 00:00
    51     2     MON     15-12-2008 08:00     15-12-2008 16:30
    51     3     TUE     16-12-2008 08:00     16-12-2008 16:30
    51     4     WED     17-12-2008 08:00     17-12-2008 16:30
    51     5     THU     18-12-2008 08:00     18-12-2008 16:30
    51     6     FRI     19-12-2008 08:00     19-12-2008 15:30
    51     7     SAT     20-12-2008 08:00     20-12-2008 12:00
    52     1     SUN     21-12-2008 00:00     21-12-2008 00:00
    52     2     MON     22-12-2008 08:00     22-12-2008 16:30
    52     3     TUE     23-12-2008 08:00     23-12-2008 16:30
    52     4     WED     24-12-2008 08:00     24-12-2008 16:30
    52     5     THU     25-12-2008 08:00     25-12-2008 16:30
    52     6     FRI     26-12-2008 08:00     26-12-2008 15:30
    52     7     SAT     27-12-2008 08:00     27-12-2008 12:00

  • How do I log the time in hours, minutes and seconds to a table

    Hi
    I'm a relatively new user of Labview. I am currently writing a program that logs the temperature of an oven and the current time to a table and graph. I am using a GPIB card to communicate with the oven. I have used the Get Date/Time string to get the time and the Decimal String to Number to convert the time to a number which I have then put into an array which goes to a table and graph. My problem at the moment is that the time is being logged in hours only. I need to log the time in hours, minutes and seconds. Can you tell me how I can do this?

    Hi,
    I can see the setup now. The decimal string to number will only ever give the hours, since the ':' character is not part of a number, so won't translate. Use the code I attached previously to get the time as a timestamp, and then go from there.
    I've made some modifications, although you'll need to alter the file save to take into account the double precision number
    for the timestamp is now 3E+9 (since it's seconds since 1904!!), but since you're writing to a comma separated values (or tab deliminated) style file, this shouldn't be a problem. You could always do a textual save from the table instead.
    Thanks
    Sacha Emery
    National Instruments (UK)
    // it takes almost no time to rate an answer
    Attachments:
    temp time program.vi ‏98 KB

  • Execution time in minutes and seconds

    In the UUT Report, the Execution Time displays in seconds.  How can I get that to display in minutes and seconds.

    I'm just now getting to this, and I've decided to address this in the reportgen_html.seq.  In the step labelled "Add Execution Time", the expression reads,
    Locals.Header += "<TR><TD NOWRAP='NOWRAP'><B><LI>" + ResStr("MODEL", "RPT_HEADER_EXEC_TIME") + "</B><TD><B>" + (PropertyExists("Parameters.MainSequenceResults.TS.TotalTime") ? Str(Parameters.MainSequenceResults.TS.TotalTime, Parameters.ReportOptions.NumericFormat , 1, True) + ResStr("MODEL", "RPT_HEADER_SECONDS") : ResStr("MODEL", "RPT_NOT_APPLICABLE")) + "</B>\n"
    I found the RPT_HEADER_SECONDS constant and changed it to _MINUTES and changed the string.   I divided the Parameters.MainSequenceResults.TS.TotalTime by 60, and this all seems to work.  The only thing that's not working is that I'm updating the Parameters.ReportOptions.NumericFormat, and no matter what I do it keeps showing me 13 decimal points. 
    The Parameters.ReportOptions.NumericFormat is set to  %$.13f  (but I've tried several variations). 
    I just want it to display something like   21.63 minutes.  Also, what is the $ doing in that expression

  • Field with time in minutes and seconds

    Dear community,
    first of all, I am using Apex 3.1 on Oracle 10g, if this is necessary to know (yes I know, an old version, but given by the company I'm working for). After I've developed a few applications in Apex, thank to the forum and all the answers inside, I came to a problem that I could not solve:
    I want to have a normal text field, where the user can enter a duration of an event (e.g. "3:45" or "2:30"). That duration will allways be in the format "MM:SS". No hours, no milliseconds... But how can I save the given values in the database, so in which format? A varchar would be a possibility, but I want to build a report later on, where there is a sum of the times. And how to get a sum of varchar?! But how to make it clear to Apex and Oracle DB that the users gives in a time and not a varchar? The only thing oracle offers is a date field, but I want to save a time and not a date!
    Does anybody has a clue for me, cause it seems to me, that possibly I just don't know what I'm searching for, cause people must have had this problem before!?
    THanks for your help!
    Regards
    hoge

    But how to make it clear to Apex and Oracle DB that the users gives in a time and not a varchar? The only thing oracle offers is a date field, but I want to save a time and not a date!All APEX items are character strings, so implicit or explicit conversion is required when the values are stored in database columns. For the recommended <tt>INTERVAL DAY TO SECOND</tt> columns, use <tt>TO_DSINTERVAL</tt> to perform the conversion.
    Use <tt>EXTRACT</tt> to get the minute and second values from the <tt>INTERVAL</tt> going in the other direction.
    but I want to build a report later on, where there is a sum of the times.A user-defined aggregate function can be created to sum <tt>INTERVAL DAY TO SECOND</tt> values: here's an example.
    APEX's lack of built-in support for summaries on <tt>INTERVAL</tt> types can be worked round by including the sum in the report query using a </tt>UNION</tt>:
    SQL&gt; with test_data as (
      2      select
      3                rownum n
      4              , numtodsinterval(ceil(dbms_random.value(0, 3600)), 'SECOND') t
      5      from
      6                dual
      7      connect
      8                by rownum &lt;= 10)
      9  select
    10            n
    11          , t
    12          ,    to_char(extract(minute from t))
    13            || ':'
    14            || to_char(extract(second from t), 'fm00') t1
    15  from
    16            test_data
    17  union all
    18  select
    19            null
    20          , sum_dsinterval(t)
    21          ,    to_char(extract(hour from sum_dsinterval(t)))
    22            || ':'
    23            || to_char(extract(minute from sum_dsinterval(t)), 'fm00')
    24            || ':'
    25            || to_char(extract(second from sum_dsinterval(t)), 'fm00')
    26  from
    27            test_data
    28  order by
    29            1 nulls last
    30  /
             N T                              T1
             1 +000000000 00:04:46.000000000  4:46
             2 +000000000 00:07:05.000000000  7:05
             3 +000000000 00:31:11.000000000  31:11
             4 +000000000 00:53:16.000000000  53:16
             5 +000000000 00:19:02.000000000  19:02
             6 +000000000 00:57:12.000000000  57:12
             7 +000000000 00:43:29.000000000  43:29
             8 +000000000 00:03:11.000000000  3:11
             9 +000000000 00:16:40.000000000  16:40
            10 +000000000 00:20:49.000000000  20:49
               +000000000 04:16:41.000000000  4:16:41A custom named column (row) report template with conditional templates can be used to layout and format such a report so that the summary row(s) are properly handled.

  • Boot time goes from seconds to minutes with udev and systemd

    A few weeks ago updated and saw that on reboot I was getting messages from systemd that it was waiting for all my LVM partitions, and then finally that:
    'A start job is running for udev Wait for Complete Device Initialization'
    This has never happened before and I can't find any information about it in dmesg.
    Here is my fstab:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    # UUID=f9f12b36-2333-4c46-949a-0bd86e1ab254
    /dev/mapper/Linux-Arch / ext4 rw,relatime,data=ordered 0 1
    # UUID=21ee7aa4-234e-463d-af2a-6c4cb3551ea8
    /dev/mapper/Linux-Home /home ext4 rw,relatime,data=ordered 0 2
    # UUID=E421-470F LABEL=SYSTEM_DRV
    /dev/sda2 /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2
    # UUID=11bf5a3f-86a5-48b7-93da-994e39463f0d
    /dev/mapper/Linux-Swap none swap defaults 0 0
    # Windows
    # /dev/sda5 /mnt/Windows ntfs-3g defaults,ro,noauto 0 0
    I've been digging around for a few weeks and I can't find anything and my boot time is really slow.
    systemd-analyze blame:
    1min 1.644s systemd-udev-settle.service
    10.079s systemd-udev-trigger.service
    9.999s systemd-remount-fs.service
    1.003s lvm2-pvscan@8:8.service
    795ms systemd-timesyncd.service
    700ms systemd-update-utmp.service
    583ms systemd-sysctl.service
    560ms rtkit-daemon.service
    469ms udisks2.service
    449ms NetworkManager.service
    438ms kmod-static-nodes.service
    363ms systemd-vconsole-setup.service
    214ms tmp.mount
    184ms sys-kernel-debug.mount
    144ms sys-kernel-config.mount
    123ms systemd-tmpfiles-clean.service
    116ms dev-mqueue.mount
    90ms [email protected]
    85ms systemd-logind.service
    82ms dev-hugepages.mount
    79ms bluetooth.service
    57ms [email protected]
    42ms polkit.service
    31ms accounts-daemon.service
    31ms wpa_supplicant.service
    24ms systemd-fsck@dev-mapper-Linux\x2dHome.service
    20ms colord.service
    20ms gdm.service
    20ms upower.service
    19ms [email protected]
    18ms [email protected]
    17ms [email protected]
    15ms boot.mount
    12ms systemd-tmpfiles-setup-dev.service
    8ms dev-mapper-Linux\x2dSwap.swap
    8ms systemd-tmpfiles-setup.service
    8ms systemd-journal-flush.service
    5ms home.mount
    5ms systemd-user-sessions.service
    4ms systemd-backlight@backlight:intel_backlight.service
    3ms systemd-random-seed.service
    2ms systemd-udevd.service
    1ms sys-fs-fuse-connections.mount
    EDIT 2: Dmesg output:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.14.23-1-lts (nobody@home-andyrtr-arch64-chroots-testing-x86_64-andyrtr) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP Thu Oct 30 19:41:12 CET 2014
    [ 0.000000] Command line: initrd=\initramfs-linux-lts.img root=/dev/mapper/Linux-Arch rw resume=/dev/mapper/Linux-Swap pcie_aspm=force i915.i915_enable_rc6=1
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000c4daffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000c4db0000-0x00000000c61affff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000c61b0000-0x00000000ca7befff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ca7bf000-0x00000000caebefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000caebf000-0x00000000cafbefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000cafbf000-0x00000000caffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000cafff000-0x00000000caffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cb000000-0x00000000cf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed98000-0x00000000fed9ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffcc0000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000022f5fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] e820: update [mem 0xc3217018-0xc3227057] usable ==> usable
    [ 0.000000] extended physical RAM map:
    [ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000087fff] usable
    [ 0.000000] reserve setup_data: [mem 0x0000000000088000-0x00000000000bffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000020200000-0x0000000040003fff] usable
    [ 0.000000] reserve setup_data: [mem 0x0000000040004000-0x0000000040004fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000040005000-0x00000000c3217017] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000c3217018-0x00000000c3227057] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000c3227058-0x00000000c4daffff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000c4db0000-0x00000000c61affff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000c61b0000-0x00000000ca7befff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000ca7bf000-0x00000000caebefff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000caebf000-0x00000000cafbefff] ACPI NVS
    [ 0.000000] reserve setup_data: [mem 0x00000000cafbf000-0x00000000caffefff] ACPI data
    [ 0.000000] reserve setup_data: [mem 0x00000000cafff000-0x00000000caffffff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000cb000000-0x00000000cf9fffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fed98000-0x00000000fed9ffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000ffcc0000-0x00000000ffffffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000022f5fffff] usable
    [ 0.000000] efi: EFI v2.31 by INSYDE Corp.
    [ 0.000000] efi: ACPI=0xcaffe000 ACPI 2.0=0xcaffe014 SMBIOS=0xcaebef98
    [ 0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
    [ 0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000007000) (0MB)
    [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000007000-0x000000000006f000) (0MB)
    [ 0.000000] efi: mem03: type=4, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
    [ 0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
    [ 0.000000] efi: mem05: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem06: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
    [ 0.000000] efi: mem07: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001f62000) (15MB)
    [ 0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000001f62000-0x0000000020000000) (480MB)
    [ 0.000000] efi: mem09: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
    [ 0.000000] efi: mem10: type=7, attr=0xf, range=[0x0000000020200000-0x0000000040004000) (510MB)
    [ 0.000000] efi: mem11: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
    [ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x0000000040005000-0x000000007fba4000) (1019MB)
    [ 0.000000] efi: mem13: type=2, attr=0xf, range=[0x000000007fba4000-0x0000000080000000) (4MB)
    [ 0.000000] efi: mem14: type=7, attr=0xf, range=[0x0000000080000000-0x00000000c31c0000) (1073MB)
    [ 0.000000] efi: mem15: type=4, attr=0xf, range=[0x00000000c31c0000-0x00000000c31e0000) (0MB)
    [ 0.000000] efi: mem16: type=7, attr=0xf, range=[0x00000000c31e0000-0x00000000c3217000) (0MB)
    [ 0.000000] efi: mem17: type=2, attr=0xf, range=[0x00000000c3217000-0x00000000c3228000) (0MB)
    [ 0.000000] efi: mem18: type=1, attr=0xf, range=[0x00000000c3228000-0x00000000c418a000) (15MB)
    [ 0.000000] efi: mem19: type=4, attr=0xf, range=[0x00000000c418a000-0x00000000c4db0000) (12MB)
    [ 0.000000] efi: mem20: type=0, attr=0xf, range=[0x00000000c4db0000-0x00000000c61b0000) (20MB)
    [ 0.000000] efi: mem21: type=7, attr=0xf, range=[0x00000000c61b0000-0x00000000c61b8000) (0MB)
    [ 0.000000] efi: mem22: type=2, attr=0xf, range=[0x00000000c61b8000-0x00000000c61bb000) (0MB)
    [ 0.000000] efi: mem23: type=7, attr=0xf, range=[0x00000000c61bb000-0x00000000c61bc000) (0MB)
    [ 0.000000] efi: mem24: type=2, attr=0xf, range=[0x00000000c61bc000-0x00000000c61bf000) (0MB)
    [ 0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000c61bf000-0x00000000c63a8000) (1MB)
    [ 0.000000] efi: mem26: type=1, attr=0xf, range=[0x00000000c63a8000-0x00000000c63bf000) (0MB)
    [ 0.000000] efi: mem27: type=7, attr=0xf, range=[0x00000000c63bf000-0x00000000c76e6000) (19MB)
    [ 0.000000] efi: mem28: type=4, attr=0xf, range=[0x00000000c76e6000-0x00000000c864a000) (15MB)
    [ 0.000000] efi: mem29: type=7, attr=0xf, range=[0x00000000c864a000-0x00000000c864c000) (0MB)
    [ 0.000000] efi: mem30: type=4, attr=0xf, range=[0x00000000c864c000-0x00000000c864e000) (0MB)
    [ 0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000c864e000-0x00000000c8650000) (0MB)
    [ 0.000000] efi: mem32: type=4, attr=0xf, range=[0x00000000c8650000-0x00000000c8697000) (0MB)
    [ 0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000c8697000-0x00000000c8699000) (0MB)
    [ 0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000c8699000-0x00000000c86cb000) (0MB)
    [ 0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000c86cb000-0x00000000c86cc000) (0MB)
    [ 0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000c86cc000-0x00000000c87ff000) (1MB)
    [ 0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000c87ff000-0x00000000c8803000) (0MB)
    [ 0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000c8803000-0x00000000c8806000) (0MB)
    [ 0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000c8806000-0x00000000c8807000) (0MB)
    [ 0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000c8807000-0x00000000c885a000) (0MB)
    [ 0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000c885a000-0x00000000c8882000) (0MB)
    [ 0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000c8882000-0x00000000c88b0000) (0MB)
    [ 0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000c88b0000-0x00000000c88b1000) (0MB)
    [ 0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000c88b1000-0x00000000c8c65000) (3MB)
    [ 0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000c8c65000-0x00000000c8c67000) (0MB)
    [ 0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000c8c67000-0x00000000c8c78000) (0MB)
    [ 0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000c8c78000-0x00000000c8c7a000) (0MB)
    [ 0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000c8c7a000-0x00000000ca3bf000) (23MB)
    [ 0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000ca3bf000-0x00000000ca435000) (0MB)
    [ 0.000000] efi: mem50: type=3, attr=0xf, range=[0x00000000ca435000-0x00000000ca7bf000) (3MB)
    [ 0.000000] efi: mem51: type=5, attr=0x800000000000000f, range=[0x00000000ca7bf000-0x00000000ca865000) (0MB)
    [ 0.000000] efi: mem52: type=6, attr=0x800000000000000f, range=[0x00000000ca865000-0x00000000ca866000) (0MB)
    [ 0.000000] efi: mem53: type=5, attr=0x800000000000000f, range=[0x00000000ca866000-0x00000000ca868000) (0MB)
    [ 0.000000] efi: mem54: type=6, attr=0x800000000000000f, range=[0x00000000ca868000-0x00000000ca869000) (0MB)
    [ 0.000000] efi: mem55: type=5, attr=0x800000000000000f, range=[0x00000000ca869000-0x00000000ca86f000) (0MB)
    [ 0.000000] efi: mem56: type=6, attr=0x800000000000000f, range=[0x00000000ca86f000-0x00000000ca870000) (0MB)
    [ 0.000000] efi: mem57: type=5, attr=0x800000000000000f, range=[0x00000000ca870000-0x00000000ca883000) (0MB)
    [ 0.000000] efi: mem58: type=6, attr=0x800000000000000f, range=[0x00000000ca883000-0x00000000ca884000) (0MB)
    [ 0.000000] efi: mem59: type=5, attr=0x800000000000000f, range=[0x00000000ca884000-0x00000000ca894000) (0MB)
    [ 0.000000] efi: mem60: type=6, attr=0x800000000000000f, range=[0x00000000ca894000-0x00000000ca895000) (0MB)
    [ 0.000000] efi: mem61: type=5, attr=0x800000000000000f, range=[0x00000000ca895000-0x00000000ca8a9000) (0MB)
    [ 0.000000] efi: mem62: type=6, attr=0x800000000000000f, range=[0x00000000ca8a9000-0x00000000ca8aa000) (0MB)
    [ 0.000000] efi: mem63: type=5, attr=0x800000000000000f, range=[0x00000000ca8aa000-0x00000000ca8e3000) (0MB)
    [ 0.000000] efi: mem64: type=6, attr=0x800000000000000f, range=[0x00000000ca8e3000-0x00000000ca935000) (0MB)
    [ 0.000000] efi: mem65: type=5, attr=0x800000000000000f, range=[0x00000000ca935000-0x00000000ca9bf000) (0MB)
    [ 0.000000] efi: mem66: type=6, attr=0x800000000000000f, range=[0x00000000ca9bf000-0x00000000caabf000) (1MB)
    [ 0.000000] efi: mem67: type=0, attr=0xf, range=[0x00000000caabf000-0x00000000caebf000) (4MB)
    [ 0.000000] efi: mem68: type=10, attr=0xf, range=[0x00000000caebf000-0x00000000cafbf000) (1MB)
    [ 0.000000] efi: mem69: type=9, attr=0xf, range=[0x00000000cafbf000-0x00000000cafff000) (0MB)
    [ 0.000000] efi: mem70: type=4, attr=0xf, range=[0x00000000cafff000-0x00000000cb000000) (0MB)
    [ 0.000000] efi: mem71: type=7, attr=0xf, range=[0x0000000100000000-0x000000022f600000) (4854MB)
    [ 0.000000] efi: mem72: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    [ 0.000000] efi: mem73: type=0, attr=0x0, range=[0x00000000cb000000-0x00000000cfa00000) (74MB)
    [ 0.000000] efi: mem74: type=11, attr=0x8000000000000001, range=[0x00000000f0000000-0x00000000f4000000) (64MB)
    [ 0.000000] efi: mem75: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
    [ 0.000000] efi: mem76: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem77: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
    [ 0.000000] efi: mem78: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem79: type=0, attr=0x0, range=[0x00000000fed98000-0x00000000feda0000) (0MB)
    [ 0.000000] efi: mem80: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem81: type=11, attr=0x8000000000000000, range=[0x00000000ffcc0000-0x0000000100000000) (3MB)
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: LENOVO 20175/INVALID, BIOS 66CN54WW 01/21/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x22f600 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-E7FFF write-protect
    [ 0.000000] E8000-EFFFF write-combining
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0C0000000 mask FF8000000 write-back
    [ 0.000000] 3 base 0C8000000 mask FFE000000 write-back
    [ 0.000000] 4 base 0CA000000 mask FFF000000 write-back
    [ 0.000000] 5 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 6 base 100000000 mask F00000000 write-back
    [ 0.000000] 7 base 200000000 mask FC0000000 write-back
    [ 0.000000] 8 base 22F600000 mask FFFE00000 uncachable
    [ 0.000000] 9 base 22F800000 mask FFF800000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xcb000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000082000] 82000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b40000, 0x01b40fff] PGTABLE
    [ 0.000000] BRK [0x01b41000, 0x01b41fff] PGTABLE
    [ 0.000000] BRK [0x01b42000, 0x01b42fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x22f400000-0x22f5fffff]
    [ 0.000000] [mem 0x22f400000-0x22f5fffff] page 2M
    [ 0.000000] BRK [0x01b43000, 0x01b43fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x22c000000-0x22f3fffff]
    [ 0.000000] [mem 0x22c000000-0x22f3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x22bffffff]
    [ 0.000000] [mem 0x200000000-0x22bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff]
    [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x40003fff] page 4k
    [ 0.000000] BRK [0x01b44000, 0x01b44fff] PGTABLE
    [ 0.000000] BRK [0x01b45000, 0x01b45fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x40005000-0xc4daffff]
    [ 0.000000] [mem 0x40005000-0x401fffff] page 4k
    [ 0.000000] [mem 0x40200000-0xc4bfffff] page 2M
    [ 0.000000] [mem 0xc4c00000-0xc4daffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xc61b0000-0xca7befff]
    [ 0.000000] [mem 0xc61b0000-0xc61fffff] page 4k
    [ 0.000000] [mem 0xc6200000-0xca5fffff] page 2M
    [ 0.000000] [mem 0xca600000-0xca7befff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xcafff000-0xcaffffff]
    [ 0.000000] [mem 0xcafff000-0xcaffffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x7fba4000-0x7fffffff]
    [ 0.000000] ACPI: RSDP 00000000caffe014 000024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000caffe210 0000DC (v01 LENOVO CB-01 00000001 01000013)
    [ 0.000000] ACPI: FACP 00000000caff5000 00010C (v05 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: DSDT 00000000cafe9000 008814 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: FACS 00000000cafbb000 000040
    [ 0.000000] ACPI: SLIC 00000000caffd000 000176 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: UEFI 00000000caffc000 000236 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000caffb000 000662 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000caffa000 000A39 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000caff9000 000098 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000caff8000 000058 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000caff7000 000757 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: ASF! 00000000caff6000 0000A5 (v32 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: HPET 00000000caff4000 000038 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: APIC 00000000caff3000 00008C (v03 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: MCFG 00000000caff2000 00003C (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: WDAT 00000000cafe8000 000224 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000cafe6000 001068 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: BOOT 00000000cafe4000 000028 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: ASPT 00000000cafe2000 000034 (v07 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: DBGP 00000000cafe1000 000034 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: FPDT 00000000cafdf000 000044 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: MSDM 00000000cafde000 000055 (v03 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000cafdd000 0009AA (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000cafdc000 000B22 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: DMAR 00000000cafdb000 0000B8 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: BGRT 00000000cafda000 000038 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000022f5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x22f5fffff]
    [ 0.000000] NODE_DATA [mem 0x22f5f1000-0x22f5f5fff]
    [ 0.000000] [ffffea0000000000-ffffea0008bfffff] PMD -> [ffff880226c00000-ffff88022ebfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x22f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x00087fff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x40003fff]
    [ 0.000000] node 0: [mem 0x40005000-0xc4daffff]
    [ 0.000000] node 0: [mem 0xc61b0000-0xca7befff]
    [ 0.000000] node 0: [mem 0xcafff000-0xcaffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x22f5fffff]
    [ 0.000000] On node 0 totalpages: 2066246
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 22 pages reserved
    [ 0.000000] DMA zone: 3975 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 12807 pages used for memmap
    [ 0.000000] DMA32 zone: 819647 pages, LIFO batch:31
    [ 0.000000] Normal zone: 19416 pages used for memmap
    [ 0.000000] Normal zone: 1242624 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x00088000-0x000bffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xc3217000-0xc3217fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xc3227000-0xc3227fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xc4db0000-0xc61affff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca7bf000-0xcaebefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcaebf000-0xcafbefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcafbf000-0xcaffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcb000000-0xcf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcfa00000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xf3ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf4000000-0xfeafffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb04000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfed97fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed98000-0xfed9ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeda0000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffcbffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffcc0000-0xffffffff]
    [ 0.000000] e820: [mem 0xcfa00000-0xefffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88022f200000 s86656 r8192 d23936 u262144
    [ 0.000000] pcpu-alloc: s86656 r8192 d23936 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2033937
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: initrd=\initramfs-linux-lts.img root=/dev/mapper/Linux-Arch rw resume=/dev/mapper/Linux-Swap pcie_aspm=force i915.i915_enable_rc6=1
    [ 0.000000] PCIe ASPM is forcibly enabled
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 7988560K/8264984K available (5187K kernel code, 858K rwdata, 1640K rodata, 1136K init, 1300K bss, 276424K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Hierarchical RCU implementation.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    [ 0.000000] NR_IRQS:8448 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 2494.263 MHz processor
    [ 0.000042] Calibrating delay loop (skipped), value calculated using timer frequency.. 4988.52 BogoMIPS (lpj=24942630)
    [ 0.000045] pid_max: default: 32768 minimum: 301
    [ 0.000053] ACPI: Core revision 20131218
    [ 0.008110] ACPI: All ACPI Tables successfully acquired
    [ 0.034617] Security Framework initialized
    [ 0.034625] Yama: becoming mindful.
    [ 0.035238] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.037855] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.039006] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.039017] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.039253] Initializing cgroup subsys memory
    [ 0.039259] Initializing cgroup subsys devices
    [ 0.039260] Initializing cgroup subsys freezer
    [ 0.039262] Initializing cgroup subsys net_cls
    [ 0.039264] Initializing cgroup subsys blkio
    [ 0.039291] CPU: Physical Processor ID: 0
    [ 0.039293] CPU: Processor Core ID: 0
    [ 0.039298] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.039769] mce: CPU supports 7 MCE banks
    [ 0.039782] CPU0: Thermal monitoring enabled (TM1)
    [ 0.039792] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
    tlb_flushall_shift: 2
    [ 0.039910] Freeing SMP alternatives memory: 20K (ffffffff819f4000 - ffffffff819f9000)
    [ 0.043468] ftrace: allocating 20111 entries in 79 pages
    [ 0.054896] dmar: Host address width 36
    [ 0.054899] dmar: DRHD base: 0x000000fed90000 flags: 0x0
    [ 0.054906] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a
    [ 0.054908] dmar: DRHD base: 0x000000fed91000 flags: 0x1
    [ 0.054912] dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a
    [ 0.054914] dmar: RMRR base: 0x000000cae8c000 end: 0x000000caeabfff
    [ 0.054915] dmar: RMRR base: 0x000000cb800000 end: 0x000000cf9fffff
    [ 0.054992] IOAPIC id 0 under DRHD base 0xfed91000 IOMMU 1
    [ 0.054994] HPET id 0 under DRHD base 0xfed91000
    [ 0.054995] Queued invalidation will be enabled to support x2apic and Intr-remapping.
    [ 0.055169] Enabled IRQ remapping in x2apic mode
    [ 0.055170] Enabling x2apic
    [ 0.055172] Enabled x2apic
    [ 0.055180] Switched APIC routing to cluster x2apic.
    [ 0.055649] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.155770] smpboot: CPU0: Intel(R) Core(TM) i7-3537U CPU @ 2.00GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.155781] TSC deadline timer enabled
    [ 0.155793] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
    [ 0.155800] ... version: 3
    [ 0.155802] ... bit width: 48
    [ 0.155803] ... generic registers: 4
    [ 0.155804] ... value mask: 0000ffffffffffff
    [ 0.155805] ... max period: 0000ffffffffffff
    [ 0.155806] ... fixed-purpose events: 3
    [ 0.155807] ... event mask: 000000070000000f
    [ 0.157083] x86: Booting SMP configuration:
    [ 0.157086] .... node #0, CPUs: #1 #2 #3
    [ 0.198397] x86: Booted up 1 node, 4 CPUs
    [ 0.198401] smpboot: Total of 4 processors activated (19954.10 BogoMIPS)
    [ 0.202933] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.203185] devtmpfs: initialized
    [ 0.206444] PM: Registering ACPI NVS region [mem 0xcaebf000-0xcafbefff] (1048576 bytes)
    [ 0.207361] pinctrl core: initialized pinctrl subsystem
    [ 0.207403] RTC time: 18:04:53, date: 11/03/14
    [ 0.207440] NET: Registered protocol family 16
    [ 0.207534] cpuidle: using governor ladder
    [ 0.207535] cpuidle: using governor menu
    [ 0.207568] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.207570] ACPI: bus type PCI registered
    [ 0.207572] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.207648] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.207651] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.207745] PCI: Using configuration type 1 for base access
    [ 0.208531] bio: create slab <bio-0> at 0
    [ 0.208645] ACPI: Added _OSI(Module Device)
    [ 0.208647] ACPI: Added _OSI(Processor Device)
    [ 0.208648] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.208649] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.211733] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.236410] ACPI: SSDT 00000000cae17018 00083B (v01 PmRef Cpu0Cst 00003001 INTL 20121220)
    [ 0.236803] ACPI: Dynamic OEM Table Load:
    [ 0.236805] ACPI: SSDT (null) 00083B (v01 PmRef Cpu0Cst 00003001 INTL 20121220)
    [ 0.266214] ACPI: SSDT 00000000cae18a98 000303 (v01 PmRef ApIst 00003000 INTL 20121220)
    [ 0.266634] ACPI: Dynamic OEM Table Load:
    [ 0.266636] ACPI: SSDT (null) 000303 (v01 PmRef ApIst 00003000 INTL 20121220)
    [ 0.296118] ACPI: SSDT 00000000cae16d98 000119 (v01 PmRef ApCst 00003000 INTL 20121220)
    [ 0.296501] ACPI: Dynamic OEM Table Load:
    [ 0.296503] ACPI: SSDT (null) 000119 (v01 PmRef ApCst 00003000 INTL 20121220)
    [ 0.773800] ACPI: Interpreter enabled
    [ 0.773808] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131218/hwxface-580)
    [ 0.773813] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131218/hwxface-580)
    [ 0.773829] ACPI: (supports S0 S3 S4 S5)
    [ 0.773831] ACPI: Using IOAPIC for interrupt routing
    [ 0.773864] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.774030] ACPI: No dock devices found.
    [ 0.780437] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.780443] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.780579] \_SB_.PCI0:_OSC invalid UUID
    [ 0.780581] _OSC request data:1 1f 0
    [ 0.780585] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
    [ 0.781130] PCI host bridge to bus 0000:00
    [ 0.781133] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.781136] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.781137] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.781139] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.781141] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.781143] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.781145] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.781147] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.781148] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.781150] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.781152] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.781154] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.781156] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.781157] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.781159] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.781161] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.781163] pci_bus 0000:00: root bus resource [mem 0xcfa00000-0xfeafffff]
    [ 0.781171] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.781277] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    [ 0.781291] pci 0000:00:02.0: reg 0x10: [mem 0xe0000000-0xe03fffff 64bit]
    [ 0.781299] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.781305] pci 0000:00:02.0: reg 0x20: [io 0x2000-0x203f]
    [ 0.781403] pci 0000:00:04.0: [8086:0153] type 00 class 0x118000
    [ 0.781415] pci 0000:00:04.0: reg 0x10: [mem 0xfed98000-0xfed9ffff 64bit]
    [ 0.781541] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.781567] pci 0000:00:14.0: reg 0x10: [mem 0xe0400000-0xe040ffff 64bit]
    [ 0.781646] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.781694] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.781745] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.781772] pci 0000:00:16.0: reg 0x10: [mem 0xe041c000-0xe041c00f 64bit]
    [ 0.781856] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.781955] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.781980] pci 0000:00:1a.0: reg 0x10: [mem 0xe0421000-0xe04213ff]
    [ 0.782080] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.782144] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.782193] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.782212] pci 0000:00:1b.0: reg 0x10: [mem 0xe0418000-0xe041bfff 64bit]
    [ 0.782296] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.782345] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.782396] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.782420] pci 0000:00:1d.0: reg 0x10: [mem 0xe0420000-0xe04203ff]
    [ 0.782520] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.782583] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.782634] pci 0000:00:1f.0: [8086:1e56] type 00 class 0x060100
    [ 0.782828] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.782850] pci 0000:00:1f.2: reg 0x10: [io 0x2088-0x208f]
    [ 0.782859] pci 0000:00:1f.2: reg 0x14: [io 0x2094-0x2097]
    [ 0.782869] pci 0000:00:1f.2: reg 0x18: [io 0x2080-0x2087]
    [ 0.782877] pci 0000:00:1f.2: reg 0x1c: [io 0x2090-0x2093]
    [ 0.782887] pci 0000:00:1f.2: reg 0x20: [io 0x2060-0x207f]
    [ 0.782897] pci 0000:00:1f.2: reg 0x24: [mem 0xe041f000-0xe041f7ff]
    [ 0.782948] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.783031] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.783050] pci 0000:00:1f.3: reg 0x10: [mem 0xe041d000-0xe041d0ff 64bit]
    [ 0.783074] pci 0000:00:1f.3: reg 0x20: [io 0x2040-0x205f]
    [ 0.783173] pci 0000:00:1f.6: [8086:1e24] type 00 class 0x118000
    [ 0.783198] pci 0000:00:1f.6: reg 0x10: [mem 0xe041e000-0xe041efff 64bit]
    [ 0.783553] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.783614] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.783672] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.783732] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.783790] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.783848] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.783908] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.783966] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.784076] ACPI: Enabled 5 GPEs in block 00 to 3F
    [ 0.784121] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.784209] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.784212] vgaarb: loaded
    [ 0.784213] vgaarb: bridge control possible 0000:00:02.0
    [ 0.784333] PCI: Using ACPI for IRQ routing
    [ 0.786165] PCI: pci_cache_line_size set to 64 bytes
    [ 0.786172] pci 0000:00:04.0: no compatible bridge window for [mem 0xfed98000-0xfed9ffff 64bit]
    [ 0.786212] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
    [ 0.786214] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    [ 0.786216] e820: reserve RAM buffer [mem 0xc3217018-0xc3ffffff]
    [ 0.786217] e820: reserve RAM buffer [mem 0xc4db0000-0xc7ffffff]
    [ 0.786219] e820: reserve RAM buffer [mem 0xca7bf000-0xcbffffff]
    [ 0.786221] e820: reserve RAM buffer [mem 0xcb000000-0xcbffffff]
    [ 0.786222] e820: reserve RAM buffer [mem 0x22f600000-0x22fffffff]
    [ 0.786315] NetLabel: Initializing
    [ 0.786317] NetLabel: domain hash size = 128
    [ 0.786318] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.786331] NetLabel: unlabeled traffic allowed by default
    [ 0.786356] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.786361] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.788395] Switched to clocksource hpet
    [ 0.793449] pnp: PnP ACPI init
    [ 0.793466] ACPI: bus type PNP registered
    [ 0.793581] pnp 00:00: [dma 4]
    [ 0.793609] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.793633] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.793732] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.793773] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.793820] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.793822] system 00:04: [io 0x1000-0x100f] has been reserved
    [ 0.793824] system 00:04: [io 0xffff] has been reserved
    [ 0.793826] system 00:04: [io 0xffff] has been reserved
    [ 0.793829] system 00:04: [io 0x0400-0x0453] could not be reserved
    [ 0.793831] system 00:04: [io 0x0458-0x047f] has been reserved
    [ 0.793833] system 00:04: [io 0x0500-0x057f] has been reserved
    [ 0.793835] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 0.793838] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.793870] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.793919] system 00:06: [io 0x0454-0x0457] has been reserved
    [ 0.793922] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.793963] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.794001] pnp 00:08: Plug and Play ACPI device, IDs SYN2b01 SYN2b00 SYN0002 PNP0f13 (active)
    [ 0.794134] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.794137] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.794139] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.794141] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.794143] system 00:09: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.794145] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.794148] system 00:09: [mem 0xfed90000-0xfed93fff] could not be reserved
    [ 0.794150] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
    [ 0.794152] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.794154] system 00:09: [mem 0xcfa00000-0xcfa00fff] has been reserved
    [ 0.794157] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.794451] system 00:0a: [mem 0x20000000-0x201fffff] has been reserved
    [ 0.794453] system 00:0a: [mem 0x40004000-0x40004fff] has been reserved
    [ 0.794456] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.794473] pnp: PnP ACPI: found 11 devices
    [ 0.794475] ACPI: bus type PNP unregistered
    [ 0.801229] pci 0000:00:04.0: BAR 0: assigned [mem 0xcfa08000-0xcfa0ffff 64bit]
    [ 0.801237] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.801239] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.801241] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.801243] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.801245] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.801247] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.801249] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.801251] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.801253] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.801254] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.801256] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.801258] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.801260] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.801262] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.801264] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.801266] pci_bus 0000:00: resource 19 [mem 0xcfa00000-0xfeafffff]
    [ 0.801299] NET: Registered protocol family 2
    [ 0.801504] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.801681] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.801864] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.801881] TCP: reno registered
    [ 0.801894] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.801927] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.802001] NET: Registered protocol family 1
    [ 0.802012] pci 0000:00:02.0: Boot video device
    [ 0.838581] PCI: CLS 64 bytes, default 64
    [ 0.838623] Unpacking initramfs...
    [ 0.931743] Freeing initrd memory: 4464K (ffff88007fba4000 - ffff880080000000)
    [ 0.931755] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.931757] software IO TLB [mem 0xbf1c0000-0xc31c0000] (64MB) mapped at [ffff8800bf1c0000-ffff8800c31bffff]
    [ 0.931789] Simple Boot Flag at 0x44 set to 0x1
    [ 0.932025] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x17
    [ 0.932033] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x17
    [ 0.932042] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x17
    [ 0.932051] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x17
    [ 0.932111] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 0.932127] Scanning for low memory corruption every 60 seconds
    [ 0.932408] futex hash table entries: 2048 (order: 5, 131072 bytes)
    [ 0.948267] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.949675] zbud: loaded
    [ 0.949848] VFS: Disk quotas dquot_6.5.2
    [ 0.949897] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.950024] msgmni has been set to 15732
    [ 0.950080] Key type big_key registered
    [ 0.950224] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.950262] io scheduler noop registered
    [ 0.950265] io scheduler deadline registered (default)
    [ 0.950296] io scheduler cfq registered
    [ 0.950355] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.950370] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.950401] efifb: probing for efifb
    [ 0.950423] efifb: framebuffer at 0xd0000000, mapped to 0xffffc90004f00000, using 5628k, total 5625k
    [ 0.950425] efifb: mode is 1600x900x32, linelength=6400, pages=1
    [ 0.950426] efifb: scrolling: redraw
    [ 0.950428] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.955222] Console: switching to colour frame buffer device 200x56
    [ 0.959939] fb0: EFI VGA frame buffer device
    [ 0.959947] intel_idle: MWAIT substates: 0x21120
    [ 0.959948] intel_idle: v0.4 model 0x3A
    [ 0.959949] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.960140] GHES: HEST is not enabled!
    [ 0.960192] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.960674] Linux agpgart interface v0.103
    [ 0.960719] rtc_cmos 00:05: RTC can wake from S4
    [ 0.960854] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.960891] rtc_cmos 00:05: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 0.960901] Intel P-state driver initializing.
    [ 0.960913] Intel pstate controlling: cpu 0
    [ 0.960933] Intel pstate controlling: cpu 1
    [ 0.960948] Intel pstate controlling: cpu 2
    [ 0.960965] Intel pstate controlling: cpu 3
    [ 0.960993] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.961133] TCP: cubic registered
    [ 0.961239] NET: Registered protocol family 10
    [ 0.961427] NET: Registered protocol family 17
    [ 0.961965] registered taskstats version 1
    [ 0.962642] Magic number: 6:677:88
    [ 0.962705] acpi INT3F0D:00: hash matches
    [ 0.962828] rtc_cmos 00:05: setting system clock to 2014-11-03 18:04:54 UTC (1415037894)
    [ 0.963002] PM: Checking hibernation image partition /dev/mapper/Linux-Swap
    [ 0.963010] PM: Hibernation image not present or could not be loaded.
    [ 0.964972] Freeing unused kernel memory: 1136K (ffffffff818d8000 - ffffffff819f4000)
    [ 0.964975] Write protecting the kernel read-only data: 8192k
    [ 0.970240] Freeing unused kernel memory: 944K (ffff880001514000 - ffff880001600000)
    [ 0.971926] Freeing unused kernel memory: 408K (ffff88000179a000 - ffff880001800000)
    [ 0.980028] random: systemd-tmpfile urandom read with 3 bits of entropy available
    [ 0.981987] systemd-udevd[57]: starting version 216
    [ 0.993396] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.999168] ACPI: bus type USB registered
    [ 0.999188] usbcore: registered new interface driver usbfs
    [ 0.999195] usbcore: registered new interface driver hub
    [ 0.999618] SCSI subsystem initialized
    [ 0.999671] usbcore: registered new device driver usb
    [ 1.000171] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.000324] ehci-pci: EHCI PCI platform driver
    [ 1.000472] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 1.000479] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 1.000498] ehci-pci 0000:00:1a.0: debug port 2
    [ 1.001114] libata version 3.00 loaded.
    [ 1.004412] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 1.004425] ehci-pci 0000:00:1a.0: irq 16, io mem 0xe0421000
    [ 1.005570] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.005576] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.018706] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 1.018976] hub 1-0:1.0: USB hub found
    [ 1.018989] hub 1-0:1.0: 2 ports detected
    [ 1.019277] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 1.019281] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 1.019293] ehci-pci 0000:00:1d.0: debug port 2
    [ 1.023202] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 1.023218] ehci-pci 0000:00:1d.0: irq 23, io mem 0xe0420000
    [ 1.028001] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.038738] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 1.039375] hub 2-0:1.0: USB hub found
    [ 1.039401] hub 2-0:1.0: 2 ports detected
    [ 1.039970] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.039984] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 1.040112] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 1.040137] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
    [ 1.040384] hub 3-0:1.0: USB hub found
    [ 1.040404] hub 3-0:1.0: 4 ports detected
    [ 1.040970] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.040975] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 1.041377] hub 4-0:1.0: USB hub found
    [ 1.041406] hub 4-0:1.0: 4 ports detected
    [ 1.041933] ahci 0000:00:1f.2: version 3.0
    [ 1.042141] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 1.042189] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x1 impl SATA mode
    [ 1.042192] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
    [ 1.042951] scsi0 : ahci
    [ 1.043089] scsi1 : ahci
    [ 1.043205] scsi2 : ahci
    [ 1.043321] scsi3 : ahci
    [ 1.043443] scsi4 : ahci
    [ 1.043605] scsi5 : ahci
    [ 1.043699] ata1: SATA max UDMA/133 abar m2048@0xe041f000 port 0xe041f100 irq 43
    [ 1.043704] ata2: DUMMY
    [ 1.043707] ata3: DUMMY
    [ 1.043709] ata4: DUMMY
    [ 1.043711] ata5: DUMMY
    [ 1.043713] ata6: DUMMY
    [ 1.339195] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 1.389168] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.390125] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
    [ 1.390134] ata1.00: ATA-9: SAMSUNG MZMTD256HAGM-000L1, DXT42L0Q, max UDMA/133
    [ 1.390139] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.390821] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
    [ 1.390986] ata1.00: configured for UDMA/133
    [ 1.391372] scsi 0:0:0:0: Direct-Access ATA SAMSUNG MZMTD256 DXT4 PQ: 0 ANSI: 5
    [ 1.401296] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
    [ 1.401579] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.401588] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.401790] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.404906] sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8
    [ 1.406850] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.490272] hub 1-1:1.0: USB hub found
    [ 1.490465] hub 1-1:1.0: 6 ports detected
    [ 1.512747] device-mapper: uevent: version 1.0.3
    [ 1.512926] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: [email protected]
    [ 1.519284] bio: create slab <bio-1> at 1
    [ 1.545404] PM: Starting manual resume from disk
    [ 1.545409] PM: Hibernation image partition 254:0 present
    [ 1.545411] PM: Looking for hibernation image.
    [ 1.545576] PM: Image not found (code -22)
    [ 1.545578] PM: Hibernation image not present or could not be loaded.
    [ 1.579429] atkbd serio0: Unknown key pressed (translated set 2, code 0xbe on isa0060/serio0).
    [ 1.579432] atkbd serio0: Use 'setkeycodes e03e <keycode>' to make it known.
    [ 1.583409] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
    [ 1.584558] atkbd serio0: Unknown key released (translated set 2, code 0xbe on isa0060/serio0).
    [ 1.584561] atkbd serio0: Use 'setkeycodes e03e <keycode>' to make it known.
    [ 1.609376] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 1.665486] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpuset of type cgroup with options cpuset.
    [ 1.665742] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpu,cpuacct of type cgroup with options cpu,cpuacct.
    [ 1.665813] systemd[1]: Mounting cgroup to /sys/fs/cgroup/memory of type cgroup with options memory.
    [ 1.665853] systemd[1]: Mounting cgroup to /sys/fs/cgroup/devices of type cgroup with options devices.
    [ 1.665880] systemd[1]: Mounting cgroup to /sys/fs/cgroup/freezer of type cgroup with options freezer.
    [ 1.665906] systemd[1]: Mounting cgroup to /sys/fs/cgroup/net_cls of type cgroup with options net_cls.
    [ 1.665932] systemd[1]: Mounting cgroup to /sys/fs/cgroup/blkio of type cgroup with options blkio.
    [ 1.665987] systemd[1]: systemd 216 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN )
    [ 1.666093] systemd[1]: Detected architecture 'x86-64'.
    [ 1.667499] systemd[1]: Set hostname to <arch-yogi>.
    [ 1.668059] systemd[1]: Using cgroup controller name=systemd. File system hierarchy is at /sys/fs/cgroup/systemd.
    [ 1.668094] systemd[1]: Installed release agent.
    [ 1.668133] systemd[1]: Set up TFD_TIMER_CANCEL_ON_SET timerfd.
    [ 1.669521] systemd[146]: Spawned /usr/lib/systemd/system-generators/systemd-getty-generator as 147.
    [ 1.669581] systemd[146]: Spawned /usr/lib/systemd/system-generators/systemd-gpt-auto-generator as 148.
    [ 1.669637] systemd[146]: Spawned /usr/lib/systemd/system-generators/systemd-fstab-generator as 149.
    [ 1.669689] systemd[146]: Spawned /usr/lib/systemd/system-generators/systemd-system-update-generator as 150.
    [ 1.669743] systemd[146]: Spawned /usr/lib/systemd/system-generators/lvm2-activation-generator as 151.
    [ 1.669826] systemd[146]: Spawned /usr/lib/systemd/system-generators/systemd-efi-boot-generator as 152.
    [ 1.669899] systemd[146]: Spawned /usr/lib/systemd/system-generators/systemd-debug-generator as 153.
    [ 1.669992] systemd[146]: Spawned /usr/lib/systemd/system-generators/systemd-cryptsetup-generator as 154.
    [ 1.671020] systemd[146]: /usr/lib/systemd/system-generators/systemd-getty-generator succeeded.
    [ 1.677317] systemd[146]: /usr/lib/systemd/system-generators/systemd-gpt-auto-generator succeeded.
    [ 1.678493] systemd[146]: /usr/lib/systemd/system-generators/systemd-fstab-generator succeeded.
    [ 1.678499] systemd[146]: /usr/lib/systemd/system-generators/systemd-system-update-generator succeeded.
    [ 1.689210] systemd[146]: /usr/lib/systemd/system-generators/lvm2-activation-generator succeeded.
    [ 1.689216] systemd[146]: /usr/lib/systemd/system-generators/systemd-efi-boot-generator succeeded.
    [ 1.689220] systemd[146]: /usr/lib/systemd/system-generators/systemd-debug-generator succeeded.
    [ 1.689223] systemd[146]: /usr/lib/systemd/system-generators/systemd-cryptsetup-generator succeeded.
    [ 1.689278] systemd[1]: /usr/lib/systemd/system-generators succeeded.
    [ 1.689509] systemd[1]: Looking for unit files in (higher priority first):
    [ 1.689512] systemd[1]: /etc/systemd/system
    [ 1.689513] systemd[1]: /run/systemd/system
    [ 1.689514] systemd[1]: /run/systemd/generator
    [ 1.689516] systemd[1]: /usr/local/lib/systemd/system
    [ 1.689517] systemd[1]: /usr/lib/systemd/system
    [ 1.689518] systemd[1]: /run/systemd/generator.late
    [ 1.689520] systemd[1]: SysV init scripts and rcN.d links support disabled
    [ 1.696010] systemd[1]: Failed to load configuration for auditd.service: No such file or directory
    [ 1.699470] systemd[1]: Failed to load configuration for plymouth-start.service: No such file or directory
    [ 1.704745] systemd[1]: Failed to load configuration for syslog.service: No such file or directory
    [ 1.711661] systemd[1]: Failed to load configuration for plymouth-quit.service: No such file or directory
    [ 1.712238] systemd[1]: Failed to load configuration for plymouth-quit-wait.service: No such file or directory
    [ 1.720811] systemd[1]: Using notification socket /run/systemd/notify
    [ 1.720824] systemd[1]: Successfully created private D-Bus server.
    [ 1.720829] systemd[1]: -.mount changed dead -> mounted
    [ 1.720856] systemd[1]: Activating default unit: default.target
    [ 1.720860] systemd[1]: Trying to enqueue job graphical.target/start/isolate
    [ 1.720991] systemd[1]: Looking at job [email protected]/stop conflicted_by=yes
    [ 1.720993] systemd[1]: Looking at job [email protected]/start conflicted_by=no
    [ 1.720996] systemd[1]: Fixing conflicting jobs [email protected]/stop,[email protected]/start by deleting job [email protected]/start
    [ 1.720998] systemd[1]: Looking at job gdm.service/start conflicted_by=no
    [ 1.721000] systemd[1]: Looking at job gdm.service/stop conflicted_by=no
    [ 1.721002] systemd[1]: Fixing conflicting jobs gdm.service/start,gdm.service/stop by deleting job gdm.service/stop
    [ 1.721036] systemd[1]: Installed new job graphical.target/start as 1
    [ 1.721044] systemd[1]: Installed new job multi-user.target/start as 2
    [ 1.721048] systemd[1]: Installed new job basic.target/start as 3
    [ 1.721052] systemd[1]: Installed new job sysinit.target/start as 4
    [ 1.721056] systemd[1]: Installed new job local-fs.target/start as 5
    [ 1.721059] systemd[1]: Installed new job boot.mount/start as 6
    [ 1.721063] systemd[1]: Installed new job system.slice/start as 8
    [ 1.721067] systemd[1]: Installed new job -.slice/start as 9
    [ 1.721070] systemd[1]: Installed new job dev-sda2.device/start as 10
    [ 1.721077] systemd[1]: Installed new job [email protected]/start as 11
    [ 1.721082] systemd[1]: Installed new job system-systemd\x2dfsck.slice/start as 12
    [ 1.721085] systemd[1]: Installed new job home.mount/start as 15
    [ 1.721089] systemd[1]: Installed new job dev-mapper-Linux\x2dHome.device/start as 16
    [ 1.721093] systemd[1]: Installed new job systemd-fsck@dev-mapper-Linux\x2dHome.service/start as 17
    [ 1.721097] systemd[1]: Installed new job systemd-fsck-root.service/start as 18
    [ 1.721100] systemd[1]: Installed new job tmp.mount/start as 19
    [ 1.721104] systemd[1]: Installed new job systemd-remount-fs.service/start as 20
    [ 1.721107] systemd[1]: Installed new job local-fs-pre.target/start as 21
    [ 1.721110] systemd[1]: Installed new job boot.automount/start as 22
    [ 1.721114] systemd[1]: Installed new job swap.target/start as 23
    [ 1.721117] systemd[1]: Installed new job dev-mapper-Linux\x2dSwap.swap/start as 24
    [ 1.721121] systemd[1]: Installed new job dev-mapper-Linux\x2dSwap.device/start as 25
    [ 1.721124] systemd[1]: Installed new job systemd-timesyncd.service/start as 26
    [ 1.721127] systemd[1]: Installed new job time-sync.target/start as 27
    [ 1.721131] systemd[1]: Installed new job ldconfig.service/start as 28
    [ 1.721134] systemd[1]: Installed new job sys-kernel-debug.mount/start as 29
    [ 1.721137] systemd[1]: Installed new job systemd-vconsole-setup.service/start as 30
    [ 1.721140] systemd[1]: Installed new job sys-kernel-config.mount/start as 31
    [ 1.721144] systemd[1]: Installed new job systemd-journal-flush.service/start as 32
    [ 1.721147] systemd[1]: Installed new job systemd-journald.service/start as 33
    [ 1.721150] systemd[1]: Installed new job systemd-journald.socket/start as 34
    [ 1.721154] systemd[1]: Installed new job systemd-journald-dev-log.socket/start as 35
    [ 1.721157] systemd[1]: Installed new job systemd-sysctl.service/start as 36
    [ 1.721160] systemd[1]: Installed new job systemd-firstboot.service/start as 37
    [ 1.721164] systemd[1]: Installed new job cryptsetup.target/start as 38
    [ 1.721167] systemd[1]: Installed new job lvm2-lvmetad.socket/start as 39
    [ 1.721170] systemd[1]: Installed new job kmod-static-nodes.service/start as 40
    [ 1.721173] systemd[1]: Installed new job systemd-binfmt.service/start as 41
    [ 1.721177] systemd[1]: Installed new job sys-fs-fuse-connections.mount/start as 42
    [ 1.721180] systemd[1]: Installed new job systemd-journal-catalog-update.service/start as 43
    [ 1.721184] systemd[1]: Installed new job systemd-udevd.service/start as 44
    [ 1.721187] systemd[1]: Installed new job systemd-udevd-control.socket/start as 45
    [ 1.721191] systemd[1]: Installed new job systemd-udevd-kernel.socket/start as 46
    [ 1.721194] systemd[1]: Installed new job systemd-ask-password-console.path/start as 47
    [ 1.721197] systemd[1]: Installed new job systemd-random-seed.service/start as 48
    [ 1.721200] systemd[1]: Installed new job dev-mqueue.mount/start as 49
    [ 1.721204] systemd[1]: Installed new job systemd-modules-load.service/start as 50
    [ 1.721207] systemd[1]: Installed new job proc-sys-fs-binfmt_misc.automount/start as 51
    [ 1.721211] systemd[1]: Installed new job systemd-tmpfiles-setup-dev.service/start as 52
    [ 1.721214] systemd[1]: Installed new job systemd-udev-trigger.service/start as 53
    [ 1.721217] systemd[1]: Installed new job systemd-tmpfiles-setup.service/start as 54
    [ 1.721220] systemd[1]: Installed new job systemd-update-utmp.service/start as 55
    [ 1.721224] systemd[1]: Installed new job dev-hugepages.mount/start as 56
    [ 1.721227] systemd[1]: Installed new job systemd-sysusers.service/start as 57
    [ 1.721230] systemd[1]: Installed new job systemd-udev-hwdb-update.service/start as 58
    [ 1.721233] systemd[1]: Installed new job systemd-update-done.service/start as 59
    [ 1.721237] systemd[1]: Installed new job sockets.target/start as 62
    [ 1.721240] systemd[1]: Installed new job acpid.socket/start as 63
    [ 1.721244] systemd[1]: Installed new job systemd-shutdownd.socket/start as 64
    [ 1.721247] systemd[1]: Installed new job dm-event.socket/start as 65
    [ 1.721250] systemd[1]: Installed new job systemd-initctl.socket/start as 66
    [ 1.721254] systemd[1]: Installed new job dbus.socket/start as 67
    [ 1.721257] systemd[1]: Installed new job timers.target/start as 68
    [ 1.721260] systemd[1]: Installed new job systemd-tmpfiles-clean.timer/start as 69
    [ 1.721263] systemd[1]: Installed new job paths.target/start as 70
    [ 1.721267] systemd[1]: Installed new job slices.target/start as 71
    [ 1.721270] systemd[1]: Installed new job acpid.service/start as 72
    [ 1.721272] systemd[1]: Installed new job systemd-udev-settle.service/start as 73
    [ 1.721276] systemd[1]: Installed new job remote-fs.target/start as 74
    [ 1.721279] systemd[1]: Installed new job NetworkManager.service/start as 75
    [ 1.721282] systemd[1]: Installed new job network.target/start as 76
    [ 1.721286] systemd[1]: Installed new job man-db.timer/start as 77
    [ 1.721289] systemd[1]: Installed new job dbus.service/start as 78
    [ 1.721292] systemd[1]: Installed new job getty.target/start as 79
    [ 1.721295] systemd[1]: Installed new job system-getty.slice/start as 81
    [ 1.721299] systemd[1]: Installed new job gdm.service

    So it times out (taking 3 minutes) then says
    [FAILED] Failed to start udev Wait for Complete Device Initialization.
    See "systemctl status systemd-udev-settle.service" for details
    [DEPEND] Dependency failed for ACPI event daemon
    so I ran
    systemctl status systemd-udev-settle
    with this output:
    ● systemd-udev-settle.service - udev Wait for Complete Device Initialization
    Loaded: loaded (/usr/lib/systemd/system/systemd-udev-settle.service; static)
    Active: active (exited) since Thu 2014-11-13 11:40:16 EST; 1min 24s ago
    Docs: man:udev(7)
    man:systemd-udevd.service(8)
    Process: 583 ExecStart=/usr/bin/udevadm settle (code=exited, status=0/SUCCESS)
    Main PID: 583 (code=exited, status=0/SUCCESS)
    CGroup: /system.slice/systemd-udev-settle.service
    Nov 13 11:40:14 arch-yogi systemd[1]: systemd-udev-settle.service changed failed -> start
    Nov 13 11:40:16 arch-yogi systemd[1]: Child 583 belongs to systemd-udev-settle.service
    Nov 13 11:40:16 arch-yogi systemd[1]: systemd-udev-settle.service: main process exited, code=exited, status=0/SUCCESS
    Nov 13 11:40:16 arch-yogi systemd[1]: systemd-udev-settle.service changed start -> exited
    Nov 13 11:40:16 arch-yogi systemd[1]: Job systemd-udev-settle.service/start finished, result=done
    Nov 13 11:40:16 arch-yogi systemd[1]: Started udev Wait for Complete Device Initialization.
    Nov 13 11:40:16 arch-yogi systemd[1]: systemd-udev-settle.service: cgroup is empty
    and after another
    systemd-analyze blame
    I get:
    2.358s systemd-udev-settle.service
    995ms lvm2-pvscan@8:8.service
    558ms rtkit-daemon.service
    488ms NetworkManager.service
    458ms udisks2.service
    341ms systemd-udev-trigger.service
    341ms systemd-binfmt.service
    319ms systemd-tmpfiles-setup-dev.service
    315ms systemd-random-seed.service
    301ms systemd-journald.service
    299ms proc-sys-fs-binfmt_misc.mount
    166ms systemd-udevd.service
    133ms [email protected]
    108ms systemd-journal-flush.service
    98ms systemd-logind.service
    90ms systemd-timesyncd.service
    80ms bluetooth.service
    65ms [email protected]
    47ms polkit.service
    37ms accounts-daemon.service
    28ms wpa_supplicant.service
    26ms systemd-sysctl.service
    25ms colord.service
    23ms systemd-fsck@dev-mapper-Linux\x2dHome.service
    23ms [email protected]
    22ms [email protected]
    21ms [email protected]
    19ms boot.mount
    18ms upower.service
    17ms avahi-daemon.service
    14ms systemd-remount-fs.service
    13ms gdm.service
    11ms tmp.mount
    11ms systemd-vconsole-setup.service
    10ms sys-kernel-debug.mount
    9ms dev-mapper-Linux\x2dSwap.swap
    8ms kmod-static-nodes.service
    6ms systemd-tmpfiles-setup.service
    5ms systemd-user-sessions.service
    5ms dev-mqueue.mount
    4ms systemd-update-utmp.service
    3ms home.mount
    3ms sys-kernel-config.mount
    3ms sys-fs-fuse-connections.mount
    3ms systemd-backlight@backlight:intel_backlight.service
    2ms dev-hugepages.mount
    systemd-analyze gets it right though:
    Startup finished in 2.538s (firmware) + 62ms (loader) + 2.238s (kernel) + 3min 3.161s (userspace) = 3min 8.001s
    What can I do?

  • I rented a movie on my iPad. It downloaded fine but would only play 36 minutes, 5 seconds worth of the movie; although the time kept running for the length of the movie. Can this be fixed or do I need to get a refund?

    I rented a movie on my iPad. It downloaded fine but would only play 36 minutes, 5 seconds worth of the movie; although the time kept running for the length of the movie. Can this be fixed or do I need to get a refund?

    You can try a rest:
    Reset iPad:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - If that does work, contact iTunes and request a redownload.  You can ask for a refund though.

  • Write elapsed time to a spreadsheet in hours:minutes:seconds format

    Hi everyone,
    I've been trying to write an elapsed time to a spreadsheet file in an hours:minutes:seconds format, but the time is displayed in a floating point value of seconds..
    how can I write to a spreadsheet in an hours:minutes:seconds format.
    Thank you,
    James-

    I often use a subVI that converts Seconds to Hours, Minutes and Seconds. Use the Quotient and Remainder function to divide your elapsed time by 3600, 60 and 1. You can then convert those values to a modified string and use the Write to Spreadsheet File.
    As Dennis said, newer versions of LabVIEW's Write to Spreadsheet File.VI can handle arrays of Double, Integer or String automatically, and in older versions, the Write to Spreadsheet File.VI can be modified and copied to handle strings.
    Hope this helps.
    (Written in 8.5)
    Message Edited by LabViewGuruWannabe on 01-18-2008 09:28 PM
    Attachments:
    TimeToSpreadsheet.vi ‏26 KB
    SecondstoHMS.png ‏32 KB

  • Graph plot in labview to get time in seconds or minutes in X axis starting from 0.

    How can we obtain time starting from 0 seconds or 0 minutes on X axis in a chart and XY graph in labview.When I plot it is showing the system time on   X axis.I would prefer the time to start from 0 ( seconds) , rather than system time.Please reply.

    I have NI cDAQ 9174 chasis and NI 9211 and NI 9207 for thermocouple (NI 9211) and current (NI 9207).Can I acquire all three data inputs within a single DAQ Assistant express vi.Because I tried to access all 3 in one DAQ Assisstant , but it was not accepting it.So I had to place one DAQ Assisstant for thermocouple readings and another for current.For reference I have attached my labview diagram.
    Attachments:
    rktr3.vi ‏218 KB

  • BEWARE of using stopwatch or timer in iphone 5 under iOS7. As the mili second digit ticks really fast, in a matter of minutes, it will break your LCD under that mili second area. It happened to my iphone5. Let me know if you have same issue.

    BEWARE of using stopwatch or timer in iphone 5 under iOS7. As the mili second digit ticks really fast, in a matter of minutes, it will break your LCD under that mili second area. It happened to my iphone5. Let me know if you have same issue.

    You two are obviously talking about the LCD pixels being killed. What exactly does it look like?
    How many minutes are you talking about, 2 to 3, 5 to 7 or more?
    Where was the brightness control at for the both of you?
    KOT

Maybe you are looking for

  • Working with several video formats aspect ratios need help...

    Hi folks I have searched around quite a bit but I need more specific advice based my situation...I am editing a docu about Japanese biker gangs shot on several different SD cameras: MY FOOTAGE 1.Sony Vx-2000 fitted with a  Century Optics 16:9 convert

  • Can I disable all hyperlinks in a page document?

    I am working on a very long pages document that was originally produced by cony-pasting several blog posts, all of which contained several hyperlinks. I would like to find a way to disable them all. Or at least to find them and replace them by normal

  • Fonts!, fonts!, and fonts!!

    http://www.design-by-izo.com/2010/06/07 - and-print/ what do yo think?

  • Problems recovering pictures from icloud

    i had a white iphone 5 and i lost it after a while i got a black iphone 5, i got all my information back thanks to icloud all my pictures and phone numbers, but then after a while my new black iphone got stolen so i got an iphone 4 but when i was rec

  • Deleting Completed Print Jobs in Mac OS X 10.5

    Hello All, On both my HP Officejet 7410 and Xerox Phaser 6200, after printing I am unable to delete the completed jobs from the Print Queue. The Delete functions are available, they just do not seem to work. Any suggestions? Thanks in advance.