Ver en Monitor TV

Tengo Premiere Pro 2, antes tenia una tarjeta nvidia 5200 y podia ver la salida de video de premiere en mi televisión. He cambiado la placa gráfica a nvidia 7800 y como consecuencia tambien los drivers y ya no puedo verlo. He estado tocando los drivers y lo he puesto en overlay, cualquier video que reproduzco me sale a pantalla completa en la televisión, pero el monitor de premiere pro nada de nada. Alguien sabe si puede ser porque los nuevos drivers no lo permitan?

Yo tengo una 6200 y he tenido que retroceder a la versión 84.21, qualquier controlador posterior no me permite ver el video en el 2º monitor con premiere pro 2.0.
http://www.nvidia.com/object/winxp_2k_84.21.html
Suerte
Lluís

Similar Messages

  • Database Activity Tracking

    Hey Gang,
    I need to track the User and table activity. My goal is to find out what tables are static and which are not. Which user classes should be changed and how access should be assigned. This will also allow me to tune the database accordingly.

    Instead of trying to track individual user and table usage look at statspack for issues related to tuning the database. Generally unless you really did a poor job laying out and configuring your db to begin with the db does not need much tuning. The SQL is another story.
    Look into the following
    ver 9+ monitor command in DBA Admin, SQL manual
    ver all Audit command in DBA Admin manual, SQL manual
    ver 8.1+ Db event triggers (logon) DBA Concepts and Admin
    HTH -- Mark D Powell --

  • Ip sla monitoring on asa ver 7.0 (6)

    how to configure ip sla monitoring on asa ver 7.0 (6) ?

    Hello,
    In fact was introduced on 7.2.(1)
    Components Used
    The information in this document is based on these software and hardware versions:
    Cisco PIX Security Appliance 515E with software version 7.2(1) or later
    Cisco Adaptive Security Device Manager 5.2(1) or later
    Related Products
    You can also use this configuration with the Cisco ASA 5500 Series Security Appliance version 7.2(1).
    Please rate helpful posts,
    Julio

  • As abas e barras superio da nova versão 29.0 estão exagerada e toma muito espaço no monitor! As abas e barras superior da nova v. 29.0 podia ser mais compactas!

    O novo Firefox 29.0 estão com as abas e barras superior exageradas e isso toma muito espaço no monitor.
    Teria como os desenvolvedores compactar mais a parte superior da nova interface do Firefox? Isso ajudaria e muito!
    A 'estrelinha' deixou de ter sua cor amarela que indicava quando uma pagina era guardada na biblioteca favoritos do navegador, essa simples função ajudava muito!

    Olá Claudio1979,
    Na verdade a função da estrela ainda é a mesma a diferença é só a cor que é azul agora.
    Quanto ao espaço que se refere você pode remover a barra de titulo e a barra de Ferramentas isso lhe poupara um pouco de espaço, e acredito que usando o userChrome.css você consegue diminuir um pouco o tamanho das abas.
    Poderia fornecer uma imagem?
    *[https://support.mozilla.org/pt-BR/kb/como-faco-para-criar-uma-imagem-do-meu-problema Como faço para criar uma imagem do meu problema?]

  • Scaling dimensions of controls according to monitor resolution in Labview ver 8.6 (Windows)

    Hello.  I got a VI containing a lot of controls and indicators; the Vi was made on a 1920x1080 resolution and it occupies the full screen.
    I need a way to automatically scale all controls as window scales in different (minor) monitor resolution.  Vi settings make controls not to scale properly and to loose their relative position.
    In the past, I used multiple VI to distribute controls, now I cannot.
    What' s the better way to solve the problem?
    Thanks in advance
    Stefano

    Hello Stefano,
    I think this is what you are looking for.
    Front Panel Objects Moving When My LabVIEW VI is Transferred to Another Computer
    http://digital.ni.com/public.nsf/allkb/7567EF257B9CFDF986256F630073228F?OpenDocument
    Let me know if this helps!
    Regards,
    Antonios

  • Monitoring levels differ when recording vers. when recodring is enbaled

    When i enable a track for recording (thru a mic), the volume from this input sounds very low in comparison with previously recorded tracks playing along.
    When i start recording the same track, this input sounds a lot louder.
    In practice this means i am always recording in order to really hear what i am playing well.
    How can i make the monitor level during rehearsal and actual recording the same?
    Thanx

    In audio preferences, under the devices tab, there is a parameter called "Independent Monitoring Level".
    Is this by chance selected? If so, try disabling it, and see if that takes care of the problem

  • Flag de NFe impressa no monitor

    Bom dia!
    Pessoal,
    ao analisar os campos do monitor, verifiquei que o campo Imprimida fica em branco, mesmo que a nota ja tenha sido impressa.
    Verifiquei que esse campo fica na tabela j_1bnfe_active e não é o mesmo campo que esta na J_1BNFDOC-PRINTD.
    Portanto depois de ser autorizada e impressa, ao consultar a nota na J1B3N é possivel ver o flag assinalado, enquanto no monitor fica em branco.
    Alguem ja passou por essa situação?
    Porque esse campo não é atualizado.
    Estou usando a 6.0 SP. Ja apliquei todas as notas com xx-csc-br-nfe que estavam disponiveis na SAP. Portanto acho que o sistema está no ultimo nivel de atualização.
    Agradeço imensamente qualquer dica ou informação sobre esse assunto.
    Att
    Márcia Verro

    Boa tarde!
    Fernando
    inclui o comando conforme sua orientação. Veja codigo abaixo.
    Mas não funcionou.
    O monitor ainda não mostra que a nota foi impressa.
    Esse flag não deveria ser atualizado no mesmo momento em que o flag da J_1BNFDOC é atualizado?
    grata
    Márcia Verro
    METHOD if_ex_cl_nfe_print~call_rsnast00.
      DATA vl_prnter TYPE RSPONAME.
      IF      i_active-code EQ '100'.         "NF-e autorizada
        AND i_active-printd IS INITIAL     "só imprimir automaticamente se ainda não foi impressa
        AND i_active-cancel IS INITIAL     "não faz sentido imprimir autom. se ela foi cancelada
        AND i_active-conting_s IS INITIAL. "não faz sentido imprimir autom. se ela foi alternada p/conting.
        "pois deverá ser cancelada
        SELECT SINGLE prnter
          INTO vl_prnter
          FROM j_1bb2
          WHERE bukrs = i_active-bukrs
            AND branch = i_active-branch
            AND form = i_active-form.
        IF vl_prnter IS INITIAL.
          vl_prnter = 'LOCL'.
        ENDIF.
        CALL FUNCTION 'J_1BNFE_CALL_RSNAST00'
          EXPORTING
            i_active   = i_active
            i_printer  = vl_prnter
          EXCEPTIONS
            no_printer = 1
            OTHERS     = 3.
        COMMIT WORK.
        IF sy-subrc <> 0.
          CALL FUNCTION 'J_1B_NFE_ERROR_PROTOKOLL'
            EXPORTING
              i_docnum = i_active-docnum.
        ENDIF.
      ENDIF.

  • HP Zbook 15, external monitor connected to docking station issue

    Dear all
    I have bought a HP Zbook 15 laptop and installed Ubuntu 12.04. It does not show anything on the external monitor when I mount the laptop on the docking station. 
    After installing the Ubuntu 12.04 and putting it on the docking station for the first time, I got this problem:
    "If an ACPI driver is available for this device, you should use it instead of the native driver". I have attached the whole log file. Then, I installed the latest Nvidia driver, and restarted the machine. This time, I do not see that error message; however, I cannot see anything on my external monitor which is connected to the docking station. Can you please tell me how to fix this problem?
    Best regards,
    Murtaza
    I did not find a way to attach the log file, so I put it here:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.13.0-32-generic (buildd@phianna) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #57~precise1-Ubuntu SMP Tue Jul 15 03:51:20 UTC 2014 (Ubuntu 3.13.0-32.57~precise1-generic 3.13.11.4)
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-32-generic root=UUID=062ea7e8-5c86-4852-ba25-0372be603607 ro quiet splash vt.handoff=7
    [ 0.000000] KERNEL supported cpus:
    [ 0.000000] Intel GenuineIntel
    [ 0.000000] AMD AuthenticAMD
    [ 0.000000] Centaur CentaurHauls
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dbff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009dc00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000044b7efff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000044b7f000-0x0000000045e7efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000045e7f000-0x0000000045f7efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x0000000045f7f000-0x0000000045ffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x0000000045fff000-0x0000000045ffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000046000000-0x000000004f1fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000004aedfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Hewlett-Packard HP ZBook 15/1909, BIOS L70 Ver. 01.30 12/08/2014
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x4aee00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 00FF800000 mask 7FFF800000 write-protect
    [ 0.000000] 1 base 0000000000 mask 7FC0000000 write-back
    [ 0.000000] 2 base 0040000000 mask 7FFC000000 write-back
    [ 0.000000] 3 base 0044000000 mask 7FFE000000 write-back
    [ 0.000000] 4 base 0046000000 mask 7FFF000000 uncachable
    [ 0.000000] 5 base 0100000000 mask 7F00000000 write-back
    [ 0.000000] 6 base 0200000000 mask 7E00000000 write-back
    [ 0.000000] 7 base 0400000000 mask 7F80000000 write-back
    [ 0.000000] 8 base 0480000000 mask 7FC0000000 write-back
    [ 0.000000] 9 base 04B0000000 mask 7FF0000000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0x46000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01fe3000, 0x01fe3fff] PGTABLE
    [ 0.000000] BRK [0x01fe4000, 0x01fe4fff] PGTABLE
    [ 0.000000] BRK [0x01fe5000, 0x01fe5fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x4aec00000-0x4aedfffff]
    [ 0.000000] [mem 0x4aec00000-0x4aedfffff] page 2M
    [ 0.000000] BRK [0x01fe6000, 0x01fe6fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x4ac000000-0x4aebfffff]
    [ 0.000000] [mem 0x4ac000000-0x4aebfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x480000000-0x4abffffff]
    [ 0.000000] [mem 0x480000000-0x4abffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x44b7efff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x449fffff] page 2M
    [ 0.000000] [mem 0x44a00000-0x44b7efff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x45fff000-0x45ffffff]
    [ 0.000000] [mem 0x45fff000-0x45ffffff] page 4k
    [ 0.000000] BRK [0x01fe7000, 0x01fe7fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x47fffffff]
    [ 0.000000] [mem 0x100000000-0x47fffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x35be0000-0x36de7fff]
    [ 0.000000] ACPI: RSDP 00000000000f3060 000024 (v02 HPQOEM)
    [ 0.000000] ACPI: XSDT 0000000045ffe120 0000A4 (v01 HPQOEM SLIC-MPC 00000001 01000013)
    [ 0.000000] ACPI: FACP 0000000045ffc000 00010C (v05 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: DSDT 0000000045fd1000 0257CC (v02 HPQOEM 1909 00000001 INTL 20110112)
    [ 0.000000] ACPI: FACS 0000000045e31000 000040
    [ 0.000000] ACPI: HPET 0000000045ffb000 000038 (v01 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: APIC 0000000045ffa000 0000BC (v01 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: MCFG 0000000045ff9000 00003C (v01 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: TCPA 0000000045ff7000 000032 (v02 HPQOEM 1909 00000000 HP 00000001)
    [ 0.000000] ACPI: SSDT 0000000045fce000 000466 (v01 HPQOEM SataAhci 00001000 INTL 20110112)
    [ 0.000000] ACPI: SSDT 0000000045fcd000 00048A (v01 HPQOEM PtidDevc 00001000 INTL 20110112)
    [ 0.000000] ACPI: SLIC 0000000045fcc000 000176 (v01 HPQOEM SLIC-MPC 00000001 HP 00000001)
    [ 0.000000] ACPI: FPDT 0000000045fca000 000044 (v01 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: BGRT 0000000045fc9000 000038 (v00 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: SSDT 0000000045fc3000 000544 (v01 PmRef Cpu0Ist 00003000 INTL 20110112)
    [ 0.000000] ACPI: SSDT 0000000045fc2000 000AF3 (v01 PmRef CpuPm 00003000 INTL 20110112)
    [ 0.000000] ACPI: SSDT 0000000045fc1000 0001D5 (v01 PmRef LakeTiny 00003000 INTL 20110112)
    [ 0.000000] ACPI: SSDT 0000000045fc0000 000706 (v01 SaSsdt SaSsdt 00003000 INTL 20110112)
    [ 0.000000] ACPI: SSDT 0000000045fbd000 002F11 (v01 HP NVSGTBL 00001000 INTL 20110112)
    [ 0.000000] ACPI: ASF! 0000000045ff8000 0000A5 (v32 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000004aedfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x4aedfffff]
    [ 0.000000] NODE_DATA [mem 0x4aedf9000-0x4aedfdfff]
    [ 0.000000] [ffffea0000000000-ffffea0012bfffff] PMD -> [ffff88049e600000-ffff8804ae3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x4aedfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x44b7efff]
    [ 0.000000] node 0: [mem 0x45fff000-0x45ffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x4aedfffff]
    [ 0.000000] On node 0 totalpages: 4143388
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 4334 pages used for memmap
    [ 0.000000] DMA32 zone: 277376 pages, LIFO batch:31
    [ 0.000000] Normal zone: 60344 pages used for memmap
    [ 0.000000] Normal zone: 3862016 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x44b7f000-0x45e7efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x45e7f000-0x45f7efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x45f7f000-0x45ffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x46000000-0x4f1fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x4f200000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xff7fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff800000-0xffffffff]
    [ 0.000000] e820: [mem 0x4f200000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff8804aea00000 s86336 r8192 d24256 u262144
    [ 0.000000] pcpu-alloc: s86336 r8192 d24256 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4078625
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-32-generic root=UUID=062ea7e8-5c86-4852-ba25-0372be603607 ro quiet splash vt.handoff=7
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 16211348K/16573552K available (7602K kernel code, 1137K rwdata, 3484K rodata, 1356K init, 1440K bss, 362204K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
    [ 0.000000] Offload RCU callbacks from all CPUs
    [ 0.000000] Offload RCU callbacks from CPUs: 0-7.
    [ 0.000000] NR_IRQS:16640 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 66584576 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 failed
    [ 0.008000] tsc: PIT calibration matches HPET. 1 loops
    [ 0.008000] tsc: Detected 2693.754 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 5387.50 BogoMIPS (lpj=10775016)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000024] Security Framework initialized
    [ 0.000038] AppArmor: AppArmor initialized
    [ 0.000039] Yama: becoming mindful.
    [ 0.000989] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.003366] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.004363] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.004378] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.004573] Initializing cgroup subsys memory
    [ 0.004578] Initializing cgroup subsys devices
    [ 0.004579] Initializing cgroup subsys freezer
    [ 0.004581] Initializing cgroup subsys blkio
    [ 0.004582] Initializing cgroup subsys perf_event
    [ 0.004584] Initializing cgroup subsys hugetlb
    [ 0.004602] CPU: Physical Processor ID: 0
    [ 0.004603] CPU: Processor Core ID: 0
    [ 0.004607] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    [ 0.004607] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.005456] mce: CPU supports 9 MCE banks
    [ 0.005469] CPU0: Thermal monitoring enabled (TM1)
    [ 0.005479] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    [ 0.005479] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
    [ 0.005479] tlb_flushall_shift: 6
    [ 0.005975] Freeing SMP alternatives memory: 32K (ffffffff81e71000 - ffffffff81e79000)
    [ 0.006826] ACPI: Core revision 20131115
    [ 0.015427] ACPI: All ACPI Tables successfully acquired
    [ 0.015707] ftrace: allocating 31443 entries in 123 pages
    [ 0.027389] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.067059] smpboot: CPU0: Intel(R) Core(TM) i7-4800MQ CPU @ 2.70GHz (fam: 06, model: 3c, stepping: 03)
    [ 0.067065] TSC deadline timer enabled
    [ 0.067072] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.067078] ... version: 3
    [ 0.067079] ... bit width: 48
    [ 0.067079] ... generic registers: 4
    [ 0.067080] ... value mask: 0000ffffffffffff
    [ 0.067081] ... max period: 0000ffffffffffff
    [ 0.067082] ... fixed-purpose events: 3
    [ 0.067082] ... event mask: 000000070000000f
    [ 0.068367] x86: Booting SMP configuration:
    [ 0.082362] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.068369] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
    [ 0.166721] x86: Booted up 1 node, 8 CPUs
    [ 0.166724] smpboot: Total of 8 processors activated (43100.06 BogoMIPS)
    [ 0.174163] devtmpfs: initialized
    [ 0.177951] EVM: security.selinux
    [ 0.177953] EVM: security.SMACK64
    [ 0.177953] EVM: security.ima
    [ 0.177954] EVM: security.capability
    [ 0.177989] PM: Registering ACPI NVS region [mem 0x45e7f000-0x45f7efff] (1048576 bytes)
    [ 0.178592] pinctrl core: initialized pinctrl subsystem
    [ 0.178637] regulator-dummy: no parameters
    [ 0.178663] RTC time: 20:49:45, date: 04/17/15
    [ 0.178689] NET: Registered protocol family 16
    [ 0.178764] cpuidle: using governor ladder
    [ 0.178766] cpuidle: using governor menu
    [ 0.178795] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.178796] ACPI: bus type PCI registered
    [ 0.178798] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.178847] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.178849] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.194702] PCI: Using configuration type 1 for base access
    [ 0.194961] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.194962] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.194963] mtrr: corrected configuration.
    [ 0.195520] bio: create slab <bio-0> at 0
    [ 0.195643] ACPI: Added _OSI(Module Device)
    [ 0.195645] ACPI: Added _OSI(Processor Device)
    [ 0.195645] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.195646] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.218003] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.246072] ACPI: SSDT 0000000045de3918 0003F3 (v01 PmRef Cpu0Cst 00003001 INTL 20110112)
    [ 0.246512] ACPI: Dynamic OEM Table Load:
    [ 0.246513] ACPI: SSDT (null) 0003F3 (v01 PmRef Cpu0Cst 00003001 INTL 20110112)
    [ 0.250171] ACPI: SSDT 0000000045de4698 0005DB (v01 PmRef ApIst 00003000 INTL 20110112)
    [ 0.250664] ACPI: Dynamic OEM Table Load:
    [ 0.250666] ACPI: SSDT (null) 0005DB (v01 PmRef ApIst 00003000 INTL 20110112)
    [ 0.254062] ACPI: SSDT 0000000045de2d98 000119 (v01 PmRef ApCst 00003000 INTL 20110112)
    [ 0.254498] ACPI: Dynamic OEM Table Load:
    [ 0.254499] ACPI: SSDT (null) 000119 (v01 PmRef ApCst 00003000 INTL 20110112)
    [ 2.268291] ACPI: Interpreter enabled
    [ 2.268297] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
    [ 2.268302] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
    [ 2.268314] ACPI: (supports S0 S3 S4 S5)
    [ 2.268315] ACPI: Using IOAPIC for interrupt routing
    [ 2.268332] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 2.268475] ACPI: No dock devices found.
    [ 2.270541] ACPI: Power Resource [APPR] (off)
    [ 2.287340] ACPI: Power Resource [COMP] (on)
    [ 2.287629] ACPI: Power Resource [LPP] (on)
    [ 2.296206] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    [ 2.296211] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 2.296871] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    [ 2.297740] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    [ 2.298295] PCI host bridge to bus 0000:00
    [ 2.298297] pci_bus 0000:00: root bus resource [bus 00-fe]
    [ 2.298299] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 2.298300] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 2.298301] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 2.298302] pci_bus 0000:00: root bus resource [mem 0x4f200000-0xdfffffff]
    [ 2.298304] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfedfffff]
    [ 2.298305] pci_bus 0000:00: root bus resource [mem 0xfee01000-0xffffffff]
    [ 2.298311] pci 0000:00:00.0: [8086:0c04] type 00 class 0x060000
    [ 2.298395] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    [ 2.298423] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 2.298494] pci 0000:00:02.0: [8086:0416] type 00 class 0x030000
    [ 2.298503] pci 0000:00:02.0: reg 0x10: [mem 0xcc400000-0xcc7fffff 64bit]
    [ 2.298508] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xafffffff 64bit pref]
    [ 2.298512] pci 0000:00:02.0: reg 0x20: [io 0x6000-0x603f]
    [ 2.298605] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
    [ 2.298620] pci 0000:00:14.0: reg 0x10: [mem 0xcca20000-0xcca2ffff 64bit]
    [ 2.298666] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 2.298721] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 2.298748] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
    [ 2.298767] pci 0000:00:16.0: reg 0x10: [mem 0xcca35000-0xcca3500f 64bit]
    [ 2.298825] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 2.298896] pci 0000:00:16.3: [8086:8c3d] type 00 class 0x070002
    [ 2.298911] pci 0000:00:16.3: reg 0x10: [io 0x60b0-0x60b7]
    [ 2.298919] pci 0000:00:16.3: reg 0x14: [mem 0xcca3c000-0xcca3cfff]
    [ 2.299046] pci 0000:00:19.0: [8086:153a] type 00 class 0x020000
    [ 2.299061] pci 0000:00:19.0: reg 0x10: [mem 0xcca00000-0xcca1ffff]
    [ 2.299069] pci 0000:00:19.0: reg 0x14: [mem 0xcca3b000-0xcca3bfff]
    [ 2.299076] pci 0000:00:19.0: reg 0x18: [io 0x6080-0x609f]
    [ 2.299131] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 2.299180] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 2.299207] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
    [ 2.299225] pci 0000:00:1a.0: reg 0x10: [mem 0xcca3a000-0xcca3a3ff]
    [ 2.299306] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 2.299357] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 2.299384] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
    [ 2.299397] pci 0000:00:1b.0: reg 0x10: [mem 0xcca30000-0xcca33fff 64bit]
    [ 2.299455] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 2.299525] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
    [ 2.299590] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 2.299664] pci 0000:00:1c.4: [8086:8c18] type 01 class 0x060400
    [ 2.299721] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 2.299772] pci 0000:00:1c.4: System wakeup disabled by ACPI
    [ 2.299795] pci 0000:00:1c.6: [8086:8c1c] type 01 class 0x060400
    [ 2.299853] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
    [ 2.299904] pci 0000:00:1c.6: System wakeup disabled by ACPI
    [ 2.299928] pci 0000:00:1c.7: [8086:8c1e] type 01 class 0x060400
    [ 2.299986] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
    [ 2.300037] pci 0000:00:1c.7: System wakeup disabled by ACPI
    [ 2.300063] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
    [ 2.300083] pci 0000:00:1d.0: reg 0x10: [mem 0xcca39000-0xcca393ff]
    [ 2.300163] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 2.300215] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 2.300241] pci 0000:00:1f.0: [8086:8c4f] type 00 class 0x060100
    [ 2.300400] pci 0000:00:1f.2: [8086:8c03] type 00 class 0x010601
    [ 2.300414] pci 0000:00:1f.2: reg 0x10: [io 0x60a8-0x60af]
    [ 2.300421] pci 0000:00:1f.2: reg 0x14: [io 0x60bc-0x60bf]
    [ 2.300428] pci 0000:00:1f.2: reg 0x18: [io 0x60a0-0x60a7]
    [ 2.300435] pci 0000:00:1f.2: reg 0x1c: [io 0x60b8-0x60bb]
    [ 2.300442] pci 0000:00:1f.2: reg 0x20: [io 0x6060-0x607f]
    [ 2.300448] pci 0000:00:1f.2: reg 0x24: [mem 0xcca38000-0xcca387ff]
    [ 2.300482] pci 0000:00:1f.2: PME# supported from D3hot
    [ 2.300546] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
    [ 2.300560] pci 0000:00:1f.3: reg 0x10: [mem 0xcca34000-0xcca340ff 64bit]
    [ 2.300578] pci 0000:00:1f.3: reg 0x20: [io 0xef80-0xef9f]
    [ 2.300706] pci 0000:01:00.0: [10de:11fc] type 00 class 0x030000
    [ 2.300719] pci 0000:01:00.0: reg 0x10: [mem 0xcb000000-0xcbffffff]
    [ 2.300733] pci 0000:01:00.0: reg 0x14: [mem 0x50000000-0x5fffffff 64bit pref]
    [ 2.300746] pci 0000:01:00.0: reg 0x1c: [mem 0x60000000-0x61ffffff 64bit pref]
    [ 2.300755] pci 0000:01:00.0: reg 0x24: [io 0x5000-0x507f]
    [ 2.300763] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    [ 2.300868] pci 0000:01:00.1: [10de:0e0b] type 00 class 0x040300
    [ 2.300883] pci 0000:01:00.1: reg 0x10: [mem 0xcc000000-0xcc003fff]
    [ 2.306710] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 2.306712] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    [ 2.306714] pci 0000:00:01.0: bridge window [mem 0xcb000000-0xcc0fffff]
    [ 2.306717] pci 0000:00:01.0: bridge window [mem 0x50000000-0x61ffffff 64bit pref]
    [ 2.306776] acpiphp: Slot [1] registered
    [ 2.306781] pci 0000:00:1c.0: PCI bridge to [bus 02-3a]
    [ 2.306787] pci 0000:00:1c.0: bridge window [mem 0xb4000000-0xca0fffff]
    [ 2.306792] pci 0000:00:1c.0: bridge window [mem 0x70000000-0x91ffffff 64bit pref]
    [ 2.306850] acpiphp: Slot [1-1] registered
    [ 2.306888] pci 0000:00:1c.4: PCI bridge to [bus 3b-5b]
    [ 2.306892] pci 0000:00:1c.4: bridge window [io 0x3000-0x4fff]
    [ 2.306895] pci 0000:00:1c.4: bridge window [mem 0xb0000000-0xb3ffffff]
    [ 2.306998] pci 0000:5c:00.0: [8086:088e] type 00 class 0x028000
    [ 2.307064] pci 0000:5c:00.0: reg 0x10: [mem 0xcc900000-0xcc901fff 64bit]
    [ 2.307300] pci 0000:5c:00.0: PME# supported from D0 D3hot D3cold
    [ 2.314738] pci 0000:00:1c.6: PCI bridge to [bus 5c]
    [ 2.314743] pci 0000:00:1c.6: bridge window [mem 0xcc900000-0xcc9fffff]
    [ 2.314860] pci 0000:5d:00.0: [10ec:5249] type 00 class 0xff0000
    [ 2.314923] pci 0000:5d:00.0: reg 0x10: [mem 0xcc800000-0xcc800fff]
    [ 2.315269] pci 0000:5d:00.0: supports D1 D2
    [ 2.315270] pci 0000:5d:00.0: PME# supported from D1 D2 D3hot D3cold
    [ 2.322736] pci 0000:00:1c.7: PCI bridge to [bus 5d]
    [ 2.322741] pci 0000:00:1c.7: bridge window [mem 0xcc800000-0xcc8fffff]
    [ 2.322799] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 2.323663] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 2.323700] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 2.323734] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 2.323768] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 2.323802] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 2.323835] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 2.323869] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 2.323903] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 2.324240] ACPI: Enabled 7 GPEs in block 00 to 3F
    [ 2.324246] ACPI: \_SB_.PCI0: notify handler is installed
    [ 2.324298] Found 1 acpi root devices
    [ 2.324457] ACPI : EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
    [ 2.324517] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 2.324521] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 2.324522] vgaarb: loaded
    [ 2.324523] vgaarb: bridge control possible 0000:01:00.0
    [ 2.324524] vgaarb: no bridge control possible 0000:00:02.0
    [ 2.324635] SCSI subsystem initialized
    [ 2.324664] libata version 3.00 loaded.
    [ 2.324678] ACPI: bus type USB registered
    [ 2.324688] usbcore: registered new interface driver usbfs
    [ 2.324693] usbcore: registered new interface driver hub
    [ 2.324707] usbcore: registered new device driver usb
    [ 2.324786] PCI: Using ACPI for IRQ routing
    [ 2.330294] PCI: pci_cache_line_size set to 64 bytes
    [ 2.330342] e820: reserve RAM buffer [mem 0x0009dc00-0x0009ffff]
    [ 2.330343] e820: reserve RAM buffer [mem 0x44b7f000-0x47ffffff]
    [ 2.330345] e820: reserve RAM buffer [mem 0x46000000-0x47ffffff]
    [ 2.330346] e820: reserve RAM buffer [mem 0x4aee00000-0x4afffffff]
    [ 2.330402] NetLabel: Initializing
    [ 2.330403] NetLabel: domain hash size = 128
    [ 2.330403] NetLabel: protocols = UNLABELED CIPSOv4
    [ 2.330412] NetLabel: unlabeled traffic allowed by default
    [ 2.330452] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 2.330457] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 2.332489] Switched to clocksource hpet
    [ 2.335878] AppArmor: AppArmor Filesystem Enabled
    [ 2.335891] pnp: PnP ACPI init
    [ 2.335898] ACPI: bus type PNP registered
    [ 2.336030] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 2.336032] system 00:00: [mem 0xfed10000-0xfed17fff] could not be reserved
    [ 2.336033] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 2.336035] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 2.336036] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    [ 2.336037] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 2.336039] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 2.336040] system 00:00: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 2.336042] system 00:00: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 2.336043] system 00:00: [mem 0x4f210000-0x4f21ffff] has been reserved
    [ 2.336045] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 2.336141] pnp 00:01: [dma 4]
    [ 2.336154] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 2.336171] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 2.336216] pnp 00:03: Plug and Play ACPI device, IDs IFX0102 PNP0c31 (active)
    [ 2.336288] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 2.336322] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 2.336351] system 00:06: [io 0x0200-0x027f] has been reserved
    [ 2.336353] system 00:06: [io 0xffff] has been reserved
    [ 2.336354] system 00:06: [io 0xffff] has been reserved
    [ 2.336355] system 00:06: [io 0xffff] has been reserved
    [ 2.336357] system 00:06: [io 0x1800-0x18fe] could not be reserved
    [ 2.336358] system 00:06: [io 0xef80-0xef9f] has been reserved
    [ 2.336360] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 2.336393] system 00:07: [io 0x0800-0x087f] has been reserved
    [ 2.336395] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 2.336413] pnp 00:08: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 2.336712] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 PNP0500 (active)
    [ 2.336939] pnp 00:0a: [dma 0 disabled]
    [ 2.336985] pnp 00:0a: Plug and Play ACPI device, IDs PNP0401 (active)
    [ 2.337008] pnp 00:0b: Plug and Play ACPI device, IDs HPQ8001 PNP0303 (active)
    [ 2.337027] pnp 00:0c: Plug and Play ACPI device, IDs SYN300a SYN0100 SYN0002 PNP0f13 (active)
    [ 2.337195] pnp 00:0d: Plug and Play ACPI device, IDs HPQ6007 (active)
    [ 2.337255] system 00:0e: [mem 0x20000000-0x201fffff] could not be reserved
    [ 2.337257] system 00:0e: [mem 0x40004000-0x40004fff] could not be reserved
    [ 2.337259] system 00:0e: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 2.337398] pnp: PnP ACPI: found 15 devices
    [ 2.337399] ACPI: bus type PNP unregistered
    [ 2.343175] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    [ 2.343188] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02-3a] add_size 1000
    [ 2.343196] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 3b-5b] add_size 200000
    [ 2.343209] pci 0000:00:1c.7: bridge window [io 0x1000-0x0fff] to [bus 5d] add_size 1000
    [ 2.343210] pci 0000:00:1c.7: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 5d] add_size 200000
    [ 2.343215] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 2.343216] pci 0000:00:1c.7: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 2.343217] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 2.343219] pci 0000:00:1c.7: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 2.343222] pci 0000:00:1c.4: BAR 15: assigned [mem 0x4f300000-0x4f4fffff 64bit pref]
    [ 2.343224] pci 0000:00:1c.7: BAR 15: assigned [mem 0x4f500000-0x4f6fffff 64bit pref]
    [ 2.343225] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
    [ 2.343227] pci 0000:00:1c.7: BAR 13: assigned [io 0x7000-0x7fff]
    [ 2.343229] pci 0000:01:00.0: BAR 6: assigned [mem 0xcc080000-0xcc0fffff pref]
    [ 2.343231] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 2.343233] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    [ 2.343235] pci 0000:00:01.0: bridge window [mem 0xcb000000-0xcc0fffff]
    [ 2.343237] pci 0000:00:01.0: bridge window [mem 0x50000000-0x61ffffff 64bit pref]
    [ 2.343240] pci 0000:00:1c.0: PCI bridge to [bus 02-3a]
    [ 2.343243] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 2.343247] pci 0000:00:1c.0: bridge window [mem 0xb4000000-0xca0fffff]
    [ 2.343251] pci 0000:00:1c.0: bridge window [mem 0x70000000-0x91ffffff 64bit pref]
    [ 2.343256] pci 0000:00:1c.4: PCI bridge to [bus 3b-5b]
    [ 2.343259] pci 0000:00:1c.4: bridge window [io 0x3000-0x4fff]
    [ 2.343263] pci 0000:00:1c.4: bridge window [mem 0xb0000000-0xb3ffffff]
    [ 2.343267] pci 0000:00:1c.4: bridge window [mem 0x4f300000-0x4f4fffff 64bit pref]
    [ 2.343272] pci 0000:00:1c.6: PCI bridge to [bus 5c]
    [ 2.343276] pci 0000:00:1c.6: bridge window [mem 0xcc900000-0xcc9fffff]
    [ 2.343283] pci 0000:00:1c.7: PCI bridge to [bus 5d]
    [ 2.343285] pci 0000:00:1c.7: bridge window [io 0x7000-0x7fff]
    [ 2.343289] pci 0000:00:1c.7: bridge window [mem 0xcc800000-0xcc8fffff]
    [ 2.343293] pci 0000:00:1c.7: bridge window [mem 0x4f500000-0x4f6fffff 64bit pref]
    [ 2.343298] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 2.343300] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 2.343301] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 2.343302] pci_bus 0000:00: resource 7 [mem 0x4f200000-0xdfffffff]
    [ 2.343303] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfedfffff]
    [ 2.343304] pci_bus 0000:00: resource 9 [mem 0xfee01000-0xffffffff]
    [ 2.343306] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
    [ 2.343307] pci_bus 0000:01: resource 1 [mem 0xcb000000-0xcc0fffff]
    [ 2.343308] pci_bus 0000:01: resource 2 [mem 0x50000000-0x61ffffff 64bit pref]
    [ 2.343309] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    [ 2.343311] pci_bus 0000:02: resource 1 [mem 0xb4000000-0xca0fffff]
    [ 2.343312] pci_bus 0000:02: resource 2 [mem 0x70000000-0x91ffffff 64bit pref]
    [ 2.343313] pci_bus 0000:3b: resource 0 [io 0x3000-0x4fff]
    [ 2.343314] pci_bus 0000:3b: resource 1 [mem 0xb0000000-0xb3ffffff]
    [ 2.343315] pci_bus 0000:3b: resource 2 [mem 0x4f300000-0x4f4fffff 64bit pref]
    [ 2.343317] pci_bus 0000:5c: resource 1 [mem 0xcc900000-0xcc9fffff]
    [ 2.343318] pci_bus 0000:5d: resource 0 [io 0x7000-0x7fff]
    [ 2.343319] pci_bus 0000:5d: resource 1 [mem 0xcc800000-0xcc8fffff]
    [ 2.343320] pci_bus 0000:5d: resource 2 [mem 0x4f500000-0x4f6fffff 64bit pref]
    [ 2.343341] NET: Registered protocol family 2
    [ 2.343489] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 2.343658] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 2.343769] TCP: Hash tables configured (established 131072 bind 65536)
    [ 2.343782] TCP: reno registered
    [ 2.343798] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 2.343840] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 2.343907] NET: Registered protocol family 1
    [ 2.343916] pci 0000:00:02.0: Boot video device
    [ 2.343923] pci 0000:00:14.0: enabling device (0000 -> 0002)
    [ 2.344387] PCI: CLS 64 bytes, default 64
    [ 2.344426] Trying to unpack rootfs image as initramfs...
    [ 2.581584] Freeing initrd memory: 18464K (ffff880035be0000 - ffff880036de8000)
    [ 2.581588] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 2.581590] software IO TLB [mem 0x40b7f000-0x44b7f000] (64MB) mapped at [ffff880040b7f000-ffff880044b7efff]
    [ 2.581814] microcode: CPU0 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581821] microcode: CPU1 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581827] microcode: CPU2 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581834] microcode: CPU3 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581839] microcode: CPU4 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581845] microcode: CPU5 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581851] microcode: CPU6 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581858] microcode: CPU7 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581891] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 2.581892] Scanning for low memory corruption every 60 seconds
    [ 2.582096] Initialise system trusted keyring
    [ 2.582129] audit: initializing netlink socket (disabled)
    [ 2.582137] type=2000 audit(1429303787.580:1): initialized
    [ 2.605505] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 2.606581] zbud: loaded
    [ 2.606685] VFS: Disk quotas dquot_6.5.2
    [ 2.606715] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 2.606997] fuse init (API version 7.22)
    [ 2.607048] msgmni has been set to 31698
    [ 2.607084] Key type big_key registered
    [ 2.607458] Key type asymmetric registered
    [ 2.607459] Asymmetric key parser 'x509' registered
    [ 2.607478] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 2.607514] io scheduler noop registered
    [ 2.607516] io scheduler deadline registered (default)
    [ 2.607531] io scheduler cfq registered
    [ 2.607686] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 2.608087] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 2.608097] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 2.608122] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
    [ 2.608123] vesafb: scrolling: redraw
    [ 2.608124] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 2.608661] vesafb: framebuffer at 0xa0000000, mapped to 0xffffc90011c00000, using 8128k, total 8128k
    [ 2.763515] Console: switching to colour frame buffer device 240x67
    [ 2.917758] fb0: VESA VGA frame buffer device
    [ 2.917770] intel_idle: MWAIT substates: 0x42120
    [ 2.917771] intel_idle: v0.4 model 0x3C
    [ 2.917771] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 2.917911] ipmi message handler version 39.2
    [ 2.918057] ACPI: AC Adapter [AC] (on-line)
    [ 2.918197] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input0
    [ 2.918201] ACPI: Sleep Button [SLPB]
    [ 2.918223] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 2.918238] ACPI: Lid Switch [LID]
    [ 2.918260] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [ 2.918261] ACPI: Power Button [PWRF]
    [ 2.943141] thermal LNXTHERM:00: registered as thermal_zone0
    [ 2.943143] ACPI: Thermal Zone [CPUZ] (49 C)
    [ 2.957429] ACPI Error: [CFGD] Namespace lookup failure, AE_NOT_FOUND (20131115/psargs-359)
    [ 2.957433] ACPI Error: Method parse/execution failed [\_TZ_.PSL_] (Node ffff88049846d410), AE_NOT_FOUND (20131115/psparse-536)
    [ 2.957437] ACPI Error: Method parse/execution failed [\_TZ_.GFXZ._PSL] (Node ffff88049846d000), AE_NOT_FOUND (20131115/psparse-536)
    [ 2.957440] ACPI: Invalid passive threshold
    [ 2.967568] thermal LNXTHERM:01: registered as thermal_zone1
    [ 2.967569] ACPI: Thermal Zone [GFXZ] (36 C)
    [ 2.982819] thermal LNXTHERM:02: registered as thermal_zone2
    [ 2.982820] ACPI: Thermal Zone [EXTZ] (0 C)
    [ 2.998086] thermal LNXTHERM:03: registered as thermal_zone3
    [ 2.998087] ACPI: Thermal Zone [LOCZ] (0 C)
    [ 3.003351] ACPI Error: [CFGD] Namespace lookup failure, AE_NOT_FOUND (20131115/psargs-359)
    [ 3.003354] ACPI Error: Method parse/execution failed [\_TZ_.PSL_] (Node ffff88049846d410), AE_NOT_FOUND (20131115/psparse-536)
    [ 3.003357] ACPI Error: Method parse/execution failed [\_TZ_.BATZ._PSL] (Node ffff88049846d230), AE_NOT_FOUND (20131115/psparse-536)
    [ 3.003360] ACPI: Invalid passive threshold
    [ 3.013372] thermal LNXTHERM:04: registered as thermal_zone4
    [ 3.013374] ACPI: Thermal Zone [BATZ] (28 C)
    [ 3.013559] thermal LNXTHERM:05: registered as thermal_zone5
    [ 3.013560] ACPI: Thermal Zone [PCHZ] (59 C)
    [ 3.013623] thermal LNXTHERM:06: registered as thermal_zone6
    [ 3.013624] ACPI: Thermal Zone [DM1Z] (0 C)
    [ 3.013684] thermal LNXTHERM:07: registered as thermal_zone7
    [ 3.013685] ACPI: Thermal Zone [DM2Z] (0 C)
    [ 3.013706] GHES: HEST is not enabled!
    [ 3.013781] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
    [ 3.034219] 00:09: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    [ 3.055810] 0000:00:16.3: ttyS4 at I/O 0x60b0 (irq = 19, base_baud = 115200) is a 16550A
    [ 3.056055] Linux agpgart interface v0.103
    [ 3.056183] tpm_tis 00:03: 1.2 TPM (device-id 0xB, rev-id 16)
    [ 3.057331] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 3.057335] ACPI: Battery Slot [BAT0] (battery present)
    [ 3.057372] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 3.057375] ACPI: Battery Slot [BAT1] (battery absent)
    [ 3.352138] tpm_tis 00:03: TPM is disabled/deactivated (0x7)
    [ 3.353165] brd: module loaded
    [ 3.353594] loop: module loaded
    [ 3.353831] libphy: Fixed MDIO Bus: probed
    [ 3.353886] tun: Universal TUN/TAP device driver, 1.6
    [ 3.353887] tun: (C) 1999-2004 Max Krasnyansky <[email protected]>
    [ 3.353914] PPP generic driver version 2.4.2
    [ 3.353943] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 3.353946] ehci-pci: EHCI PCI platform driver
    [ 3.354051] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 3.354055] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 3.354066] ehci-pci 0000:00:1a.0: debug port 2
    [ 3.357954] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 3.357966] ehci-pci 0000:00:1a.0: irq 16, io mem 0xcca3a000
    [ 3.368127] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 3.368158] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
    [ 3.368159] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 3.368161] usb usb1: Product: EHCI Host Controller
    [ 3.368162] usb usb1: Manufacturer: Linux 3.13.0-32-generic ehci_hcd
    [ 3.368163] usb usb1: SerialNumber: 0000:00:1a.0
    [ 3.368233] hub 1-0:1.0: USB hub found
    [ 3.368238] hub 1-0:1.0: 3 ports detected
    [ 3.368420] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 3.368424] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 3.368434] ehci-pci 0000:00:1d.0: debug port 2
    [ 3.372323] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 3.372334] ehci-pci 0000:00:1d.0: irq 17, io mem 0xcca39000
    [ 3.384119] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 3.384147] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
    [ 3.384148] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 3.384149] usb usb2: Product: EHCI Host Controller
    [ 3.384150] usb usb2: Manufacturer: Linux 3.13.0-32-generic ehci_hcd
    [ 3.384151] usb usb2: SerialNumber: 0000:00:1d.0
    [ 3.384234] hub 2-0:1.0: USB hub found
    [ 3.384238] hub 2-0:1.0: 3 ports detected
    [ 3.384329] ehci-platform: EHCI generic platform driver
    [ 3.384335] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 3.384336] ohci-pci: OHCI PCI platform driver
    [ 3.384342] ohci-platform: OHCI generic platform driver
    [ 3.384346] uhci_hcd: USB Universal Host Controller Interface driver
    [ 3.384439] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 3.384443] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 3.384525] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 3.384540] xhci_hcd 0000:00:14.0: irq 41 for MSI/MSI-X
    [ 3.384587] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
    [ 3.384589] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 3.384590] usb usb3: Product: xHCI Host Controller
    [ 3.384591] usb usb3: Manufacturer: Linux 3.13.0-32-generic xhci_hcd
    [ 3.384592] usb usb3: SerialNumber: 0000:00:14.0
    [ 3.384673] hub 3-0:1.0: USB hub found
    [ 3.384690] hub 3-0:1.0: 15 ports detected
    [ 3.385431] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 3.385434] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 3.385468] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
    [ 3.385470] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 3.385471] usb usb4: Product: xHCI Host Controller
    [ 3.385472] usb usb4: Manufacturer: Linux 3.13.0-32-generic xhci_hcd
    [ 3.385473] usb usb4: SerialNumber: 0000:00:14.0
    [ 3.385551] hub 4-0:1.0: USB hub found
    [ 3.385562] hub 4-0:1.0: 6 ports detected
    [ 3.392184] i8042: PNP: PS/2 Controller [PNP0303S2K,PNP0f13S2M] at 0x60,0x64 irq 1,12
    [ 3.393372] i8042: Detected active multiplexing controller, rev 1.1
    [ 3.394020] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 3.394023] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 3.394040] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 3.394051] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 3.394062] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 3.394254] mousedev: PS/2 mouse device common for all mice
    [ 3.394420] rtc_cmos 00:08: RTC can wake from S4
    [ 3.394538] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0
    [ 3.394563] rtc_cmos 00:08: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 3.394608] device-mapper: uevent: version 1.0.3
    [ 3.394668] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: [email protected]
    [ 3.394673] ledtrig-cpu: registered to indicate activity on CPUs
    [ 3.394743] TCP: cubic registered
    [ 3.394800] NET: Registered protocol family 10
    [ 3.394914] NET: Registered protocol family 17
    [ 3.394922] Key type dns_resolver registered
    [ 3.395160] Loading compiled-in X.509 certificates
    [ 3.395793] Loaded X.509 cert 'Magrathea: Glacier signing key: 223a1a1af7ef14be22890f9d1cc63d083fee59bf'
    [ 3.395800] registered taskstats version 1
    [ 3.397885] Key type trusted registered
    [ 3.399811] Key type encrypted registered
    [ 3.401785] AppArmor: AppArmor sha1 policy hashing enabled
    [ 3.419579] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
    [ 3.460151] tpm_tis 00:03: A TPM error (7) occurred attempting to read a pcr value
    [ 3.460154] IMA: No TPM chip found, activating TPM-bypass!
    [ 3.460705] regulator-dummy: disabling
    [ 3.460903] Magic number: 11:175:852
    [ 3.461055] rtc_cmos 00:08: setting system clock to 2015-04-17 20:49:48 UTC (1429303788)
    [ 3.462218] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
    [ 3.462219] EDD information not available.
    [ 3.462247] PM: Hibernation image not present or could not be loaded.
    [ 3.463163] Freeing unused kernel memory: 1356K (ffffffff81d1e000 - ffffffff81e71000)
    [ 3.463165] Write protecting the kernel read-only data&colon; 12288k
    [ 3.464381] Freeing unused kernel memory: 580K (ffff88000176f000 - ffff880001800000)
    [ 3.465532] Freeing unused kernel memory: 612K (ffff880001b67000 - ffff880001c00000)
    [ 3.478948] udevd[143]: starting version 175
    [ 3.509828] pps_core: LinuxPPS API ver. 1 registered
    [ 3.509831] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 3.511322] PTP clock support registered
    [ 3.511576] rtsx_pci 0000:5d:00.0: irq 42 for MSI/MSI-X
    [ 3.511591] rtsx_pci 0000:5d:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 42
    [ 3.513783] ahci 0000:00:1f.2: version 3.0
    [ 3.513949] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 3.513977] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 3.514002] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0xd impl SATA mode
    [ 3.514005] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems sxs apst
    [ 3.515548] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 3.515549] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
    [ 3.528600] scsi0 : ahci
    [ 3.528832] scsi1 : ahci
    [ 3.528908] scsi2 : ahci
    [ 3.528979] scsi3 : ahci
    [ 3.529074] scsi4 : ahci
    [ 3.529152] scsi5 : ahci
    [ 3.529185] ata1: SATA max UDMA/133 abar m2048@0xcca38000 port 0xcca38100 irq 43
    [ 3.529186] ata2: DUMMY
    [ 3.529189] ata3: SATA max UDMA/133 abar m2048@0xcca38000 port 0xcca38200 irq 43
    [ 3.529191] ata4: SATA max UDMA/133 abar m2048@0xcca38000 port 0xcca38280 irq 43
    [ 3.529192] ata5: DUMMY
    [ 3.529193] ata6: DUMMY
    [ 3.529421] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 3.529440] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
    [ 3.580099] tsc: Refined TSC clocksource calibration: 2693.762 MHz
    [ 3.596226] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
    [ 3.612542] usb 4-1: New USB device found, idVendor=0424, idProduct=5434
    [ 3.612545] usb 4-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
    [ 3.612547] usb 4-1: Product: USB5534
    [ 3.612548] usb 4-1: Manufacturer: SMSC
    [ 3.612549] usb 4-1: SerialNumber: 1239567
    [ 3.614189] hub 4-1:1.0: USB hub found
    [ 3.614228] hub 4-1:1.0: 4 ports detected
    [ 3.697128] e1000e 0000:00:19.0 eth0: registered PHC clock
    [ 3.697131] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 5c:b9:01:fc:9d:75
    [ 3.697132] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 3.697163] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
    [ 3.724083] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 3.848014] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 3.848677] ata1.00: ATA-9: SanDisk SD6SB1M-256G-1006, X231706, max UDMA/100
    [ 3.848680] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
    [ 3.849416] ata1.00: configured for UDMA/100
    [ 3.849580] scsi 0:0:0:0: Direct-Access ATA SanDisk SD6SB1M- X231 PQ: 0 ANSI: 5
    [ 3.849710] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
    [ 3.849746] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 3.849748] sd 0:0:0:0: [sda] Write Protect is off
    [ 3.849750] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 3.849764] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.850612] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
    [ 3.851144] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 3.856328] usb 1-1: New USB device found, idVendor=8087, idProduct=8008
    [ 3.856331] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 3.856471] hub 1-1:1.0: USB hub found
    [ 3.856575] hub 1-1:1.0: 6 ports detected
    [ 3.967974] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 4.100292] usb 2-1: New USB device found, idVendor=8087, idProduct=8000
    [ 4.100295] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 4.100529] hub 2-1:1.0: USB hub found
    [ 4.100626] hub 2-1:1.0: 8 ports detected
    [ 4.167897] ata3: SATA link down (SStatus 0 SControl 300)
    [ 4.267892] usb 3-1: new high-speed USB device number 2 using xhci_hcd
    [ 4.284185] usb 3-1: New USB device found, idVendor=0424, idProduct=5434
    [ 4.284188] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 4.284596] hub 3-1:1.0: USB hub found
    [ 4.284626] hub 3-1:1.0: 4 ports detected
    [ 4.451824] usb 3-5: new full-speed USB device number 3 using xhci_hcd
    [ 4.469313] usb 3-5: New USB device found, idVendor=138a, idProduct=003f
    [ 4.469316] usb 3-5: New USB device strings: Mfr=0, Product=0, SerialNumber=1
    [ 4.469318] usb 3-5: SerialNumber: 0030e4b96e96
    [ 4.487780] ata4: SATA link down (SStatus 0 SControl 300)
    [ 4.530624] EXT4-fs (sda5): INFO: recovery required on readonly filesystem
    [ 4.530627] EXT4-fs (sda5): write access will be enabled during recovery
    [ 4.579770] Switched to clocksource tsc
    [ 4.635700] usb 3-7: new high-speed USB device number 4 using xhci_hcd
    [ 4.702947] EXT4-fs (sda5): orphan cleanup on readonly fs
    [ 4.702996] EXT4-fs (sda5): 2 orphan inodes deleted
    [ 4.702997] EXT4-fs (sda5): recovery complete
    [ 4.706848] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [ 4.736086] usb 3-7: New USB device found, idVendor=05c8, idProduct=0369
    [ 4.736089] usb 3-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
    [ 4.736090] usb 3-7: Product: HP HD Webcam
    [ 4.736092] usb 3-7: Manufacturer: SunplusIT INC.
    [ 4.777998] random: init urandom read with 97 bits of entropy available
    [ 4.815946] init: ureadahead main process (382) terminated with status 5
    [ 4.872399] Adding 8390772k swap on /dev/sda6. Priority:-1 extents:1 across:8390772k SSFS
    [ 4.910276] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
    [ 4.910848] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 4.915232] udevd[465]: starting version 175
    [ 4.919590] usb 3-11: new high-speed USB device number 5 using xhci_hcd
    [ 4.937952] usb 3-11: New USB device found, idVendor=03f0, idProduct=521d
    [ 4.937956] usb 3-11: New USB device strings: Mfr=5, Product=4, SerialNumber=0
    [ 4.937959] usb 3-11: Product: HP hs3110 HSPA+ Mobile Broadband Device
    [ 4.937961] usb 3-11: Manufacturer: Hewlett-Packard
    [ 4.941014] lp: driver loaded but no devices found
    [ 4.969070] Initializing HPQ6001 module
    [ 4.969146] input: HP Wireless hotkeys as /devices/virtual/input/input8
    [ 4.977289] wmi: Mapper loaded
    [ 4.985916] [drm] Initialized drm 1.1.0 20060810
    [ 4.991703] hp_accel: laptop model unknown, using default axes configuration
    [ 4.998586] mei_me 0000:00:16.0: irq 45 for MSI/MSI-X
    [ 5.004770] parport_pc 00:0a: reported by Plug and Play ACPI
    [ 5.004867] parport0: PC-style at 0x378 (0x778), irq 5, using FIFO [PCSPP,TRISTATE,COMPAT,ECP]
    [ 5.013849] [drm] Memory usable by graphics device = 2048M
    [ 5.013854] checking generic (a0000000 7f0000) vs hw (a0000000 10000000)
    [ 5.013856] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 5.013874] Console: switching to colour dummy device 80x25
    [ 5.030434] random: nonblocking pool is initialized
    [ 5.031503] cfg80211: Calling CRDA to update world regulatory domain
    [ 5.036770] ppdev: user-space parallel port driver
    [ 5.039277] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 5.039280] Copyright(c) 2003-2013 Intel Corporation
    [ 5.039419] iwlwifi 0000:5c:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 5.039474] iwlwifi 0000:5c:00.0: irq 46 for MSI/MSI-X
    [ 5.045123] type=1400 audit(1429292990.079:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=725 comm="apparmor_parser"
    [ 5.045130] type=1400 audit(1429292990.079:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=725 comm="apparmor_parser"
    [ 5.045135] type=1400 audit(1429292990.079:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=725 comm="apparmor_parser"
    [ 5.045666] type=1400 audit(1429292990.079:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=725 comm="apparmor_parser"
    [ 5.045672] type=1400 audit(1429292990.079:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=725 comm="apparmor_parser"
    [ 5.045949] type=1400 audit(1429292990.079:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=725 comm="apparmor_parser"
    [ 5.049977] Bluetooth: Core ver 2.17
    [ 5.049990] NET: Registered protocol family 31
    [ 5.049991] Bluetooth: HCI device and connection manager initialized
    [ 5.049998] Bluetooth: HCI socket layer initialized
    [ 5.050001] Bluetooth: L2CAP socket layer initialized
    [ 5.050005] Bluetooth: SCO socket layer initialized
    [ 5.051107] iwlwifi 0000:5c:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
    [ 5.057904] Bluetooth: RFCOMM TTY layer initialized
    [ 5.057915] Bluetooth: RFCOMM socket layer initialized
    [ 5.057920] Bluetooth: RFCOMM ver 1.11
    [ 5.061071] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 5.061074] Bluetooth: BNEP filters: protocol multicast
    [ 5.061082] Bluetooth: BNEP socket layer initialized
    [ 5.063649] i915 0000:00:02.0: irq 47 for MSI/MSI-X
    [ 5.063657] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 5.063658] [drm] Driver supports precise vblank timestamp query.
    [ 5.063906] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=nonewns=none
    [ 5.073667] iwlwifi 0000:5c:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 5.073671] iwlwifi 0000:5c:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
    [ 5.073673] iwlwifi 0000:5c:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 5.073676] iwlwifi 0000:5c:00.0: Detected Intel(R) Centrino(R) Advanced-N 6235 AGN, REV=0xB0
    [ 5.073733] iwlwifi 0000:5c:00.0: L1 Disabled; Enabling L0S
    [ 5.099787] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 5.107517] usb 3-12: new full-speed USB device number 6 using xhci_hcd
    [ 5.107863] lp0: using parport0 (interrupt-driven).
    [ 5.117196] MXM: GUID detected in BIOS
    [ 5.117211] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20131115/nsarguments-95)
    [ 5.127446] usb 3-12: New USB device found, idVendor=8087, idProduct=07da
    [ 5.127450] usb 3-12: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 5.136368] usbcore: registered new interface driver btusb
    [ 5.139414] init: failsafe main process (863) killed by TERM signal
    [ 5.153066] type=1400 audit(1429292990.187:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=953 comm="apparmor_parser"
    [ 5.153074] type=1400 audit(1429292990.187:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=953 comm="apparmor_parser"
    [ 5.153638] type=1400 audit(1429292990.187:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=953 comm="apparmor_parser"
    [ 5.175774] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
    [ 5.215491] usb 3-1.2: new high-speed USB device number 7 using xhci_hcd
    [ 5.231627] usb 3-1.2: New USB device found, idVendor=0424, idProduct=2512
    [ 5.231630] usb 3-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 5.232078] hub 3-1.2:1.0: USB hub found
    [ 5.232107] hub 3-1.2:1.0: 2 ports detected
    [ 5.245239] Linux video capture interface: v2.00
    [ 5.249575] uvcvideo: Found UVC 1.00 device HP HD Webcam (05c8:0369)
    [ 5.258139] input: HP HD Webcam as /devices/pci0000:00/0000:00:14.0/usb3/3-7/3-7:1.0/input/input12
    [ 5.258213] usbcore: registered new interface driver uvcvideo
    [ 5.258215] USB Video Class driver (1.1.1)
    [ 5.267740] ACPI Warning: \_SB_.PCI0.PEGP.DGFX._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20131115/nsarguments-95)
    [ 5.267757] input: HP WMI hotkeys as /devices/virtual/input/input11
    [ 5.299688] ACPI Warning: \_SB_.PCI0.PEGP.DGFX._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
    [ 5.342957] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
    [ 5.372070] lis3lv02d: 8 bits 3DC sensor found
    [ 5.372127] ACPI Warning: \_SB_.PCI0.PEGP.DGFX._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
    [ 5.385320] fbcon: inteldrmfb (fb0) is primary device
    [ 5.408760] psmouse serio2: alps: Unknown ALPS touchpad: E7=10 00 64, EC=10 00 64
    [ 5.416127] pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
    [ 5.416135] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.PEGP.DGFX handle
    [ 5.443465] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
    [ 5.443566] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 5.443818] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 5.444803] iwlwifi 0000:5c:00.0: L1 Disabled; Enabling L0S
    [ 5.451546] iwlwifi 0000:5c:00.0: Radio type=0x2-0x1-0x0
    [ 5.507433] usb 3-1.2.1: new low-speed USB device number 8 using xhci_hcd
    [ 5.530647] usb 3-1.2.1: New USB device found, idVendor=046d, idProduct=c045
    [ 5.530649] usb 3-1.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
    [ 5.530650] usb 3-1.2.1: Product: USB-PS/2 Optical Mouse
    [ 5.530651] usb 3-1.2.1: Manufacturer: Logitech
    [ 5.530803] usb 3-1.2.1: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 5.603397] usb 3-1.2.2: new low-speed USB device number 9 using xhci_hcd
    [ 5.642247] usb 3-1.2.2: New USB device found, idVendor=03f0, idProduct=034a
    [ 5.642249] usb 3-1.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
    [ 5.642250] usb 3-1.2.2: Product: HP Elite USB Keyboard
    [ 5.642251] usb 3-1.2.2: Manufacturer: Chicony
    [ 5.642359] usb 3-1.2.2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 5.642365] usb 3-1.2.2: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 5.650544] hidraw: raw HID events driver (C) Jiri Kosina
    [ 5.672470] usbcore: registered new interface driver usbhid
    [ 5.672471] usbhid: USB HID core driver
    [ 5.676000] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1.2/3-1.2.1/3-1.2.1:1.0/input/input13
    [ 5.676142] hid-generic 0003:046D:C045.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:14.0-1.2.1/input0
    [ 5.676260] input: Chicony HP Elite USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1.2/3-1.2.2/3-1.2.2:1.0/input/input14
    [ 5.676361] hid-generic 0003:03F0:034A.0002: input,hidraw1: USB HID v1.10 Keyboard [Chicony HP Elite USB Keyboard] on usb-0000:00:14.0-1.2.2/input0
    [ 5.679926] input: Chicony HP Elite USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1.2/3-1.2.2/3-1.2.2:1.1/input/input15
    [ 5.680033] hid-generic 0003:03F0:034A.0003: input,hidraw2: USB HID v1.10 Device [Chicony HP Elite USB Keyboard] on usb-0000:00:14.0-1.2.2/input1
    [ 5.724422] iwlwifi 0000:5c:00.0: L1 Disabled; Enabling L0S
    [ 5.731055] iwlwifi 0000:5c:00.0: Radio type=0x2-0x1-0x0
    [ 5.819472] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 5.819868] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 6.122492] input: PS/2 Generic Mouse as /devices/platform/i8042/serio2/input/input10
    [ 6.743022] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input17
    [ 6.791046] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 6.950914] Console: switching to colour frame buffer device 240x67
    [ 6.954403] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 6.954405] i915 0000:00:02.0: registered panic notifier
    [ 6.954426] nouveau 0000:01:00.0: enabling device (0004 -> 0007)
    [ 6.954972] ACPI: Video Device [DGFX] (multi-head: yes rom: yes post: no)
    [ 6.955055] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input18
    [ 6.959873] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 6.959978] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input19
    [ 6.960085] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 6.960160] ACPI Warning: 0x0000000000001828-0x000000000000182f SystemIO conflicts with Region \PMIO 1 (20131115/utaddress-251)
    [ 6.960166] ACPI: If an ACPI driver is

    @emeres: Sorry, yes, it's an HP 2013 UltraSlim Docking Station. I figured it was the only one compatible with the notebook model I provided.
    Regarding any electrical circuitry or controls... well, sure, I'm assuming there's some circuitry in there
    I'll give a whirl at using that two screen setup when I get a chance. I'm not inclined to think I need to hard-code it in a xorg conf file of some sort given that xrandr finds it just fine. I'm just perplexed by why it goes AWOL after one connect/disconnect. Now that you mention it, it could be the docking station internals, as I'm assuming most folks would be using this to plug in their computer, then completely remove it to go elsewhere, and then come back to their desk. Thus, they'd be physically disconnecting it vs. just toggling?
    That said, I'm pretty sure I can use Windows Fn+F4 to toggle laptop vs. laptop + "projector" (what Win7 calls any external display) all day with no issues, so I'd think xrandr should be able to do the same?
    Thanks for the input and links.

  • Dual monitor issues

    Ok so (again) I'm trying to set up dual monitors.
    My laptop has no backlight so I use a normal CRT as output
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen1" 0 0
    Screen 1 "Screen0" LeftOf "Screen1"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "USB Mouse" "CorePointer"
    #Option "Xinerama" "true"
    #Option "Clone" "off"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    Option "AutoAddDevices" "False"
    Option "DontZap" "False"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/local"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    FontPath "/usr/share/fonts/artwiz-fonts"
    EndSection
    Section "Module"
    Load "ddc"
    Load "drm"
    Load "dbe"
    Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap"
    Load "freetype"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "SendCoreEvents" "true"
    Option "Protocol" "IMPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "5"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    #Option "DPMS" "No"
    #HorizSync 28.0 - 96.0 # Warning: This may fry old Monitors
    #VertRefresh 50.0 - 75.0 # Very conservative. May flicker.
    ModeLine "1024x768" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync Interlace
    ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
    ModeLine "1024x768" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
    ModeLine "1024x768" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
    ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
    ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync
    ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync
    ModeLine "1280x1024" 190.96 1280 1376 1520 1760 1024 1025 1028 1085 -HSync +Vsync
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "ati"
    VendorName "ATI Technologies Inc"
    BoardName "M56P [Radeon Mobility X1600]"
    BusID "PCI:1:0:0"
    Option "AGPMode" "4"
    Option "ColorTiling" "on"
    Option "AccelMethod" "EXA"
    Option "AGPFastWrite" "yes"
    Option "DRI" "on"
    Option "DDCMode" "True"
    Option "MonitorLayout" "LVDS,CRT"
    EndSection
    Section "Device"
    Identifier "Card1"
    Driver "ati"
    VendorName "ATI Technologies Inc"
    BoardName "M56P [Radeon Mobility X1600]"
    BusID "PCI:1:0:0"
    Option "AGPMode" "4"
    Option "ColorTiling" "on"
    Option "AccelMethod" "EXA"
    Option "AGPFastWrite" "yes"
    Option "DRI" "on"
    Option "DDCMode" "True"
    Option "MonitorLayout" "LVDS,CRT"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1280x800" "1024x768"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Card1"
    Monitor "Monitor1"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1280x1024" "1024x768"
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    I get that ^^: looks like the VGA screen IS 1280x1024, but for some reason ratpoison thinks it's 1280x800 (all open windows have that size).
    this does not happen in DWM, but should work ok with ratpoison too...so I'm guessing it's a wrong setup on my part.
    Enabling Xinerama in xorg.conf doesn't even start X at all...it segfaults
    What other steps should I take to makea working dual monitor environment? I would like to have 2 X screens btw (my laptop to be screen :1 and CRT screen :0 (the default))

    Scratch that..it was working..but silly me forgot to use ":nextscreen" in Ratpoison..so the windows would open at 1280x800 since the damn thing though I'm still on the first monitor

  • How do i use Desktop PC (Mini Hdmi or DVI) to imac27 as monitor

    How do i use Desktop Pc through imac27 as monitor? first of all i dont want to use bootcamp. cos it dont run high end game, this is a reason i want to use my pc .
    my Graphics Card use Dvi or mini Hdmi, so which kind of Adapter to use and want full Resolution.
    Thx.
    p.s sry english not my first.^^)

    First of all, what do you mean by plug in one set of speakers on your PC? if am not mistaken the card has 3 plugs for a default 5. surround sound. Yes your card can do 5. surround soud, but for that you need to have the 5. surround sound speakers, otherwise well it won't be 5. To get any audio from your TV, or Satelite Box, you need these items and ste
    ps.
    Make sure your TV or satelite box has 2 RCA's female plugs labeled (Output) to deli'ver the sound to another device *(from your Satelite or TV to the now dead 5. surround sound)? 2. Your computer must be on at ALL times to transmit (or play) the sound from your TV or satelite box. 3 you need a?Y?RCA to 3.5mm plug jack cable (they are at allMart or Bull'sEye stores for 2$. its a cable that has the 2 male RCA's 's white 's red at one end, the other end will have the classic headphone jack *(you can always use this cable to transmit any audio coming from any device such as MP3, CD, DVD, Laptop, TV, and many other devices to your 5. surround sound in the living room or the computer) 4. Plug the Y RCA in the input port in your Audigy2Zs sound card. Make sure the Mic, and AUX are on mute, and that the Line In volume is at 70% and your TV, Satelite Box audio is at 50%. If its too low volume watch out, you'll be controling about?4 volume settings *(the TV or Satelite Box, the Line-In, Master Volume on the sound card, and Speaker Volume) 5 Sit back and enjoy!

  • How do i get dual monitors to work with bootcamp (windows 7)

    i have a macbook pro intel core i7
    using a VGA adapter for connection of the monitor
    when i use the mac side the dual screens work perfectly, but when i use bootcamp with windows 7 the screen stays blank, i know it ver recognizes it because when i drag my mouse over to the right it goes out of the screen and then i have to drag for a while before its back on the mac screen, so it is being used but not being displayed. also when i first start up windows its shows the boot screen on the monitor aswel but then goes blank.

    If you are talking about MS Windows then you need to launch either Boot Camp or run it in Virtualization app such as Parallels or VM Fusion.  You also need a valid license of MS Windows.However if that is not what you mean then you must be much more specific. For example:
    "I want to share some files between my PC running Windows 7 and my new iMac running 10.9.3, how do I go about that?"

  • Ver 10.0.1.  Entire screen blacks out for a few seconds when scrolling.

    I recently updated to Reader X 10.0.1.  Now when I scroll through a large document my entire screen blacks out for a few seconds.  So far it has recovered.  I get an error message saying that the NVidia nView driver (ver. 135.50) has stopped responding.  I am running Windows 7 Pro on an HP Laptop, feeding to a large Samsung monitor.  Never happened prior to this update.  Any fixes/ideas?

    You are still under warranty.  Call Apple Care. Make sure you get a case number as all repairs have an additional 90 days of warranty. 
    #1 - You have 14 days from the date of purchase to return your computer with no questions asked.
    #2 - You have 90 days of FREE phone tech support.
    #3 - You have the standard one year Apple warranty.
    #4 - If you've purchased an AppleCare Protection Plan, your warranty last for 3 years.   You can obtain AppleCare anytime up to the first year of the purchase of your computer.
    Take FULL advantage of your warranty.  Posting on a message board should be done as a last resort and if you are out of warranty or Apple Care has expired.

  • Xorg 1.6, nvidia brokenness w/ dual monitors [SOLVED]

    Hi,
    I upgraded this past week to xorg-server 1.6.1-1, nvidia 180.44-1, and kernel26 2.6.29.1-4.  When I rebooted today I found a few things are broken:
    I have a laptop and external monitor dual screen setup where each screen is a separate x screen, as setup by nvidia-settings.  After upgrading if I hold down any key for half a second or more (to trigger key repeat), my display on both monitors goes black and my mouse and keyboard stop responding (can't switch terminals, can't kill x...).  Resuming from xscreensaver also triggers this same problem.
    Another oddity is that when I move my mouse cursor from one monitor to the other a lingering "copy" of the cursor stays on the monitor I just move away from at the transition point to the other monitor.
    If I physically disconnect my external monitor (w/o changing xorg.conf) X displays none of the problems listed above.
    My xorg.conf is below.  Most of it is probably not useful, although I should point out that I have input hotplugging disabled w/ AutoAddDevices false:
    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings: version 1.0 (buildmeister@builder57) Thu Jul 17 18:40:12 PDT 2008
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder63) Thu Jun 5 00:10:21 PDT 2008
    # Auto-generated by Archie mkxcfg
    # Auto-generated by Archie mkxcfg
    Section "ServerLayout"
    # PS/2 Mouse not detected
    # Serial Mouse not detected
    Identifier "Xorg Configured"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "USB Mouse" "CorePointer"
    InputDevice "Touchpad" "SendCoreEvents"
    Option "Xinerama" "true"
    EndSection
    Section "Files"
    # Additional fonts: Locale, Gimp, TTF...
    # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
    # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    FontPath "/usr/share/fonts/local"
    EndSection
    Section "Module"
    Load "ddc" # ddc probing of monitor
    Load "dbe"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    Load "type1"
    Load "freetype"
    Load "record"
    Load "synaptics"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    Option "Xinerama" "1"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
    Identifier "Serial Mouse"
    Driver "mouse"
    Option "Protocol" "Microsoft"
    Option "Device" "/dev/ttyS0"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "PS/2 Mouse"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "ZAxisMapping" "4 5"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "SendCoreEvents" "true"
    Option "Protocol" "IMPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "5"
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "Device" "/dev/input/mouse0"
    Option "Protocol" "auto-dev"
    Option "LeftEdge" "1700"
    Option "RightEdge" "5300"
    Option "TopEdge" "1700"
    Option "BottomEdge" "4200"
    Option "FingerLow" "25"
    Option "FingerHigh" "30"
    Option "MaxTapTime" "0"
    Option "MaxTapMove" "220"
    Option "VertScrollDelta" "0"
    Option "MinSpeed" "0.06"
    Option "MaxSpeed" "0.12"
    Option "AccelFactor" "0.0010"
    Option "SHMConfig" "on"
    Option "Emulate3Buttons" "on"
    EndSection
    Section "Monitor"
    # Warning: This may fry old Monitors
    # Very conservative. May flicker.
    # VertRefresh 50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
    # Default modes distilled from
    # "VESA and Industry Standards and Guide for Computer Display Monitor
    # Timing", version 1.0, revision 0.8, adopted September 17, 1998.
    # $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
    # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "LPL"
    HorizSync 30.0 - 75.0
    VertRefresh 60.0
    ModeLine "640x350" 31.5 640 672 736 832 350 382 385 445 +hsync -vsync
    ModeLine "640x400" 31.5 640 672 736 832 400 401 404 445 -hsync +vsync
    ModeLine "720x400" 35.5 720 756 828 936 400 401 404 446 -hsync +vsync
    ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
    ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
    ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
    ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
    ModeLine "800x600" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
    ModeLine "800x600" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
    ModeLine "800x600" 50.0 800 856 976 1040 600 637 643 666 +hsync +vsync
    ModeLine "800x600" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync
    ModeLine "800x600" 56.3 800 832 896 1048 600 601 604 631 +hsync +vsync
    ModeLine "1024x768" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync interlace
    ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
    ModeLine "1024x768" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
    ModeLine "1024x768" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
    ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
    ModeLine "1152x864" 108.0 1152 1216 1344 1600 864 865 868 900 +hsync +vsync
    ModeLine "1280x960" 108.0 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync
    ModeLine "1280x960" 148.5 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync
    ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync
    ModeLine "1600x1200" 162.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 175.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 189.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 202.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 229.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1792x1344" 204.8 1792 1920 2120 2448 1344 1345 1348 1394 -hsync +vsync
    ModeLine "1792x1344" 261.0 1792 1888 2104 2456 1344 1345 1348 1417 -hsync +vsync
    ModeLine "1856x1392" 218.3 1856 1952 2176 2528 1392 1393 1396 1439 -hsync +vsync
    ModeLine "1856x1392" 288.0 1856 1984 2208 2560 1392 1393 1396 1500 -hsync +vsync
    ModeLine "1920x1440" 234.0 1920 2048 2256 2600 1440 1441 1444 1500 -hsync +vsync
    ModeLine "1920x1440" 297.0 1920 2064 2288 2640 1440 1441 1444 1500 -hsync +vsync
    ModeLine "1800x1440" 230 1800 1896 2088 2392 1440 1441 1444 1490 +hsync +vsync
    ModeLine "1800x1440" 250 1800 1896 2088 2392 1440 1441 1444 1490 +hsync +vsync
    ModeLine "640x480" 43.16 640 680 744 848 480 481 484 509 -hsync +vsync
    ModeLine "768x576" 34.96 768 792 872 976 576 577 580 597 -hsync +vsync
    ModeLine "768x576" 42.93 768 800 880 992 576 577 580 601 -hsync +vsync
    ModeLine "768x576" 45.51 768 808 888 1008 576 577 580 602 -hsync +vsync
    ModeLine "768x576" 51.84 768 808 888 1008 576 577 580 605 -hsync +vsync
    ModeLine "768x576" 62.57 768 816 896 1024 576 577 580 611 -hsync +vsync
    ModeLine "800x600" 68.18 800 848 936 1072 600 601 604 636 -hsync +vsync
    ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -hsync +vsync
    ModeLine "1152x864" 81.62 1152 1216 1336 1520 864 865 868 895 -hsync +vsync
    ModeLine "1152x864" 119.65 1152 1224 1352 1552 864 865 868 907 -hsync +vsync
    ModeLine "1152x864" 143.47 1152 1232 1360 1568 864 865 868 915 -hsync +vsync
    ModeLine "1280x960" 124.54 1280 1368 1504 1728 960 961 964 1001 -hsync +vsync
    ModeLine "1280x960" 129.86 1280 1368 1504 1728 960 961 964 1002 -hsync +vsync
    ModeLine "1280x960" 178.99 1280 1376 1520 1760 960 961 964 1017 -hsync +vsync
    ModeLine "1280x1024" 190.96 1280 1376 1520 1760 1024 1025 1028 1085 -hsync +vsync
    ModeLine "1400x1050" 122.61 1400 1488 1640 1880 1050 1051 1054 1087 -hsync +vsync
    ModeLine "1400x1050" 149.34 1400 1496 1648 1896 1050 1051 1054 1094 -hsync +vsync
    ModeLine "1400x1050" 155.85 1400 1496 1648 1896 1050 1051 1054 1096 -hsync +vsync
    ModeLine "1400x1050" 179.26 1400 1504 1656 1912 1050 1051 1054 1103 -hsync +vsync
    ModeLine "1400x1050" 214.39 1400 1512 1664 1928 1050 1051 1054 1112 -hsync +vsync
    ModeLine "1600x1200" 280.64 1600 1728 1904 2208 1200 1201 1204 1271 -hsync +vsync
    Option "DPMS" "true"
    # HorizSync 28.0 - 78.0 # Warning: This may fry very old Monitors
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Unknown"
    ModelName "Samsung SyncMaster"
    HorizSync 30.0 - 81.0
    VertRefresh 56.0 - 75.0
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "nvidia"
    VendorName "All"
    BoardName "All"
    Option "NoLogo" "true"
    EndSection
    Section "Device"
    Identifier "Videocard0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce Go 7300"
    BusID "PCI:1:0:0"
    Screen 0
    Option "NoLogo" "true"
    EndSection
    Section "Device"
    Identifier "Videocard1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce Go 7300"
    BusID "PCI:1:0:0"
    Screen 1
    Option "NoLogo" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Videocard0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "AddARGBGLXVisuals" "True"
    Option "TwinView" "0"
    Option "metamodes" "DFP-0: 1280x800 +0+0; DFP-0: 1024x768 +0+0; DFP-0: 800x600 +0+0; DFP-0: 640x480 +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Videocard1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "DFP-1: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    Section "ServerFlags"
    Option "AutoAddDevices" "False"
    Option "DontZap" "False"
    EndSection
    Any help would be greatly appreciated!
    Last edited by nonexistent (2009-04-23 01:54:18)

    have you looked at /var/log/xorg.0.log for warnings and errors?
    you need to get rid of ..
        Load           "type1"
        Load           "freetype"
    If you want independent X screens you need to get rid of..
        Option         "Xinerama" "1"
    or change "1" to "0" or "false"
    For two screens you should only need two device sections and you have three.
    Alot of people are having good results with a minimal xorg.conf with the new xorg-server. I can't really say too much about it as I still use my xorg.conf, although I could probably cut it down quite a bit.
    It looks like your xorg.conf needs a lot of tweaking. Or you could just delete most everything in it and let autoconfig do it's thing. Then just add little by little till you get everything working.
    Not sure how much it will help because i'm not using a laptop, but rather a desktop, but here's my working xorg.conf set up with nvidia and three seperate X screens.
    # Xorg configuration file altered by Leigh
    # Updated (Dec 2008)
    # Three independent screens
    # Three cards... (GeForce7900 PCI-E, GeForce6800 PCI-E, GeForce4 MX PCI)
    # Monitors... (Two Dell 2005 FPW's, One NEC MultiSync FE1250+ CRT)
    # Note: (Due to GeForce4 MX, I need to use the legacy nvidia drivers, nvidia-96xx.)
    Section "ServerLayout"
    Identifier "Multihead Layout"
    Screen "Screen1" 0 0
    Screen "Screen2" RightOf "Screen1"
    Screen "Screen3" LeftOf "Screen1"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Mouse1" "CorePointer"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "0"
    Option "AutoAddDevices" "false"
    Option "AllowEmptyInput" "false"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/msttf"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Chinese"
    FontPath "/usr/share/fonts/asian-misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/artwiz-fonts"
    FontPath "/usr/share/fonts/speedo"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/handwritten"
    FontPath "/usr/share/fonts/script"
    FontPath "/usr/share/emacs/fonts"
    EndSection
    Section "Module"
    Load "dbe"
    Load "v4l"
    Load "ddc"
    Load "extmod"
    Load "glx"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc104"
    Option "XkbLayout" "us"
    EndSection
    Section "InputDevice"
    Identifier "Mouse1"
    Driver "mouse"
    Option "CorePointer"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "IMPS/2"
    Option "Buttons" "7"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "DELL"
    ModelName "Dell 2005FPW"
    HorizSync 30.0 - 83.0
    VertRefresh 56.0 - 75.0
    ModeLine "1680x1050" 119.0 1680 1728 1760 1840 1050 1053 1059 1080 -hsync +vsync
    Option "dpms"
    EndSection
    Section "Monitor"
    Identifier "Monitor2"
    VendorName "DELL"
    ModelName "Dell 2005FPW"
    HorizSync 30.0 - 83.0
    VertRefresh 56.0 - 75.0
    ModeLine "1680x1050" 119.0 1680 1728 1760 1840 1050 1053 1059 1080 -hsync +vsync
    Option "dpms"
    EndSection
    Section "Monitor"
    Identifier "Monitor3"
    VendorName "NEC"
    ModelName "NEC MultiSync FE1250"
    HorizSync 31.0 - 110.0
    VertRefresh 50.0 - 160.0
    ModeLine "1280x1024" 80.0 1280 1296 1512 1568 1024 1025 1037 1165 interlace
    ModeLine "1280x1024" 126.5 1280 1312 1472 1696 1024 1032 1040 1068 -hsync -vsync
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync
    ModeLine "1280x1024" 181.8 1280 1312 1440 1696 1024 1031 1046 1072 -hsync -vsync
    Option "dpms"
    EndSection
    Section "Device"
    Identifier "Device1"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "NVIDIA GeForce7900"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    Identifier "Device2"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "NVIDIA GeForce6800"
    BusID "PCI:4:0:0"
    EndSection
    Section "Device"
    Identifier "Device3"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "NVIDIA GeForce4 MX 440"
    BusID "PCI:3:4:0"
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "UseDisplayDevice" "DFP-0"
    Option "IgnoreDisplayDevices" "TV-0"
    Option "NvAGP" "3"
    Option "RenderAccel" "true"
    Option "AllowDDCCI" "true"
    Option "AllowGLXWithComposite" "true"
    Option "AddARGBGLXVisuals" "true"
    Option "UseEdidFreqs" "true"
    Option "UseEdidDpi" "false"
    Option "DPI" "98 x 97"
    Option "HWCursor" "true"
    SubSection "Display"
    Depth 8
    Modes "1680x1050" "1024x768"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1680x1050" "1024x768"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1680x1050" "1024x768"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1680x1050" "1024x768"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen2"
    Device "Device2"
    Monitor "Monitor2"
    DefaultDepth 24
    Option "UseDisplayDevice" "DFP-0"
    Option "IgnoreDisplayDevices" "TV-0"
    Option "NvAGP" "3"
    Option "RenderAccel" "true"
    Option "AllowDDCCI" "true"
    Option "AllowGLXWithComposite" "true"
    Option "AddARGBGLXVisuals" "true"
    Option "UseEdidFreqs" "true"
    Option "UseEdidDpi" "false"
    Option "DPI" "98 x 97"
    Option "HWCursor" "true"
    SubSection "Display"
    Depth 8
    Modes "1680x1050" "1024x768"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1680x1050" "1024x768"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1680x1050" "1024x768"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1680x1050" "1024x768"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen3"
    Device "Device3"
    Monitor "Monitor3"
    DefaultDepth 24
    Option "UseDisplayDevice" "CRT-0"
    Option "IgnoreDisplayDevices" "TV-0"
    Option "NvAGP" "3"
    Option "RenderAccel" "true"
    Option "AllowDDCCI" "true"
    Option "AllowGLXWithComposite" "true"
    Option "AddARGBGLXVisuals" "true"
    Option "UseEdidFreqs" "true"
    Option "UseEdidDpi" "false"
    Option "DPI" "96 x 96"
    Option "HWCursor" "true"
    SubSection "Display"
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "true"
    EndSection
    Last edited by Leigh (2009-04-22 10:04:56)

  • Black screen after logging in KDE (dual monitor)

    Hi everybody,
    I'm having a severe problem with kde 4.12.2; I'll explain my settings:
    1) A screen 2560x1440 on DVI
    2) A screen 1920x1080 on VGA
    My /etc/X11/xorg.conf is this
    Section "Monitor"
    Identifier "DVI-I-1"
    Option "Primary" "true"
    Option "PreferredMode" "2560x1440"
    EndSection
    Section "Monitor"
    Identifier "VGA-1"
    Option "LeftOf" "DVI-I-1"
    Option "PreferredMode" "1920x1080"
    EndSection
    when kdm starts I can see login manager on both screen (each one with the correct resolution). As far as I log in all disappear on both screen: it remains only a completely black screen (in which I manage to recognize mouse pointer). The strange fact is that I can still use yakuake (without seeing it), as a matter of facts if I digit "reboot" on command line in yakualke, my PC effectively reboots... but i cannot see anything.
    If I use only one monitor (disconnecting the other) all is ok.
    I've also i3 working perfectly with the same configuration.
    Please help me!

    dmesg return this
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.13.5-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.2 20140206 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Feb 23 00:25:24 CET 2014
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=76b38aee-1933-48a0-b00b-2166f50b45fc ro verbose
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e4c00-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf77ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf780000-0x00000000bf797fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bf798000-0x00000000bf7dbfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bf7dc000-0x00000000bfffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000033fffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.5 present.
    [ 0.000000] DMI: System manufacturer System Product Name/P6TD DELUXE, BIOS 0106 07/15/2009
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x340000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-E3FFF write-protect
    [ 0.000000] E4000-EBFFF write-through
    [ 0.000000] EC000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask E00000000 write-back
    [ 0.000000] 1 base 200000000 mask F00000000 write-back
    [ 0.000000] 2 base 300000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0C0000000 mask FC0000000 uncachable
    [ 0.000000] 4 base 0BF800000 mask FFF800000 uncachable
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xbf800000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbf780 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b3f000, 0x01b3ffff] PGTABLE
    [ 0.000000] BRK [0x01b40000, 0x01b40fff] PGTABLE
    [ 0.000000] BRK [0x01b41000, 0x01b41fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x33fe00000-0x33fffffff]
    [ 0.000000] [mem 0x33fe00000-0x33fffffff] page 2M
    [ 0.000000] BRK [0x01b42000, 0x01b42fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x33c000000-0x33fdfffff]
    [ 0.000000] [mem 0x33c000000-0x33fdfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x300000000-0x33bffffff]
    [ 0.000000] [mem 0x300000000-0x33bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xbf77ffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0xbf5fffff] page 2M
    [ 0.000000] [mem 0xbf600000-0xbf77ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x2ffffffff]
    [ 0.000000] [mem 0x100000000-0x2ffffffff] page 2M
    [ 0.000000] BRK [0x01b43000, 0x01b43fff] PGTABLE
    [ 0.000000] BRK [0x01b44000, 0x01b44fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x379f0000-0x37ceffff]
    [ 0.000000] ACPI: RSDP 00000000000fb250 000014 (v00 ACPIAM)
    [ 0.000000] ACPI: RSDT 00000000bf780000 000040 (v01 071509 RSDT1009 20090715 MSFT 00000097)
    [ 0.000000] ACPI: FACP 00000000bf780200 000084 (v01 071509 FACP1009 20090715 MSFT 00000097)
    [ 0.000000] ACPI: DSDT 00000000bf7804b0 00B62E (v01 A1438 A1438001 00000001 INTL 20060113)
    [ 0.000000] ACPI: FACS 00000000bf798000 000040
    [ 0.000000] ACPI: APIC 00000000bf780390 0000D8 (v01 071509 APIC1009 20090715 MSFT 00000097)
    [ 0.000000] ACPI: MCFG 00000000bf780470 00003C (v01 071509 OEMMCFG 20090715 MSFT 00000097)
    [ 0.000000] ACPI: OEMB 00000000bf798040 000072 (v01 071509 OEMB1009 20090715 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000bf78f4b0 000038 (v01 071509 OEMHPET 20090715 MSFT 00000097)
    [ 0.000000] ACPI: OSFR 00000000bf78f4f0 0000B0 (v01 071509 OEMOSFR 20090715 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000bf79a140 00249F (v01 DpgPmm CpuPm 00000012 INTL 20060113)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000033fffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x33fffffff]
    [ 0.000000] NODE_DATA [mem 0x33fff2000-0x33fff6fff]
    [ 0.000000] [ffffea0000000000-ffffea000cffffff] PMD -> [ffff880333600000-ffff88033f5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x33fffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0xbf77ffff]
    [ 0.000000] node 0: [mem 0x100000000-0x33fffffff]
    [ 0.000000] On node 0 totalpages: 3143454
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3998 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 12190 pages used for memmap
    [ 0.000000] DMA32 zone: 780160 pages, LIFO batch:31
    [ 0.000000] Normal zone: 36864 pages used for memmap
    [ 0.000000] Normal zone: 2359296 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x88] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x89] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x8a] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x8b] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x8c] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x8d] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x8e] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x8f] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: IOAPIC (id[0x09] address[0xfec8a000] gsi_base[24])
    [ 0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec8a000, GSI 24-47
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 16 CPUs, 8 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 64
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000e4fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e5000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbf780000-0xbf797fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbf798000-0xbf7dbfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbf7dc000-0xbfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffdfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
    [ 0.000000] e820: [mem 0xc0000000-0xfedfffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:16 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88033fc00000 s86336 r8192 d24256 u131072
    [ 0.000000] pcpu-alloc: s86336 r8192 d24256 u131072 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 3094315
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=76b38aee-1933-48a0-b00b-2166f50b45fc ro verbose
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 12294300K/12573816K available (5270K kernel code, 836K rwdata, 1672K rodata, 1128K init, 1324K bss, 279516K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=16.
    [ 0.000000] NR_IRQS:8448 nr_irqs:1216 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 50331648 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 2672.847 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5347.43 BogoMIPS (lpj=8909490)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000035] Security Framework initialized
    [ 0.000043] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000044] Yama: becoming mindful.
    [ 0.001039] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.004061] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.005331] Mount-cache hash table entries: 256
    [ 0.005505] Initializing cgroup subsys memory
    [ 0.005511] Initializing cgroup subsys devices
    [ 0.005512] Initializing cgroup subsys freezer
    [ 0.005514] Initializing cgroup subsys net_cls
    [ 0.005515] Initializing cgroup subsys blkio
    [ 0.005533] CPU: Physical Processor ID: 0
    [ 0.005534] CPU: Processor Core ID: 0
    [ 0.005538] mce: CPU supports 9 MCE banks
    [ 0.005547] CPU0: Thermal monitoring enabled (TM1)
    [ 0.005555] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 6
    [ 0.005627] Freeing SMP alternatives memory: 20K (ffffffff819ed000 - ffffffff819f2000)
    [ 0.006541] ACPI: Core revision 20131115
    [ 0.010413] ACPI: All ACPI Tables successfully acquired
    [ 0.036170] ftrace: allocating 21057 entries in 83 pages
    [ 0.045404] Switched APIC routing to physical flat.
    [ 0.045954] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.078948] smpboot: CPU0: Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz (fam: 06, model: 1a, stepping: 05)
    [ 0.241764] APIC calibration not consistent with PM-Timer: 156ms instead of 100ms
    [ 0.241767] APIC delta adjusted to PM-Timer: 835226 (1308515)
    [ 0.241784] Performance Events: PEBS fmt1+, 16-deep LBR, Nehalem events, Intel PMU driver.
    [ 0.241790] perf_event_intel: CPU erratum AAJ80 worked around
    [ 0.241791] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
    [ 0.241793] ... version: 3
    [ 0.241794] ... bit width: 48
    [ 0.241795] ... generic registers: 4
    [ 0.241796] ... value mask: 0000ffffffffffff
    [ 0.241797] ... max period: 000000007fffffff
    [ 0.241798] ... fixed-purpose events: 3
    [ 0.241799] ... event mask: 000000070000000f
    [ 0.268512] x86: Booting SMP configuration:
    [ 0.281907] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.268515] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
    [ 0.401726] x86: Booted up 1 node, 8 CPUs
    [ 0.401730] smpboot: Total of 8 processors activated (42782.45 BogoMIPS)
    [ 0.407746] devtmpfs: initialized
    [ 0.410503] PM: Registering ACPI NVS region [mem 0xbf798000-0xbf7dbfff] (278528 bytes)
    [ 0.411349] RTC time: 10:25:56, date: 02/27/14
    [ 0.411386] NET: Registered protocol family 16
    [ 0.411473] cpuidle: using governor ladder
    [ 0.411475] cpuidle: using governor menu
    [ 0.411497] ACPI: bus type PCI registered
    [ 0.411499] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.411555] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.411557] PCI: not using MMCONFIG
    [ 0.411559] PCI: Using configuration type 1 for base access
    [ 0.412212] bio: create slab <bio-0> at 0
    [ 0.412334] ACPI: Added _OSI(Module Device)
    [ 0.412336] ACPI: Added _OSI(Processor Device)
    [ 0.412337] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.412338] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.414291] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.443864] ACPI: SSDT 00000000bf7980c0 000403 (v01 DpgPmm P001Ist 00000011 INTL 20060113)
    [ 0.444092] ACPI: Dynamic OEM Table Load:
    [ 0.444094] ACPI: SSDT (null) 000403 (v01 DpgPmm P001Ist 00000011 INTL 20060113)
    [ 0.444281] ACPI: SSDT 00000000bf7984d0 000403 (v01 DpgPmm P002Ist 00000012 INTL 20060113)
    [ 0.444506] ACPI: Dynamic OEM Table Load:
    [ 0.444508] ACPI: SSDT (null) 000403 (v01 DpgPmm P002Ist 00000012 INTL 20060113)
    [ 0.444696] ACPI: SSDT 00000000bf7988e0 000403 (v01 DpgPmm P003Ist 00000012 INTL 20060113)
    [ 0.444922] ACPI: Dynamic OEM Table Load:
    [ 0.444924] ACPI: SSDT (null) 000403 (v01 DpgPmm P003Ist 00000012 INTL 20060113)
    [ 0.445121] ACPI: SSDT 00000000bf798cf0 000403 (v01 DpgPmm P004Ist 00000012 INTL 20060113)
    [ 0.445351] ACPI: Dynamic OEM Table Load:
    [ 0.445353] ACPI: SSDT (null) 000403 (v01 DpgPmm P004Ist 00000012 INTL 20060113)
    [ 0.455263] ACPI: SSDT 00000000bf799100 000403 (v01 DpgPmm P005Ist 00000012 INTL 20060113)
    [ 0.455491] ACPI: Dynamic OEM Table Load:
    [ 0.455493] ACPI: SSDT (null) 000403 (v01 DpgPmm P005Ist 00000012 INTL 20060113)
    [ 0.468586] ACPI: SSDT 00000000bf799510 000403 (v01 DpgPmm P006Ist 00000012 INTL 20060113)
    [ 0.468816] ACPI: Dynamic OEM Table Load:
    [ 0.468818] ACPI: SSDT (null) 000403 (v01 DpgPmm P006Ist 00000012 INTL 20060113)
    [ 0.481919] ACPI: SSDT 00000000bf799920 000403 (v01 DpgPmm P007Ist 00000012 INTL 20060113)
    [ 0.482150] ACPI: Dynamic OEM Table Load:
    [ 0.482152] ACPI: SSDT (null) 000403 (v01 DpgPmm P007Ist 00000012 INTL 20060113)
    [ 0.508416] ACPI: SSDT 00000000bf799d30 000403 (v01 DpgPmm P008Ist 00000012 INTL 20060113)
    [ 0.508658] ACPI: Dynamic OEM Table Load:
    [ 0.508660] ACPI: SSDT (null) 000403 (v01 DpgPmm P008Ist 00000012 INTL 20060113)
    [ 0.508816] ACPI: Interpreter enabled
    [ 0.508824] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
    [ 0.508836] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.508837] ACPI: Using IOAPIC for interrupt routing
    [ 0.508859] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.509714] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.523249] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.523342] ACPI: No dock devices found.
    [ 0.528784] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.528789] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.528793] acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    [ 0.529079] PCI host bridge to bus 0000:00
    [ 0.529082] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.529084] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.529085] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.529087] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.529088] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
    [ 0.529090] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xdfffffff]
    [ 0.529092] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfed8ffff]
    [ 0.529103] pci 0000:00:00.0: [8086:3405] type 00 class 0x060000
    [ 0.529153] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
    [ 0.529228] pci 0000:00:01.0: [8086:3408] type 01 class 0x060400
    [ 0.529276] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.529323] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 0.529354] pci 0000:00:03.0: [8086:340a] type 01 class 0x060400
    [ 0.529406] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
    [ 0.529452] pci 0000:00:03.0: System wakeup disabled by ACPI
    [ 0.529484] pci 0000:00:07.0: [8086:340e] type 01 class 0x060400
    [ 0.529532] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
    [ 0.529578] pci 0000:00:07.0: System wakeup disabled by ACPI
    [ 0.529614] pci 0000:00:14.0: [8086:342e] type 00 class 0x080000
    [ 0.529714] pci 0000:00:14.1: [8086:3422] type 00 class 0x080000
    [ 0.529812] pci 0000:00:14.2: [8086:3423] type 00 class 0x080000
    [ 0.529909] pci 0000:00:14.3: [8086:3438] type 00 class 0x080000
    [ 0.530003] pci 0000:00:1a.0: [8086:3a37] type 00 class 0x0c0300
    [ 0.530042] pci 0000:00:1a.0: reg 0x20: [io 0x9800-0x981f]
    [ 0.530127] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.530157] pci 0000:00:1a.1: [8086:3a38] type 00 class 0x0c0300
    [ 0.530197] pci 0000:00:1a.1: reg 0x20: [io 0x9880-0x989f]
    [ 0.530281] pci 0000:00:1a.1: System wakeup disabled by ACPI
    [ 0.530313] pci 0000:00:1a.2: [8086:3a39] type 00 class 0x0c0300
    [ 0.530352] pci 0000:00:1a.2: reg 0x20: [io 0x9c00-0x9c1f]
    [ 0.530435] pci 0000:00:1a.2: System wakeup disabled by ACPI
    [ 0.530472] pci 0000:00:1a.7: [8086:3a3c] type 00 class 0x0c0320
    [ 0.530493] pci 0000:00:1a.7: reg 0x10: [mem 0xf7fff000-0xf7fff3ff]
    [ 0.530576] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.530623] pci 0000:00:1a.7: System wakeup disabled by ACPI
    [ 0.530655] pci 0000:00:1b.0: [8086:3a3e] type 00 class 0x040300
    [ 0.530669] pci 0000:00:1b.0: reg 0x10: [mem 0xf7ff8000-0xf7ffbfff 64bit]
    [ 0.530731] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.530801] pci 0000:00:1c.0: [8086:3a40] type 01 class 0x060400
    [ 0.530865] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.530914] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.530943] pci 0000:00:1c.2: [8086:3a44] type 01 class 0x060400
    [ 0.531006] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.531054] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.531084] pci 0000:00:1c.4: [8086:3a48] type 01 class 0x060400
    [ 0.531147] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.531195] pci 0000:00:1c.4: System wakeup disabled by ACPI
    [ 0.531223] pci 0000:00:1c.5: [8086:3a4a] type 01 class 0x060400
    [ 0.531286] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.531334] pci 0000:00:1c.5: System wakeup disabled by ACPI
    [ 0.531364] pci 0000:00:1d.0: [8086:3a34] type 00 class 0x0c0300
    [ 0.531403] pci 0000:00:1d.0: reg 0x20: [io 0x9080-0x909f]
    [ 0.531488] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.531517] pci 0000:00:1d.1: [8086:3a35] type 00 class 0x0c0300
    [ 0.531557] pci 0000:00:1d.1: reg 0x20: [io 0x9400-0x941f]
    [ 0.531640] pci 0000:00:1d.1: System wakeup disabled by ACPI
    [ 0.531670] pci 0000:00:1d.2: [8086:3a36] type 00 class 0x0c0300
    [ 0.531709] pci 0000:00:1d.2: reg 0x20: [io 0x9480-0x949f]
    [ 0.531797] pci 0000:00:1d.2: System wakeup disabled by ACPI
    [ 0.531837] pci 0000:00:1d.7: [8086:3a3a] type 00 class 0x0c0320
    [ 0.531857] pci 0000:00:1d.7: reg 0x10: [mem 0xf7ffe000-0xf7ffe3ff]
    [ 0.531940] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.531988] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.532016] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
    [ 0.532099] pci 0000:00:1e.0: System wakeup disabled by ACPI
    [ 0.532129] pci 0000:00:1f.0: [8086:3a16] type 00 class 0x060100
    [ 0.532202] pci 0000:00:1f.0: address space collision: [io 0x0800-0x087f] conflicts with ACPI CPU throttle [??? 0x00000810-0x00000815 flags 0x80000000]
    [ 0.532207] pci 0000:00:1f.0: quirk: [io 0x0500-0x053f] claimed by ICH6 GPIO
    [ 0.532210] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0294 (mask 0003)
    [ 0.532214] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 001f)
    [ 0.532306] pci 0000:00:1f.2: [8086:3a20] type 00 class 0x01018f
    [ 0.532320] pci 0000:00:1f.2: reg 0x10: [io 0x8000-0x8007]
    [ 0.532327] pci 0000:00:1f.2: reg 0x14: [io 0x7c00-0x7c03]
    [ 0.532335] pci 0000:00:1f.2: reg 0x18: [io 0x7880-0x7887]
    [ 0.532342] pci 0000:00:1f.2: reg 0x1c: [io 0x7800-0x7803]
    [ 0.532349] pci 0000:00:1f.2: reg 0x20: [io 0x7480-0x748f]
    [ 0.532356] pci 0000:00:1f.2: reg 0x24: [io 0x7400-0x740f]
    [ 0.532447] pci 0000:00:1f.3: [8086:3a30] type 00 class 0x0c0500
    [ 0.532461] pci 0000:00:1f.3: reg 0x10: [mem 0xf7ffd000-0xf7ffd0ff 64bit]
    [ 0.532480] pci 0000:00:1f.3: reg 0x20: [io 0x0400-0x041f]
    [ 0.532557] pci 0000:00:1f.5: [8086:3a26] type 00 class 0x010185
    [ 0.532571] pci 0000:00:1f.5: reg 0x10: [io 0x9000-0x9007]
    [ 0.532578] pci 0000:00:1f.5: reg 0x14: [io 0x8c00-0x8c03]
    [ 0.532585] pci 0000:00:1f.5: reg 0x18: [io 0x8880-0x8887]
    [ 0.532592] pci 0000:00:1f.5: reg 0x1c: [io 0x8800-0x8803]
    [ 0.532599] pci 0000:00:1f.5: reg 0x20: [io 0x8480-0x848f]
    [ 0.532607] pci 0000:00:1f.5: reg 0x24: [io 0x8400-0x840f]
    [ 0.532731] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.532787] pci 0000:02:00.0: [10de:0622] type 00 class 0x030000
    [ 0.532797] pci 0000:02:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
    [ 0.532807] pci 0000:02:00.0: reg 0x14: [mem 0xc0000000-0xdfffffff 64bit pref]
    [ 0.532817] pci 0000:02:00.0: reg 0x1c: [mem 0xf8000000-0xf9ffffff 64bit]
    [ 0.532823] pci 0000:02:00.0: reg 0x24: [io 0xac00-0xac7f]
    [ 0.532830] pci 0000:02:00.0: reg 0x30: [mem 0xfba80000-0xfbafffff pref]
    [ 0.538402] pci 0000:00:03.0: PCI bridge to [bus 02]
    [ 0.538407] pci 0000:00:03.0: bridge window [io 0xa000-0xafff]
    [ 0.538411] pci 0000:00:03.0: bridge window [mem 0xf8000000-0xfbafffff]
    [ 0.538420] pci 0000:00:03.0: bridge window [mem 0xc0000000-0xdfffffff 64bit pref]
    [ 0.538459] pci 0000:00:07.0: PCI bridge to [bus 03]
    [ 0.538511] pci 0000:00:1c.0: PCI bridge to [bus 07]
    [ 0.538519] pci 0000:00:1c.0: bridge window [mem 0xf6f00000-0xf6ffffff 64bit pref]
    [ 0.538584] pci 0000:06:00.0: [11ab:4364] type 00 class 0x020000
    [ 0.538606] pci 0000:06:00.0: reg 0x10: [mem 0xfbdfc000-0xfbdfffff 64bit]
    [ 0.538617] pci 0000:06:00.0: reg 0x18: [io 0xd800-0xd8ff]
    [ 0.538658] pci 0000:06:00.0: reg 0x30: [mem 0xfbdc0000-0xfbddffff pref]
    [ 0.538722] pci 0000:06:00.0: supports D1 D2
    [ 0.538724] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.545073] pci 0000:00:1c.2: PCI bridge to [bus 06]
    [ 0.545078] pci 0000:00:1c.2: bridge window [io 0xd000-0xdfff]
    [ 0.545086] pci 0000:00:1c.2: bridge window [mem 0xfbd00000-0xfbdfffff]
    [ 0.545152] pci 0000:05:00.0: [11ab:6121] type 00 class 0x01018f
    [ 0.545168] pci 0000:05:00.0: reg 0x10: [io 0xcc00-0xcc07]
    [ 0.545179] pci 0000:05:00.0: reg 0x14: [io 0xc880-0xc883]
    [ 0.545190] pci 0000:05:00.0: reg 0x18: [io 0xc800-0xc807]
    [ 0.545201] pci 0000:05:00.0: reg 0x1c: [io 0xc480-0xc483]
    [ 0.545212] pci 0000:05:00.0: reg 0x20: [io 0xc400-0xc40f]
    [ 0.545223] pci 0000:05:00.0: reg 0x24: [mem 0xfbcffc00-0xfbcfffff]
    [ 0.545286] pci 0000:05:00.0: supports D1
    [ 0.545287] pci 0000:05:00.0: PME# supported from D0 D1 D3hot
    [ 0.545326] pci 0000:05:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.545336] pci 0000:00:1c.4: PCI bridge to [bus 05]
    [ 0.545339] pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
    [ 0.545342] pci 0000:00:1c.4: bridge window [mem 0xfbc00000-0xfbcfffff]
    [ 0.545410] pci 0000:04:00.0: [11ab:4364] type 00 class 0x020000
    [ 0.545432] pci 0000:04:00.0: reg 0x10: [mem 0xfbbfc000-0xfbbfffff 64bit]
    [ 0.545443] pci 0000:04:00.0: reg 0x18: [io 0xb800-0xb8ff]
    [ 0.545484] pci 0000:04:00.0: reg 0x30: [mem 0xfbbc0000-0xfbbdffff pref]
    [ 0.545548] pci 0000:04:00.0: supports D1 D2
    [ 0.545549] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.551741] pci 0000:00:1c.5: PCI bridge to [bus 04]
    [ 0.551746] pci 0000:00:1c.5: bridge window [io 0xb000-0xbfff]
    [ 0.551753] pci 0000:00:1c.5: bridge window [mem 0xfbb00000-0xfbbfffff]
    [ 0.551796] pci 0000:08:02.0: [1106:3044] type 00 class 0x0c0010
    [ 0.551812] pci 0000:08:02.0: reg 0x10: [mem 0xfbeff000-0xfbeff7ff]
    [ 0.551822] pci 0000:08:02.0: reg 0x14: [io 0xec00-0xec7f]
    [ 0.551887] pci 0000:08:02.0: supports D2
    [ 0.551888] pci 0000:08:02.0: PME# supported from D2 D3hot D3cold
    [ 0.551951] pci 0000:00:1e.0: PCI bridge to [bus 08] (subtractive decode)
    [ 0.551954] pci 0000:00:1e.0: bridge window [io 0xe000-0xefff]
    [ 0.551957] pci 0000:00:1e.0: bridge window [mem 0xfbe00000-0xfbefffff]
    [ 0.551962] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.551965] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.551967] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.551969] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
    [ 0.551970] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
    [ 0.551972] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfed8ffff] (subtractive decode)
    [ 0.552413] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12 14 15)
    [ 0.552458] ACPI: PCI Interrupt Link [LNKB] (IRQs *5)
    [ 0.552499] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 *11 12 14 15)
    [ 0.552543] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 11 12 *14 15)
    [ 0.552587] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12 14 *15)
    [ 0.552630] ACPI: PCI Interrupt Link [LNKF] (IRQs *3 4 6 7 10 11 12 14 15)
    [ 0.552674] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 6 *7 10 11 12 14 15)
    [ 0.552717] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 6 7 10 11 12 14 15)
    [ 0.552820] ACPI: Enabled 3 GPEs in block 00 to 3F
    [ 0.552826] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.552859] Found 1 acpi root devices
    [ 0.552934] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.552936] vgaarb: loaded
    [ 0.552937] vgaarb: bridge control possible 0000:02:00.0
    [ 0.552965] PCI: Using ACPI for IRQ routing
    [ 0.558640] PCI: Discovered peer bus ff
    [ 0.558641] PCI: root bus ff: using default resources
    [ 0.558642] PCI: Probing PCI hardware (bus ff)
    [ 0.558661] PCI host bridge to bus 0000:ff
    [ 0.558663] pci_bus 0000:ff: root bus resource [io 0x0000-0xffff]
    [ 0.558665] pci_bus 0000:ff: root bus resource [mem 0x00000000-0xfffffffff]
    [ 0.558666] pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
    [ 0.558671] pci 0000:ff:00.0: [8086:2c41] type 00 class 0x060000
    [ 0.558705] pci 0000:ff:00.1: [8086:2c01] type 00 class 0x060000
    [ 0.558738] pci 0000:ff:02.0: [8086:2c10] type 00 class 0x060000
    [ 0.558769] pci 0000:ff:02.1: [8086:2c11] type 00 class 0x060000
    [ 0.558802] pci 0000:ff:03.0: [8086:2c18] type 00 class 0x060000
    [ 0.558835] pci 0000:ff:03.1: [8086:2c19] type 00 class 0x060000
    [ 0.558868] pci 0000:ff:03.4: [8086:2c1c] type 00 class 0x060000
    [ 0.558899] pci 0000:ff:04.0: [8086:2c20] type 00 class 0x060000
    [ 0.558931] pci 0000:ff:04.1: [8086:2c21] type 00 class 0x060000
    [ 0.558961] pci 0000:ff:04.2: [8086:2c22] type 00 class 0x060000
    [ 0.558991] pci 0000:ff:04.3: [8086:2c23] type 00 class 0x060000
    [ 0.559023] pci 0000:ff:05.0: [8086:2c28] type 00 class 0x060000
    [ 0.559054] pci 0000:ff:05.1: [8086:2c29] type 00 class 0x060000
    [ 0.559084] pci 0000:ff:05.2: [8086:2c2a] type 00 class 0x060000
    [ 0.559114] pci 0000:ff:05.3: [8086:2c2b] type 00 class 0x060000
    [ 0.559146] pci 0000:ff:06.0: [8086:2c30] type 00 class 0x060000
    [ 0.559178] pci 0000:ff:06.1: [8086:2c31] type 00 class 0x060000
    [ 0.559209] pci 0000:ff:06.2: [8086:2c32] type 00 class 0x060000
    [ 0.559239] pci 0000:ff:06.3: [8086:2c33] type 00 class 0x060000
    [ 0.559280] pci_bus 0000:ff: busn_res: [bus ff] end is updated to ff
    [ 0.559285] PCI: pci_cache_line_size set to 64 bytes
    [ 0.559364] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
    [ 0.559365] e820: reserve RAM buffer [mem 0xbf780000-0xbfffffff]
    [ 0.559443] NetLabel: Initializing
    [ 0.559444] NetLabel: domain hash size = 128
    [ 0.559445] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.559456] NetLabel: unlabeled traffic allowed by default
    [ 0.559470] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.559474] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.559477] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.561733] Switched to clocksource hpet
    [ 0.565496] pnp: PnP ACPI init
    [ 0.565505] ACPI: bus type PNP registered
    [ 0.565558] system 00:00: [mem 0xfbf00000-0xfbffffff] has been reserved
    [ 0.565560] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
    [ 0.565562] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
    [ 0.565564] system 00:00: [mem 0xfe000000-0xfebfffff] has been reserved
    [ 0.565566] system 00:00: [mem 0xfec8a000-0xfec8afff] could not be reserved
    [ 0.565568] system 00:00: [mem 0xfed10000-0xfed10fff] has been reserved
    [ 0.565570] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.565604] pnp 00:01: [dma 4]
    [ 0.565619] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.565650] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.565670] pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.565691] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.565837] system 00:05: [io 0x0290-0x029f] has been reserved
    [ 0.565841] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.565997] system 00:06: [io 0x04d0-0x04d1] has been reserved
    [ 0.565999] system 00:06: [io 0x0800-0x087f] could not be reserved
    [ 0.566001] system 00:06: [io 0x0500-0x057f] could not be reserved
    [ 0.566004] system 00:06: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.566006] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.566008] system 00:06: [mem 0xfed40000-0xfed8ffff] has been reserved
    [ 0.566010] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.566075] pnp 00:07: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.566123] pnp 00:08: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.566179] system 00:09: [mem 0xffc00000-0xffdfffff] has been reserved
    [ 0.566182] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.566268] system 00:0a: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.566270] system 00:0a: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.566273] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.566356] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.566359] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.566502] system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.566504] system 00:0c: [mem 0x000c0000-0x000cffff] could not be reserved
    [ 0.566506] system 00:0c: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.566508] system 00:0c: [mem 0x00100000-0xbfffffff] could not be reserved
    [ 0.566510] system 00:0c: [mem 0xfed90000-0xffffffff] could not be reserved
    [ 0.566513] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.566610] pnp: PnP ACPI: found 13 devices
    [ 0.566612] ACPI: bus type PNP unregistered
    [ 0.572661] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 07] add_size 1000
    [ 0.572664] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 07] add_size 400000
    [ 0.572671] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000
    [ 0.572678] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 05] add_size 200000
    [ 0.572685] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000
    [ 0.572698] pci 0000:00:1f.0: BAR 13: [io 0x0800-0x087f] has bogus alignment
    [ 0.572702] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 400000
    [ 0.572704] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.572706] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.572708] pci 0000:00:1c.5: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.572710] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.572713] pci 0000:00:1c.0: BAR 14: assigned [mem 0xf0000000-0xf03fffff]
    [ 0.572716] pci 0000:00:1c.2: BAR 15: assigned [mem 0xf0400000-0xf05fffff 64bit pref]
    [ 0.572718] pci 0000:00:1c.4: BAR 15: assigned [mem 0xf0600000-0xf07fffff 64bit pref]
    [ 0.572720] pci 0000:00:1c.5: BAR 15: assigned [mem 0xf0800000-0xf09fffff 64bit pref]
    [ 0.572722] pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff]
    [ 0.572725] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.572733] pci 0000:00:03.0: PCI bridge to [bus 02]
    [ 0.572735] pci 0000:00:03.0: bridge window [io 0xa000-0xafff]
    [ 0.572738] pci 0000:00:03.0: bridge window [mem 0xf8000000-0xfbafffff]
    [ 0.572741] pci 0000:00:03.0: bridge window [mem 0xc0000000-0xdfffffff 64bit pref]
    [ 0.572746] pci 0000:00:07.0: PCI bridge to [bus 03]
    [ 0.572753] pci 0000:00:1c.0: PCI bridge to [bus 07]
    [ 0.572755] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
    [ 0.572759] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf03fffff]
    [ 0.572763] pci 0000:00:1c.0: bridge window [mem 0xf6f00000-0xf6ffffff 64bit pref]
    [ 0.572767] pci 0000:00:1c.2: PCI bridge to [bus 06]
    [ 0.572770] pci 0000:00:1c.2: bridge window [io 0xd000-0xdfff]
    [ 0.572774] pci 0000:00:1c.2: bridge window [mem 0xfbd00000-0xfbdfffff]
    [ 0.572777] pci 0000:00:1c.2: bridge window [mem 0xf0400000-0xf05fffff 64bit pref]
    [ 0.572782] pci 0000:00:1c.4: PCI bridge to [bus 05]
    [ 0.572784] pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
    [ 0.572788] pci 0000:00:1c.4: bridge window [mem 0xfbc00000-0xfbcfffff]
    [ 0.572791] pci 0000:00:1c.4: bridge window [mem 0xf0600000-0xf07fffff 64bit pref]
    [ 0.572796] pci 0000:00:1c.5: PCI bridge to [bus 04]
    [ 0.572798] pci 0000:00:1c.5: bridge window [io 0xb000-0xbfff]
    [ 0.572802] pci 0000:00:1c.5: bridge window [mem 0xfbb00000-0xfbbfffff]
    [ 0.572805] pci 0000:00:1c.5: bridge window [mem 0xf0800000-0xf09fffff 64bit pref]
    [ 0.572810] pci 0000:00:1e.0: PCI bridge to [bus 08]
    [ 0.572812] pci 0000:00:1e.0: bridge window [io 0xe000-0xefff]
    [ 0.572816] pci 0000:00:1e.0: bridge window [mem 0xfbe00000-0xfbefffff]
    [ 0.572823] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.572825] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.572826] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.572828] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
    [ 0.572830] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff]
    [ 0.572831] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfed8ffff]
    [ 0.572833] pci_bus 0000:02: resource 0 [io 0xa000-0xafff]
    [ 0.572834] pci_bus 0000:02: resource 1 [mem 0xf8000000-0xfbafffff]
    [ 0.572836] pci_bus 0000:02: resource 2 [mem 0xc0000000-0xdfffffff 64bit pref]
    [ 0.572838] pci_bus 0000:07: resource 0 [io 0x1000-0x1fff]
    [ 0.572839] pci_bus 0000:07: resource 1 [mem 0xf0000000-0xf03fffff]
    [ 0.572841] pci_bus 0000:07: resource 2 [mem 0xf6f00000-0xf6ffffff 64bit pref]
    [ 0.572842] pci_bus 0000:06: resource 0 [io 0xd000-0xdfff]
    [ 0.572844] pci_bus 0000:06: resource 1 [mem 0xfbd00000-0xfbdfffff]
    [ 0.572846] pci_bus 0000:06: resource 2 [mem 0xf0400000-0xf05fffff 64bit pref]
    [ 0.572847] pci_bus 0000:05: resource 0 [io 0xc000-0xcfff]
    [ 0.572849] pci_bus 0000:05: resource 1 [mem 0xfbc00000-0xfbcfffff]
    [ 0.572850] pci_bus 0000:05: resource 2 [mem 0xf0600000-0xf07fffff 64bit pref]
    [ 0.572852] pci_bus 0000:04: resource 0 [io 0xb000-0xbfff]
    [ 0.572853] pci_bus 0000:04: resource 1 [mem 0xfbb00000-0xfbbfffff]
    [ 0.572855] pci_bus 0000:04: resource 2 [mem 0xf0800000-0xf09fffff 64bit pref]
    [ 0.572856] pci_bus 0000:08: resource 0 [io 0xe000-0xefff]
    [ 0.572858] pci_bus 0000:08: resource 1 [mem 0xfbe00000-0xfbefffff]
    [ 0.572860] pci_bus 0000:08: resource 4 [io 0x0000-0x0cf7]
    [ 0.572861] pci_bus 0000:08: resource 5 [io 0x0d00-0xffff]
    [ 0.572863] pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.572864] pci_bus 0000:08: resource 7 [mem 0x000d0000-0x000dffff]
    [ 0.572866] pci_bus 0000:08: resource 8 [mem 0xc0000000-0xdfffffff]
    [ 0.572867] pci_bus 0000:08: resource 9 [mem 0xf0000000-0xfed8ffff]
    [ 0.572870] pci_bus 0000:ff: resource 4 [io 0x0000-0xffff]
    [ 0.572872] pci_bus 0000:ff: resource 5 [mem 0x00000000-0xfffffffff]
    [ 0.572898] NET: Registered protocol family 2
    [ 0.573067] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.573330] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.573470] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.573491] TCP: reno registered
    [ 0.573508] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.573565] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.573666] NET: Registered protocol family 1
    [ 0.575213] pci 0000:02:00.0: Boot video device
    [ 0.575244] PCI: CLS 64 bytes, default 64
    [ 0.575285] Unpacking initramfs...
    [ 0.626677] Freeing initrd memory: 3072K (ffff8800379f0000 - ffff880037cf0000)
    [ 0.626682] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.626684] software IO TLB [mem 0xbb780000-0xbf780000] (64MB) mapped at [ffff8800bb780000-ffff8800bf77ffff]
    [ 0.626921] Scanning for low memory corruption every 60 seconds
    [ 0.627229] audit: initializing netlink socket (disabled)
    [ 0.627239] type=2000 audit(1393496755.436:1): initialized
    [ 0.638266] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.639483] zbud: loaded
    [ 0.639624] VFS: Disk quotas dquot_6.5.2
    [ 0.639663] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.639799] msgmni has been set to 24018
    [ 0.639849] Key type big_key registered
    [ 0.640034] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.640078] io scheduler noop registered
    [ 0.640079] io scheduler deadline registered
    [ 0.640102] io scheduler cfq registered (default)
    [ 0.640265] pcieport 0000:00:1c.0: enabling device (0106 -> 0107)
    [ 0.640404] pcieport 0000:00:1c.0: irq 64 for MSI/MSI-X
    [ 0.640555] pcieport 0000:00:1c.2: irq 65 for MSI/MSI-X
    [ 0.640707] pcieport 0000:00:1c.4: irq 66 for MSI/MSI-X
    [ 0.640853] pcieport 0000:00:1c.5: irq 67 for MSI/MSI-X
    [ 0.640919] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.640931] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.640968] vesafb: mode is 1600x1200x32, linelength=6400, pages=0
    [ 0.640969] vesafb: scrolling: redraw
    [ 0.640971] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.641397] vesafb: framebuffer at 0xf9000000, mapped to 0xffffc90011b00000, using 7552k, total 7552k
    [ 0.936568] Console: switching to colour frame buffer device 200x75
    [ 1.231708] fb0: VESA VGA frame buffer device
    [ 1.231718] intel_idle: MWAIT substates: 0x1120
    [ 1.231727] intel_idle: v0.4 model 0x1A
    [ 1.231729] intel_idle: lapic_timer_reliable_states 0x2
    [ 1.231914] GHES: HEST is not enabled!
    [ 1.231956] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.232283] Linux agpgart interface v0.103
    [ 1.232350] rtc_cmos 00:02: RTC can wake from S4
    [ 1.232453] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 1.232478] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 1.232561] drop_monitor: Initializing network drop monitor service
    [ 1.232612] TCP: cubic registered
    [ 1.232690] NET: Registered protocol family 10
    [ 1.232826] NET: Registered protocol family 17
    [ 1.232833] Key type dns_resolver registered
    [ 1.233086] registered taskstats version 1
    [ 1.233838] Magic number: 2:438:427
    [ 1.233928] rtc_cmos 00:02: setting system clock to 2014-02-27 10:25:57 UTC (1393496757)
    [ 1.233950] PM: Hibernation image not present or could not be loaded.
    [ 1.234985] Freeing unused kernel memory: 1128K (ffffffff818d3000 - ffffffff819ed000)
    [ 1.234987] Write protecting the kernel read-only data: 8192k
    [ 1.237288] Freeing unused kernel memory: 864K (ffff880001528000 - ffff880001600000)
    [ 1.238780] Freeing unused kernel memory: 376K (ffff8800017a2000 - ffff880001800000)
    [ 1.247402] systemd-udevd[82]: starting version 208
    [ 1.265479] ACPI: bus type USB registered
    [ 1.265514] usbcore: registered new interface driver usbfs
    [ 1.265530] usbcore: registered new interface driver hub
    [ 1.265603] usbcore: registered new device driver usb
    [ 1.266283] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.266427] ehci-pci: EHCI PCI platform driver
    [ 1.266750] SCSI subsystem initialized
    [ 1.266841] ehci-pci 0000:00:1a.7: EHCI Host Controller
    [ 1.266866] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 1.266879] ehci-pci 0000:00:1a.7: debug port 1
    [ 1.266924] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.268635] libata version 3.00 loaded.
    [ 1.269629] ahci 0000:05:00.0: version 3.0
    [ 1.270292] scsi0 : pata_marvell
    [ 1.270425] scsi1 : pata_marvell
    [ 1.270529] ata1: PATA max UDMA/100 cmd 0xcc00 ctl 0xc880 bmdma 0xc400 irq 16
    [ 1.270531] ata2: PATA max UDMA/133 cmd 0xc800 ctl 0xc480 bmdma 0xc408 irq 16
    [ 1.270772] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.270778] ehci-pci 0000:00:1a.7: irq 18, io mem 0xf7fff000
    [ 1.278195] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.278452] hub 1-0:1.0: USB hub found
    [ 1.278459] hub 1-0:1.0: 6 ports detected
    [ 1.278786] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 1.278797] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 1.278810] ehci-pci 0000:00:1d.7: debug port 1
    [ 1.282699] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.282716] ehci-pci 0000:00:1d.7: irq 23, io mem 0xf7ffe000
    [ 1.291553] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.291678] hub 2-0:1.0: USB hub found
    [ 1.291684] hub 2-0:1.0: 6 ports detected
    [ 1.292004] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.292012] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 1.292037] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00009800
    [ 1.292284] hub 3-0:1.0: USB hub found
    [ 1.292294] hub 3-0:1.0: 2 ports detected
    [ 1.292516] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 1.292523] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 1.292552] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00009880
    [ 1.292716] hub 4-0:1.0: USB hub found
    [ 1.292722] hub 4-0:1.0: 2 ports detected
    [ 1.292888] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 1.292892] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    [ 1.292920] uhci_hcd 0000:00:1a.2: irq 19, io base 0x00009c00
    [ 1.293080] hub 5-0:1.0: USB hub found
    [ 1.293085] hub 5-0:1.0: 2 ports detected
    [ 1.293249] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.293254] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    [ 1.293275] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00009080
    [ 1.293440] hub 6-0:1.0: USB hub found
    [ 1.293446] hub 6-0:1.0: 2 ports detected
    [ 1.293611] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.293616] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 1.293636] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00009400
    [ 1.293798] hub 7-0:1.0: USB hub found
    [ 1.293804] hub 7-0:1.0: 2 ports detected
    [ 1.293967] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.293973] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 1.293994] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00009480
    [ 1.294148] hub 8-0:1.0: USB hub found
    [ 1.294153] hub 8-0:1.0: 2 ports detected
    [ 1.294316] ata_piix 0000:00:1f.2: version 2.13
    [ 1.294434] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    [ 1.295801] scsi2 : ata_piix
    [ 1.295862] scsi3 : ata_piix
    [ 1.295899] ata3: SATA max UDMA/133 cmd 0x8000 ctl 0x7c00 bmdma 0x7480 irq 20
    [ 1.295903] ata4: SATA max UDMA/133 cmd 0x7880 ctl 0x7800 bmdma 0x7488 irq 20
    [ 1.296018] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
    [ 1.296635] scsi4 : ata_piix
    [ 1.296696] scsi5 : ata_piix
    [ 1.296731] ata5: SATA max UDMA/133 cmd 0x9000 ctl 0x8c00 bmdma 0x8480 irq 20
    [ 1.296733] ata6: SATA max UDMA/133 cmd 0x8880 ctl 0x8800 bmdma 0x8488 irq 20
    [ 1.335060] firewire_ohci 0000:08:02.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
    [ 1.585039] usb 1-5: new high-speed USB device number 2 using ehci-pci
    [ 1.625718] ata6: SATA link down (SStatus 0 SControl 300)
    [ 1.628118] tsc: Refined TSC clocksource calibration: 2672.727 MHz
    [ 1.636608] ata5: SATA link down (SStatus 0 SControl 300)
    [ 1.708882] hub 1-5:1.0: USB hub found
    [ 1.709166] hub 1-5:1.0: 4 ports detected
    [ 1.814892] usb 2-3: new high-speed USB device number 2 using ehci-pci
    [ 1.834846] firewire_core 0000:08:02.0: created device fw0: GUID 001e8c0000b8b1d3, S400
    [ 1.939364] hub 2-3:1.0: USB hub found
    [ 1.939420] hub 2-3:1.0: 4 ports detected
    [ 2.044785] usb 2-4: new high-speed USB device number 3 using ehci-pci
    [ 2.088035] ata3.00: SATA link down (SStatus 0 SControl 300)
    [ 2.088048] ata3.01: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.099040] ata4.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.099055] ata4.01: SATA link down (SStatus 0 SControl 300)
    [ 2.099066] ata4.01: link offline, clearing class 3 to NONE
    [ 2.104925] ata4.00: ATAPI: TSSTcorp CDDVDW SH-S223C, SB01, max UDMA/100
    [ 2.105101] ata3.01: ATA-9: Samsung SSD 840 PRO Series, DXM04B0Q, max UDMA/133
    [ 2.105104] ata3.01: 250069680 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 2.112052] ata3.01: configured for UDMA/133
    [ 2.112439] scsi 2:0:1:0: Direct-Access ATA Samsung SSD 840 DXM0 PQ: 0 ANSI: 5
    [ 2.113576] sd 2:0:1:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
    [ 2.114132] sd 2:0:1:0: [sda] Write Protect is off
    [ 2.114137] sd 2:0:1:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.114343] sd 2:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.115929] sda: sda1
    [ 2.117144] sd 2:0:1:0: [sda] Attached SCSI disk
    [ 2.118217] ata4.00: configured for UDMA/100
    [ 2.121698] scsi 3:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S223C SB01 PQ: 0 ANSI: 5
    [ 2.126940] sr0: scsi3-mmc drive: 52x/52x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.126943] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.127212] sr 3:0:0:0: Attached scsi CD-ROM sr0
    [ 2.264029] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.322530] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 2.323971] systemd[1]: Set hostname to <desktop09>.
    [ 2.324898] random: systemd urandom read with 41 bits of entropy available
    [ 2.387757] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    [ 2.387994] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 2.388043] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 2.388057] systemd[1]: Expecting device sys-subsystem-net-devices-enp4s0.device...
    [ 2.389666] systemd[1]: Starting Network is Online.
    [ 2.390869] systemd[1]: Reached target Network is Online.
    [ 2.390879] systemd[1]: Starting Delayed Shutdown Socket.
    [ 2.392240] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 2.392250] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 2.393721] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 2.393730] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 2.395298] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 2.395307] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 2.396678] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 2.396687] systemd[1]: Starting Encrypted Volumes.
    [ 2.397966] systemd[1]: Reached target Encrypted Volumes.
    [ 2.397979] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 2.398007] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 2.398017] systemd[1]: Starting Journal Socket.
    [ 2.399149] systemd[1]: Listening on Journal Socket.
    [ 2.401583] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 2.403905] systemd[1]: Mounting POSIX Message Queue File System...
    [ 2.405527] systemd[1]: Mounting Huge Pages File System...
    [ 2.408780] systemd[1]: Starting Apply Kernel Variables...
    [ 2.411521] systemd[1]: Starting Load Kernel Modules...
    [ 2.412983] systemd[1]: Mounting Debug File System...
    [ 2.414590] systemd[1]: Starting Journal Service...
    [ 2.417662] systemd[1]: Started Journal Service.
    [ 2.433299] systemd-journald[162]: Vacuuming done, freed 0 bytes
    [ 2.435074] FS-Cache: Loaded
    [ 2.440406] RPC: Registered named UNIX socket transport module.
    [ 2.440408] RPC: Registered udp transport module.
    [ 2.440409] RPC: Registered tcp transport module.
    [ 2.440410] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 2.447341] FS-Cache: Netfs 'nfs' registered for caching
    [ 2.499590] EXT4-fs (sda1): re-mounted. Opts: discard
    [ 2.506850] systemd-udevd[194]: starting version 208
    [ 2.555760] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 2.557761] EDAC MC: Ver: 3.0.0
    [ 2.558785] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (POLLED)
    [ 2.558826] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
    [ 2.558833] EDAC i7core: Driver loaded, 1 memory controller(s) found.
    [ 2.561181] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
    [ 2.561185] ACPI: Power Button [PWRB]
    [ 2.561282] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
    [ 2.561284] ACPI: Power Button [PWRF]
    [ 2.562026] ACPI Warning: 0x0000000000000828-0x000000000000082f SystemIO conflicts with Region \PMRG 1 (20131115/utaddress-251)
    [ 2.562028] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.562033] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPS0 1 (20131115/utaddress-251)
    [ 2.562034] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.562037] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPS0 1 (20131115/utaddress-251)
    [ 2.562037] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.562038] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 2.574791] sky2: driver version 1.30
    [ 2.574869] sky2 0000:06:00.0: Yukon-2 EC Ultra chip revision 3
    [ 2.574921] sky2 0000:06:00.0: irq 68 for MSI/MSI-X
    [ 2.575108] sky2 0000:06:00.0 eth0: addr 90:e6:ba:91:6a:49
    [ 2.575167] sky2 0000:04:00.0: Yukon-2 EC Ultra chip revision 3
    [ 2.575214] sky2 0000:04:00.0: irq 69 for MSI/MSI-X
    [ 2.575371] sky2 0000:04:00.0 eth1: addr 90:e6:ba:91:6a:48
    [ 2.579129] wmi: Mapper loaded
    [ 2.584708] snd_hda_intel 0000:00:1b.0: irq 70 for MSI/MSI-X
    [ 2.589184] [drm] Initialized drm 1.1.0 20060810
    [ 2.607958] MXM: GUID detected in BIOS
    [ 2.607980] checking generic (f9000000 760000) vs hw (c0000000 20000000)
    [ 2.607980] checking generic (f9000000 760000) vs hw (f8000000 2000000)
    [ 2.607981] fb: conflicting fb hw usage nouveaufb vs VESA VGA - removing generic driver
    [ 2.618625] input: PC Speaker as /devices/platform/pcspkr/input/input2
    [ 2.623682] microcode: CPU0 sig=0x106a5, pf=0x2, revision=0x11
    [ 2.625125] platform microcode: Direct firmware load failed with error -2
    [ 2.625126] platform microcode: Falling back to user helper
    [ 2.627786] Switched to clocksource tsc
    [ 2.643327] iTCO_vendor_support: vendor-support=0
    [ 2.644034] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 2.644062] iTCO_wdt: Found a ICH10R TCO device (Version=2, TCOBASE=0x0860)
    [ 2.644512] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 2.644929] microcode: CPU1 sig=0x106a5, pf=0x2, revision=0x11
    [ 2.644943] platform microcode: Direct firmware load failed with error -2
    [ 2.644944] platform microcode: Falling back to user helper
    [ 2.647197] microcode: CPU2 sig=0x106a5, pf=0x2, revision=0x11
    [ 2.647209] platform microcode: Direct firmware load failed with error -2
    [ 2.647210] platform microcode: Falling back to user helper
    [ 2.647

  • How to i get my one line email address from a form to dissapear from my monitor screen?

    Hi,
    I have a iMac running OS X Yosemite ver 10.10.1
    my iMac is Mid 2011, running 16 BF Ram
    I have seen an annoying floating email address from a form showing up on my monitor screen, even though the form was closed.
    Even if I move any open windows, the email address is still showing on my screen.
    Anyone have any idea on how I may delete this image or whatever it is?  Thanks.  Donna

    Try relaunching the Finder,  ➙ Force Quit.
    Otherwise reboot.

Maybe you are looking for