Operating system statistics

i want to know the operating system statistics like operating system name with version,memory,Number of CPU's etc.. from SQL * plus.
Is there any view avaliable to get this information.My database version is 9.2.0.5.0.
Thankx in Advance..

Hi,
you can use SELECT * FROM SYS.AUX_STATS$ to select the CBO System statistics, but there won't be anything about sqlplus version, number of CPUs, Memory etc etc.
Use the OS funktions to do that - that's what there are for.
Dim

Similar Messages

  • Time Series Format of Operating System Statistics - "Please Ignore"

    Hi List,
    On the AWR report we see the "Operating System Statistics" section.. since generating multiple AWR reports is daunting and takes a lot of time and I'm only interested on particular columns of dba_hist_osstat (where that particular section of AWR pulls the data)... I'd like to have an output like this:
    SNAP_ID BUSY_TIME LOAD NUM_CPUS PHYSICAL_MEMORY_BYTES
    244 6792 .23 1 169520
    245 1603 .04 1 154464
    246 28415 .05 1 5148
    Problem is, the dba_hist_osstat values are stored as rows...
    select * from dba_hist_osstat where snap_id = 244;
    244     2607950532     1     0     NUM_CPUS     1
    244     2607950532     1     1     IDLE_TIME     57153
    244     2607950532     1     2     BUSY_TIME     5339
    244     2607950532     1     3     USER_TIME     1189
    244     2607950532     1     4     SYS_TIME     4077
    244     2607950532     1     5     IOWAIT_TIME     2432
    244     2607950532     1     6     NICE_TIME     0
    244     2607950532     1     14     RSRC_MGR_CPU_WAIT_TIME     0
    244     2607950532     1     15     LOAD     0.099609375
    244     2607950532     1     1008     PHYSICAL_MEMORY_BYTES     300536
    So I got this query to walk through all the SNAP_IDs with the following output. I'd just like to format particular columns like the one I mentioned (above) for the data to be more meaningful and to be easily loaded on excel for visualization. Well I can also do this on "Instance Activity Stats" (dba_hist_sysstat) and other stuff..
    select
    b.snap_id, substr(e.stat_name, 1, 35) as name,
    (case when e.stat_name like 'NUM_CPU%' then e.value
    when e.stat_name = 'LOAD' then e.value
    when e.stat_name = 'PHYSICAL_MEMORY_BYTES' then e.value
    else e.value - b.value
    end) as value
    from dba_hist_osstat b,
    dba_hist_osstat e
    where
    b.stat_name = 'BUSY_TIME' and
    b.dbid = 2607950532
    and e.dbid = 2607950532
    and b.instance_number = 1
    and e.instance_number = 1
    and e.snap_id = b.snap_id + 1
    and b.stat_id = e.stat_id
    order by snap_id, name asc
    SNAP_ID NAME VALUE
    244     BUSY_TIME     6792
    245     BUSY_TIME     1603
    246     BUSY_TIME     28415
    BTW, try to generate AWR reports on a particular SNAP_IDs, the value you get from the query will be the same on the report...
    - Karl Arao
    karlarao.wordpress.com
    Edited by: Karl Arao on Jan 31, 2010 12:07 PM

    I got the final version of the script...
    SELECT s0.snap_id,
    TO_CHAR(s0.END_INTERVAL_TIME,'YYYY-Mon-DD HH24:MI:SS') snap_start,
    TO_CHAR(s1.END_INTERVAL_TIME,'YYYY-Mon-DD HH24:MI:SS') snap_end,
    round(EXTRACT(DAY FROM s1.END_INTERVAL_TIME - s0.END_INTERVAL_TIME) * 1440 + EXTRACT(HOUR FROM s1.END_INTERVAL_TIME - s0.END_INTERVAL_TIME) * 60 + EXTRACT(MINUTE FROM s1.END_INTERVAL_TIME - s0.END_INTERVAL_TIME) + EXTRACT(SECOND FROM s1.END_INTERVAL_TIME - s0.END_INTERVAL_TIME) / 60, 2) ela_min,
    s1t1.value - s1t0.value AS busy_time,
    s2t1.value AS load,
    s3t1.value AS num_cpus,
    s4t1.value AS physical_memory_bytes
    FROM dba_hist_snapshot s0,
    dba_hist_snapshot s1,
    dba_hist_osstat s1t0,
    dba_hist_osstat s1t1,
    dba_hist_osstat s2t1,
    dba_hist_osstat s3t1,
    dba_hist_osstat s4t1
    WHERE s0.dbid = 2607950532
    AND s1t0.dbid = s0.dbid
    AND s1t1.dbid = s0.dbid
    AND s2t1.dbid = s0.dbid
    AND s3t1.dbid = s0.dbid
    AND s4t1.dbid = s0.dbid
    AND s0.instance_number = 1
    AND s1t0.instance_number = s0.instance_number
    AND s1t1.instance_number = s0.instance_number
    AND s2t1.instance_number = s0.instance_number
    AND s3t1.instance_number = s0.instance_number
    AND s4t1.instance_number = s0.instance_number
    AND s1.snap_id = s0.snap_id + 1
    AND s1t0.snap_id = s0.snap_id
    AND s1t1.snap_id = s0.snap_id + 1
    AND s2t1.snap_id = s0.snap_id + 1
    AND s3t1.snap_id = s0.snap_id + 1
    AND s4t1.snap_id = s0.snap_id + 1
    AND s1t0.stat_name = 'BUSY_TIME'
    AND s1t1.stat_name = s1t0.stat_name
    AND s2t1.stat_name = 'LOAD'
    AND s3t1.stat_name = 'NUM_CPUS'
    AND s4t1.stat_name = 'PHYSICAL_MEMORY_BYTES'
    ORDER BY snap_id ASC
    SNAP_ID SNAP_START          SNAP_END          ELA_MIN BUSY_TIME     LOAD     NUM_CPUS PHYSICAL_MEMORY_BYTES
    244 2010-Jan-14 12:38:36 2010-Jan-14 13:03:23     24.78 6792 .239257813     1          169520
    245 2010-Jan-14 13:03:23 2010-Jan-14 13:10:38     7.25 1603 .049804688     1          154464
    246 2010-Jan-14 13:10:38 2010-Jan-14 14:00:39     50.02 28415 .059570313     1          5148
    247 2010-Jan-14 14:00:39 2010-Jan-14 15:00:42     60.04 8993     0     1          29292
    248 2010-Jan-14 15:00:42 2010-Jan-15 23:56:37     1975.92 -46770 .049804688     1          311216
    249 2010-Jan-15 23:56:37 2010-Jan-16 01:00:40     64.05 17722 .659179688     1          109880
    250 2010-Jan-16 01:00:40 2010-Jan-16 02:00:42     60.03 7089 .229492188     1          43576
    251 2010-Jan-16 02:00:42 2010-Jan-16 10:05:01     484.31 -23928     0     1          310720
    252 2010-Jan-16 10:05:01 2010-Jan-16 11:01:02     56.03 8906 .099609375     1          186432
    From the AWR...
    Snap Id Snap Time Sessions Curs/Sess
    Begin Snap: 244 14-Jan-10 12:38:36 25 1.8 <-- same from above output (start & end)
    End Snap: 245 14-Jan-10 13:03:23 24 2.0
    Elapsed: 24.78 (mins) <-- same from above output (4th col)
    DB Time: 0.32 (mins)
    ... output snipped ...
    Operating System Statistics DB/Inst: IVRS/ivrs Snaps: 244-245
    Statistic Total
    BUSY_TIME 6,792 <-- same from above output (5th col)
    IDLE_TIME 141,649
    IOWAIT_TIME 4,468
    NICE_TIME 0
    SYS_TIME 4,506
    USER_TIME 2,115
    LOAD 0
    RSRC_MGR_CPU_WAIT_TIME 0
    PHYSICAL_MEMORY_BYTES 169,520 <-- same from above output (last col)
    NUM_CPUS 1
    And comming from the original query.. all output is similar above..
    select
    b.snap_id, substr(e.stat_name, 1, 35) as name,
    (case when e.stat_name like 'NUM_CPU%' then e.value
    when e.stat_name = 'LOAD' then e.value
    when e.stat_name = 'PHYSICAL_MEMORY_BYTES' then e.value
    else e.value - b.value
    end) as value
    from dba_hist_osstat b,
    dba_hist_osstat e
    where
    b.stat_name = 'LOAD' and
    b.dbid = 2607950532
    and e.dbid = 2607950532
    and b.instance_number = 1
    and e.instance_number = 1
    and e.snap_id = b.snap_id + 1
    and b.stat_id = e.stat_id
    order by snap_id, name asc
    SNAP_ID NAME                     VALUE
    244 LOAD                .239257813
    245 LOAD                .049804688
    246 LOAD                .059570313
    247 LOAD                          0
    248 LOAD                .049804688
    249 LOAD                .659179688
    250 LOAD                .229492188
    251 LOAD                          0
    252 LOAD                .099609375
    Hope this helps...
    - Karl Arao
    karlarao.wordpress.com

  • Time Series Format of Operating System Statistics

    On the AWR report we see the "Operating System Statistics" section.. since generating multiple AWR reports is daunting and takes a lot of time and I'm only interested on particular columns of dba_hist_osstat (where that particular section of AWR pulls the data)... I'd like to have an output like this:
    SNAP_ID BUSY_TIME LOAD NUM_CPUS PHYSICAL_MEMORY_BYTES
    244 6792 .23 1 169520
    245 1603 .04 1 154464
    246 28415 .05 1 5148
    Problem is, the dba_hist_osstat values are stored as rows...
    select * from dba_hist_osstat where snap_id = 244;
    244 2607950532 1 0 NUM_CPUS 1
    244 2607950532 1 1 IDLE_TIME 57153
    244 2607950532 1 2 BUSY_TIME 5339
    244 2607950532 1 3 USER_TIME 1189
    244 2607950532 1 4 SYS_TIME 4077
    244 2607950532 1 5 IOWAIT_TIME 2432
    244 2607950532 1 6 NICE_TIME 0
    244 2607950532 1 14 RSRC_MGR_CPU_WAIT_TIME 0
    244 2607950532 1 15 LOAD 0.099609375
    244 2607950532 1 1008 PHYSICAL_MEMORY_BYTES 300536
    So I got this query to walk through all the SNAP_IDs with the following output. I'd just like to format particular columns like the one I mentioned (above) for the data to be more meaningful and to be easily loaded on excel for visualization. Well I can also do this on "Instance Activity Stats" (dba_hist_sysstat) and other stuff..
    select
    b.snap_id, substr(e.stat_name, 1, 35) as name,
    (case when e.stat_name like 'NUM_CPU%' then e.value
    when e.stat_name = 'LOAD' then e.value
    when e.stat_name = 'PHYSICAL_MEMORY_BYTES' then e.value
    else e.value - b.value
    end) as value
    from dba_hist_osstat b,
    dba_hist_osstat e
    where
    b.stat_name = 'BUSY_TIME' and
    b.dbid = 2607950532
    and e.dbid = 2607950532
    and b.instance_number = 1
    and e.instance_number = 1
    and e.snap_id = b.snap_id + 1
    and b.stat_id = e.stat_id
    order by snap_id, name asc
    SNAP_ID NAME VALUE
    244 BUSY_TIME 6792
    245 BUSY_TIME 1603
    246 BUSY_TIME 28415
    BTW, try to generate AWR reports on a particular SNAP_IDs, the value you get from the query will be the same on the report...
    - Karl Arao
    karlarao.wordpress.com

    Hi Jonathan,
    Thanks for the input, I'll explore rewriting the query using those functions. But for now it serves the purpose of knowing/characterizing the workload, and also having a clear view of the capacity, requirement, and utilization without the hassle of generating AWR reports on each snap_id...
    This will also be useful for visualization and predictive analysis..
    BTW, I've used the following tables:
    - dba_hist_snapshot
    - dba_hist_osstat
    - dba_hist_sys_time_model
    - dba_hist_sysstat
                                                                    AWR CPU and IO Workload Report
                    Total                                Total                 Total
            Snap   C        CPU                               Oracle                 OS                                                         Oracle RMAN  OS
      Snap         Dur   P       Time            DB      DB        Bg       RMAN         CPU       Busy     OS     CPU   Physical         IOPs      IOPs     IOPs       IO r         IO w      Redo  Sess     Exec    CPU  CPU CPU
        ID         (m)   U        (s)          Time     CPU       CPU        CPU         (s)       Time    Load     (s)     Memory            r      w     redo     (mb)/s       (mb)/s    (mb)/s Start       /s      %    %     %
       345       10.01   1     600.60         18.33      6.99      4.78       0.00       11.77    7467.00    0.30    74.67   71300.00        2.691     1.494     0.152      0.302        0.045     0.010    26    2.169      2    0  12
       344       10.04   1     602.40         67.32     46.23      4.89       0.00       51.12   10755.00    0.79   107.55   66852.00       11.954     1.582     0.226      0.173        0.020     0.005    24    4.724      8    0  18
       343       10.02   1     601.20         40.74     15.31      5.29       0.00       20.60    8188.00    0.80    81.88   79724.00        7.683     1.143     0.546      0.137        0.015     0.005    24    7.991      3    0  14
       342       10.01   1     600.60         12.21      6.95      4.60       0.00       11.55    7283.00    0.15    72.83   83972.00        1.122     0.749     0.143      0.012        0.009     0.003    24    7.051      2    0  12
       341       10.01   1     600.60          3.49      1.30      3.71       0.00        5.00    6107.00    0.79    61.07   86716.00        0.336     0.666     0.225      0.004        0.007     0.003    24    2.511      1    0  10
       340       10.01   1     600.60          2.01      1.34      4.21       0.00        5.55    6495.00    0.15    64.95   88028.00        0.341     0.909     0.155      0.003        0.010     0.003    24    2.130      1    0  11
       339        9.05   1     543.00        167.66     72.09      4.67       0.00       76.76   12248.00    0.39   122.48   88668.00      120.223     1.024     0.302     13.920        0.015     0.006    30    5.532     14    0  23
       338       10.05   1     603.00       1324.58    435.67     11.64       0.00      447.31   46982.00    4.29   469.82   50048.00      659.343     9.504     3.736     73.372        0.322     0.025    31   95.922     74    0  78
       337       10.14   1     608.40       2140.32    296.60     29.13       0.00      325.73   39908.00    4.45   399.08  111276.00      332.237    16.039     4.277     28.269        0.328     0.028    30  118.437     54    0  66
       336       10.12   1     607.20       1861.91    141.92     29.59       0.00      171.51   22773.00    3.20   227.73   27880.00      100.339     9.433     4.298     10.210        0.166     0.029    31  110.417     28    0  38
       335       10.06   1     603.60       1871.36    142.33     30.50       0.00      172.84   24254.00    3.51   242.54    3400.00      107.760    37.863    16.120      3.183        0.479     0.110    24  457.200     29    0  40
       334       10.01   1     600.60          1.68      0.96      2.92       0.00        3.88    2515.00    0.44    25.15   23912.00        0.012     0.664     0.152      0.000        0.008     0.002    24    2.592      1    0     4
       333       10.01   1     600.60          1.52      0.96      2.98       0.00        3.95    1068.00    0.00    10.68   67312.00        0.010     0.773     0.145      0.000        0.011     0.003    24    1.935      1    0     2
       332       10.01   1     600.60          5.02      4.70      2.97       0.00        7.67    1606.00    0.08    16.06   68600.00        0.018     0.661     0.155      0.000        0.008     0.003    24    3.362      1    0     3- Karl Arao
    karlarao.wordpress.com

  • What are the supported Macintosh Operating System versions for IBM SPSS Statistics 18,19 and 20?   Question  I would like to know what are the supported Macintosh Operating system versions for IBM SPSS Statistics versions 18, 19 and 20? Answer  Please see

    What are the supported Macintosh Operating System versions for IBM SPSS Statistics 18,19 and 20?
    Question
    I would like to know what are the supported Macintosh Operating system versions for IBM SPSS Statistics versions 18, 19 and 20?
    Answer
    Please see the list below:
    - IBM SPSS Statistics 18 and 19 releases are supported on Apple Macintosh OS 10.5 (Leopard) and 10.6 (Snow Leopard) with Intel processor.
    - IBM SPSS Statistics 20 release is supported on Apple Macintosh OS 10.6 (Snow Leopard) and 10.7 (Lion) with Intel processor.
    - The IBM SPSS Statistics versions 18 and 19 are not supported on Mac OS 10.7 (Lion).
    THIS MEANS THAT TO USE LION ONE FIRST HAS TO UPGRADE TO SPSS STATISTICS 20.

    Whilst the 2012-02-15 edition of IBM's matrix does not mention Lion, a few users have noted that:
    • 18.0 can be troublesome
    • an updated version of 18.x should be better.
    Related files
    PASWStatistics_1 803_Mac_Patch.dmg and IBM SPSS Statistics 18.0.3.4 Hotfix Mac.zip are no longer available from the spss.com domain, and I could not find them in an IBM domain. If you download from unofficial sources, proceed with caution.
    Related pages
    In Apple Support Communities:
    • will PASW (SPSS) 18 work with LION
    • PASW statistics 18 crashes every time
    • Java Virtual Machine & SPSS 18 with a question from me.
    Elsewhere:
    • SPSS on Lion « Decorator Pattern
    • SPSS / PASW Mac Patch 18.0.3 and Graphing Fix | The Personal Website of Philip Fizur
    • Patching PASW 18 (or SPSS 18) for Mac OS X (Leopard, Snow Leopard, Lion) to version 18.0.3.1
    • and other sources, including one domain that I treat as reputable but I'll respectfully not share that link here.
    At a glance, you might find that 18.0.3.4 is compatible with Lion.

  • Here is my question: Once my computer downloads updates I get the following line: loginwindow SleepWakeCallback. This has happened several times but now my computer lags so much it feels like I have a windows operating system.

    Please help, The problem started with this string downloaded, and now my iMac acts like it has a windos operating system with all the lag time I encounter. Any help with a possible solution would be greatly appreciated.
    ar  8 04:36:24 r-peter-kriglowitschs-imac loginwindow[32]: loginwindow SleepWakeCallback will power on, Currenttime:3/8/2013 4:36:24.009 AM - Waketime:3/8/2013 4:36:22.740 AM = Deltatime:1.268971086
    Mar  8 04:36:24 r-peter-kriglowitschs-imac configd[13]: PMConnection mDNSResponder com.apple.powermanagement.applicationresponse.slowresponse 101 ms
    Mar  8 04:36:24 r-peter-kriglowitschs-imac configd[13]: PMConnection AirPort configd plug-in com.apple.powermanagement.applicationresponse.slowresponse 124 ms
    Mar  8 04:36:24 r-peter-kriglowitschs-imac configd[13]: PMConnection IPConfiguration com.apple.powermanagement.applicationresponse.slowresponse 125 ms
    Mar  8 04:36:26 r-peter-kriglowitschs-imac com.apple.launchd[1] (com.apple.SystemStarter): Failed to count the number of files in "/System/Library/StartupItems": No such file or directory
    Mar  8 04:36:31: --- last message repeated 1 time ---
    Mar  8 04:36:31 r-peter-kriglowitschs-imac configd[13]: Sleep: Success - AC - Software Sleep
    Mar  8 04:36:31 r-peter-kriglowitschs-imac configd[13]: Wake: Success - AC - OHC2
    Mar  8 04:36:31 r-peter-kriglowitschs-imac configd[13]: Hibernate Statistics
    Mar  8 04:36:31 r-peter-kriglowitschs-imac configd[13]: network configuration changed.
    Mar  8 04:36:54 r-peter-kriglowitschs-imac loginwindow[32]: no spins reported for this wake
    Mar  8 04:51:17 r-peter-kriglowitschs-imac WebProcess[137]: Periodic CFURLCache Insert stats (iters: 370) - Tx time:1.258832, # of Inserts: 3, # of bytes written: 1083330, Did shrink: NO, Size of cache-file: 182304768, Num of Failures: 0
    Mar  8 04:53:30 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[149]: INSERT-HANG-DETECTED: Tx time:9.994853, # of Inserts: 1, # of bytes written: 76099, Did shrink: NO
    Mar  8 04:55:26 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[149]: INSERT-HANG-DETECTED: Tx time:116.215102, # of Inserts: 0, # of bytes written: 0, Did shrink: YES
    Mar  8 04:55:28 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[149]: Periodic CFURLCache Insert stats (iters: 2672) - Tx time:2.341139, # of Inserts: 2, # of bytes written: 260880, Did shrink: NO, Size of cache-file: 181276672, Num of Failures: 3
    Mar  8 04:55:58 r-peter-kriglowitschs-imac Safari[131]: IPCClient: Server port 0 is invalid; looking it up again...
    Mar  8 04:59:23 r-peter-kriglowitschs-imac loginwindow[32]: loginwindow SleepWakeCallback WILL sleep
    Mar  8 04:59:23 r-peter-kriglowitschs-imac configd[13]: PMConnection IPConfiguration com.apple.powermanagement.applicationresponse.slowresponse 116 ms
    Mar  8 04:59:24 r-peter-kriglowitschs-imac com.apple.launchd[1] (com.apple.SystemStarter): Failed to count the number of files in "/System/Library/StartupItems": No such file or directory
    Mar  8 08:40:31: --- last message repeated 1 time ---
    Mar  8 08:40:23 r-peter-kriglowitschs-imac loginwindow[32]: loginwindow SleepWakeCallback will power on, Currenttime:3/8/2013 8:40:23.026 AM - Waketime:3/8/2013 8:40:21.740 AM = Deltatime:1.285587907
    Mar  8 08:40:30 r-peter-kriglowitschs-imac configd[13]: Sleep: Success - AC - Software Sleep
    Mar  8 08:40:30 r-peter-kriglowitschs-imac configd[13]: Wake: Success - AC - OHC2
    Mar  8 08:40:30 r-peter-kriglowitschs-imac configd[13]: Hibernate Statistics
    Mar  8 08:40:31 r-peter-kriglowitschs-imac configd[13]: network configuration changed.
    Mar  8 08:40:32 r-peter-kriglowitschs-imac com.apple.launchd[1] (com.apple.SystemStarter): Failed to count the number of files in "/System/Library/StartupItems": No such file or directory
    Mar  8 08:40:35: --- last message repeated 1 time ---
    Mar  8 08:40:32 r-peter-kriglowitschs-imac configd[13]: PMConnection AirPort configd plug-in com.apple.powermanagement.applicationresponse.slowresponse 9022 ms
    Mar  8 08:40:32 r-peter-kriglowitschs-imac configd[13]: PMConnection IPConfiguration com.apple.powermanagement.applicationresponse.slowresponse 9026 ms
    Mar  8 08:40:32 r-peter-kriglowitschs-imac configd[13]: network configuration changed.
    Mar  8 08:40:48 r-peter-kriglowitschs-imac ntpd[21]: time reset -0.962740 s
    Mar  8 08:40:52 r-peter-kriglowitschs-imac loginwindow[32]: no spins reported for this wake
    Mar  8 08:42:15 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[653]: INSERT-HANG-DETECTED: Tx time:28.749877, # of Inserts: 187, # of bytes written: 2683908, Did shrink: NO
    Mar  8 08:42:25 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[653]: INSERT-HANG-DETECTED: Tx time:3.605243, # of Inserts: 9, # of bytes written: 125737, Did shrink: NO
    Mar  8 08:42:48 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[653]: INSERT-HANG-DETECTED: Tx time:11.766300, # of Inserts: 66, # of bytes written: 1369133, Did shrink: NO
    Mar  8 08:50:11 r-peter-kriglowitschs-imac DashboardClient[158]: no upcoming events
    Mar  8 08:50:11 r-peter-kriglowitschs-imac com.apple.Dock.agent[97]: 2013-03-08 08:50:11.529 DashboardClient[158:a03] no upcoming events
    Mar  8 08:58:57 r-peter-kriglowitschs-imac ntpd[21]: time reset -0.204902 s
    Mar  8 09:08:48 r-peter-kriglowitschs-imac WebProcess[137]: Periodic CFURLCache Insert stats (iters: 439) - Tx time:0.814358, # of Inserts: 3, # of bytes written: 162168, Did shrink: NO, Size of cache-file: 181276672, Num of Failures: 0
    Mar  8 09:12:01 r-peter-kriglowitschs-imac Safari[131]: Periodic CFURLCache Insert stats (iters: 3131) - Tx time:0.133983, # of Inserts: 4, # of bytes written: 1206, Did shrink: NO, Size of cache-file: 181276672, Num of Failures: 0
    Mar  8 09:12:27 r-peter-kriglowitschs-imac Safari[131]: INSERT-HANG-DETECTED: Tx time:20.514255, # of Inserts: 5, # of bytes written: 2056, Did shrink: YES
    Mar  8 09:40:37 r-peter-kriglowitschs-imac WebProcess[137]: Periodic CFURLCache Insert stats (iters: 382) - Tx time:0.332217, # of Inserts: 1, # of bytes written: 35416, Did shrink: NO, Size of cache-file: 180250624, Num of Failures: 0
    Mar  8 10:03:12 r-peter-kriglowitschs-imac com.apple.Dock.agent[97]: 2013-03-08 10:03:12.433 DashboardClient[158:a03] no upcoming events
    Mar  8 10:03:12 r-peter-kriglowitschs-imac DashboardClient[158]: no upcoming events
    Mar  8 10:05:24: --- last message repeated 1 time ---
    Mar  8 10:05:21 r-peter-kriglowitschs-imac com.apple.Dock.agent[97]: 2013-03-08 10:05:21.961 DashboardClient[158:a03] no upcoming events
    Mar  8 10:07:20 r-peter-kriglowitschs-imac DashboardClient[158]: no upcoming events
    Mar  8 10:07:20 r-peter-kriglowitschs-imac com.apple.Dock.agent[97]: 2013-03-08 10:07:20.524 DashboardClient[158:a03] no upcoming events
    Mar  8 10:12:53 r-peter-kriglowitschs-imac WebProcess[137]: Periodic CFURLCache Insert stats (iters: 387) - Tx time:1.000743, # of Inserts: 8, # of bytes written: 416127, Did shrink: NO, Size of cache-file: 180250624, Num of Failures: 0
    Mar  8 10:21:12 r-peter-kriglowitschs-imac loginwindow[32]: loginwindow SleepWakeCallback WILL sleep
    Mar  8 10:21:14 r-peter-kriglowitschs-imac com.apple.launchd[1] (com.apple.SystemStarter): Failed to count the number of files in "/System/Library/StartupItems": No such file or directory
    Mar  8 15:08:05: --- last message repeated 1 time ---
    Mar  8 15:07:58 r-peter-kriglowitschs-imac loginwindow[32]: loginwindow SleepWakeCallback will power on, Currenttime:3/8/2013 3:07:58.018 PM - Waketime:3/8/2013 3:07:56.750 PM = Deltatime:1.268125057
    Mar  8 15:08:05 r-peter-kriglowitschs-imac configd[13]: Sleep: Success - AC - Software Sleep
    Mar  8 15:08:05 r-peter-kriglowitschs-imac configd[13]: Wake: Success - AC - EHC1
    Mar  8 15:08:05 r-peter-kriglowitschs-imac configd[13]: Hibernate Statistics
    Mar  8 15:08:05 r-peter-kriglowitschs-imac configd[13]: network configuration changed.
    Mar  8 15:08:05 r-peter-kriglowitschs-imac configd[13]: PMConnection AirPort configd plug-in com.apple.powermanagement.applicationresponse.slowresponse 7826 ms
    Mar  8 15:08:05 r-peter-kriglowitschs-imac configd[13]: PMConnection IPConfiguration com.apple.powermanagement.applicationresponse.slowresponse 7827 ms
    Mar  8 15:08:05 r-peter-kriglowitschs-imac com.apple.launchd[1] (com.apple.SystemStarter): Failed to count the number of files in "/System/Library/StartupItems": No such file or directory
    Mar  8 15:08:06: --- last message repeated 1 time ---
    Mar  8 15:08:05 r-peter-kriglowitschs-imac configd[13]: network configuration changed.
    Mar  8 15:08:28 r-peter-kriglowitschs-imac loginwindow[32]: no spins reported for this wake
    Mar  8 15:20:07 r-peter-kriglowitschs-imac DashboardClient[158]: no upcoming events
    Mar  8 15:20:07 r-peter-kriglowitschs-imac com.apple.Dock.agent[97]: 2013-03-08 15:20:07.663 DashboardClient[158:a03] no upcoming events
    Mar  8 15:22:09 r-peter-kriglowitschs-imac WebProcess[137]: INSERT-HANG-DETECTED: Tx time:4.354654, # of Inserts: 3, # of bytes written: 970845, Did shrink: NO
    Mar  8 15:28:49 r-peter-kriglowitschs-imac ntpd[21]: time reset -0.404104 s
    Mar  8 15:29:25 r-peter-kriglowitschs-imac DashboardClient[158]: no upcoming events
    Mar  8 15:29:25 r-peter-kriglowitschs-imac com.apple.Dock.agent[97]: 2013-03-08 15:29:25.685 DashboardClient[158:a03] no upcoming events
    Mar  8 15:30:09 r-peter-kriglowitschs-imac DashboardClient[158]: there is already a confinement rect client waiting for delegate messages
    Mar  8 15:30:09 r-peter-kriglowitschs-imac com.apple.Dock.agent[97]: 2013-03-08 15:30:09.752 DashboardClient[158:a03] there is already a confinement rect client waiting for delegate messages
    Mar  8 15:33:55 r-peter-kriglowitschs-imac WebProcess[137]: Periodic CFURLCache Insert stats (iters: 412) - Tx time:0.454076, # of Inserts: 1, # of bytes written: 87, Did shrink: NO, Size of cache-file: 180250624, Num of Failures: 1
    Mar  8 15:40:11 r-peter-kriglowitschs-imac DashboardClient[158]: no upcoming events
    Mar  8 15:40:11 r-peter-kriglowitschs-imac com.apple.Dock.agent[97]: 2013-03-08 15:40:11.190 DashboardClient[158:a03] no upcoming events
    Mar  8 15:45:15 r-peter-kriglowitschs-imac loginwindow[32]: loginwindow SleepWakeCallback WILL sleep
    Mar  8 15:45:17 r-peter-kriglowitschs-imac com.apple.launchd[1] (com.apple.SystemStarter): Failed to count the number of files in "/System/Library/StartupItems": No such file or directory
    Mar  8 20:00:47: --- last message repeated 1 time ---
    Mar  8 20:00:40 r-peter-kriglowitschs-imac loginwindow[32]: loginwindow SleepWakeCallback will power on, Currenttime:3/8/2013 8:00:40.015 PM - Waketime:3/8/2013 8:00:38.740 PM = Deltatime:1.274775028
    Mar  8 20:00:47 r-peter-kriglowitschs-imac configd[13]: Sleep: Success - AC - Software Sleep
    Mar  8 20:00:47 r-peter-kriglowitschs-imac configd[13]: Wake: Success - AC - OHC2
    Mar  8 20:00:47 r-peter-kriglowitschs-imac configd[13]: Hibernate Statistics
    Mar  8 20:00:47 r-peter-kriglowitschs-imac configd[13]: network configuration changed.
    Mar  8 20:00:47 r-peter-kriglowitschs-imac com.apple.launchd[1] (com.apple.SystemStarter): Failed to count the number of files in "/System/Library/StartupItems": No such file or directory
    Mar  8 20:00:48: --- last message repeated 1 time ---
    Mar  8 20:00:47 r-peter-kriglowitschs-imac configd[13]: PMConnection AirPort configd plug-in com.apple.powermanagement.applicationresponse.slowresponse 7666 ms
    Mar  8 20:00:47 r-peter-kriglowitschs-imac configd[13]: PMConnection IPConfiguration com.apple.powermanagement.applicationresponse.slowresponse 7672 ms
    Mar  8 20:00:48 r-peter-kriglowitschs-imac configd[13]: network configuration changed.
    Mar  8 20:00:57 r-peter-kriglowitschs-imac SoftwareUpdateCheck[800]: Checking for updates
    Mar  8 20:00:58 r-peter-kriglowitschs-imac storeagent[804]: port created
    Mar  8 20:01:10 r-peter-kriglowitschs-imac loginwindow[32]: no spins reported for this wake
    Mar  8 20:02:09 r-peter-kriglowitschs-imac SoftwareUpdateCheck[800]: SWU: scan found 0 products:
    Mar  8 20:02:09 r-peter-kriglowitschs-imac com.apple.launchd[1] (com.apple.suhelperd[803]): Exited with exit code: 2
    Mar  8 20:02:09 r-peter-kriglowitschs-imac com.apple.launchd.peruser.501[93] ([0x0-0x7d07d].SoftwareUpdateCheck[800]): Exited with exit code: 102
    Mar  8 20:03:15 r-peter-kriglowitschs-imac loginwindow[32]: loginwindow SleepWakeCallback WILL sleep
    Mar  8 20:03:17 r-peter-kriglowitschs-imac com.apple.launchd[1] (com.apple.SystemStarter): Failed to count the number of files in "/System/Library/StartupItems": No such file or directory
    Mar  8 20:03:17: --- last message repeated 1 time ---
    Mar  8 20:03:17 r-peter-kriglowitschs-imac configd[13]: network configuration changed.
    Mar  8 20:08:27 r-peter-kriglowitschs-imac loginwindow[32]: loginwindow SleepWakeCallback will power on, Currenttime:3/8/2013 8:08:27.012 PM - Waketime:3/8/2013 8:08:25.740 PM = Deltatime:1.271971941
    Mar  8 20:08:29 r-peter-kriglowitschs-imac com.apple.launchd[1] (com.apple.SystemStarter): Failed to count the number of files in "/System/Library/StartupItems": No such file or directory
    Mar  8 20:08:34: --- last message repeated 1 time ---
    Mar  8 20:08:34 r-peter-kriglowitschs-imac configd[13]: Sleep: Success - AC - Software Sleep
    Mar  8 20:08:34 r-peter-kriglowitschs-imac configd[13]: Wake: Success - AC - OHC2
    Mar  8 20:08:34 r-peter-kriglowitschs-imac configd[13]: Hibernate Statistics
    Mar  8 20:08:34 r-peter-kriglowitschs-imac configd[13]: network configuration changed.
    Mar  8 20:08:57 r-peter-kriglowitschs-imac loginwindow[32]: no spins reported for this wake
    Mar  8 20:12:51 r-peter-kriglowitschs-imac [0x0-0x80080].org.videolan.vlc[825]: [0x100203930] main libvlc: VLC wird mit dem Standard-Interface ausgeführt. Benutzen Sie 'cvlc', um VLC ohne Interface zu verwenden.
    Mar  8 20:12:52 r-peter-kriglowitschs-imac VLC[825]: ERROR: <PXSourceList: 0x10025d1a0>: Attempt to set unknown item as dropItem=<SideBarItem: 0x1002fb4b0>.
    Mar  8 20:12:55 r-peter-kriglowitschs-imac [0x0-0x80080].org.videolan.vlc[825]: [wmv3 @ 0x102388c20] Extra data: 8 bits left, value: 0
    Mar  8 20:12:57 r-peter-kriglowitschs-imac VLC[825]: *** __NSAutoreleaseNoPool(): Object 0x101e078c0 of class NSCFNumber autoreleased with no pool in place - just leaking
    Mar  8 20:13:16 r-peter-kriglowitschs-imac [0x0-0x80080].org.videolan.vlc[825]: [wmv3 @ 0x100853420] Extra data: 8 bits left, value: 0
    Mar  8 20:16:06 r-peter-kriglowitschs-imac [0x0-0x80080].org.videolan.vlc[825]: [wmv3 @ 0x100991020] Extra data: 8 bits left, value: 0
    Mar  8 20:16:06 r-peter-kriglowitschs-imac VLC[825]: *** __NSAutoreleaseNoPool(): Object 0x101e078c0 of class NSCFNumber autoreleased with no pool in place - just leaking
    Mar  8 20:18:39 r-peter-kriglowitschs-imac [0x0-0x80080].org.videolan.vlc[825]: [wmv3 @ 0x1021f5220] Extra data: 8 bits left, value: 0
    Mar  8 20:29:15 r-peter-kriglowitschs-imac DashboardClient[158]: no upcoming events
    Mar  8 20:29:15 r-peter-kriglowitschs-imac com.apple.Dock.agent[97]: 2013-03-08 20:29:15.963 DashboardClient[158:a03] no upcoming events
    Mar  8 20:31:21 r-peter-kriglowitschs-imac WebProcess[137]: Periodic CFURLCache Insert stats (iters: 443) - Tx time:0.228094, # of Inserts: 1, # of bytes written: 418, Did shrink: NO, Size of cache-file: 180250624, Num of Failures: 0
    Mar  8 20:38:51 r-peter-kriglowitschs-imac DashboardClient[158]: no upcoming events
    Mar  8 20:38:51 r-peter-kriglowitschs-imac com.apple.Dock.agent[97]: 2013-03-08 20:38:51.259 DashboardClient[158:a03] no upcoming events
    Mar  8 20:41:07 r-peter-kriglowitschs-imac ntpd[21]: time reset +0.732416 s
    Mar  8 21:02:31 r-peter-kriglowitschs-imac WebProcess[137]: Periodic CFURLCache Insert stats (iters: 374) - Tx time:0.112713, # of Inserts: 2, # of bytes written: 86, Did shrink: NO, Size of cache-file: 180250624, Num of Failures: 0
    Mar  8 21:15:47 r-peter-kriglowitschs-imac com.apple.launchd[1] (com.apple.SystemStarter): Failed to count the number of files in "/System/Library/StartupItems": No such file or directory
    Mar  8 21:16:17: --- last message repeated 7 times ---
    Mar  8 21:25:11 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[959]: INSERT-HANG-DETECTED: Tx time:3.219070, # of Inserts: 5, # of bytes written: 780464, Did shrink: NO
    Mar  8 21:26:21 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[959]: INSERT-HANG-DETECTED: Tx time:3.599784, # of Inserts: 108, # of bytes written: 1240380, Did shrink: NO
    Mar  8 21:26:48 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[959]: INSERT-HANG-DETECTED: Tx time:5.506619, # of Inserts: 215, # of bytes written: 2057129, Did shrink: NO
    Mar  8 21:27:39 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[959]: INSERT-HANG-DETECTED: Tx time:5.641009, # of Inserts: 246, # of bytes written: 2799365, Did shrink: NO
    Mar  8 21:28:23 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[959]: INSERT-HANG-DETECTED: Tx time:5.431440, # of Inserts: 76, # of bytes written: 2366904, Did shrink: NO
    Mar  8 21:28:40 r-peter-kriglowitschs-imac Safari Webpage Preview Fetcher[959]: INSERT-HANG-DETECTED: Tx time:7.176791, # of Inserts: 213, # of bytes written: 2882792, Did shrink: NO
    Mar  8 21:39:56 r-peter-kriglowitschs-imac WebProcess[137]: Periodic CFURLCache Insert stats (iters: 449) - Tx time:0.052694, # of Inserts: 1, # of bytes written: 43, Did shrink: NO, Size of cache-file: 180250624, Num of Failures: 0
    Mar  8 21:41:28 r-peter-kriglowitschs-imac DashboardClient[158]: no upcoming events

    Problems with bookmarks and history not working properly can be caused by a corrupted places.sqlite database file.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    You can try to check and repair the places database with this extension:
    *https://addons.mozilla.org/firefox/addon/places-maintenance/

  • Can't re-install snowleopard operating system

    Hi! Thanks for reading my question and helping me to solve my issue.
    I have an old macbook pro that was purchased around 2010, and I've been trying to re-install OS snowleopard (the original operating system) before selling this laptop. However, the installation always crashes. I used the original installation disc that came with the macbook and it failed. I tried to use another apple snowleopard installation disc and it also failed. I've looked up online and tried different tricks too, such as changing the date back to 2010 around when I purchased the laptop, and nothing has helped. I'm posting the crash error log from the installation failure in hopes that someone can take a look and tell me what went wrong. Thank you so much in advance!

    Thank you for your fast reply!
    I've been trying to install using the original installation disk by starting up the MBP holding the C key, and I've verified and repaired before, it still didn't help.
    I just started my MBP by holding the C key, and verified & repaired the disk. No errors were found (below is a picture showing this). I tried to install with the original installation disk again and it still failed. I'm attaching the error log I got just now below.
    Feb  3 12:03:25 localhost LCA[80]: Folder Manager is being asked to create a folder (cach) while running as uid 0
    Feb  3 12:03:29 localhost LCA[80]: Using keyboard layout 0
    Feb  3 12:03:30 localhost LCA[80]: Found primary language hint "en"
    Feb  3 12:54:14 localhost LCA[80]: Launching the Installer using language code "English"
    Feb  3 12:54:29 localhost OSInstaller[143]: Mac OS X Installer application started
    Feb  3 12:54:29 localhost OSInstaller[143]: 1 display(s) found.
    Feb  3 12:54:29 localhost OSInstaller[143]: Display[1] is using OpenGL acceleration.
    Feb  3 12:54:29 localhost OSInstaller[143]: @(#)PROGRAM:Install PROJECT:Install-580
    Feb  3 12:54:29 localhost OSInstaller[143]: @(#)PROGRAM:Mac OS X Installer  PROJECT:OSInstaller-262
    Feb  3 12:54:29 localhost OSInstaller[143]: Hardware: MacBookPro7,1 @ 2.40 GHz (x 2), 4096 MB RAM
    Feb  3 12:54:29 localhost OSInstaller[143]: Running OS Build: Mac OS X 10.6.3 (10D2125)
    Feb  3 12:54:29 localhost OSInstaller[143]: Env: DYLD_NO_FIX_PREBINDING=1
    Feb  3 12:54:29 localhost OSInstaller[143]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Feb  3 12:54:29 localhost OSInstaller[143]: Env: PWD=/
    Feb  3 12:54:29 localhost OSInstaller[143]: Env: SHLVL=1
    Feb  3 12:54:29 localhost OSInstaller[143]: Env: OS_INSTALL=1
    Feb  3 12:54:29 localhost OSInstaller[143]: Env: _=/System/Installation/CDIS/LCA.app/Contents/MacOS/LCA
    Feb  3 12:54:37 localhost OSInstaller[143]: Using install media product at /System/Installation/Packages
    Feb  3 12:54:37 localhost OSInstaller[143]: Opening OSInstall package '/System/Installation/Packages/OSInstall.mpkg'.
    Feb  3 12:54:45 localhost OSInstaller[143]: Memory statistics for 'Install Mac OS X' pane:
    Feb  3 12:54:45 localhost OSInstaller[143]: Physical Memory Allocation: 507 MB wired,   258 MB trapped,    71 MB active,    74 MB inactive,  3186 MB free, 3331 MB usable,  4096 MB total
    Feb  3 12:55:00 localhost Unknown[81]: 2015-02-03 12:55:00.516 Disk Utility[151:903] **********
    Feb  3 12:55:00 localhost Unknown[81]: 2015-02-03 12:55:00.571 Disk Utility[151:903] Disk Utility started.
    Feb  3 12:55:00 localhost Unknown[81]:
    Feb  3 12:55:16 localhost Unknown[81]: 2015-02-03 12:55:16.504 Disk Utility[151:903] Verify permissions for “Macintosh HD”
    Feb  3 12:55:25 localhost Unknown[81]: 2015-02-03 12:55:25.864 Disk Utility[151:903] Stopped by user
    Feb  3 12:55:25 localhost Unknown[81]: 2015-02-03 12:55:25.865 Disk Utility[151:903]
    Feb  3 12:55:26 localhost Unknown[81]: 2015-02-03 12:55:26.326 Disk Utility[151:903] Permissions verification complete
    Feb  3 12:55:26 localhost Unknown[81]: 2015-02-03 12:55:26.326 Disk Utility[151:903]
    Feb  3 12:55:26 localhost Unknown[81]: 2015-02-03 12:55:26.785 Disk Utility[151:903]
    Feb  3 12:55:26 localhost Unknown[81]:
    Feb  3 12:55:29 localhost Unknown[81]: 2015-02-03 12:55:29.659 Disk Utility[151:903] Verifying volume “Macintosh HD”
    Feb  3 12:55:29 localhost Unknown[81]: 2015-02-03 12:55:29.661 Disk Utility[151:903] Starting verification tool:
    Feb  3 12:55:42 localhost Unknown[81]: 2015-02-03 12:55:42.312 Disk Utility[151:903] Checking Journaled HFS Plus volume.
    Feb  3 12:55:42 localhost Unknown[81]: 2015-02-03 12:55:42.322 Disk Utility[151:903] Checking extents overflow file.
    Feb  3 12:55:42 localhost Unknown[81]: 2015-02-03 12:55:42.323 Disk Utility[151:903] Checking catalog file.
    Feb  3 12:55:52 localhost Unknown[81]: 2015-02-03 12:55:52.339 Disk Utility[151:903] Checking multi-linked files.
    Feb  3 12:55:52 localhost Unknown[81]: 2015-02-03 12:55:52.547 Disk Utility[151:903] Checking catalog hierarchy.
    Feb  3 12:56:05 localhost Unknown[81]: 2015-02-03 12:56:05.746 Disk Utility[151:903] Checking extended attributes file.
    Feb  3 12:56:16 localhost Unknown[81]: 2015-02-03 12:56:16.706 Disk Utility[151:903] Checking volume bitmap.
    Feb  3 12:56:16 localhost Unknown[81]: 2015-02-03 12:56:16.825 Disk Utility[151:903] Checking volume information.
    Feb  3 12:56:16 localhost Unknown[81]: 2015-02-03 12:56:16.853 Disk Utility[151:903] The volume Macintosh HD appears to be OK.
    Feb  3 12:56:17 localhost Unknown[81]: 2015-02-03 12:56:17.967 Disk Utility[151:903] Repair tool completed:
    Feb  3 12:56:17 localhost Unknown[81]: 2015-02-03 12:56:17.970 Disk Utility[151:903]
    Feb  3 12:56:18 localhost Unknown[81]: 2015-02-03 12:56:18.428 Disk Utility[151:903]
    Feb  3 12:56:18 localhost Unknown[81]:
    Feb  3 13:01:57 localhost Unknown[81]: 2015-02-03 13:01:57.387 Disk Utility[151:903] Verify and Repair volume “Macintosh HD”
    Feb  3 13:01:57 localhost Unknown[81]: 2015-02-03 13:01:57.390 Disk Utility[151:903] Starting repair tool:
    Feb  3 13:01:58 localhost Unknown[81]: 2015-02-03 13:01:58.456 Disk Utility[151:903] Checking Journaled HFS Plus volume.
    Feb  3 13:01:58 localhost Unknown[81]: 2015-02-03 13:01:58.461 Disk Utility[151:903] Checking extents overflow file.
    Feb  3 13:01:58 localhost Unknown[81]: 2015-02-03 13:01:58.473 Disk Utility[151:903] Checking catalog file.
    Feb  3 13:02:08 localhost Unknown[81]: 2015-02-03 13:02:08.549 Disk Utility[151:903] Checking multi-linked files.
    Feb  3 13:02:08 localhost Unknown[81]: 2015-02-03 13:02:08.733 Disk Utility[151:903] Checking catalog hierarchy.
    Feb  3 13:02:21 localhost Unknown[81]: 2015-02-03 13:02:21.954 Disk Utility[151:903] Checking extended attributes file.
    Feb  3 13:02:32 localhost Unknown[81]: 2015-02-03 13:02:32.931 Disk Utility[151:903] Checking volume bitmap.
    Feb  3 13:02:33 localhost Unknown[81]: 2015-02-03 13:02:33.049 Disk Utility[151:903] Checking volume information.
    Feb  3 13:02:33 localhost Unknown[81]: 2015-02-03 13:02:33.086 Disk Utility[151:903] The volume Macintosh HD appears to be OK.
    Feb  3 13:02:35 localhost Unknown[81]: 2015-02-03 13:02:35.897 Disk Utility[151:903] Volume repair complete.
    Feb  3 13:02:36 localhost Unknown[81]: 2015-02-03 13:02:36.415 Disk Utility[151:903] Updating boot support partitions for the volume as required.
    Feb  3 13:02:36 localhost Unknown[81]: 2015-02-03 13:02:36.427 Disk Utility[151:903] Repair tool completed:
    Feb  3 13:02:36 localhost Unknown[81]: 2015-02-03 13:02:36.427 Disk Utility[151:903]
    Feb  3 13:02:36 localhost Unknown[81]: 2015-02-03 13:02:36.885 Disk Utility[151:903]
    Feb  3 13:02:36 localhost Unknown[81]:
    Feb  3 13:03:17 localhost Unknown[81]: 2015-02-03 13:03:17.121 Disk Utility[151:903] NSDocumentController's invocation of -[NSFileManager URLForDirectory:inDomain:appropriateForURL:create:error:] returned nil for NSAutosavedInformationDirectory. Here's the error:
    Feb  3 13:03:17 localhost Unknown[81]: Error Domain=NSCocoaErrorDomain Code=642 UserInfo=0x106bbdf40 "You can’t save the file “Autosave Information” because the volume “Mac OS X Install DVD” is read only." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=30 "The operation couldn’t be completed. Read-only file system")
    Feb  3 13:03:17 localhost Unknown[81]:
    Feb  3 13:03:23 localhost OSInstaller[143]: Allowing machine sleep.
    Feb  3 13:03:27 localhost OSInstaller[143]: Preventing machine sleep.
    Feb  3 13:03:31 localhost OSInstaller[143]: =============================================================================== =
    Feb  3 13:03:31 localhost OSInstaller[143]: Choices selected for installation:
    Feb  3 13:03:31 localhost OSInstaller[143]:     Install: "Mac OS X"
    Feb  3 13:03:31 localhost OSInstaller[143]:     Install: "Essential System Software"
    Feb  3 13:03:31 localhost OSInstaller[143]:           BaseSystem.pkg : com.apple.pkg.BaseSystem : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Essentials.pkg : com.apple.pkg.Essentials : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           BootCamp.pkg : com.apple.pkg.BootCamp : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: BSD.pkg : com.apple.pkg.BSD : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           iPodSupport.pkg : com.apple.pkg.iPodSupport : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           PodcastCapture.pkg : com.apple.pkg.PodcastCapture : 1.0.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           JavaTools.pkg : com.apple.pkg.JavaTools : 1.0.0.9000000000.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           AdditionalEssentials.pkg : com.apple.pkg.AdditionalEssentials : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           AdditionalSpeechVoices.pkg : com.apple.pkg.AdditionalSpeechVoices : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           AsianLanguagesSupport.pkg : com.apple.pkg.AsianLanguagesSupport : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           MediaFiles.pkg : com.apple.pkg.MediaFiles : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           MigrationAssistant.pkg : com.apple.pkg.MigrationAssistant : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Mail.pkg : com.apple.pkg.Mail : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           AddressBook.pkg : com.apple.pkg.AddressBook : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           iCal.pkg : com.apple.pkg.iCal : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Automator.pkg : com.apple.pkg.Automator : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           DVDPlayer.pkg : com.apple.pkg.DVDPlayer : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           iTunes.pkg : com.apple.pkg.iTunes : 8.2.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           iChat.pkg : com.apple.pkg.iChat : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Java.pkg : com.apple.pkg.Java : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Safari.pkg : com.apple.pkg.Safari : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           OxfordDictionaries.pkg : com.apple.pkg.OxfordDictionaries : 10.6.0.1.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:     Install: "Printer Support"
    Feb  3 13:03:31 localhost OSInstaller[143]:     Install: "Printers Used by This Mac"
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon184.pkg : com.apple.pkg.EPSON_DriverCommon184 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon136.pkg : com.apple.pkg.EPSON_DriverCommon136 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetMXSeries.pkg : com.apple.pkg.Canon_InkjetMXSeries : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon068.pkg : com.apple.pkg.EPSON_DriverCommon068 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon008.pkg : com.apple.pkg.EPSON_DriverCommon008 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon163.pkg : com.apple.pkg.EPSON_DriverCommon163 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon050.pkg : com.apple.pkg.EPSON_DriverCommon050 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLWW001.pkg : com.apple.pkg.EPSON_IJPRLWW001 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07JP002.pkg : com.apple.pkg.EPSON_IJP07JP002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_ICACommon.pkg : com.apple.pkg.Canon_ICACommon : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_IJP09WW003.pkg : com.apple.pkg.EPSON_IJP09WW003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon167.pkg : com.apple.pkg.EPSON_DriverCommon167 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_Utility.pkg : com.apple.pkg.Lexmark_Utility : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_ColorLaser.pkg : com.apple.pkg.Brother_ColorLaser : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon003.pkg : com.apple.pkg.EPSON_DriverCommon003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet1.pkg : com.apple.pkg.HP_Inkjet1 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon053.pkg : com.apple.pkg.EPSON_DriverCommon053 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon012.pkg : com.apple.pkg.EPSON_DriverCommon012 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon183.pkg : com.apple.pkg.EPSON_DriverCommon183 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon086.pkg : com.apple.pkg.EPSON_DriverCommon086 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08JP001.pkg : com.apple.pkg.EPSON_IJP08JP001 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet7.pkg : com.apple.pkg.HP_Inkjet7 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon146.pkg : com.apple.pkg.EPSON_DriverCommon146 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon157.pkg : com.apple.pkg.EPSON_DriverCommon157 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon123.pkg : com.apple.pkg.EPSON_DriverCommon123 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IOKit.pkg : com.apple.pkg.EPSON_IOKit : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLWW002.pkg : com.apple.pkg.EPSON_IJPRLWW002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries2.pkg : com.apple.pkg.Canon_SharedLibraries2 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_LaserjetZJS.pkg : com.apple.pkg.HP_LaserjetZJS : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW005.pkg : com.apple.pkg.EPSON_IJP07WW005 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetMPSeriesH07xx.pkg : com.apple.pkg.Canon_InkjetMPSeriesH07xx : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP09WW007.pkg : com.apple.pkg.EPSON_IJP09WW007 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_Inkjet08.pkg : com.apple.pkg.Brother_Inkjet08 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: Canon_SharedLibraries5.pkg : com.apple.pkg.Canon_SharedLibraries5 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet5.pkg : com.apple.pkg.HP_Inkjet5 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon119.pkg : com.apple.pkg.EPSON_DriverCommon119 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_InkjetAIODrivers02.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers02 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon149.pkg : com.apple.pkg.EPSON_DriverCommon149 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon129.pkg : com.apple.pkg.EPSON_DriverCommon129 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon026.pkg : com.apple.pkg.EPSON_DriverCommon026 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW007.pkg : com.apple.pkg.EPSON_IJP08WW007 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW004.pkg : com.apple.pkg.EPSON_IJP07WW004 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_PDEs.pkg : com.apple.pkg.Canon_PDEs : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon092.pkg : com.apple.pkg.EPSON_DriverCommon092 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_Common.pkg : com.apple.pkg.Brother_Common : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_MonochromeLaser.pkg : com.apple.pkg.Brother_MonochromeLaser : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_ICAMPSeries07xx.pkg : com.apple.pkg.Canon_ICAMPSeries07xx : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries9.pkg : com.apple.pkg.Canon_SharedLibraries9 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon060.pkg : com.apple.pkg.EPSON_DriverCommon060 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon142.pkg : com.apple.pkg.EPSON_DriverCommon142 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Officejet.pkg : com.apple.pkg.HP_Officejet : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLJP003.pkg : com.apple.pkg.EPSON_IJPRLJP003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon168.pkg : com.apple.pkg.EPSON_DriverCommon168 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW003.pkg : com.apple.pkg.EPSON_IJP07WW003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon156.pkg : com.apple.pkg.EPSON_DriverCommon156 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_LaserDrivers.pkg : com.apple.pkg.Lexmark_LaserDrivers : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Chuckwalla.pkg : com.apple.pkg.HP_Chuckwalla : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP09WW004.pkg : com.apple.pkg.EPSON_IJP09WW004 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon011.pkg : com.apple.pkg.EPSON_DriverCommon011 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetiPSeriesL0407.pkg : com.apple.pkg.Canon_InkjetiPSeriesL0407 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_Libraries.pkg : com.apple.pkg.EPSON_Libraries : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon145.pkg : com.apple.pkg.EPSON_DriverCommon145 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon087.pkg : com.apple.pkg.EPSON_DriverCommon087 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon122.pkg : com.apple.pkg.EPSON_DriverCommon122 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_DMF.pkg : com.apple.pkg.HP_DMF : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon164.pkg : com.apple.pkg.EPSON_DriverCommon164 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon174.pkg : com.apple.pkg.EPSON_DriverCommon174 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetMPSeriesL07xx.pkg : com.apple.pkg.Canon_InkjetMPSeriesL07xx : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon125.pkg : com.apple.pkg.EPSON_DriverCommon125 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon009.pkg : com.apple.pkg.EPSON_DriverCommon009 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_PhotosmartM.pkg : com.apple.pkg.HP_PhotosmartM : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW002.pkg : com.apple.pkg.EPSON_IJP08WW002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries1.pkg : com.apple.pkg.Canon_SharedLibraries1 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Cmd2HP.pkg : com.apple.pkg.HP_Cmd2HP : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08JP002.pkg : com.apple.pkg.EPSON_IJP08JP002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW003.pkg : com.apple.pkg.EPSON_IJP08WW003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Samsung_Common.pkg : com.apple.pkg.Samsung_Common : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon059.pkg : com.apple.pkg.EPSON_DriverCommon059 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries10.pkg : com.apple.pkg.Canon_SharedLibraries10 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon047.pkg : com.apple.pkg.EPSON_DriverCommon047 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLJP001.pkg : com.apple.pkg.EPSON_IJPRLJP001 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_PDE.pkg : com.apple.pkg.HP_PDE : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon182.pkg : com.apple.pkg.EPSON_DriverCommon182 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon027.pkg : com.apple.pkg.EPSON_DriverCommon027 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon014.pkg : com.apple.pkg.EPSON_DriverCommon014 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon004.pkg : com.apple.pkg.EPSON_DriverCommon004 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon054.pkg : com.apple.pkg.EPSON_DriverCommon054 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_InkjetAIODrivers01.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers01 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW006.pkg : com.apple.pkg.EPSON_IJP08WW006 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon150.pkg : com.apple.pkg.EPSON_DriverCommon150 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_Inkjet.pkg : com.apple.pkg.Brother_Inkjet : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP09WW008.pkg : com.apple.pkg.EPSON_IJP09WW008 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon166.pkg : com.apple.pkg.EPSON_DriverCommon166 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon160.pkg : com.apple.pkg.EPSON_DriverCommon160 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_Utility.pkg : com.apple.pkg.Brother_Utility : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetiPSeriesM0407.pkg : com.apple.pkg.Canon_InkjetiPSeriesM0407 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon069.pkg : com.apple.pkg.EPSON_DriverCommon069 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Fax.pkg : com.apple.pkg.HP_Fax : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon095.pkg : com.apple.pkg.EPSON_DriverCommon095 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: Canon_InkjetMPSeries0406.pkg : com.apple.pkg.Canon_InkjetMPSeries0406 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon030.pkg : com.apple.pkg.EPSON_DriverCommon030 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: Lexmark_CommandFileFilter.pkg : com.apple.pkg.Lexmark_CommandFileFilter : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon135.pkg : com.apple.pkg.EPSON_DriverCommon135 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_ICA.pkg : com.apple.pkg.EPSON_ICA : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_ICA.pkg : com.apple.pkg.Brother_ICA : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_CHorseD.pkg : com.apple.pkg.HP_CHorseD : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08JP005.pkg : com.apple.pkg.EPSON_IJP08JP005 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Crossbow.pkg : com.apple.pkg.HP_Crossbow : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries6.pkg : com.apple.pkg.Canon_SharedLibraries6 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon169.pkg : com.apple.pkg.EPSON_DriverCommon169 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet2.pkg : com.apple.pkg.HP_Inkjet2 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_InkjetSFPDrivers02.pkg : com.apple.pkg.Lexmark_InkjetSFPDrivers02 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP09WW005.pkg : com.apple.pkg.EPSON_IJP09WW005 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet8.pkg : com.apple.pkg.HP_Inkjet8 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Photosmart.pkg : com.apple.pkg.HP_Photosmart : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetminiSeries0407.pkg : com.apple.pkg.Canon_InkjetminiSeries0407 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon165.pkg : com.apple.pkg.EPSON_DriverCommon165 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_ICADrivers.pkg : com.apple.pkg.Lexmark_ICADrivers : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon138.pkg : com.apple.pkg.EPSON_DriverCommon138 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07JP004.pkg : com.apple.pkg.EPSON_IJP07JP004 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: Lexmark_USBComm.pkg : com.apple.pkg.Lexmark_USBComm : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon128.pkg : com.apple.pkg.EPSON_DriverCommon128 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon058.pkg : com.apple.pkg.EPSON_DriverCommon058 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_InkjetAIODrivers04.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers04 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon010.pkg : com.apple.pkg.EPSON_DriverCommon010 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries4.pkg : com.apple.pkg.Canon_SharedLibraries4 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: HP_Inkjet6.pkg : com.apple.pkg.HP_Inkjet6 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_CUPS.pkg : com.apple.pkg.Lexmark_CUPS : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon083.pkg : com.apple.pkg.EPSON_DriverCommon083 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW006.pkg : com.apple.pkg.EPSON_IJP07WW006 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLWW003.pkg : com.apple.pkg.EPSON_IJPRLWW003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_SmartX.pkg : com.apple.pkg.HP_SmartX : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW002.pkg : com.apple.pkg.EPSON_IJP07WW002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon096.pkg : com.apple.pkg.EPSON_DriverCommon096 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon127.pkg : com.apple.pkg.EPSON_DriverCommon127 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW005.pkg : com.apple.pkg.EPSON_IJP08WW005 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetProSeries.pkg : com.apple.pkg.Canon_InkjetProSeries : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon028.pkg : com.apple.pkg.EPSON_DriverCommon028 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLJP002.pkg : com.apple.pkg.EPSON_IJPRLJP002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon180.pkg : com.apple.pkg.EPSON_DriverCommon180 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon147.pkg : com.apple.pkg.EPSON_DriverCommon147 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon066.pkg : com.apple.pkg.EPSON_DriverCommon066 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Laserjet.pkg : com.apple.pkg.HP_Laserjet : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_PhotosmartP.pkg : com.apple.pkg.HP_PhotosmartP : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon046.pkg : com.apple.pkg.EPSON_DriverCommon046 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: HP_Interlaken.pkg : com.apple.pkg.HP_Interlaken : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon144.pkg : com.apple.pkg.EPSON_DriverCommon144 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_CHorseL.pkg : com.apple.pkg.HP_CHorseL : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon015.pkg : com.apple.pkg.EPSON_DriverCommon015 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon161.pkg : com.apple.pkg.EPSON_DriverCommon161 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon041.pkg : com.apple.pkg.EPSON_DriverCommon041 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon162.pkg : com.apple.pkg.EPSON_DriverCommon162 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon124.pkg : com.apple.pkg.EPSON_DriverCommon124 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08JP003.pkg : com.apple.pkg.EPSON_IJP08JP003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon070.pkg : com.apple.pkg.EPSON_DriverCommon070 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon121.pkg : com.apple.pkg.EPSON_DriverCommon121 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07JP003.pkg : com.apple.pkg.EPSON_IJP07JP003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_Frameworks.pkg : com.apple.pkg.Canon_Frameworks : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW007.pkg : com.apple.pkg.EPSON_IJP07WW007 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon063.pkg : com.apple.pkg.EPSON_DriverCommon063 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries7.pkg : com.apple.pkg.Canon_SharedLibraries7 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon170.pkg : com.apple.pkg.EPSON_DriverCommon170 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon048.pkg : com.apple.pkg.EPSON_DriverCommon048 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_CHorseI.pkg : com.apple.pkg.HP_CHorseI : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetiPSeries07xx.pkg : com.apple.pkg.Canon_InkjetiPSeries07xx : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_InkjetSFPDrivers01.pkg : com.apple.pkg.Lexmark_InkjetSFPDrivers01 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon120.pkg : com.apple.pkg.EPSON_DriverCommon120 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Pdf2Pdf.pkg : com.apple.pkg.HP_Pdf2Pdf : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon155.pkg : com.apple.pkg.EPSON_DriverCommon155 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP09WW002.pkg : com.apple.pkg.EPSON_IJP09WW002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon052.pkg : com.apple.pkg.EPSON_DriverCommon052 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_ICASingle.pkg : com.apple.pkg.Canon_ICASingle : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08JP004.pkg : com.apple.pkg.EPSON_IJP08JP004 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon172.pkg : com.apple.pkg.EPSON_DriverCommon172 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_PS.pkg : com.apple.pkg.HP_PS : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon013.pkg : com.apple.pkg.EPSON_DriverCommon013 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: HP_CHorseIL.pkg : com.apple.pkg.HP_CHorseIL : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Apple_Gutenprint.pkg : com.apple.pkg.Apple_Gutenprint : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_DesignjetIO.pkg : com.apple.pkg.HP_DesignjetIO : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW004.pkg : com.apple.pkg.EPSON_IJP08WW004 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon178.pkg : com.apple.pkg.EPSON_DriverCommon178 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Deskjet.pkg : com.apple.pkg.HP_Deskjet : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon130.pkg : com.apple.pkg.EPSON_DriverCommon130 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07JP005.pkg : com.apple.pkg.EPSON_IJP07JP005 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_ICASingle.pkg : com.apple.pkg.EPSON_ICASingle : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet3.pkg : com.apple.pkg.HP_Inkjet3 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_ResourceManager.pkg : com.apple.pkg.HP_ResourceManager : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_IJP09WW006.pkg : com.apple.pkg.EPSON_IJP09WW006 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon006.pkg : com.apple.pkg.EPSON_DriverCommon006 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon094.pkg : com.apple.pkg.EPSON_DriverCommon094 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon177.pkg : com.apple.pkg.EPSON_DriverCommon177 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon029.pkg : com.apple.pkg.EPSON_DriverCommon029 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07JP001.pkg : com.apple.pkg.EPSON_IJP07JP001 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: HP_Inkjet4.pkg : com.apple.pkg.HP_Inkjet4 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_CHorse.pkg : com.apple.pkg.HP_CHorse : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet.pkg : com.apple.pkg.HP_Inkjet : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon148.pkg : com.apple.pkg.EPSON_DriverCommon148 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries3.pkg : com.apple.pkg.Canon_SharedLibraries3 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW001.pkg : com.apple.pkg.EPSON_IJP08WW001 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP05WW003.pkg : com.apple.pkg.EPSON_IJP05WW003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon001.pkg : com.apple.pkg.EPSON_DriverCommon001 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon159.pkg : com.apple.pkg.EPSON_DriverCommon159 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon126.pkg : com.apple.pkg.EPSON_DriverCommon126 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries8.pkg : com.apple.pkg.Canon_SharedLibraries8 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon071.pkg : com.apple.pkg.EPSON_DriverCommon071 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon137.pkg : com.apple.pkg.EPSON_DriverCommon137 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon143.pkg : com.apple.pkg.EPSON_DriverCommon143 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP09WW001.pkg : com.apple.pkg.EPSON_IJP09WW001 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetiPiXSeries0407.pkg : com.apple.pkg.Canon_InkjetiPiXSeries0407 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_InkjetAIODrivers03.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers03 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon176.pkg : com.apple.pkg.EPSON_DriverCommon176 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon084.pkg : com.apple.pkg.EPSON_DriverCommon084 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon171.pkg : com.apple.pkg.EPSON_DriverCommon171 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Scan.pkg : com.apple.pkg.HP_Scan : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon049.pkg : com.apple.pkg.EPSON_DriverCommon049 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon091.pkg : com.apple.pkg.EPSON_DriverCommon091 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW001.pkg : com.apple.pkg.EPSON_IJP07WW001 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:     Install: "Nearby and Popular Printers"
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon184.pkg : com.apple.pkg.EPSON_DriverCommon184 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon136.pkg : com.apple.pkg.EPSON_DriverCommon136 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetMXSeries.pkg : com.apple.pkg.Canon_InkjetMXSeries : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon068.pkg : com.apple.pkg.EPSON_DriverCommon068 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon008.pkg : com.apple.pkg.EPSON_DriverCommon008 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon163.pkg : com.apple.pkg.EPSON_DriverCommon163 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon050.pkg : com.apple.pkg.EPSON_DriverCommon050 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLWW001.pkg : com.apple.pkg.EPSON_IJPRLWW001 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07JP002.pkg : com.apple.pkg.EPSON_IJP07JP002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_ICACommon.pkg : com.apple.pkg.Canon_ICACommon : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP09WW003.pkg : com.apple.pkg.EPSON_IJP09WW003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon167.pkg : com.apple.pkg.EPSON_DriverCommon167 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_Utility.pkg : com.apple.pkg.Lexmark_Utility : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_ColorLaser.pkg : com.apple.pkg.Brother_ColorLaser : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon003.pkg : com.apple.pkg.EPSON_DriverCommon003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet1.pkg : com.apple.pkg.HP_Inkjet1 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon053.pkg : com.apple.pkg.EPSON_DriverCommon053 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon012.pkg : com.apple.pkg.EPSON_DriverCommon012 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon183.pkg : com.apple.pkg.EPSON_DriverCommon183 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon086.pkg : com.apple.pkg.EPSON_DriverCommon086 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08JP001.pkg : com.apple.pkg.EPSON_IJP08JP001 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet7.pkg : com.apple.pkg.HP_Inkjet7 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon146.pkg : com.apple.pkg.EPSON_DriverCommon146 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon157.pkg : com.apple.pkg.EPSON_DriverCommon157 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon123.pkg : com.apple.pkg.EPSON_DriverCommon123 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IOKit.pkg : com.apple.pkg.EPSON_IOKit : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLWW002.pkg : com.apple.pkg.EPSON_IJPRLWW002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: Canon_SharedLibraries2.pkg : com.apple.pkg.Canon_SharedLibraries2 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_LaserjetZJS.pkg : com.apple.pkg.HP_LaserjetZJS : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW005.pkg : com.apple.pkg.EPSON_IJP07WW005 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetMPSeriesH07xx.pkg : com.apple.pkg.Canon_InkjetMPSeriesH07xx : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP09WW007.pkg : com.apple.pkg.EPSON_IJP09WW007 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_Inkjet08.pkg : com.apple.pkg.Brother_Inkjet08 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries5.pkg : com.apple.pkg.Canon_SharedLibraries5 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet5.pkg : com.apple.pkg.HP_Inkjet5 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon119.pkg : com.apple.pkg.EPSON_DriverCommon119 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_InkjetAIODrivers02.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers02 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon149.pkg : com.apple.pkg.EPSON_DriverCommon149 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon129.pkg : com.apple.pkg.EPSON_DriverCommon129 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon026.pkg : com.apple.pkg.EPSON_DriverCommon026 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW007.pkg : com.apple.pkg.EPSON_IJP08WW007 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW004.pkg : com.apple.pkg.EPSON_IJP07WW004 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_PDEs.pkg : com.apple.pkg.Canon_PDEs : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon092.pkg : com.apple.pkg.EPSON_DriverCommon092 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_Common.pkg : com.apple.pkg.Brother_Common : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_MonochromeLaser.pkg : com.apple.pkg.Brother_MonochromeLaser : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_ICAMPSeries07xx.pkg : com.apple.pkg.Canon_ICAMPSeries07xx : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries9.pkg : com.apple.pkg.Canon_SharedLibraries9 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon060.pkg : com.apple.pkg.EPSON_DriverCommon060 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon142.pkg : com.apple.pkg.EPSON_DriverCommon142 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Officejet.pkg : com.apple.pkg.HP_Officejet : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLJP003.pkg : com.apple.pkg.EPSON_IJPRLJP003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon168.pkg : com.apple.pkg.EPSON_DriverCommon168 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW003.pkg : com.apple.pkg.EPSON_IJP07WW003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon156.pkg : com.apple.pkg.EPSON_DriverCommon156 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_LaserDrivers.pkg : com.apple.pkg.Lexmark_LaserDrivers : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Chuckwalla.pkg : com.apple.pkg.HP_Chuckwalla : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP09WW004.pkg : com.apple.pkg.EPSON_IJP09WW004 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon011.pkg : com.apple.pkg.EPSON_DriverCommon011 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetiPSeriesL0407.pkg : com.apple.pkg.Canon_InkjetiPSeriesL0407 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_Libraries.pkg : com.apple.pkg.EPSON_Libraries : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon145.pkg : com.apple.pkg.EPSON_DriverCommon145 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon087.pkg : com.apple.pkg.EPSON_DriverCommon087 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon122.pkg : com.apple.pkg.EPSON_DriverCommon122 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: HP_DMF.pkg : com.apple.pkg.HP_DMF : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon164.pkg : com.apple.pkg.EPSON_DriverCommon164 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon174.pkg : com.apple.pkg.EPSON_DriverCommon174 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetMPSeriesL07xx.pkg : com.apple.pkg.Canon_InkjetMPSeriesL07xx : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon125.pkg : com.apple.pkg.EPSON_DriverCommon125 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon009.pkg : com.apple.pkg.EPSON_DriverCommon009 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_PhotosmartM.pkg : com.apple.pkg.HP_PhotosmartM : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW002.pkg : com.apple.pkg.EPSON_IJP08WW002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries1.pkg : com.apple.pkg.Canon_SharedLibraries1 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Cmd2HP.pkg : com.apple.pkg.HP_Cmd2HP : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08JP002.pkg : com.apple.pkg.EPSON_IJP08JP002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW003.pkg : com.apple.pkg.EPSON_IJP08WW003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Samsung_Common.pkg : com.apple.pkg.Samsung_Common : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon059.pkg : com.apple.pkg.EPSON_DriverCommon059 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries10.pkg : com.apple.pkg.Canon_SharedLibraries10 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon047.pkg : com.apple.pkg.EPSON_DriverCommon047 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLJP001.pkg : com.apple.pkg.EPSON_IJPRLJP001 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_PDE.pkg : com.apple.pkg.HP_PDE : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon182.pkg : com.apple.pkg.EPSON_DriverCommon182 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon027.pkg : com.apple.pkg.EPSON_DriverCommon027 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon014.pkg : com.apple.pkg.EPSON_DriverCommon014 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon004.pkg : com.apple.pkg.EPSON_DriverCommon004 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon054.pkg : com.apple.pkg.EPSON_DriverCommon054 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_InkjetAIODrivers01.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers01 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW006.pkg : com.apple.pkg.EPSON_IJP08WW006 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon150.pkg : com.apple.pkg.EPSON_DriverCommon150 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_Inkjet.pkg : com.apple.pkg.Brother_Inkjet : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_IJP09WW008.pkg : com.apple.pkg.EPSON_IJP09WW008 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon166.pkg : com.apple.pkg.EPSON_DriverCommon166 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon160.pkg : com.apple.pkg.EPSON_DriverCommon160 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_Utility.pkg : com.apple.pkg.Brother_Utility : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetiPSeriesM0407.pkg : com.apple.pkg.Canon_InkjetiPSeriesM0407 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon069.pkg : com.apple.pkg.EPSON_DriverCommon069 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Fax.pkg : com.apple.pkg.HP_Fax : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon095.pkg : com.apple.pkg.EPSON_DriverCommon095 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetMPSeries0406.pkg : com.apple.pkg.Canon_InkjetMPSeries0406 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon030.pkg : com.apple.pkg.EPSON_DriverCommon030 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_CommandFileFilter.pkg : com.apple.pkg.Lexmark_CommandFileFilter : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon135.pkg : com.apple.pkg.EPSON_DriverCommon135 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_ICA.pkg : com.apple.pkg.EPSON_ICA : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Brother_ICA.pkg : com.apple.pkg.Brother_ICA : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_CHorseD.pkg : com.apple.pkg.HP_CHorseD : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08JP005.pkg : com.apple.pkg.EPSON_IJP08JP005 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Crossbow.pkg : com.apple.pkg.HP_Crossbow : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries6.pkg : com.apple.pkg.Canon_SharedLibraries6 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon169.pkg : com.apple.pkg.EPSON_DriverCommon169 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet2.pkg : com.apple.pkg.HP_Inkjet2 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_InkjetSFPDrivers02.pkg : com.apple.pkg.Lexmark_InkjetSFPDrivers02 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP09WW005.pkg : com.apple.pkg.EPSON_IJP09WW005 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet8.pkg : com.apple.pkg.HP_Inkjet8 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Photosmart.pkg : com.apple.pkg.HP_Photosmart : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetminiSeries0407.pkg : com.apple.pkg.Canon_InkjetminiSeries0407 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon165.pkg : com.apple.pkg.EPSON_DriverCommon165 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_ICADrivers.pkg : com.apple.pkg.Lexmark_ICADrivers : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon138.pkg : com.apple.pkg.EPSON_DriverCommon138 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07JP004.pkg : com.apple.pkg.EPSON_IJP07JP004 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_USBComm.pkg : com.apple.pkg.Lexmark_USBComm : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon128.pkg : com.apple.pkg.EPSON_DriverCommon128 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon058.pkg : com.apple.pkg.EPSON_DriverCommon058 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_InkjetAIODrivers04.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers04 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon010.pkg : com.apple.pkg.EPSON_DriverCommon010 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_SharedLibraries4.pkg : com.apple.pkg.Canon_SharedLibraries4 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Inkjet6.pkg : com.apple.pkg.HP_Inkjet6 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Lexmark_CUPS.pkg : com.apple.pkg.Lexmark_CUPS : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon083.pkg : com.apple.pkg.EPSON_DriverCommon083 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW006.pkg : com.apple.pkg.EPSON_IJP07WW006 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLWW003.pkg : com.apple.pkg.EPSON_IJPRLWW003 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_SmartX.pkg : com.apple.pkg.HP_SmartX : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP07WW002.pkg : com.apple.pkg.EPSON_IJP07WW002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon096.pkg : com.apple.pkg.EPSON_DriverCommon096 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon127.pkg : com.apple.pkg.EPSON_DriverCommon127 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJP08WW005.pkg : com.apple.pkg.EPSON_IJP08WW005 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           Canon_InkjetProSeries.pkg : com.apple.pkg.Canon_InkjetProSeries : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon028.pkg : com.apple.pkg.EPSON_DriverCommon028 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_IJPRLJP002.pkg : com.apple.pkg.EPSON_IJPRLJP002 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon180.pkg : com.apple.pkg.EPSON_DriverCommon180 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon147.pkg : com.apple.pkg.EPSON_DriverCommon147 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]: EPSON_DriverCommon066.pkg : com.apple.pkg.EPSON_DriverCommon066 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Laserjet.pkg : com.apple.pkg.HP_Laserjet : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_PhotosmartP.pkg : com.apple.pkg.HP_PhotosmartP : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon046.pkg : com.apple.pkg.EPSON_DriverCommon046 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_Interlaken.pkg : com.apple.pkg.HP_Interlaken : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon144.pkg : com.apple.pkg.EPSON_DriverCommon144 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           HP_CHorseL.pkg : com.apple.pkg.HP_CHorseL : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon015.pkg : com.apple.pkg.EPSON_DriverCommon015 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon161.pkg : com.apple.pkg.EPSON_DriverCommon161 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon041.pkg : com.apple.pkg.EPSON_DriverCommon041 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon162.pkg : com.apple.pkg.EPSON_DriverCommon162 : 2.2.1.1238328574
    Feb  3 13:03:31 localhost OSInstaller[143]:           EPSON_DriverCommon124.pkg : com.apple.pkg.EPSON_DriverCommon124 : 2.

  • System Statistics and optimizer_index_cost_adjust  interaction in 9i

    If we are using systems statistics in 9i, is the setting for optimizer_index_cost_adjust completely ignored?
    Ditto for optimizer_index_caching. All of my research indicates the system statistics override these setting, but Jonathan Lewis' indicates otherwise in
    http://www.jlcomp.demon.co.uk/system_stats.html
    I've seen no other reference to these parameters altering the effect of system statistics.

    I've just re-run a little test case against 10.2.0.3 - here's a direct cut-and-paste from the screen:
    SQL> set autotrace traceonly explain
    SQL> select count(n2) from t1 where n1 = 16;
    Execution Plan
    Plan hash value: 269862921
    | Id  | Operation                    | Name  | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |       |     1 |     8 |     2   (0)| 00:00:01 |
    |   1 |  SORT AGGREGATE              |       |     1 |     8 |            |          |
    |   2 |   TABLE ACCESS BY INDEX ROWID| T1    |    15 |   120 |     2   (0)| 00:00:01 |
    |*  3 |    INDEX RANGE SCAN          | T1_I1 |    15 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       3 - access("N1"=16)
    SQL> alter session set optimizer_index_cost_adj = 50;
    Session altered.
    SQL> select count(n2) from t1 where n1 = 16;
    Execution Plan
    Plan hash value: 269862921
    | Id  | Operation                    | Name  | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |       |     1 |     8 |     1   (0)| 00:00:01 |
    |   1 |  SORT AGGREGATE              |       |     1 |     8 |            |          |
    |   2 |   TABLE ACCESS BY INDEX ROWID| T1    |    15 |   120 |     1   (0)| 00:00:01 |
    |*  3 |    INDEX RANGE SCAN          | T1_I1 |    15 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       3 - access("N1"=16)
    SQL> spool offAs you can see from the time column, CPU costing is enabled - and when I change the optimizer_index_cost_adj from the default (100) to 50 the cost of the indexed access path changes from 2 to 1 - as expected.
    If your research was based on test cases(rather than reading other articles) then please post a couple - it's always possible that there are special cases where the optimizer behaves in unexpected ways.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk

  • Adobe's new 64 bit multimedia operating system code named Quick Silver

    As far as I know Adobe is not creating a 64 bit bit operating system but I wish they would. Or at the very least they should make a web browser called Quick Silver.  I am writng this because I seen the Mozilla Fire Fox video. I think Moziila will soon write a mobile OS and maybe even a desktop OS. They are even asking for donations. I like Fire Fox because it is free. If they charge for it I would probably just use IE. I know Adobe has the free Acrobat Reader and Flash Player why not a web borwser? I think if Adobe created an OS and gave it away free for 18-19 months it could get a large amount market share. Two years later they could start to charge $35 for the OS. I think within 3 years Adobe could get 50% of the market share for new computers if the OS was only about $35.00 for the download version ($45.00 retail version).  I don't doubt that Adobe could get a good 50% of the market share and other multimedia software and hardware vendors would also support the Adobe OS. Before I make the feature request I would like to know your thoughts.

    Imagine if the car industry ran like software/hardware:
    Dragging your car home with a rope (and no wheels because they were not included) to spend 8 hours removing unnecessary things like 'McAfee windshield wiper fluid made from glue', 'iMovie sticky gum' on the upholstery, and "VAIO media player lemon scent deeply rigged into the AC unit" which has pretty much nothing to do with the car... only to call the dealership and ask: "when I start my car and pres the window down button the right blinker turns on and then the vehicle stops" then be put on hold for 6 months to receive the following response "what was the number of times the blinker flashed before the car turned off? we need that number to determine what part to send"... and then when you finally DO get the wheels the dealership releases a new version of your car and the state puts a road law into effect that crashes your vehicle when it touches the road unless you pay the dealership to upgrade from car 1.5 to car 1.5.7390... which when you do the engine is not supported? So... you buy the NEW NEW car that comes with 1.6 installed in the engine and find out the wheels will not be released till next month.
    dig?
    ~lol.
    i do try remain cheerful and hopeful... but its not funny anymore.
    you make a good point, but... are there some sales statistics for that?
    light trolling, but seriously, does final cut have a support problem, roll out fail, error code and forum track record anything at all like this?
    google ->site: forums.adobe.com = About 12,500,000 results
    google ->site:forums.adobe.com = About 3,880,000 results
    I think the FCP thing is a great idea. Lets check back in a year and see who bought it...
    I would totally would have preferred to pay $6500.00 for a "Dedicated Adobe Tower Master Collection Desktop" @ $65 per month (hardware included)
    instead of the $20,000 shelled out over the last 10 years on soft (PLUS another 2 desktops and 3 laptops and the gadgets since 2002)
    not to mention the time lost. the valuable time I will want back on my deathbed. lol
    Even if Adobe does not do a proprietary OS, I am thinking it still makes sense for some 3rd party to bundle, its not the same though...
    Apple is on to something in my opinion.
    Imagine Apple and Microsoft teaming up with Adobe to produce very specific machines?
    Other industries do this, they communicate, they have standards, look at how Vehicles and Tire manufacturers collaborate...
    When a new car comes out they don't just change the wheel well and expect the Tire manufacturers to follow suit later, no indeed, that kind of thing is rolled out proper and one can drive right off the lot the day its bought.

  • On iOS 8 and "old" device for the operating system. О iOS 8 и "Старых" устройствах на этой операционной системе

    USA.
    Good day! I like you a fan of the forum users of APPLE. I live in the Russian Federation. Began his acquaintance with this company back in 2010 with the Ipad 2 device was still on ios 5. In January 2014 I made ​​a gift and bought the iPhone 5s on OC IOS 7. I bought it at the official Russian official price that more accurately put Apple in 1100 $. In our country, it is a lot of money. With the money I could live for 3 months. In fact, I became the owner of a top (at the time) from a favorite device of Apple. My iPhone 5s worked perfectly on ios 7. sometimes met friezes light animation, and non-critical bugs, but who is without sin? Favorite company I was willing to forgive it because I see that she is trying to be better and not standing still. Looking WWDC presentation which provided us with iOS 8 you assured me that everything was better, faster, more functional. I was determined that update my iPhone 5s to iOS 8.0 ... APPLE releases new OC iOS 8 ... And I live! Behind the beautiful words that we said at the presentation of the great features of the new iOS hiding "something." And that "something" turned my phone in ... "pumpkin"! Yes! In that same stupid pumpkin! And now I will explain why I think it's pumpkin, not rose.
    Sea bugs ... and they are awful and terrible as it does not give me the full extent of my work enjoy iPhone 5s!
    Start from the beginning:
    1 Streaming through technology "Air play".
    "Air play" ceased to function properly! He was often disconnected from Apple tv and Apple airport express last generation. Apple tv 2g can not receive the signal from my iPhone 5s! And when it's all the same he gets a video playback does not last long, it just breaks and does not connect again! Helps to restart Apple TV and a hard reset by holding the button "HOME" button and "POWER". On the "Apple TV" is worth the latest firmware as these problems are manifested in the previous firmware of the device.
    2 Built-in browser "Safari".
    Tab in the "Safari" became constantly updated when I switch to another application or the other tabs! Apparent lack of memory (on iOS 7.1.2 with it all much better. At least when switching tabs does not re-update the previous tab).
    Playing online video on non-optimized mobile site in the browser "Safari" really does not work! It is turned on and loaded almost to infinity! Sometimes just a black screen with an icon "Play" to be pressed at least 100 times, and the result is 0!
    Scroll pages in the browser have become terribly sharp and smooth! on iOS 7.1.2 everything is fine, nice and smooth and no such bugs! Total confusion and thoughtfulness browser "Safari".
    If the video still runs (for me equates to a miracle) then when rewinding the film is generally something strange ... Fast chooses how minutes and seconds I watch a movie (usually just starts playing from the beginning), or does not respond at all ... This is the same magic Apple? Unlikely.
    3 multitasking menu (double-press "HOME").
    Call multitasking (by double-clicking "HOME") began working with a delay, with a lag, c jerky animation, and sometimes even without it.
    Control Center (which is called swipe upwards) was to slow down! Yes! That retard! Animation jumping shutter control center began play with tangible frame loss! If iPhone 5s under the control of OS iOS 7.1.2 everything happened smoothly, beautifully and dynamically in the iOS 8.0 it looks like on the iPhone 5 running iOS 7.C than strongly connected is not clear! Graphic differences from iOS iOS 7 8 almost equal to 0, and the speed of decline in almost 50%! How ?! Why ?! Why does my iPhone 5s become the iPhone 5 ?! This is an artificial slowing my device to increase the demand on the iPhone 6 or still glitch iOS 8.0 for iPhone 5s? Honey the company Apple, I really hope for the 2nd. Especially this shortfall fps animation curtain markedly if you open multitasking (acquired by double button "HOME") and call the control center and you'll see that the animation is playing choppy and not smooth! On IOS 7.1.2 this is not! Control center jumps smoothly and beautifully! On iOS 8.0 it happens all the time! Even if you turn off your favorite contacts and recent calls (I'm ashamed to say they thought) that appeared in iOS 8 (they are above programs on the multi-tasking) not solve the problem. As well, if you call the control center on the lock screen, then drop FPS will be very noticeable even to the untrained viewer (especially if you take two iPhone 5s one running iOS 7 and 8, the second on iOS and compare them on the forehead). If the Control Center click airdrop (air play) the animation of its appearance again played in spurts and not terribly nice and smoothly (especially noticeable on the lock screen and comparison of the forehead)! In a telephone call has been going absolutely shameless FPS drop a call center management and other activities!
    And yes, for me it is a critical issue! I do not want the transition to iOS 9 my iPhone 5s turned to the iPhone 4 on iOS 7 (vid you all remember this terrible story?)! I want my iPhone 5s worked as smoothly as on iOS 7.1.2! Nor any justification for this inhibition iskuvsstvennoy I can not see! 8 beautiful iOS did not! graphic elements do not appear! So goes the Apple is doing this on purpose ?! We go down the list!
    4 minor bugs that just break my brain and kill all the beauty of the use of "the best mobile operating system in the world"!
    4.1. When a call comes in when you clicked the icon making a call the phone for about 2-3 seconds, vibrates and plays a melody. On iOS 7.1.2 ringtone and vibration stops as soon as you have accepted the challenge and in your ear does not play your ringtone by "imagine Dragons", cheeks beats you invented vibration in the style of "Tick-tonic."
    4.2. When you look at the page on the Internet-phone terribly terribly strongly heated! A pair of piping hot! On iOS 7.1.2 is no such problem! Telephone hot, but not as much as on iOS 8.0!
    4.3. Folder on the home screen opens with a delay of 0.5-1 second is the impact on the overall impression of iOS 8.0.
    4.4. When you create a set (12 pieces) icons in one folder if dramatically open the folder and make swipe to the left then the following icons in this folder does not have time to boot up and are delayed by 1 second.
    4.5. When you create a folder with 1-9 icons do if the above action fails then the animation (the same bug exists in iOS 7.1.2). It is very not nice aesthetically.
    4.6. Scroll to your "Settings" felt terribly antsy. Although it is not only in the application "Settings" but also to the entire system and applications in general ...
    4.7. Scroll to the Home screen has become less responsive to user actions all movements inogoda occur with jerky animation and some delay to the user.
    4.8. Quite often, and without rational reason for going off the sensor device. That is, the screen does not respond to any user action! Helps pressing "HOME" or hard reset by holding the button "HOME" and "POWER".
    4.9. Most people on the iPhone 5s lost communication with a mobile operator. Just go on and lost and because of this I have missed calls from their loved ones and friends (would cost you to be glad that I have not missed calls on business issues).
    5.0. Many owners of iPhone 5s and iPhone 5 uhudzhenie complain about battery life. I honestly did not notice it, but we will not drop this off.
      Outcome.
    And now gets quite an interesting question, why? Why does my iPhone 5s began to slow? Why in the absence of graphical improvements are absolutely the same actions were reproduced with the loss of fps, slow down, lag, hover, fly? Why, if put next iPhone 5s on iOS 7.1.2 and exactly the same iPhone 5s on iOS 8.0 and pull the control panel to call multitasking bar, carry out all other actions I have described it on your device running iOS 7.1.2 it will work without any delays, lags, the deterioration in the responsiveness of the interface, reducing fps, and no departures from simple applications written directly by Apple? I see absolutely no any obstacles in the way to make the iPhone 5s to the operating system iOS 8.0 worked with the same smoothness, with the same responsiveness and speed as the iPhone 5s running iOS 7.1.2! I do not see what these restrictions are not!
    There are many different bugs that I do not even remember now (as I write this text on emotions (positive) as able to roll back your iPhone 5s back to iOS 7.1.2, and he seemed to come alive with new life) and so far I have esteemed company APPLE does not eliminate these improvements do not, I will not go back to iOS 8.0! if the dispensation of these bugs, flaws, intentional degradation of the (almost identical in performance in comparison with the iPhone 6) IPhone 5s will not happen and the company APPLE will continue to apply to consumers of their products as a beta tester I will be forced to organize a petition and file a class action lawsuit in court not only in their own country (which is for the Russian Federation) but also in the United States and in other countries where people are just like me trying to deceive, mislead and force companies to buy new devices APPLE without having expressed any any more substantial explanation except as <iPhone 6 was 25% more powerful on with alignment with the iPhone 5s>!
    P.s.
    I hope Apple will still listen to their users and I also hope that it (Apple) still change his mind and will try in the near future to give users not-so-old devices (iPhone 5s, iPad Air, iPad mini Retina) and enjoy on all the new features of iOS 8 no lag, locked up, overheating, inhibited animation. Thank you for being there!
    Ru.
    Всем доброго времени суток! Я как и вы форумчане являюсь фанатом компании APPLE. Проживаю я в Российской Федерации. Начал свое знакомство с этой компанией в далеком 2010 году с устройства Ipad 2 тогда еще на ios 5. В январе 2014 я сделал себе подарок и купил iPhone 5s на OC IOS 7. Купил я его официально по официальной Российской цене которую выставила Apple точнее за 1100$. В нашей стране это очень большие деньги. На эти деньги я бы мог жить 3 месяца. По сути я стал обладателем топового (на тот момент) устройства от любимой компании Apple. Мой iPhone 5s прекрасно работал на ios 7. Иногда встречались легкие фризы анимации, и не критичные баги, но кто без греха? Любимой компании я был готов это простить так как вижу, что она старается быть лучше и не стоит на месте. Посмотрев презентацию WWDC на которой представили iOS 8 нас с вами уверяли, что все стало лучше, быстрее, функциональнее. Я твердо решил, что обновлю свой iPhone 5s до iOS 8.0... APPLE выпускает новую OC iOS 8... И я обновился! За красивыми словами, что нам говорили на презентации, за великолепными функциональными возможностями новой iOS скрывалось "нечто". И это "нечто" превратило мой телефон в... "тыкву"! Да! В ту самую тупую тыкву! И сейчас я объясню почему я думаю, что это тыква, а не роза.
    Море багов... причем они ужасны и страшны так как не дают мне в полноценной мере насладится работой моего iPhone 5s!
    Начнем по порядку:
    1. Потоковая передача данных посредством технологии "Air play".
    "Air play" перестал нормально работать! Он стал часто отсоединяться от Apple tv и Apple airport express последнего поколения. Apple tv 2g не может принять сигнал от моего iPhone 5s! А когда все же это у него получается то воспроизведение видео длится не долго оно просто обрывается и не дает подключиться повторно! Помогает перезагрузка Apple TV и жесткий сброс посредством удержания кнопки "HOME" и кнопки "POWER". На "Apple TV" стоит последняя прошивка так же эти проблемы проявлялись и на предыдущей прошивке устройства.
    2. Встроенный в систему Браузер "Safari".
    Вкладки в "Safari" стали постоянно обновляться когда я переключаюсь на другое приложение или на другие вкладки! Явная нехватка оперативной памяти (на iOS 7.1.2 с этим все гораздо лучше. по крайней мере при переключение вкладок не происходило повторное обновление предыдущей вкладки).
    Воспроизведение онлайн видео на не оптимизированном для мобильных устройств сайте в браузере "Safari" толком не работает! Оно включается и загружается чуть ли не до бесконечности! Порой просто черный экран с иконкой "Play" на которою нажимай хоть 100 раз, а результата 0!
    Пролистывание страниц в браузере стали до ужаса резкими и не плавными! на iOS 7.1.2 все прекрасно, плавно и красиво и таких багов нет! Общая заторможенность и задумчивость браузера "Safari".
    Если видео все же запускается (что для меня приравнивается к чуду) то при перемотке фильма происходит вообще что-то непонятное... Перемотка сама выбирает с какой минуты и секунды мне смотреть фильм (чаще просто начинает воспроизводить все с самого начала) либо не реагирует вовсе... Эта та самая магия Apple? Непохоже.
    3. Меню многозадачности (двойное нажатие кнопки "HOME").
    Вызов многозадачности (посредством двойного нажатия кнопки "HOME") стал работать с задержкой, с лагом, c дерганой анимацией, а порой и вовсе без нее.
    Центр управления (который вызывается свайпом снизу вверх) стал тормозить! Да! Именно тормозить! Анимация выпрыгивания шторки центра управления стала воспроизводиться с ощутимой потерей кадров! Если на iPhone 5s под управление OS iOS 7.1.2 все происходило плавно, красиво и динамично то в iOS 8.0 все выглядит как на iPhone 5 под управлением iOS 7.с чем это связанно решительно не понятно! Графические отличия iOS 7 от iOS 8 практически равны 0, а скорость работы сниженна практически на 50%! Как?! Почему?! Почему мой iPhone 5s стал iPhone 5?! Это искусственное замедление моего устройства для повышения спроса на iPhone 6 или все же недоработка iOS 8.0 для iPhone 5s? Дорогая компания Apple, я очень надеюсь на 2-е.  Особенно эту нехватку fps в анимации шторки заметно если открыть многозадачность (посредством двойного нажития кнопки "HOME") и вызвать центр управления и вы увидите что анимация проигрывается рывками и не плавно! На IOS 7.1.2 такого нет! Центр управления выпрыгивает плавно и красиво! На iOS 8.0 это происходит постоянно! Даже если отключить избранные контакты и недавние вызовы (я грешным делом подумал на них) которые появились в iOS 8 (они находятся выше программ на панели многозадачности) проблему не решить. Так же, если вызвать центр управления на экране блокировки то падение FPS будет очень заметно даже для неподготовленного зрителя (особенно если взять два iPhone 5s один под управление iOS 7 и второй на iOS 8 и сравнить их в лоб). Если в центре управления нажать кнопку airdrop (air play) то анимация ее появления опять таки проиграется рывками и ужасно не красиво и не плавно (особенно заметно на экране блокировки и при сравнение в лоб)! При телефонном вызове происходит уже совсем уж бессовестное падение FPS при вызове центра управления и при других действиях!
    И да, для меня это критичная проблема!  Я не хочу чтобы при переходе на iOS 9 мой iPhone 5s превратился в iPhone 4 на iOS 7 (Вы видь все помните эту страшную историю?)! Я хочу чтобы мой iPhone 5s работал так же плавно как и на iOS 7.1.2! Ни каких оправданий для этой искувсственной заторможенности я не вижу! iOS 8 красивей не стала! графических элементов больше не появилось! Так выходит компания Apple делает это специально?! Идем дальше по списку!
    4. мелкие баги которые просто разрывают мой мозг и убивают всю красоту использования "Самой лучшей мобильной операционной системы в мире"!
    4.1. При входящем вызове когда вы нажали иконку принятия вызова телефон еще около 2-3 секунд вибрирует и проигрывает мелодию. На iOS 7.1.2 мелодия и вибрация останавливается как только вы приняли вызов и вам в ухо не играет ваш рингтон в исполнении "imagine Dragons", по щекам не бьет придуманная вами вибрации в стиле "Тик-тоник".
    4.2. Когда смотришь страницы в интернете телефон ужасно-ужасно сильно греется! Парой обжигающе сильно! На iOS 7.1.2 такой проблемы нет! Телефон горячий, но не так сильно как на iOS 8.0!
    4.3. Папки на домашнем экране открываются с задержкой в 0.5-1 секунду это сказывается на общем впечатлении от iOS 8.0.
    4.4. При создании множества (12 штук) иконок в одной папке если резко открыть папку и сделать свайп влево то следующие иконки в этой папке не успевают загрузиться и отображаются с задержкой в 1 секунду.
    4.5. При создании папки с 1-9 иконками если проделать описанное выше действие то произойдет сбой анимации (этот же баг есть и в iOS 7.1.2). Это крайне не приятно эстетически.
    4.6. Пролистывание в приложении "Настройки" стало ужасно дерганым. Хотя не только в приложении "Настройки" но и по всей системе и в приложениях в целом...
    4.7. Пролистывание на Домашнем экране стало менее отзывчивое на действия пользователя все движения иногода происходят с дерганой анимацией и какой-то задержкой на действия пользователя.
    4.8. Довольно часто и без объяснимой причины происходит отключения сенсора устройства. То есть экран не реагирует ни на какие действия пользователя! Помогает нажатие кнопки "HOME" либо жесткий сброс посредством удержания кнопки "HOME" и "POWER".
    4.9. Большинства людей на  iPhone 5s пропадает связь с сотовым оператором. Просто берет и теряется и из за этого я уже пропускал звонки от своих близких и друзей (стоило бы вам порадоваться, что я не пропустил звонки по рабочим вопросам).
    5.0. Многие обладатели iPhone 5s и iPhone 5 жалуются на ухуджение работы аккумулятора. Я честно говоря этого не заметил, но не будем сбрасывать этого со счетов.
    Итог.
    А теперь встает довольно интересный вопрос, почему? Почему мой iPhone 5s стал тормозить? Почему при отсутствии графических улучшений абсолютно одни и те же действия стали воспроизводится с потерей fps, тормозить, лагать, зависать, вылетать? Почему если положить рядом iPhone 5s на iOS 7.1.2 и точно такой же iPhone 5s на iOS 8.0 и вытянуть панель управление, вызвать панель многозадачности, провести все остальные действия описанные мною то на устройстве под управлением iOS 7.1.2 все будет работать без каких либо задержек, лагов, ухудшение в отзывчивости интерфейса, уменьшении fps и просто без вылетов из приложений написанных непосредственно компанией Apple? Я не вижу абсолютно ни каких преград в том чтобы сделать так чтобы iPhone 5s под управлением операционной системой iOS 8.0 работал с той же плавностью, с той же отзывчивостью и скоростью, что и iPhone 5s под управлением iOS 7.1.2! Не вижу от того, что этих ограничений нет!
    Есть еще множество различных багов о которых я сейчас даже не вспомню (так как этот текст я пишу на эмоциях (положительных) так как смог откатить свой iPhone 5s обратно на iOS 7.1.2  и он как будто ожил новой жизнью) и пока глубокоуважаемая мною компания APPLE не устранит эти не доработки я не буду возвращаться обратно на iOS 8.0! если устроения этих багов, недоработок, умышленного ухудшения работы (практически одинакового по производительности в сравнении с iPhone 6) IPhone 5s не произойдет и компания APPLE будет и дальше относиться к потребителям своей продукции как к бета тестерам я буду вынужден организовать петицию и подать коллективный иск в суд не только в своей стране (коей является Российская Федерация) но и в США и в других странах где людей так же как и меня пытаются обмануть, ввести в заблуждение и заставить покупать новые устройства компании APPLE не дав на то ни каких более существенных объяснений кроме как < iPhone 6 стал на 25% мощнее по с равнению с iPhone 5s>!
    P.s.
    Я надеюсь компания Apple все еще прислушивается к своим пользователям и я так же надеюсь, что она (Apple) все же одумается и постарается в ближайшее время дать пользователям не таких уж и старых устройств (iPhone 5s, iPad Air, iPad mini Retina) наслаждаться и дальше всеми новыми возможностями операционной системы iOS 8 без лагов, подвисаний, перегревов, заторможенной анимации. Спасибо, что вы есть!

    Agreed! This bug with the ringtone delay (№4.1) is really annoying

  • How do I clone a fully operational system that relies on Windows 7 for the underlying operating system?

    I'm a retired IT professional desiring to assist a friend who owns a small business who recently experienced very malicious attacks on her computers from unknown parties operating anonymously on the Internet. Because
    of her lack of preparation for such events, her future ability to continue to conduct her business was seriously threatened. The incident revealed, to my friend, the need to be prepared to deal with spontaneously occurring problems that create suspicious conditions
    that arise with modern computer software before they can be analyzed in a sufficiently comprehensive manner to have an opinion regarding the appropriate course of action for obtaining a permanent remedy. In that, the ability to quickly react on the basis of
    only suspicion is the goal.
    I want to recommend an approach that involves maintaining an offline image of an operational system that is capable of running any of her computers. This image needs to include all of the software required to run
    her business. In that, it is not limited to the operating system. This single image could then be used to restore any computer to a known reliable state should the need arise. This technique will also insure that each computer has sufficiently similar capability
    to allow them to substitute for each other. Insofar as image restoration is itself an operation susceptible to causing unacceptable business delay I'm also recommending that each of the identical computers (i.e., from a hardware perspective) operate in a multi-boot
    environment where a virtually offline backup can be instantiated via a simple reboot (i.e., an operation that all users of the Windows operating systems turn to when strange behavior is first observed). My intention is to limit the cloned system (i.e., partition
    or C: drive) to the operational software. The business data along with storage for temporary data will be isolated on other partitions (i.e, mounted with other drive letters) accessible by each instance of the software eligible for multi-boot operation.
    This kind of operation is something that I know how to setup on older versions of the Windows operating system. However, Microsoft has now dropped support for all of those operating systems and my much more limited
    experience with the currently supported operating systems reveals that changes to the boot process will necessitate making changes to the specific preparations needed to build such an environment.
    Before recommending that my friend replace all of her computers with new ones, that includes paying for new operating system (i.e., Windows) licenses, I need some assurance that the new operating systems are as
    good as the old ones in this respect. These need to be relatively inexpensive desktop computers and we're only talking about a few of them. Let's say fewer than half a dozen. My friend is a sole proprietor and even though her business has become completely
    dependent on what was once called personal computers she must operate on a fairly tight budget. This especially includes the budget for technology.
    The articles I've been able to find on the Microsoft support websites seem to treat multi-boot as a situation where someone is running different versions of possibly difference operating systems whereas my need
    to produce a single image that will both run on multiple computers as well as multiple partitions on the same computer. I'd appreciate finding some technical advice that applies to building such a system using a supported version of Windows.

    I tried the image creation/restoration described by Jared.  I don't think it makes much sense to rely on an operational system to do such a restoration therefore I opted for method 3 which involves using a "System Repair Disk".  My first
    reaction is what a crude tool.  The image creation process had no trouble putting the image on a simple network share.  However, it appeared as though the restoration couldn't even connect with the device.  I then copied the files to a USB drive. 
    In this case the repair disk said it couldn't find the files even though they were there.  It offered no mechanism to even look and see what was there.  It appears as though it will only find the image if it is located in a folder by the certain
    name used on creation and it is in root directory.  Not very handy.
    As ugly as all that was when we finally come to the point of making the restore it looks like the only option is to restore the entire disk, which in my case would mean also restoring both the windows partition and the recovery partition.  This just
    isn't what I want to do.  It is also something I wouldn't even consider doing unless it was the only possible way to recover from a failed hard drive.
    In summary, unless I've completely failed to notice how it works that just isn't going to work.
    I hope there is something better than this.  What about WinPE and ImageX?
    Absent anything useful from Microsoft it will be necessary to try using other software.  Time to try Acronis!  I guess.

  • How do i install a free osx or operating system on my macbook pro 2008?

    Hey so the go is i have a macbook pro 2008 i love it too bits but for some reason my screen flickers all the time but ill just have to deal with it. Secondly i cant install any operating systems because i dont have a mac to download osx from or mountain lion. And when i go to download it directly from my macbook pro it says i need to buy it :/ or i dont have the licence i cant remember but i just want it working whoever can help me i would much appreciate!! thankyou for reading this and also ps my screen when im on the net on it in the safari osx menu it intermittly spazzes and all the url bars keep clicking etc i dont know what the problem is but i would appreciate some advice or help! it is a good machiene quiet no damage looked after just got it given to me from a family member but i have had no luck so far

    Jamesandmacbooks,
    if by “free” you mean “gratis” (as opposed to, say, “open source”), then there’s only one version of OS X to date that’s gratis, namely Mavericks. You can only download Mavericks if you currently have Mac OS X 10.6.6 or later installed. If you’re still running Leopard (Mac OS X 10.5.something) on your 2008 MacBook Pro, then you’ll need to first purchase the white retail Snow Leopard DVD, install it on your MacBook Pro, and run Software Update to get it to 10.6.8, after which you can download Mavericks gratis from the Mac App Store and install that. Be sure that your MacBook Pro meets all of Mavericks’ system requirements before trying to install it. If you currently run any PowerPC apps, note that they won’t be supported in any version of OS X after Snow Leopard.

  • After bios update, will not boot, says install an operating system

    I have a amd hp 2000 notebook. i replaced the hard drive with an ss drive, windows 7.  been working fine until the bios update, I bleieve, which lost the boot up parameters. how do I get it to boot. hard drive works well in another system so not that. getting the usual message, boot dvice not found, install an operating system, F2 diagnostics all pass. Hard disk (3F0) message
    should one revert to earlier bios, usually not recommended. bios version 45 it says, so not sure the latest.

    jwess wrote:
    I have a amd hp 2000 notebook. i replaced the hard drive with an ss drive, windows 7.  been working fine until the bios update, I bleieve, which lost the boot up parameters. how do I get it to boot. hard drive works well in another system so not that. getting the usual message, boot dvice not found, install an operating system, F2 diagnostics all pass. Hard disk (3F0) message
    should one revert to earlier bios, usually not recommended. bios version 45 it says, so not sure the latest.

  • I got a flashing folder with a question mark. I got a new hard drive and upgraded to 4 gigs and can't open anything or reload the operating system? Help?

    I got a flashing folder with a question mark. I got a new hard drive and upgraded to 4 gigs and can't open anything or reload the operating system? Help? FYI: I have been using boot camp with windows 7 and started getting a kernal_data_Page_error and it would reboot windows, i was trying to do a chkdsk on the next reboot, but thats when i started getting this issue. I have put in a new hard drive and went from 2 gigs to 4. I can not get the computer to do anything, even the monitor does not show anything now????

    Prep your new drive:
    Drive Preparation
    1. Boot from your OS X Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID (for Intel Macs) or APM (for PPC Macs,) then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    After formatting has completed quit DU and return to the installer. Install OS X.

  • Firefox prompted me to download an incompatible update that its website claims is compatible with my operating system (Mac OS 10.4.11). Why prompt an incompatible download AND claim it is compatible?

    I have an iMac and use OS 10.4.11 & Firefox 3.6.19. Firefox prompted me to download an update (to 7.0.1). I looked up the system requirements on your website, and it stated the update is compatible with OS 10.4.11. But after I downloaded and installed the update, it failed to work on grounds of incompatibility. Hence 2 questions: (1) Why did Firefox prompt me to download an incompatible update? (2) Why did your website claim the update is compatible with my operating system when it is not?

    Sorry, it's because Firefox 4+ are only compiled for the Intel processors.
    There is a separate project for PPC Macs called Ten Four Fox. You might give it a spin when you're tired of 3.6.
    http://www.floodgap.com/software/tenfourfox/

  • My operating system windows XP not working with photoshop cloud, why not?

    I need to add 2 more licences for photoshop cloud and I'm being told my operating system windows XP does not work with Photoshop cloud. We already have 2 pcs using it in our office so why not?
    Please help
    Roy

    Do you have the latest version of iTunes?  If not, get it at:
    http://www.apple.com/itunes

Maybe you are looking for

  • I don't have the free crop option in iMovie?

    Hi, I'm trying to crop my videos but I can't free crop it. There's only a "crop to fill" option instead of just "crop". Help? (iMovie 10.0.4)

  • [SOLVED] Iptables doesn't allow pacman -S(y) anymore...

    Hi there, First of all, sorry for my english . I've just configured my firewall, but now i can't get pacman working great. Nowatime I can't synchronise, and i can't install anything. So, I think that pacman use port number 80, but iam not sure. I did

  • Licensing for Query Analyzer

    Hello,As a partner with access to the download center, I would assume that the license keys provided to us on the download page would unlock all Essbase functionality, including the new Query Analyzer (or whatever it's called...it's the new tool in t

  • Error in SAPLV14A

    Hi Gurus, When running Sales pricing customizing settings, i am getting dump in SAPLV14A - LV14ATOP: Inconsistency in the Dictionary for the structure "KOMGFOLD". DATA: BEGIN OF index_old OCCURS 50.         INCLUDE STRUCTURE komgfold. DATA: END OF in

  • Help for downgrade to 1.1.4 firmware

    Days ago, I updated the sdk to beta 7 and reinstalled the new firmware. Now I want to downgrade the firmware to 1.1.4, but when I enter recovery mode under windows, the system does not recognize the iPhone ( there is yellow triangle on the device ite