Bringing up with dtrace

The following modules found to be part of dtrace to try this I am using fedora I suppose this is doable ?
linux-2.6-dtrace-modules-beta.git
linux-2.6-dtrace-unbreakable-beta.git
Is there any installation guide or some doc which will help to bring this up on a virtual box ?
thanks.

The Linux kernel with DTrace support and the kernel modules are in essence (and by design) not specific to any distribution, in the same sense that the kernel is not really distribution specific. While we do not do any formal testing on other OS distributions, we have at times used the kernel with DTrace support and the kernel modules (and userspace of course) on other systems for various reasons, and it definitely can be done without much effort. You just need to ensure (of course) that the appropriate kernel options are enabled for your specific system and OS distribution (since there are dependencies there for some systems). The DTrace support is configurable through the standard kernel configuration mechanism, so enabling that is all that is really needed in order to do a source build.
There is no formal support for doing this, but if one has experience building one's own kernels from source, it really is quite easy.
Hope this helps,
Kris

Similar Messages

  • Understanding open syscall on FIFO with dtrace

    Hi all,
    I'm trying to understand open syscall behaviour with respect to FIFOs using dtrace. We have a very intermittent failure with FIFOs, when writer process fails in opening pipe, but reader succeeds. I tried debugging with dtrace and found some weirdness in the failing condition. I'd appreciate if you can throw some light.
    Program desc:
    READER opens in blocking mode (O_RDONLY = 0)
    WRITER opens in non-blocking mode (O_WRONLY | O_NONBLOCK = 1 + 128 = 129)
    During failure conditions open() returns -1 to writer (non-blocking call) but reader gets a valid file descriptor.
    Please find below the filtered dtrace output (sorted by timestamp - I have stripped off some trivial information)
    {color:#999999}timestamp walltimestamp pid tid exe probe func fifo flag/return-value errno
    ===========================================================
    Failure:
    1103747969678386 2009 Aug 12 06:22:56 20656 1182 reader open entry /data/fifo1 0 0
    1103747970243629 2009 Aug 12 06:22:56 6702 14 writer open entry /data/fifo1 129 0
    1103747970401069 2009 Aug 12 06:22:56 20656 1182 reader open return /data/fifo1 48 0
    1103747970413489 2009 Aug 12 06:22:56 6702 14 writer open return /data/fifo1 -1 6{color}
    {color:#999999}In a successful open, dtrace outs like below:
    1103747860071143 2009 Aug 12 06:22:56 20656 1235 reader open entry /data/fifo2 0 0
    1103747880222083 2009 Aug 12 06:22:56 6702 14 writer open entry /data/fifo2 129 0
    1103747880376943 2009 Aug 12 06:22:56 6702 14 writer open return /data/fifo2 23 0
    1103747880394596 2009 Aug 12 06:22:56 20656 1235 reader open return /data/fifo2 49 0{color}
    I saw that errno=6 is the expected error returned by a non-blocking fifo open when there's no reader on pipe.
    Our assumption is Synchronization by open(FIFO) by reader and writer should be taken care by the OS, which implies when writer gets a valid FD, the reader must also get a valid fd. On this assumption, our guess is there's an intermittent problem with open() implementation.
    I'd appreciate if someone can confirm above, or if our assumption is wrong, or any points on further debugging.
    Thanks,
    KR
    Other details:
    *uname -a</s
    <p>SunOS xxxx 5.10 Generic_125100-09 sun4v sparc SUNW,Sun-Fire-T200
    D script:*
    syscall::open:entry, syscall::creat:entry,
    syscall::open64:entry, syscall::creat64:entry,
    syscall::unlink:entry, syscall::rename:entry
    printf("%u %Y %5d %5d %5d %5d %5d %-12s %-10s %-10s %25s %d %s %d %d\n",
    timestamp,walltimestamp, pid, tid, execname, probefunc,probename, copyinstr(arg0), arg1, errno);
    self->file=arg0;
    syscall::open:return, syscall::creat:return,
    syscall::open64:return, syscall::creat64:return,
    syscall::unlink:return, syscall::rename:return
    printf("%u %Y %5d %5d %5d %5d %5d %-12s %-10s %-10s %25s %d %s %d\n",
    timestamp,walltimestamp, pid, tid, execname, probefunc,probename, stringof(copyinstr(self->file)),arg1,errno);
    self->file = 0;

    Hi all,
    Any thoughts on this would help.
    @ Moderator,
    Please let me know if this should be moved another forum.
    Thanks,
    KR

  • Material condition record to bring price with respective taxes

    Dear All,
    I am trying to bring material condition record to bring price with respective taxes of the material in condition type pr00.
    In this case i am not able to post the billing document in to FI
    module.However when i manually enter the respective taxes
    iam able to post the same to FI.
    My doubt here is that can we use taxes along with prices
    or not.
    your immediate resonse to this quiry will be definitely rewarded with good points.
    Best regards,
    R.Srinivasan

    Dear Friend,
    Please explain where did you maintain the record for the PR00 Condition type..and what is the req and Alt base val and requirement you have specified..
    As per Me if you have maintained the taxes along with prices in the material master records in accounting1/2 data then the cost price along with prices will be reflected in the pricing procedure in the cost proce condition type...
    VPRS the internal cost price for the material as per sales order.
    Please correct me if I am wrong and explain the various requirement type and alt base value calculation you have used.
    edited by,
    Amlan Sarkar

  • Tracing scsi commands with dtrace / wrong ctf data on S-x86?

    This is probably a bug, either in the kernel's CTF symbol information, or in dtrace:
    I'm trying to trace scsi commands in the Solaris 10 b63 x86 kernel with dtrace, including any request sense
    data received for failed scsi commands.
    I've noticed that my D script (included below) prints bogus "sense key" values on S10_b63 (x86),
    when the "es_key" member from a "struct scsi_extended_sense" is printed (see the
    <sys/scsi/generic/sense.h> header file).
    For example, when the first three bytes of a "struct scsi_extended_sense" are filled with the bytes
    0x70, 0x00, 0x05, printing scb->sts_sensedata.es_key gives the output "1" instead of the expected "5".
    Example:
    dtrace: script 'scsi2.d' matched 3 probes
    CPU     ID                    FUNCTION:NAME
      0  16099             scsi_transport:entry 46 02 00 00 00 00 00 00 08 00
      0  16387                     sdintr:entry state 37, reason 0, t/ms 2, to/s 5, arq sk/asc/ascq 1 20 0The user level command that has send the "0x46" scsi GET CONFIGURATION command via an USCSI
    ioctl prints the correct correct sense data ("5 20 0"):
    get configuration: scsi command failed with status illegal request, invalid command operation code (sk/asc/ascq 5 20 00)Here's my D script:
    #!/usr/sbin/dtrace -s
    fbt::scsi_transport:entry
            pkt = (struct scsi_pkt *)arg0;
            cdb = pkt->pkt_cdbp;
            printf("%02x %02x %02x %02x %02x %02x %02x %02x %02x %02x",
                    cdb[0], cdb[1], cdb[2], cdb[3], cdb[4],
                    cdb[5], cdb[6], cdb[7], cdb[8], cdb[9]);
            this->start_time = timestamp;
    fbt::sdintr:entry
            tim = (timestamp - this->start_time) / 1000000;
            pkt = (struct scsi_pkt *)arg0;
            scb = (struct scsi_arq_status *)pkt->pkt_scbp;
            printf("state %x, reason %x, t/ms %d, to/s %d, %sarq sk/asc/ascq %x %x %x",
                    pkt->pkt_state, pkt->pkt_reason, tim, pkt->pkt_time,
                    pkt->pkt_state & 0x20 ? "" : "no ",
                    pkt->pkt_state & 0x20 ? scb->sts_sensedata.es_key : 0,              /* <<<<<<<<< */
                    pkt->pkt_state & 0x20 ? scb->sts_sensedata.es_add_code : 0,
                    pkt->pkt_state & 0x20 ? scb->sts_sensedata.es_qual_code : 0);

    This is indeed a bug: thanks for finding it and sorry for the trouble. There is an issue with
    the way the D compiler is trying to decode bit-fields of length greater than one byte on x86,
    of which es_key is such a bit-field. We'll get a bug filed on this for you and get it fixed.
    -Mike

  • Monitoring File Permission Changes with dTrace?

    Hi,
    We have a file whose permissions are getting changed occasionally, and we're trying to determine which process is changing them.
    Can someone describe how to do this with dTrace?
    Thanks in advance!
    -Rocky
    Edited by: umuc-rocky on Mar 31, 2009 10:50 AM

    Try this clause for starters:
    syscall::chmod:entry
    printf("Calling program: %s\n", execname);
    printf("Target file: %s\n", fds[arg0].fi_name);
    }

  • Bringing image with changes into x/y comparison

    I am editing an image to match another completed version of the same image.  When I bring in my working copy with some edits to the x/y window to compare, my working copy appears unedited.  Why?

    To be sure: are you doing this comparison in the Develop module or the Library module?
    In the library module you are comparing two images.
    In the Develop module it may seem that you are doing the same but in fact you are comparing one image but two different states: before editing and after editing.
    Your description appears eerily similar to the second scenario - hence my opening question.
    Tony Jay

  • How to bring values with out loop as per selection criteria

    Hi Everyone,
    We are doing some re-design in IPAD in that i am facing an issue. There is one scenario where sub-action loop has been used(it is an existing functionality). We dynamically bring the question in this loop based on certain seller phase.
    Now they want to bring everything in one screen it self. The table they are looping is complex table.
    Any ideas how we can achieve this problem.
    The idea which i have:
    During fetch i need to loop and this complete table and get these values in to variables, so that i can hide remaining fields based. Is there any other way do it.
    Regards,
    Gupta

    It's difficult to really give steps without knowing your application better but here goes my best shot at it.
    In terms of underlying structures on the client, I am assuming you have a questionsCT, a question object (with the desired fields to displa and a tempQuestions collection on your Main Object to hold the displayed questions.
    1) Create an Edit Transaction on the main object with one property of the tempQuestions collection.  This property should be set to Auto-Initialize.  When this transaction is involved from an action and applied it will clear the tempQuestions collection.
    2) On the question object, create an Add transaction to populate the object fields from the corresponding questionCT current record.  For each of the transaction properties set the Initial Value to "From a different object property" and then browse to the Complex Tables selecting your questionsCT -> current record -> field name.
    3) Create your Add question Action to call the AddQuestion Transaction and Apply.  This will be the action called from your subaction loop.
    4) Create your refresh action with the following steps
        a) Transaction - (#1)
        b) Apply
        c) Sub-Action
            c1) Execution Type: Loop over collection
            c2) Collection: Browse and select your questionsCT
            c3) Execution Rule: Define a new rule to return true if the current record meets your selection criteria
            c4) Action: Seelct your Add question action (#3)
    On your detail screen, I am assuming you will have a dropdown or some similar way to set the selection criteria.  Create a button field that will call your refresh action (#4) and add a tile list control targeting the tempQuesitons collection as it's source.
    This should hopefully get you started in the right direction.
    --Bill

  • How to bring fields with no values into workbook..?

    Hi Gurus,
    We have a query, which is filtered with some 60 GL Accounts. Some of these GL account has no values or activity since long back. But we need to display it in the report for some reasons. Since it doesnu2019t have any value, its not coming up in the report. Only the accounts with values are coming up.
    Is there any way I can bring these accounts in the report with 0 as values...? Any help is highly appreciated.
    Thanks
    Uan

    Hi,
    there are two ways:
    1) first you update in the infocube all values from gl_account.
    => your data volume grown up very much.
    2) in the query you create a structure with all values from gl_account.
    Sven

  • After the update, My ethernet cannot bring up with 1000Mbps

    Before I can get the 1000Mbps, but after update, I can get only 100Mbps,  not the dmesg shows 10Mbps
    How need I to do to fix this problem?
    the download speed:
    sftp> get archlinux-2014.03.01-dual.iso
    Downloading archlinux-2014.03.01-dual.iso from /data/archlinux/iso/2014.03.01/archlinux-2014.03.01-dual.iso
    100% 539648KB 1155KB/s 00:07:47
    /data/archlinux/iso/2014.03.01/archlinux-2014.03.01-dual.iso: 552599552 bytes transferred in 467 seconds (1155 KB/s)
    sftp>
    The dmesg is below:
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 15728640 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2999.302 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 6001.54 BogoMIPS (lpj=9997673)
    [ 0.000004] pid_max: default: 32768 minimum: 301
    [ 0.000017] init_memory_mapping: [mem 0xba694000-0xba933fff]
    [ 0.000018] [mem 0xba694000-0xba933fff] page 4k
    [ 0.000035] init_memory_mapping: [mem 0xcc630000-0xccf76fff]
    [ 0.000036] [mem 0xcc630000-0xcc7fffff] page 4k
    [ 0.000037] [mem 0xcc800000-0xccdfffff] page 2M
    [ 0.000037] [mem 0xcce00000-0xccf76fff] page 4k
    [ 0.000057] init_memory_mapping: [mem 0xccf77000-0xccffefff]
    [ 0.000057] [mem 0xccf77000-0xccffefff] page 4k
    [ 0.007802] Security Framework initialized
    [ 0.007812] AppArmor: AppArmor disabled by boot time parameter
    [ 0.007813] Yama: becoming mindful.
    [ 0.008005] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.009251] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.009818] Mount-cache hash table entries: 256
    [ 0.009966] Initializing cgroup subsys memory
    [ 0.009971] Initializing cgroup subsys devices
    [ 0.009972] Initializing cgroup subsys freezer
    [ 0.009974] Initializing cgroup subsys net_cls
    [ 0.009975] Initializing cgroup subsys blkio
    [ 0.009994] CPU: Physical Processor ID: 0
    [ 0.009995] CPU: Processor Core ID: 0
    [ 0.009999] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.010780] mce: CPU supports 7 MCE banks
    [ 0.010790] CPU0: Thermal monitoring enabled (TM1)
    [ 0.010799] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
    tlb_flushall_shift: 6
    [ 0.010872] Freeing SMP alternatives memory: 20K (ffffffff819ed000 - ffffffff819f2000)
    [ 0.011531] ACPI: Core revision 20131115
    [ 0.016592] ACPI: All ACPI Tables successfully acquired
    [ 0.022747] ftrace: allocating 21060 entries in 83 pages
    [ 0.030204] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.063169] smpboot: CPU0: Intel(R) Pentium(R) CPU G3220 @ 3.00GHz (fam: 06, model: 3c, stepping: 03)
    [ 0.063175] TSC deadline timer enabled
    [ 0.063184] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.063190] ... version: 3
    [ 0.063191] ... bit width: 48
    [ 0.063191] ... generic registers: 8
    [ 0.063192] ... value mask: 0000ffffffffffff
    [ 0.063192] ... max period: 0000ffffffffffff
    [ 0.063193] ... fixed-purpose events: 3
    [ 0.063194] ... event mask: 00000007000000ff
    [ 0.086604] x86: Booting SMP configuration:
    [ 0.100654] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.086605] .... node #0, CPUs: #1
    [ 0.100664] x86: Booted up 1 node, 2 CPUs
    [ 0.100666] smpboot: Total of 2 processors activated (12002.09 BogoMIPS)
    [ 0.102036] devtmpfs: initialized
    [ 0.103376] PM: Registering ACPI NVS region [mem 0xb9dfe000-0xb9e04fff] (28672 bytes)
    [ 0.103378] PM: Registering ACPI NVS region [mem 0xcc58b000-0xcc62ffff] (675840 bytes)
    [ 0.103886] RTC time: 7:49:24, date: 03/15/14
    [ 0.103915] NET: Registered protocol family 16
    [ 0.103983] cpuidle: using governor ladder
    [ 0.103984] cpuidle: using governor menu
    [ 0.104002] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.104004] ACPI: bus type PCI registered
    [ 0.104005] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.104043] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.104044] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.109595] PCI: Using configuration type 1 for base access
    [ 0.109934] bio: create slab <bio-0> at 0
    [ 0.109995] ACPI: Added _OSI(Module Device)
    [ 0.109996] ACPI: Added _OSI(Processor Device)
    [ 0.109997] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.109998] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.112530] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.114067] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.127339] ACPI: SSDT 00000000cc541c18 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.127640] ACPI: Dynamic OEM Table Load:
    [ 0.127642] ACPI: SSDT (null) 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.140752] ACPI: SSDT 00000000cc541618 0005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.141098] ACPI: Dynamic OEM Table Load:
    [ 0.141099] ACPI: SSDT (null) 0005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.153980] ACPI: SSDT 00000000cc540d98 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.154280] ACPI: Dynamic OEM Table Load:
    [ 0.154281] ACPI: SSDT (null) 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.167416] ACPI: Interpreter enabled
    [ 0.167420] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
    [ 0.167424] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
    [ 0.167435] ACPI: (supports S0 S3 S4 S5)
    [ 0.167436] ACPI: Using IOAPIC for interrupt routing
    [ 0.167474] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.167591] ACPI: No dock devices found.
    [ 0.173333] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.173337] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.173447] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    [ 0.173535] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    [ 0.173985] PCI host bridge to bus 0000:00
    [ 0.173987] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.173988] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.173989] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.173991] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.173992] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.173993] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
    [ 0.173998] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
    [ 0.174063] pci 0000:00:02.0: [8086:0402] type 00 class 0x030000
    [ 0.174071] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
    [ 0.174076] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.174079] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    [ 0.174137] pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
    [ 0.174142] pci 0000:00:03.0: reg 0x10: [mem 0xf0514000-0xf0517fff 64bit]
    [ 0.174217] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
    [ 0.174233] pci 0000:00:14.0: reg 0x10: [mem 0xf0500000-0xf050ffff 64bit]
    [ 0.174285] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.174318] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.174341] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
    [ 0.174358] pci 0000:00:16.0: reg 0x10: [mem 0xf051d000-0xf051d00f 64bit]
    [ 0.174414] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.174475] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
    [ 0.174487] pci 0000:00:1b.0: reg 0x10: [mem 0xf0510000-0xf0513fff 64bit]
    [ 0.174543] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.174576] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.174597] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
    [ 0.174653] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.174687] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.174709] pci 0000:00:1c.2: [8086:8c14] type 01 class 0x060400
    [ 0.174765] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.174799] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.174827] pci 0000:00:1f.0: [8086:8c4a] type 00 class 0x060100
    [ 0.174966] pci 0000:00:1f.2: [8086:2822] type 00 class 0x010400
    [ 0.174979] pci 0000:00:1f.2: reg 0x10: [io 0xf0b0-0xf0b7]
    [ 0.174985] pci 0000:00:1f.2: reg 0x14: [io 0xf0a0-0xf0a3]
    [ 0.174991] pci 0000:00:1f.2: reg 0x18: [io 0xf090-0xf097]
    [ 0.174997] pci 0000:00:1f.2: reg 0x1c: [io 0xf080-0xf083]
    [ 0.175003] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
    [ 0.175009] pci 0000:00:1f.2: reg 0x24: [mem 0xf051a000-0xf051a7ff]
    [ 0.175041] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.175089] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
    [ 0.175101] pci 0000:00:1f.3: reg 0x10: [mem 0xf0519000-0xf05190ff 64bit]
    [ 0.175118] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
    [ 0.175210] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.175266] pci 0000:02:00.0: [1969:10a1] type 00 class 0x020000
    [ 0.175288] pci 0000:02:00.0: reg 0x10: [mem 0xf0400000-0xf043ffff 64bit]
    [ 0.175299] pci 0000:02:00.0: reg 0x18: [io 0xe000-0xe07f]
    [ 0.175398] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.180604] pci 0000:00:1c.2: PCI bridge to [bus 02]
    [ 0.180607] pci 0000:00:1c.2: bridge window [io 0xe000-0xefff]
    [ 0.180619] pci 0000:00:1c.2: bridge window [mem 0xf0400000-0xf04fffff]
    [ 0.180633] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.181134] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.181166] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.181197] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.181227] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.181257] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.181287] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.181318] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.181349] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.181606] ACPI: Enabled 4 GPEs in block 00 to 3F
    [ 0.181611] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.181653] Found 1 acpi root devices
    [ 0.181706] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.181708] vgaarb: loaded
    [ 0.181709] vgaarb: bridge control possible 0000:00:02.0
    [ 0.181729] PCI: Using ACPI for IRQ routing
    [ 0.182986] PCI: pci_cache_line_size set to 64 bytes
    [ 0.183011] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
    [ 0.183012] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
    [ 0.183013] e820: reserve RAM buffer [mem 0xb9dfe000-0xbbffffff]
    [ 0.183014] e820: reserve RAM buffer [mem 0xba694000-0xbbffffff]
    [ 0.183015] e820: reserve RAM buffer [mem 0xcc098000-0xcfffffff]
    [ 0.183016] e820: reserve RAM buffer [mem 0xcc58b000-0xcfffffff]
    [ 0.183017] e820: reserve RAM buffer [mem 0xcd000000-0xcfffffff]
    [ 0.183018] e820: reserve RAM buffer [mem 0x11e600000-0x11fffffff]
    [ 0.183074] NetLabel: Initializing
    [ 0.183075] NetLabel: domain hash size = 128
    [ 0.183076] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.183084] NetLabel: unlabeled traffic allowed by default
    [ 0.183096] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.183099] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.185113] Switched to clocksource hpet
    [ 0.188244] pnp: PnP ACPI init
    [ 0.188257] ACPI: bus type PNP registered
    [ 0.188317] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.188320] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.188329] pnp 00:01: [dma 4]
    [ 0.188340] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.188354] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.188419] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.188498] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.188500] system 00:04: [io 0xffff] has been reserved
    [ 0.188501] system 00:04: [io 0xffff] has been reserved
    [ 0.188503] system 00:04: [io 0xffff] has been reserved
    [ 0.188504] system 00:04: [io 0x1c00-0x1cfe] has been reserved
    [ 0.188505] system 00:04: [io 0x1d00-0x1dfe] has been reserved
    [ 0.188506] system 00:04: [io 0x1e00-0x1efe] has been reserved
    [ 0.188508] system 00:04: [io 0x1f00-0x1ffe] has been reserved
    [ 0.188509] system 00:04: [io 0x1800-0x18fe] could not be reserved
    [ 0.188510] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 0.188512] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.188532] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.188559] system 00:06: [io 0x1854-0x1857] has been reserved
    [ 0.188561] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.188606] system 00:07: [io 0x0290-0x029f] has been reserved
    [ 0.188608] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.188681] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.188683] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.188699] pnp 00:09: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.188985] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.188986] system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.188988] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.188989] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.188991] system 00:0a: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.188992] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.188993] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.188994] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.188996] system 00:0a: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.188997] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.188999] system 00:0a: [mem 0xf7fef000-0xf7feffff] has been reserved
    [ 0.189000] system 00:0a: [mem 0xf7ff0000-0xf7ff0fff] has been reserved
    [ 0.189002] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.189166] pnp: PnP ACPI: found 11 devices
    [ 0.189167] ACPI: bus type PNP unregistered
    [ 0.194936] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.194945] pci 0000:00:1c.2: PCI bridge to [bus 02]
    [ 0.194947] pci 0000:00:1c.2: bridge window [io 0xe000-0xefff]
    [ 0.194951] pci 0000:00:1c.2: bridge window [mem 0xf0400000-0xf04fffff]
    [ 0.194957] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.194959] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.194960] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.194961] pci_bus 0000:00: resource 7 [mem 0x000dc000-0x000dffff]
    [ 0.194962] pci_bus 0000:00: resource 8 [mem 0xdfa00000-0xfeafffff]
    [ 0.194963] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.194964] pci_bus 0000:02: resource 1 [mem 0xf0400000-0xf04fffff]
    [ 0.194986] NET: Registered protocol family 2
    [ 0.195097] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.195187] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.195323] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.195344] TCP: reno registered
    [ 0.195350] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.195371] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.195423] NET: Registered protocol family 1
    [ 0.195431] pci 0000:00:02.0: Boot video device
    [ 0.195561] pci 0000:02:00.0: set MSI_INTX_DISABLE_BUG flag
    [ 0.195564] PCI: CLS 64 bytes, default 64
    [ 0.195595] Unpacking initramfs...
    [ 0.383807] Freeing initrd memory: 2276K (ffff880037b7e000 - ffff880037db7000)
    [ 0.383811] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.383813] software IO TLB [mem 0xbb71e000-0xbf71e000] (64MB) mapped at [ffff8800bb71e000-ffff8800bf71dfff]
    [ 0.383902] Scanning for low memory corruption every 60 seconds
    [ 0.384073] audit: initializing netlink socket (disabled)
    [ 0.384082] type=2000 audit(1394869764.383:1): initialized
    [ 0.393164] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.393960] zbud: loaded
    [ 0.394073] VFS: Disk quotas dquot_6.5.2
    [ 0.394097] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.394200] msgmni has been set to 7222
    [ 0.394233] Key type big_key registered
    [ 0.394368] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.394390] io scheduler noop registered
    [ 0.394391] io scheduler deadline registered
    [ 0.394407] io scheduler cfq registered (default)
    [ 0.394632] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.394641] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.394673] efifb: probing for efifb
    [ 0.394794] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90009880000, using 1216k, total 1216k
    [ 0.394794] efifb: mode is 640x480x32, linelength=2560, pages=1
    [ 0.394795] efifb: scrolling: redraw
    [ 0.394796] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.395423] Console: switching to colour frame buffer device 80x30
    [ 0.395980] fb0: EFI VGA frame buffer device
    [ 0.395984] intel_idle: MWAIT substates: 0x2120
    [ 0.395985] intel_idle: v0.4 model 0x3C
    [ 0.395986] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.396043] GHES: HEST is not enabled!
    [ 0.396076] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.396349] Linux agpgart interface v0.103
    [ 0.396383] rtc_cmos 00:05: RTC can wake from S4
    [ 0.396483] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.396508] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.396514] Intel P-state driver initializing.
    [ 0.396522] Intel pstate controlling: cpu 0
    [ 0.396531] Intel pstate controlling: cpu 1
    [ 0.396600] drop_monitor: Initializing network drop monitor service
    [ 0.396638] TCP: cubic registered
    [ 0.396691] NET: Registered protocol family 10
    [ 0.396790] NET: Registered protocol family 17
    [ 0.396796] Key type dns_resolver registered
    [ 0.396935] registered taskstats version 1
    [ 0.397252] Magic number: 6:635:824
    [ 0.397317] rtc_cmos 00:05: setting system clock to 2014-03-15 07:49:25 UTC (1394869765)
    [ 0.397349] PM: Hibernation image not present or could not be loaded.
    [ 0.397877] Freeing unused kernel memory: 1128K (ffffffff818d3000 - ffffffff819ed000)
    [ 0.397878] Write protecting the kernel read-only data: 8192k
    [ 0.399373] Freeing unused kernel memory: 864K (ffff880002528000 - ffff880002600000)
    [ 0.400032] Freeing unused kernel memory: 376K (ffff8800027a2000 - ffff880002800000)
    [ 0.404476] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.405391] systemd-udevd[45]: starting version 210
    [ 0.406881] device-mapper: uevent: version 1.0.3
    [ 0.407442] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: [email protected]
    [ 0.423424] ACPI: bus type USB registered
    [ 0.423442] usbcore: registered new interface driver usbfs
    [ 0.423448] usbcore: registered new interface driver hub
    [ 0.423542] usbcore: registered new device driver usb
    [ 0.424109] SCSI subsystem initialized
    [ 0.424388] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.424393] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 0.424466] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.424482] xhci_hcd 0000:00:14.0: irq 40 for MSI/MSI-X
    [ 0.424620] hub 1-0:1.0: USB hub found
    [ 0.424636] hub 1-0:1.0: 14 ports detected
    [ 0.425341] libata version 3.00 loaded.
    [ 0.427239] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.427243] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 0.427348] hub 2-0:1.0: USB hub found
    [ 0.427358] hub 2-0:1.0: 6 ports detected
    [ 0.451495] ahci 0000:00:1f.2: version 3.0
    [ 0.451588] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 0.451609] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 0.451632] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1b impl RAID mode
    [ 0.451634] ahci 0000:00:1f.2: flags: 64bit ncq stag led clo pio slum part ems sxs apst
    [ 0.471805] scsi0 : ahci
    [ 0.471854] scsi1 : ahci
    [ 0.471887] scsi2 : ahci
    [ 0.471919] scsi3 : ahci
    [ 0.471951] scsi4 : ahci
    [ 0.471982] scsi5 : ahci
    [ 0.472005] ata1: SATA max UDMA/133 abar m2048@0xf051a000 port 0xf051a100 irq 41
    [ 0.472007] ata2: SATA max UDMA/133 abar m2048@0xf051a000 port 0xf051a180 irq 41
    [ 0.472008] ata3: DUMMY
    [ 0.472010] ata4: SATA max UDMA/133 abar m2048@0xf051a000 port 0xf051a280 irq 41
    [ 0.472011] ata5: SATA max UDMA/133 abar m2048@0xf051a000 port 0xf051a300 irq 41
    [ 0.472012] ata6: DUMMY
    [ 0.784418] usb 1-8: new full-speed USB device number 2 using xhci_hcd
    [ 0.791060] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 0.792116] ata1.00: ATA-8: Hitachi HTS545025B9A300, PB2OC64G, max UDMA/133
    [ 0.792118] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.793333] ata1.00: configured for UDMA/133
    [ 0.793480] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54502 PB2O PQ: 0 ANSI: 5
    [ 0.801846] hidraw: raw HID events driver (C) Jiri Kosina
    [ 0.804702] usbcore: registered new interface driver usbhid
    [ 0.804704] usbhid: USB HID core driver
    [ 1.110651] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.111789] ata2.00: ATA-9: ST1000DM003-1CH162, CC49, max UDMA/133
    [ 1.111791] ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.112674] ata2.00: configured for UDMA/133
    [ 1.112812] scsi 1:0:0:0: Direct-Access ATA ST1000DM003-1CH1 CC49 PQ: 0 ANSI: 5
    [ 1.383626] tsc: Refined TSC clocksource calibration: 2999.129 MHz
    [ 1.430245] ata4: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.431380] ata4.00: ATA-8: ST31000524AS, JC45, max UDMA/133
    [ 1.431382] ata4.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.432750] ata4.00: configured for UDMA/133
    [ 1.432878] scsi 3:0:0:0: Direct-Access ATA ST31000524AS JC45 PQ: 0 ANSI: 5
    [ 1.749838] ata5: SATA link down (SStatus 0 SControl 300)
    [ 1.751711] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    [ 1.751741] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 1.751743] sd 1:0:0:0: [sdb] 4096-byte physical blocks
    [ 1.751747] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.751748] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.751760] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.751769] sd 1:0:0:0: [sdb] Write Protect is off
    [ 1.751771] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 1.751782] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.752026] sd 3:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 1.752055] sd 3:0:0:0: [sdc] Write Protect is off
    [ 1.752056] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
    [ 1.752066] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.759245] sdc: unknown partition table
    [ 1.759381] sd 3:0:0:0: [sdc] Attached SCSI disk
    [ 1.775323] sdb: sdb1 sdb2 sdb3
    [ 1.775326] sdb: p1 size 3515632407 extends beyond EOD, enabling native capacity
    [ 1.775761] sdb: sdb1 sdb2 sdb3
    [ 1.775763] sdb: p1 size 3515632407 extends beyond EOD, truncated
    [ 1.775801] sdb: p2 start 3515632470 is beyond EOD, truncated
    [ 1.775802] sdb: p3 start 3710950740 is beyond EOD, truncated
    [ 1.775918] sd 1:0:0:0: [sdb] Attached SCSI disk
    [ 1.800552] sda: sda1 sda2 sda3 sda4
    [ 1.800909] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.382356] Switched to clocksource tsc
    [ 2.458207] random: nonblocking pool is initialized
    [ 2.527610] bio: create slab <bio-1> at 1
    [ 2.627261] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.818702] systemd[1]: systemd 210 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP -APPARMOR)
    [ 3.818787] systemd[1]: Detected architecture 'x86-64'.
    [ 3.826991] systemd[1]: Set hostname to <secSrv>.
    [ 5.146940] systemd[1]: Cannot add dependency job for unit subsonic.service, ignoring: Unit subsonic.service failed to load: No such file or directory.
    [ 5.146944] systemd[1]: Cannot add dependency job for unit mdadm.service, ignoring: Unit mdadm.service failed to load: No such file or directory.
    [ 5.147186] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 5.147225] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 5.147233] systemd[1]: Starting Remote File Systems.
    [ 5.147238] systemd[1]: Reached target Remote File Systems.
    [ 5.147245] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 5.147259] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 5.147263] systemd[1]: Starting Paths.
    [ 5.147267] systemd[1]: Reached target Paths.
    [ 5.147279] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 5.147332] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 5.147338] systemd[1]: Starting Encrypted Volumes.
    [ 5.147342] systemd[1]: Reached target Encrypted Volumes.
    [ 5.147346] systemd[1]: Starting Swap.
    [ 5.147350] systemd[1]: Reached target Swap.
    [ 5.147355] systemd[1]: Expecting device dev-sda1.device...
    [ 5.147360] systemd[1]: Expecting device dev-sda4.device...
    [ 5.147364] systemd[1]: Expecting device dev-dm\x2d1.device...
    [ 5.147370] systemd[1]: Starting Root Slice.
    [ 5.149892] systemd[1]: Created slice Root Slice.
    [ 5.149899] systemd[1]: Starting User and Session Slice.
    [ 5.149979] systemd[1]: Created slice User and Session Slice.
    [ 5.149984] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 5.150004] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 5.150009] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 5.150018] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 5.150022] systemd[1]: Starting Delayed Shutdown Socket.
    [ 5.150034] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 5.150038] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 5.150050] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 5.150056] systemd[1]: Starting udev Kernel Socket.
    [ 5.150067] systemd[1]: Listening on udev Kernel Socket.
    [ 5.150073] systemd[1]: Starting udev Control Socket.
    [ 5.150082] systemd[1]: Listening on udev Control Socket.
    [ 5.150088] systemd[1]: Starting Journal Socket.
    [ 5.150110] systemd[1]: Listening on Journal Socket.
    [ 5.150119] systemd[1]: Starting System Slice.
    [ 5.150195] systemd[1]: Created slice System Slice.
    [ 5.150203] systemd[1]: Started File System Check on Root Device.
    [ 5.150208] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [ 5.150290] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [ 5.150295] systemd[1]: Mounting Temporary Directory...
    [ 5.183124] systemd[1]: Starting system-getty.slice.
    [ 5.183227] systemd[1]: Created slice system-getty.slice.
    [ 5.183258] systemd[1]: Mounting Huge Pages File System...
    [ 5.183524] systemd[1]: Starting Setup Virtual Console...
    [ 5.222713] systemd[1]: Starting Apply Kernel Variables...
    [ 5.222960] systemd[1]: Mounting POSIX Message Queue File System...
    [ 5.235757] systemd[1]: Started Load Kernel Modules.
    [ 5.235774] systemd[1]: Mounted FUSE Control File System.
    [ 5.235789] systemd[1]: Mounting Debug File System...
    [ 5.246997] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 5.247404] systemd[1]: Started Set Up Additional Binary Formats.
    [ 5.247419] systemd[1]: Starting udev Coldplug all Devices...
    [ 5.247641] systemd[1]: Mounting Configuration File System...
    [ 5.247866] systemd[1]: Starting Journal Service...
    [ 5.248104] systemd[1]: Started Journal Service.
    [ 5.781418] EXT4-fs (sda3): re-mounted. Opts: data=ordered
    [ 5.906904] systemd-udevd[148]: starting version 210
    [ 6.653004] ACPI Warning: 0x0000000000001828-0x000000000000182f SystemIO conflicts with Region \PMIO 1 (20131115/utaddress-251)
    [ 6.653008] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.653011] ACPI Warning: 0x0000000000001c30-0x0000000000001c3f SystemIO conflicts with Region \GPR2 1 (20131115/utaddress-251)
    [ 6.653013] ACPI Warning: 0x0000000000001c30-0x0000000000001c3f SystemIO conflicts with Region \GPRL 2 (20131115/utaddress-251)
    [ 6.653015] ACPI Warning: 0x0000000000001c30-0x0000000000001c3f SystemIO conflicts with Region \GPR_ 3 (20131115/utaddress-251)
    [ 6.653016] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.653017] ACPI Warning: 0x0000000000001c00-0x0000000000001c2f SystemIO conflicts with Region \GPR2 1 (20131115/utaddress-251)
    [ 6.653019] ACPI Warning: 0x0000000000001c00-0x0000000000001c2f SystemIO conflicts with Region \GPRL 2 (20131115/utaddress-251)
    [ 6.653020] ACPI Warning: 0x0000000000001c00-0x0000000000001c2f SystemIO conflicts with Region \GPR_ 3 (20131115/utaddress-251)
    [ 6.653022] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.653023] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 6.675824] ACPI Warning: 0x000000000000f040-0x000000000000f05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20131115/utaddress-251)
    [ 6.675828] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.684795] [drm] Initialized drm 1.1.0 20060810
    [ 6.748474] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 6.754892] mei_me 0000:00:16.0: irq 42 for MSI/MSI-X
    [ 6.766773] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
    [ 6.766779] ACPI: Power Button [PWRB]
    [ 6.766805] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
    [ 6.766806] ACPI: Power Button [PWRF]
    [ 6.787975] snd_hda_intel 0000:00:03.0: enabling device (0000 -> 0002)
    [ 6.789013] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    [ 6.847913] microcode: CPU0 sig=0x306c3, pf=0x2, revision=0x7
    [ 6.904388] platform microcode: Direct firmware load failed with error -2
    [ 6.904391] platform microcode: Falling back to user helper
    [ 6.971254] input: PC Speaker as /devices/platform/pcspkr/input/input2
    [ 7.055633] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input3
    [ 7.064804] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card1/input8
    [ 7.064826] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card1/input7
    [ 7.064842] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card1/input6
    [ 7.064858] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card1/input5
    [ 7.064873] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input4
    [ 7.091923] microcode: CPU1 sig=0x306c3, pf=0x2, revision=0x7
    [ 7.091934] platform microcode: Direct firmware load failed with error -2
    [ 7.091936] platform microcode: Falling back to user helper
    [ 7.105045] iTCO_vendor_support: vendor-support=0
    [ 7.132659] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 7.132683] iTCO_wdt: Found a Lynx Point TCO device (Version=2, TCOBASE=0x1860)
    [ 7.132743] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 7.179698] alx 0000:02:00.0 eth0: Qualcomm Atheros AR816x/AR817x Ethernet [bc:5f:f4:b9:b4:d4]
    [ 7.188623] [drm] Memory usable by graphics device = 2048M
    [ 7.188627] checking generic (e0000000 130000) vs hw (e0000000 10000000)
    [ 7.188629] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
    [ 7.188639] Console: switching to colour dummy device 80x25
    [ 7.232924] i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [ 7.232931] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 7.232932] [drm] Driver supports precise vblank timestamp query.
    [ 7.232984] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 7.267720] fbcon: inteldrmfb (fb0) is primary device
    [ 7.401571] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input9
    [ 7.401611] hid-generic 0003:046D:C52E.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-8/input0
    [ 7.401762] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/input/input10
    [ 7.401812] hid-generic 0003:046D:C52E.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-8/input1
    [ 7.410478] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 7.412647] Console: switching to colour frame buffer device 240x67
    [ 7.416520] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 7.416522] i915 0000:00:02.0: registered panic notifier
    [ 7.431669] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 7.431967] acpi device:57: registered as cooling_device2
    [ 7.432079] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input11
    [ 7.432138] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 7.432702] snd_hda_intel 0000:00:03.0: irq 45 for MSI/MSI-X
    [ 7.565467] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input14
    [ 7.565549] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
    [ 7.565581] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12
    [ 7.618991] mousedev: PS/2 mouse device common for all mice
    [ 8.324891] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 8.335153] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 9.208238] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 9.283598] systemd-journald[132]: Received request to flush runtime journal from PID 1
    [ 9.786740] alx 0000:02:00.0: irq 46 for MSI/MSI-X
    [ 9.786782] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
    [ 15.808655] systemd[1]: PID file /var/run/xrdp.pid not readable (yet?) after start.
    [ 18.282198] systemd[1]: PID file /run/minidlna/minidlna.pid not readable (yet?) after start.
    [ 20.226404] systemd[1]: PID file /run/httpd/httpd.pid not readable (yet?) after start.
    [ 38.190397] alx 0000:02:00.0 enp2s0: NIC Up: 10 Mbps Full
    [ 38.190636] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
    [ 47.011326] type=1006 audit(1394869812.170:2): pid=510 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=1 res=1
    [ 47.090438] type=1006 audit(1394869812.247:3): pid=512 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=2 res=1
    [ 374.084624] alx 0000:02:00.0 enp2s0: Link Down
    [ 429.011672] alx 0000:02:00.0 enp2s0: NIC Up: 10 Mbps Full
    Last edited by zeno.chen (2014-03-15 00:07:09)

    I assume that those apps that need the update were purchased with your sosn's ID. You have to use his ID to update the apps if they were. Apps are always tied to the Apple ID that was used to purchase them.

  • Update to Flash Player 11 bring bug with wmode="transparent" &  video plays at half speed  in IE 9

    Hi Adobe & Folks!
    Since i updatet to Flashplayers 11 still i get, wie other peoples here too - a bug in wmode transparent and video plays in half speed (Sound still be correct)!
    It seems the transparent bug ist just in IE9!
    Firefox 7 & Google Chrome works properly!
    Video play half Speed Bug it seems IE9 Browser (with Flasplayer 10.x.x it still work before properly)!
    The older Version of Flashplayer 10. x:x still work properly in IE9!
    Please refix the bug in the Flashplayer 11 as soon as possible for IE 9!
    Sinclerly Abraxius
    (Switzerland)

    Please help me, I have the same problem after this update!!!
    wmode= transparent dont' works in IE9 !!
    Here an example from http://www.hotelsugiganti.com
    WITH INTERNET EXPLORER 9  you can see a bad black background
    WITH CHROME OR FIREFOX works well like this:
    anyone have the solutions?
    thank for your reply.

  • I was wondering if it was okay to download CS6 Design Standard again but for my Laptop instead of my desktop so I can bring it with me to class?

    If anyone has an answer it would help because I have mostly been doing work at home but bringing it to class would be more helpful.

    Hello !
    Use the link :Download CS6 products
    Make sure you follow the EULA.
    Thanks !

  • Profiling functions with dtrace

    Hello,
    I found different script examples that measure time spent in a function.
    As I could see, these scripts measure time spent, including time spent in functions called by the function of interest.
    I could not figure out how to automaticly substract the time spent in called functions.
    Thanks for the help.

    Pacmann wrote:
    Application logs that do not disappear at rollback time ?
    Yes - that is a common and acceptable use of the pragma.
    See my reply in this thread for sample code illustrating use of the pragma for a logging package.
    https://forums.oracle.com/thread/2487174

  • Mid 2010 Macbook Pro 15" crashes with video artifacts then chimes SOS

    This just started happening. I had Windows 7 installed and it began to blue screen on me, so I deleted the partition and opened bootcamp assistant to re-install Windows then the screen began flickering with artifacts and everything froze... It will no longer boot half the time and if it does it crashes shortly after. I also tried booting from the USB OSX installation and it crashed there too.
    When it does boot to Yosemite, it displays a progress bar under the apple and takes a while.
    Occasionally I can enter my password and get passed the lock screen, but usually it dies there.
    Is this a firmware issue?
    I think the computer has been acting a little funny after Yosemite install.
    https://www.youtube.com/watch?v=IhF_Hd41QLc&feature=youtu.be

    You have the MacBookPro6,2—the Edsel of Macs. It may have the logic-board defect that was covered by this recall.
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider, to have the machine tested. The routine hardware diagnostics used by service providers do not detect the fault. There is a specific test for this issue that Apple calls "VST" (for "Video Switching Test.") Ask for it. A "Failed" result means that the fault is present. However, according to reports, some units may pass the test, and yet still be deemed eligible for repair under the program. Your experience may vary.
    Print the first page of the panic report, if any, and the support page linked above, and bring them with you.
    Note that the recall only applies within three years of purchase. After that, Apple may refuse the service. In that case, you may be quoted a price of about $300 (in the U.S.) for a "depot repair," which involves shipping the unit to a central repair facility and takes about two weeks. For that flat fee, anything found wrong with it should be fixed, not just the logic board.
    The model was discontinued on February 24, 2011, so the recall has nominally ended. Some units may have been sold after that date by Apple as refurbished, or by resellers as new, and they might still be covered.
    Residents of the EU may be entitled to warranty service for up to six years after purchase.
    Some owners report that their unit was repaired under the program after the deadline had passed. Others report that the repair was covered by the extended warranty from a credit-card issuer. Again, your experience may vary.
    Sometimes the replacement part is also defective, so be prepared for that possibility. If you decide to pay for a new logic board, test thoroughly during the 90-day warranty period on the repair. Some owners have reported that they went through as many as three replacement boards before getting one that worked.
    If it's too late for your unit to be repaired free of charge, and you don't want to pay for the service, you may (or may not) be able to stop the panics by disabling automatic graphics switching. To use the discrete graphics processor, you'll need a third-party utility to switch to it manually.
    Often the problems start after an OS upgrade. If the upgrade was recent, and you have backups, then you can revert to a previous OS X version.
    If you're dissatisfied with Apple's response, please keep in mind that no one here represents the company or can help with customer-service issues.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    *An SSD doesn't need to be zeroed.

  • Cannot install SharePoint 2013 with SP1 on server 2012 R2. IIS configuration error

    Hey Guys,
    I'm experiencing a problem which seems to be common considering the number of posts I've found about it, but none of the provided solutions worked for me.
    I'm simply trying to install SharePoint 2013 with SP1 on a Windows Server Standard 2012 R2.
    I've downloaded from the MS Volume Licensing website the "SharePoint Server 2013 with SP1" ISO file :  SW_DVD5_SharePoint_Server_2013w_SP1_64Bit_English_MLF_X19-36118. So
    this is the slipstreamed version which is supposed to bring compatibility with 2012 R2.
    As I do not have direct access to the Internet I need to perform an offline installation. I also downloaded all prerequisities. When I run prerequisiteinstaller.exe with the necessary arguments, I get the following :
    (Full log file is below)
    I've tried the following :
    - Restarted the server multiple times
    - Manually removing/adding IIS role + restart
    - Running the prerequisiteinstaller.exe from the DVD or from an extracted version
    - Manually installing the prerequisities
    - Installed .Net 3.5 as recommended here (http://social.technet.microsoft.com/Forums/office/en-US/0b597d35-b02d-4236-894d-38efc0c7c6f6/sharepoint-2013-with-sp1-install-on-windows-server-2012-r2?forum=sharepointgeneral)
    None of the worked. So I'm stuck and I must completed the installation of this before the end of the week for an important project !
    Your help would be greatly appreciated.
    this is the complete log file :
    2014-09-09 14:30:26 - Processor architecture is (9)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Common Startup
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-09-09 14:30:26 - Trying to remove the startup task if there is any.
    2014-09-09 14:30:26 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-09-09 14:30:26 - Successfully deleted the startup task
    2014-09-09 14:30:26 - Analyzing the following command line argument:
    2014-09-09 14:30:26 - /continue
    2014-09-09 14:30:26 - Continuing after restart
    2014-09-09 14:30:26 - Details of the current operating system:
    2014-09-09 14:30:26 - Major version number of the operating system: (6)
    2014-09-09 14:30:26 - Minor version number of the operating system: (2)
    2014-09-09 14:30:26 - Build number of the operating system: (0X23F0=9200)
    2014-09-09 14:30:26 - Major version number of the latest Service Pack: (0)
    2014-09-09 14:30:26 - Minor version number of the latest Service Pack: (0)
    2014-09-09 14:30:26 - Platform ID of the operating system: (2)
    2014-09-09 14:30:26 - Product suites available on the operating system: (0X110=272)
    2014-09-09 14:30:26 - Product type of the operating system: VER_NT_SERVER
    2014-09-09 14:30:26 - Product type: (0)
    2014-09-09 14:30:26 - OS type: (2)
    2014-09-09 14:30:26 - Configuring the application's property sheet...
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Management Framework 3.0
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - PowerShellVersion
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 4.0
    2014-09-09 14:30:26 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft .NET Framework 4.5
    2014-09-09 14:30:26 - Reading the following DWORD value/name...
    2014-09-09 14:30:26 - Install
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:26 - The value is (1)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 4.5.51641
    2014-09-09 14:30:26 - A post release .NET 4.5 is installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 -
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 6.1.7600.0
    2014-09-09 14:30:26 - The prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-09-09 14:30:26 - Reading version of the following file...
    2014-09-09 14:30:26 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-09-09 14:30:26 - GetFileVersionInfoSize failed (-2147024894)
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 10.51.2500.0
    2014-09-09 14:30:26 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Server AppFabric
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - ProductVersion
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 -
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft Information Protection and Control Client
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 -
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft WCF Data Services 5.0
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 5.0.51212.0
    2014-09-09 14:30:26 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft WCF Data Services 5.6
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.6
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 5.6.61587.0
    2014-09-09 14:30:26 - The prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-09-09 14:30:26 - Reading the following DWORD value/name...
    2014-09-09 14:30:26 - IsInstalled
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-09-09 14:30:26 - Beginning download/installation
    2014-09-09 14:30:26 - Created thread for installer
    2014-09-09 14:30:26 - "C:\Windows\system32\dism.exe" /online /enable-feature /featurename:NetFX3 /All /norestart
    2014-09-09 14:30:27 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:28 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:29 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:30 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:31 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:32 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:33 - Install process returned (0)
    2014-09-09 14:30:33 - [In HRESULT format] (0)
    2014-09-09 14:30:33 - "C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe" -ExecutionPolicy Bypass "C:\Users\DADM_T~1\AppData\Local\Temp\PreFB24.tmp.PS1"
    2014-09-09 14:30:33 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:34 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:35 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:36 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:37 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:38 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:39 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:40 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:41 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:42 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:43 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:44 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:47 - Install process returned (0)
    2014-09-09 14:30:47 - [In HRESULT format] (0)
    2014-09-09 14:30:47 - "C:\Windows\system32\dism.exe" /online /enable-feature /all /featurename:IIS-ASPNET45 /norestart
    2014-09-09 14:30:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:49 - Install process returned (0)
    2014-09-09 14:30:49 - [In HRESULT format] (0)
    2014-09-09 14:30:49 - "C:\Windows\system32\iisreset.exe" /noforce
    2014-09-09 14:30:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:57 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:57 - Install process returned (0X426=1062)
    2014-09-09 14:30:57 - [In HRESULT format] (0X80070426=-2147023834)
    2014-09-09 14:30:57 - Last return code (0X426=1062)
    2014-09-09 14:30:57 - Reading the following DWORD value/name...
    2014-09-09 14:30:57 - Flags
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - PendingFileRenameOperations
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-09-09 14:30:57 - Reading the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-09-09 14:30:57 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-09-09 14:30:57 - Last return code (0X426=1062)
    2014-09-09 14:30:57 - Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any command line options.
    2014-09-09 14:30:57 - Cannot retry
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Management Framework 3.0
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - PowerShellVersion
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 4.0
    2014-09-09 14:30:57 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft .NET Framework 4.5
    2014-09-09 14:30:57 - Reading the following DWORD value/name...
    2014-09-09 14:30:57 - Install
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:57 - The value is (1)
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 4.5.51641
    2014-09-09 14:30:57 - A post release .NET 4.5 is installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 -
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 6.1.7600.0
    2014-09-09 14:30:57 - The prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-09-09 14:30:57 - Reading version of the following file...
    2014-09-09 14:30:57 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-09-09 14:30:57 - GetFileVersionInfoSize failed (-2147024894)
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 10.51.2500.0
    2014-09-09 14:30:57 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Server AppFabric
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - ProductVersion
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 -
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft Information Protection and Control Client
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 -
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft WCF Data Services 5.0
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 5.0.51212.0
    2014-09-09 14:30:57 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft WCF Data Services 5.6
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.6
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 5.6.61587.0
    2014-09-09 14:30:57 - The prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-09-09 14:30:57 - Reading the following DWORD value/name...
    2014-09-09 14:30:57 - IsInstalled
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-09-09 14:32:19 - Opening log file
    2014-09-09 14:32:19 - Opened action for user
    2014-09-09 14:32:19 - C:\Users\DADM_T~1\AppData\Local\Temp\prerequisiteinstaller.2014.09.09-14.30.26.log

    Thank you guys for the quick answer! Muche appreciated
    I've tried all suggested solutions, but no luck :-(
    - tried http://support.microsoft.com/kb/2765260 > no help and by the way the hotfix provided is not applicable for 2012 R2.
    also tried "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regii -enable -i" and got this :
    Microsoft (R) ASP.NET RegIIS version 4.0.30319.33440Administration utility to install and uninstall ASP.NET on the local machine.Copyright (C) Microsoft Corporation.  All rights reserved.Start installing ASP.NET (4.0.30319.33440).This option is not supported on this version of the operating system.  Administrators should instead install/uninstall ASP.NET 4.5 with IIS8 using the "Turn Windows Features On/Off" dialog,  the Server Manager management tool, or the dism.exe command line tool.  For more details please see http://go.microsoft.com/fwlink/?LinkID=216771.Finished installing ASP.NET (4.0.30319.33440).
    http://social.technet.microsoft.com/wiki/contents/articles/14582.sharepoint-2013-install-prerequisites-offline-or-manually-on-windows-server-2012-a-comprehensive-guide.aspx
    > is not for 2012 R2.
    For the automated install script (http://gallery.technet.microsoft.com/office/DownloadInstall-SharePoint-e6df9eb8) Craig mentions that the script are not yet compatible
    "SharePoint 2013 SP1 and Windows Server 2012 R2 support coming soon
     I will be updating this script with support for SharePoint 2013 Service Pack 1 installations along with support for Windows Server 2012 R2 in the near future. Thank you to everyone for the interest in my scripts - it is much appreciated! "

  • My macbook pro keep crashed with the following error report

    Interval Since Last Panic Report:  20756 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    322AC30F-***********
    Tue Oct  1 16:46:00 2013
    panic(cpu 0 caller 0xffffff7f9091ff1a): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0x0a2910de 0x00100000 0x00000000, BAR0 0xd2000000 0xffffff80ff680000 0x0a5480a2, D0, P2/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 0), Frame : Return Address
    0xffffff813aedb710 : 0xffffff800e61d636
    0xffffff813aedb780 : 0xffffff7f9091ff1a
    0xffffff813aedb850 : 0xffffff7f8eed726c
    0xffffff813aedb910 : 0xffffff7f8efaa1f6
    0xffffff813aedb950 : 0xffffff7f8efaa254
    0xffffff813aedb9c0 : 0xffffff7f8f26f278
    0xffffff813aedbaf0 : 0xffffff7f8efd2ad1
    0xffffff813aedbb10 : 0xffffff7f8eede03f
    0xffffff813aedbbc0 : 0xffffff7f8eedbad6
    0xffffff813aedbdc0 : 0xffffff7f8eedcb41
    0xffffff813aedbea0 : 0xffffff7f8ee7880a
    0xffffff813aedbef0 : 0xffffff7f908e1838
    0xffffff813aedbf40 : 0xffffff7f908e0783
    0xffffff813aedbf60 : 0xffffff800e63e26e
    0xffffff813aedbfb0 : 0xffffff800e6b3257
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f8ee 76000->0xffffff7f8f118fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8eb7d000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8ee62000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8ee1f000
             com.apple.driver.AppleMuxControl(3.4.5)[49FEF732-D7A3-327B-A7AA-6AC5A6E3DCFF]@0 xffffff7f90912000->0xffffff7f90924fff
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[B5B1F368-132E-3509-9ED5-93270E3ABB DD]@0xffffff7f9090d000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8eb7d000
                dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7f908f9000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f8ed2b000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8ee62000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8ee1f000
             com.apple.nvidia.nv50hal(8.1.6)[3455BCFE-565A-3FE5-9F0B-855BCB6CC9B3]@0xffffff7 f8f124000->0xffffff7f8f3f7fff
                dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f8ee 76000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8eb7d000
             com.apple.driver.AGPM(100.13.12)[40BECF44-B2F1-3933-8074-AD07B38CA43A]@0xffffff 7f908df000->0xffffff7f908f0fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8eb7d000
                dependency: com.apple.driver.IOPlatformPluginFamily(5.4.1d11)[D57AB2EB-A2D1-3002-BDAA-E61E2 3A9D8F7]@0xffffff7f8f7dc000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8ee62000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8ee1f000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12F37
    Kernel version:
    Darwin Kernel Version 12.5.0: Mon Jul 29 16:33:49 PDT 2013; root:xnu-2050.48.11~1/RELEASE_X86_64
    Kernel UUID: B1B58405-A2B2-3C44-B25D-495053D52AB5
    Kernel slide:     0x000000000e400000
    Kernel text base: 0xffffff800e600000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 219929394001
    last loaded kext at 8177512108: com.parallels.kext.prl_vnic          7.0 15107.796624 (addr 0xffffff7f90a9b000, size 20480)
    last unloaded kext at 118797572861: com.apple.driver.AppleUSBUHCI          621.4.0 (addr 0xffffff7f8f618000, size 65536)
    loaded kexts:
    com.parallels.kext.prl_vnic          7.0 15107.796624
    com.parallels.kext.prl_netbridge          7.0 15107.796624
    com.parallels.kext.prl_hid_hook          7.0 15107.796624
    com.parallels.kext.prl_hypervisor          7.0 15107.796624
    com.parallels.kext.prl_usb_connect          7.0 15107.796624
    com.sophos.kext.sav          8.0.14
    com.rim.driver.BlackBerryUSBDriverInt          0.0.74
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.1.7f2
    com.apple.driver.AudioAUUC          1.60
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AGPM          100.13.12
    com.apple.driver.AppleHDA          2.4.7fc2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.3
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.GeForce          8.1.6
    com.apple.driver.AppleIntelHDGraphics          8.1.6
    com.apple.driver.AppleMuxControl          3.4.5
    com.apple.driver.AppleMikeyDriver          2.4.7fc2
    com.apple.driver.AppleUpstreamUserClient          3.5.12
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleIntelHDGraphicsFB          8.1.6
    com.apple.driver.SMCMotionSensor          3.0.3d1
    com.apple.driver.AppleSMBusPCI          1.0.11d1
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.1.7f2
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.AppleUSBCardReader          3.3.1
    com.apple.iokit.SCSITaskUserClient          3.5.6
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.5
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleUSBHub          623.4.4
    com.apple.driver.AppleAHCIPort          2.6.6
    com.apple.driver.AirPort.Brcm4331          615.20.17
    com.apple.iokit.AppleBCM5701Ethernet          3.6.2b4
    com.apple.driver.AppleUSBEHCI          621.4.6
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.8
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.8
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          214.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          214.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.4.7fc2
    com.apple.iokit.IOAudioFamily          1.9.2fc7
    com.apple.kext.OSvKernDSPLib          1.12
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.4.7fc2
    com.apple.iokit.IOHDAFamily          2.4.7fc2
    com.apple.iokit.IOBluetoothFamily          4.1.7f2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.4.1d11
    com.apple.nvidia.nv50hal          8.1.6
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.NVDAResman          8.1.6
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.driver.AppleSMC          3.1.5d4
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.1.7f2
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOUSBHIDDriver          623.4.0
    com.apple.driver.AppleUSBMergeNub          621.4.6
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.6
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.5.1
    com.apple.iokit.IOUSBUserClient          630.4.4
    com.apple.iokit.IO80211Family          530.5
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.driver.AppleKeyStore          28.21
    com.apple.iokit.IOUSBMassStorageClass          3.5.2
    com.apple.driver.AppleUSBComposite          621.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.6
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.6
    com.apple.iokit.IOUSBFamily          630.4.5
    com.apple.driver.AppleACPIPlatform          1.8
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54333531533641465238432D47372020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54333531533641465238432D47372020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 21 devices, 3 incoming serial ports
    Serial ATA Device: M4-CT512M4SSD2, 512.11 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS41N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0237, 0xfa120000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 3

    You have the MacBookPro6,2, the Edsel of Macs. It may be covered by this program:
    MacBook Pro (15-inch, Mid 2010): Intermittent black screen or loss of video
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider, to have the machine tested. The routine hardware diagnostics used by service providers may not detect the fault. There is a specific test for this issue.
    Print the first page of the panic report, and the support page linked above, and bring them with you.
    Note that the replacement program only applies within three years of purchase. If you wait beyond that date, Apple may refuse the service. In that case, you'll be quoted a price of about $300 (in the U.S.) for a depot repair. The model was discontinued in February 2011, so the replacement program will be ending quite soon.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    Sometimes the replacement part is also defective, so be prepared for that possibility.
    If it's too late for your unit to be repaired under the program, and you don't want to pay for a new logic board, you may be able to stop the panics by disabling automatic graphics switching.
    *An SSD doesn't need to be zeroed.

Maybe you are looking for

  • Advice on tweaking settings

    Hi there, As I learn more about Logic (thanks in great part to these forums) I am starting to record songs with more and more tracks and adding more plug ins and even venturing into the world of soft synths via the music editor. I am looking for idea

  • How to make DFF Read Only ..

    Dear Friends, I have 3 segments in the Additional Personal Details DFF in HRMS. I want to make only the 2nd segment read-only not all the segments.How can we achieve this can any one pls let me know about this ... with regards Swpana

  • Automaticly showing the name of the report on bottom of the page

    I have so many reports that have been created in CR.  I print all my CR reports through Planit so I don't accesses them through CR while printing.  To figure which report is being used I need to look in Plant then go to MS Access which has the list w

  • Manufacturer part number in sap srm

    Hello, I need information about MPN in srm. I have seen that is necessary activate the cross application BF and the PPS business function. My questions are the following. - When a purchase requisition with MPN is transferred from ECC to SRM. What is

  • Connecting to a Windows 2003-Server with a MacBook

    Hi guys! I'm planning on buying a MacBook anytime soon. The main purpose of this investment is work at school. Therefore I have to ensure that everything works perfectly, otherwise I would have to buy a Windows notebook (in fact not the kind of decis