Intel i915 and displayport mst freeze entire kernel

Hi folks,
My lenovo laptop (t440s) came with the Ultra dock that has displayport on the back. I use a displayport cable to connect to a monitor. When I connect to the dock, the monitor works just fine, but if I ever try to "xrandr --output DP2-1 --off" it or disconnect from the dock, the entire kernel hard locks. No response, image on the screen is frozen, and from another computer on the same network I can't ssh or ping.
I put drm.debug=0xf on the boot line, and then repro'd the issue (which repro's every time) and I get the following output right before the crash (see the kernel BUG line)
Mar 18 12:13:54 nevada kernel: [drm:drm_ioctl] pid=587, dev=0xe200, auth=1, I915_GEM_BUSY
Mar 18 12:13:54 nevada kernel: [drm:drm_ioctl] pid=587, dev=0xe200, auth=1, I915_GEM_BUSY
Mar 18 12:13:54 nevada kernel: [drm:drm_ioctl] pid=587, dev=0xe200, auth=1, I915_GEM_MADVISE
Mar 18 12:13:54 nevada kernel: [drm:drm_ioctl] pid=587, dev=0xe200, auth=1, I915_GEM_BUSY
Mar 18 12:13:54 nevada kernel: [drm:drm_ioctl] pid=587, dev=0xe200, auth=1, I915_GEM_BUSY
Mar 18 12:13:54 nevada kernel: [drm:drm_ioctl] pid=587, dev=0xe200, auth=1, I915_GEM_MADVISE
Mar 18 12:13:54 nevada kernel: [drm:drm_ioctl] pid=587, dev=0xe200, auth=1, I915_GEM_THROTTLE
Mar 18 12:13:54 nevada kernel: [drm:intel_hpd_irq_handler] hotplug event received, stat 0x00400000, dig 0x00101210
Mar 18 12:13:54 nevada kernel: [drm:intel_hpd_irq_handler] digital hpd port C - long
Mar 18 12:13:54 nevada kernel: [drm:intel_hpd_irq_handler] Received HPD interrupt on PIN 5 - cnt: 1
Mar 18 12:13:54 nevada kernel: [drm:intel_dp_hpd_pulse] got hpd irq on port C - long
Mar 18 12:13:54 nevada kernel: [drm:intel_hpd_irq_handler] hotplug event received, stat 0x00400000, dig 0x00101210
Mar 18 12:13:54 nevada kernel: [drm:intel_hpd_irq_handler] digital hpd port C - long
Mar 18 12:13:54 nevada kernel: [drm:intel_hpd_irq_handler] Received HPD interrupt on PIN 5 - cnt: 2
Mar 18 12:13:54 nevada kernel: [drm:intel_dp_get_dpcd] DPCD: 12 14 c4 01 00 15 01 83 02 00 00 00 00 00 04
Mar 18 12:13:54 nevada kernel: [drm:intel_dp_get_dpcd] Displayport TPS3 supported
Mar 18 12:13:54 nevada kernel: [drm:intel_dp_probe_oui] Sink OUI: 000000
Mar 18 12:13:54 nevada kernel: [drm:intel_dp_probe_oui] Branch OUI: 90cc24
Mar 18 12:13:54 nevada kernel: [drm:intel_dp_probe_mst] Sink is MST capable
Mar 18 12:13:54 nevada kernel: [drm:intel_dp_hpd_pulse] got hpd irq on port C - long
Mar 18 12:13:54 nevada kernel: [drm:intel_dp_hpd_pulse] MST device may have disappeared 1 vs 1
Mar 18 12:13:54 nevada kernel: BUG: unable to handle kernel NULL pointer dereference at 000000000000004c
There are no other lines after that kernel NULL pointer dereference at 0x4c
I can attach or paste the full dmesg somewhere else if anyone is interested, but I'm confused by the second to last line there, MST device may have disappeared 1 vs 1. From the code (linux-stable at tag v3.18.6):
From drivers/gpu/drm/i915/intel_dp.c:
4559 mst_fail:
4560 /* if we were in MST mode, and device is not there get out of MST mode */
4561 if (intel_dp->is_mst) {
4562 DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n", intel_dp->is_mst, intel_dp->mst_mgr.mst_state);
4563 intel_dp->is_mst = false;
4564 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
4565 }
4566 put_power:
4567 intel_display_power_put(dev_priv, power_domain);
4568
4569 return ret;
4570 }
So it's locking up either in drm_dp_mst_topology_mgr_set_mst (which doesn't have any debug messages in it in the main path, and does capture a lock) or it's locking up in intel_display_power_put, which ALSO doesn't have debug output. They both acquire mutex's.. looking into this some more. If anyone has seen this issue with displayport, mst, and linux 3.18.6 please let me know

Ok, writing a patch with debug messages to see where this is exactly locking up hopefully...
From 05a0a4758a98f47305165befa81eb61154e15676 Mon Sep 17 00:00:00 2001
From: Jeff Mickey <[email protected]>
Date: Wed, 18 Mar 2015 14:00:28 -0700
Subject: [PATCH] Debugging statements for figuring out this dp mst bug
Signed-off-by: Jeff Mickey <[email protected]>
drivers/gpu/drm/drm_dp_mst_topology.c | 27 ++++++++++++++++++++++-----
drivers/gpu/drm/i915/intel_dp.c | 8 ++++++++
drivers/gpu/drm/i915/intel_pm.c | 3 +++
3 files changed, 33 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/drm_dp_mst_topology.c b/drivers/gpu/drm/drm_dp_mst_topology.c
index f50d884..b0ff4be 100644
--- a/drivers/gpu/drm/drm_dp_mst_topology.c
+++ b/drivers/gpu/drm/drm_dp_mst_topology.c
@@ -1827,13 +1827,16 @@ int drm_dp_mst_topology_mgr_set_mst(struct drm_dp_mst_topology_mgr *mgr, bool ms
int ret = 0;
struct drm_dp_mst_branch *mstb = NULL;
+ DRM_DEBUG_KMS("locking mgr->lock\n");
mutex_lock(&mgr->lock);
- if (mst_state == mgr->mst_state)
+ if (mst_state == mgr->mst_state) {
+ DRM_DEBUG_KMS("goto out_unlock 1\n");
goto out_unlock;
+ }
mgr->mst_state = mst_state;
/* set the device into MST mode */
if (mst_state) {
+ DRM_DEBUG_KMS("inside mst_state\n");
WARN_ON(mgr->mst_primary);
/* get dpcd info */
@@ -1849,9 +1852,11 @@ int drm_dp_mst_topology_mgr_set_mst(struct drm_dp_mst_topology_mgr *mgr, bool ms
mgr->avail_slots = mgr->total_slots;
/* add initial branch device at LCT 1 */
+ DRM_DEBUG_KMS("calling drm_dp_add_mst_branch_device\n");
mstb = drm_dp_add_mst_branch_device(1, NULL);
if (mstb == NULL) {
ret = -ENOMEM;
+ DRM_DEBUG_KMS("goto out_unlock 2\n");
goto out_unlock;
mstb->mgr = mgr;
@@ -1864,29 +1869,35 @@ int drm_dp_mst_topology_mgr_set_mst(struct drm_dp_mst_topology_mgr *mgr, bool ms
struct drm_dp_payload reset_pay;
reset_pay.start_slot = 0;
reset_pay.num_slots = 0x3f;
+ DRM_DEBUG_KMS("drm_dp_dpcd_write_payload\n");
drm_dp_dpcd_write_payload(mgr, 0, &reset_pay);
+ DRM_DEBUG_KMS("drm_dp_dpcd_writeb\n");
ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
DP_MST_EN | DP_UP_REQ_EN | DP_UPSTREAM_IS_SRC);
if (ret < 0) {
+ DRM_DEBUG_KMS("goto out_unlock 3\n");
goto out_unlock;
/* sort out guid */
+ DRM_DEBUG_KMS("drm_dp_dpcd_read\n");
ret = drm_dp_dpcd_read(mgr->aux, DP_GUID, mgr->guid, 16);
if (ret != 16) {
DRM_DEBUG_KMS("failed to read DP GUID %d\n", ret);
goto out_unlock;
+ DRM_DEBUG_KMS("drm_dp_validate_guid\n");
mgr->guid_valid = drm_dp_validate_guid(mgr, mgr->guid);
if (!mgr->guid_valid) {
+ DRM_DEBUG_KMS("drm_dp_dpcd_write 2\n");
ret = drm_dp_dpcd_write(mgr->aux, DP_GUID, mgr->guid, 16);
mgr->guid_valid = true;
+ DRM_DEBUG_KMS("queue_work\n");
queue_work(system_long_wq, &mgr->work);
ret = 0;
@@ -1895,6 +1906,7 @@ int drm_dp_mst_topology_mgr_set_mst(struct drm_dp_mst_topology_mgr *mgr, bool ms
mstb = mgr->mst_primary;
mgr->mst_primary = NULL;
/* this can fail if the device is gone */
+ DRM_DEBUG_KMS("drm_dp_dpcd_writeb 2\n");
drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL, 0);
ret = 0;
memset(mgr->payloads, 0, mgr->max_payloads * sizeof(struct drm_dp_payload));
@@ -1904,11 +1916,16 @@ int drm_dp_mst_topology_mgr_set_mst(struct drm_dp_mst_topology_mgr *mgr, bool ms
out_unlock:
+ DRM_DEBUG_KMS("unlocking mgr->lock\n");
mutex_unlock(&mgr->lock);
- if (mstb)
+ if (mstb) {
+ DRM_DEBUG_KMS("drm_dp_put_mst_branch_device 2\n");
drm_dp_put_mst_branch_device(mstb);
- return ret;
+ }
+
+ DRM_DEBUG_KMS("returning %d\n", ret);
+ return ret;
EXPORT_SYMBOL(drm_dp_mst_topology_mgr_set_mst);
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index 4bcd917..5a3c562 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -4523,24 +4523,29 @@ intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port, bool long_hpd)
if (HAS_PCH_SPLIT(dev)) {
if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
+ DRM_DEBUG_KMS("goto mst_fail 1\n");
goto mst_fail;
} else {
if (g4x_digital_port_connected(dev, intel_dig_port) != 1)
+ DRM_DEBUG_KMS("goto mst_fail 2\n");
goto mst_fail;
if (!intel_dp_get_dpcd(intel_dp)) {
+ DRM_DEBUG_KMS("goto mst_fail 3\n");
goto mst_fail;
intel_dp_probe_oui(intel_dp);
if (!intel_dp_probe_mst(intel_dp))
+ DRM_DEBUG_KMS("goto mst_fail 4\n");
goto mst_fail;
} else {
if (intel_dp->is_mst) {
if (intel_dp_check_mst_status(intel_dp) == -EINVAL)
+ DRM_DEBUG_KMS("goto mst_fail 5\n");
goto mst_fail;
@@ -4549,6 +4554,7 @@ intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port, bool long_hpd)
* we'll check the link status via the normal hot plug path later -
* but for short hpds we should check it now
+ DRM_DEBUG_KMS("drm_modeset_lock\n");
drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
intel_dp_check_link_status(intel_dp);
drm_modeset_unlock(&dev->mode_config.connection_mutex);
@@ -4566,6 +4572,8 @@ mst_fail:
put_power:
intel_display_power_put(dev_priv, power_domain);
+ DRM_DEBUG_KMS("Returning %d as ret\n", ret);
+
return ret;
diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
index 83c7ecf..c5e6f33 100644
--- a/drivers/gpu/drm/i915/intel_pm.c
+++ b/drivers/gpu/drm/i915/intel_pm.c
@@ -6555,6 +6555,7 @@ void intel_display_power_put(struct drm_i915_private *dev_priv,
power_domains = &dev_priv->power_domains;
+ DRM_DEBUG_KMS("locking power_domains->lock\n");
mutex_lock(&power_domains->lock);
WARN_ON(!power_domains->domain_use_count[domain]);
@@ -6570,8 +6571,10 @@ void intel_display_power_put(struct drm_i915_private *dev_priv,
+ DRM_DEBUG_KMS("unlocking power_domains->lock\n");
mutex_unlock(&power_domains->lock);
+ DRM_DEBUG_KMS("intel_runtime_pm_put is being called\n");
intel_runtime_pm_put(dev_priv);
2.3.3

Similar Messages

  • Linux 3.8, i915, and DisplayPort: X11 can't use correct resolution

    I'm using a DELL E6230 which is connected to an external DELL U2711
    monitor using a DisplayPort cable. The maximal resolution of that
    monitor is 2560x1440. When using a 3.7 Linux kernel everything works
    like a charm.  With all the 3.8 kernels I have tried (the "official"
    Arch kernels 3.8.3 and 3.8.4), I'm not longer able to use that
    resolution. The maximal resolution I can get is 1920x1080 (the same
    aspect ratio that the native LCD which is 1366x768).
    When using the 3.8 kernel, the machine boots but when X starts, it just
    produces a black screen. I have tried to change the hardware acceleration (sna) in
    the X configuration but it had no effect. I have also tried downgrading the X server,
    xf86-video-intel, and intel-dir without any change (I'm currently using
    xf86-video-intel 2.21.5-1, intel-dri 9.1.1-1, and xorg-server 1.14.0-2).
    Downgrading to Linux 3.7.9-2-ARCH had solved the problem for me but
    it does not look like a long term solution. Any suggestion for solving
    that problem?
    Thanks in advance for your help.
    $ uname -r
    3.7.9-2-ARCH
    $ lspci -v
    00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
    Subsystem: Dell Device 0532
    Flags: bus master, fast devsel, latency 0
    Capabilities: <access denied>
    00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09) (prog-if 00 [VGA controller])
    Subsystem: Dell Device 0532
    Flags: bus master, fast devsel, latency 0, IRQ 40
    Memory at f6400000 (64-bit, non-prefetchable) [size=4M]
    Memory at e0000000 (64-bit, prefetchable) [size=256M]
    I/O ports at f000 [size=64]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: <access denied>
    Kernel driver in use: i915
    00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04) (prog-if 30 [XHCI])
    Subsystem: Dell Device 0532
    Flags: bus master, medium devsel, latency 0, IRQ 43
    Memory at f7e20000 (64-bit, non-prefetchable) [size=64K]
    Capabilities: <access denied>
    Kernel driver in use: xhci_hcd
    00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
    Subsystem: Dell Device 0532
    Flags: bus master, fast devsel, latency 0, IRQ 41
    Memory at f7e3c000 (64-bit, non-prefetchable) [size=16]
    Capabilities: <access denied>
    Kernel driver in use: mei
    00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (rev 04)
    Subsystem: Dell Device 0532
    Flags: bus master, fast devsel, latency 0, IRQ 46
    Memory at f7e00000 (32-bit, non-prefetchable) [size=128K]
    Memory at f7e39000 (32-bit, non-prefetchable) [size=4K]
    I/O ports at f080 [size=32]
    Capabilities: <access denied>
    Kernel driver in use: e1000e
    00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04) (prog-if 20 [EHCI])
    Subsystem: Dell Device 0532
    Flags: bus master, medium devsel, latency 0, IRQ 16
    Memory at f7e38000 (32-bit, non-prefetchable) [size=1K]
    Capabilities: <access denied>
    Kernel driver in use: ehci_hcd
    00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
    Subsystem: Dell Device 0532
    Flags: bus master, fast devsel, latency 0, IRQ 44
    Memory at f7e30000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: <access denied>
    Kernel driver in use: snd_hda_intel
    00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
    Capabilities: <access denied>
    Kernel driver in use: pcieport
    00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
    Memory behind bridge: f7d00000-f7dfffff
    Capabilities: <access denied>
    Kernel driver in use: pcieport
    00:1c.2 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 3 (rev c4) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=03, subordinate=06, sec-latency=0
    I/O behind bridge: 0000e000-0000efff
    Memory behind bridge: f7200000-f7bfffff
    Prefetchable memory behind bridge: 00000000f0a00000-00000000f13fffff
    Capabilities: <access denied>
    Kernel driver in use: pcieport
    00:1c.3 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 4 (rev c4) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=07, subordinate=0a, sec-latency=0
    I/O behind bridge: 0000d000-0000dfff
    Memory behind bridge: f6800000-f71fffff
    Prefetchable memory behind bridge: 00000000f0000000-00000000f09fffff
    Capabilities: <access denied>
    Kernel driver in use: pcieport
    00:1c.5 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 6 (rev c4) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=0b, subordinate=0b, sec-latency=0
    Memory behind bridge: f7c00000-f7cfffff
    Capabilities: <access denied>
    Kernel driver in use: pcieport
    00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04) (prog-if 20 [EHCI])
    Subsystem: Dell Device 0532
    Flags: bus master, medium devsel, latency 0, IRQ 21
    Memory at f7e37000 (32-bit, non-prefetchable) [size=1K]
    Capabilities: <access denied>
    Kernel driver in use: ehci_hcd
    00:1f.0 ISA bridge: Intel Corporation QM77 Express Chipset LPC Controller (rev 04)
    Subsystem: Dell Device 0532
    Flags: bus master, medium devsel, latency 0
    Capabilities: <access denied>
    Kernel driver in use: lpc_ich
    00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04) (prog-if 01 [AHCI 1.0])
    Subsystem: Dell Device 0532
    Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 42
    I/O ports at f0d0 [size=8]
    I/O ports at f0c0 [size=4]
    I/O ports at f0b0 [size=8]
    I/O ports at f0a0 [size=4]
    I/O ports at f060 [size=32]
    Memory at f7e36000 (32-bit, non-prefetchable) [size=2K]
    Capabilities: <access denied>
    Kernel driver in use: ahci
    00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
    Subsystem: Dell Device 0532
    Flags: medium devsel, IRQ 18
    Memory at f7e35000 (64-bit, non-prefetchable) [size=256]
    I/O ports at f040 [size=32]
    02:00.0 Network controller: Intel Corporation Centrino Ultimate-N 6300 (rev 35)
    Subsystem: Intel Corporation Centrino Ultimate-N 6300 3x3 AGN
    Flags: bus master, fast devsel, latency 0, IRQ 45
    Memory at f7d00000 (64-bit, non-prefetchable) [size=8K]
    Capabilities: <access denied>
    Kernel driver in use: iwlwifi
    0b:00.0 SD Host controller: O2 Micro, Inc. Device 8221 (rev 05) (prog-if 01)
    Subsystem: Dell Device 0532
    Flags: bus master, fast devsel, latency 0, IRQ 17
    Memory at f7c00000 (32-bit, non-prefetchable) [size=512]
    Capabilities: <access denied>
    Kernel driver in use: sdhci-pci
    $ lsmod
    Module Size Used by
    acpi_cpufreq 9359 0
    mperf 1024 1 acpi_cpufreq
    snd_hda_codec_hdmi 24753 1
    snd_hda_codec_idt 48028 1
    iTCO_wdt 4316 0
    iTCO_vendor_support 1546 1 iTCO_wdt
    arc4 1604 2
    iwldvm 161882 0
    coretemp 5183 0
    mac80211 372648 1 iwldvm
    kvm_intel 116986 0
    kvm 333000 1 kvm_intel
    crc32c_intel 1488 0
    aesni_intel 11339 0
    uvcvideo 63774 0
    iwlwifi 110078 1 iwldvm
    dell_wmi 1186 0
    aes_i586 6980 1 aesni_intel
    xts 2468 1 aesni_intel
    lrw 3106 1 aesni_intel
    sparse_keymap 2533 1 dell_wmi
    gf128mul 5951 2 lrw,xts
    videobuf2_vmalloc 2217 1 uvcvideo
    videobuf2_memops 2103 1 videobuf2_vmalloc
    psmouse 76851 0
    videobuf2_core 20913 1 uvcvideo
    ppdev 6127 0
    ablk_helper 1529 1 aesni_intel
    dell_laptop 7952 0
    cfg80211 155583 3 iwlwifi,mac80211,iwldvm
    videodev 81821 2 uvcvideo,videobuf2_core
    parport_pc 26474 0
    cryptd 7390 1 ablk_helper
    snd_hda_intel 23352 1
    joydev 7532 0
    btusb 12481 0
    bluetooth 237711 2 btusb
    dcdbas 5237 1 dell_laptop
    media 8578 2 uvcvideo,videodev
    microcode 11030 0
    serio_raw 4066 0
    i2c_i801 10417 0
    lpc_ich 9886 0
    rfkill 12849 3 cfg80211,bluetooth
    parport 26032 2 ppdev,parport_pc
    wmi 7196 1 dell_wmi
    thermal 6886 0
    snd_hda_codec 86035 3 snd_hda_codec_hdmi,snd_hda_codec_idt,snd_hda_intel
    e1000e 189373 0
    mei 51964 0
    processor 24552 1 acpi_cpufreq
    evdev 7657 17
    snd_hwdep 4843 1 snd_hda_codec
    battery 5691 0
    ac 1893 0
    snd_seq_device 4285 0
    snd_pcm_oss 33510 0
    snd_mixer_oss 12960 2 snd_pcm_oss
    snd_pcm 63698 4 snd_pcm_oss,snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
    snd_page_alloc 6071 2 snd_pcm,snd_hda_intel
    snd_timer 14903 1 snd_pcm
    snd 45066 10 snd_pcm_oss,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_hda_codec_idt,snd_pcm,snd_hda_codec,snd_hda_intel,snd_seq_device,snd_mixer_oss
    soundcore 4379 2 snd
    ext4 409085 5
    crc16 1092 2 ext4,bluetooth
    jbd2 66480 1 ext4
    mbcache 4387 1 ext4
    hid_generic 742 0
    usbhid 36173 0
    hid 68489 2 hid_generic,usbhid
    usb_storage 34900 0
    sr_mod 13149 0
    cdrom 30345 1 sr_mod
    sd_mod 28499 7
    mmc_block 16894 0
    ahci 18693 6
    libahci 17591 1 ahci
    libata 147808 2 ahci,libahci
    sdhci_pci 9137 0
    sdhci 24555 1 sdhci_pci
    ehci_hcd 45961 0
    scsi_mod 110426 4 usb_storage,libata,sd_mod,sr_mod
    xhci_hcd 80177 0
    mmc_core 81201 3 mmc_block,sdhci,sdhci_pci
    usbcore 148680 6 btusb,uvcvideo,usb_storage,ehci_hcd,usbhid,xhci_hcd
    usb_common 623 1 usbcore
    i915 467448 3
    video 9932 1 i915
    button 3718 1 i915
    i2c_algo_bit 4584 1 i915
    intel_agp 8593 1 i915
    intel_gtt 12001 2 i915,intel_agp
    drm_kms_helper 29071 1 i915
    drm 181776 4 i915,drm_kms_helper
    agpgart 21936 3 drm,intel_agp,intel_gtt
    i2c_core 19184 6 drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit,videodev
    $ cat /var/log/Xorg.0.log
    [ 64.059]
    X.Org X Server 1.14.0
    Release Date: 2013-03-05
    [ 64.059] X Protocol Version 11, Revision 0
    [ 64.059] Build Operating System: Linux 3.8.2-1-ARCH i686
    [ 64.059] Current Operating System: Linux moab 3.7.9-2-ARCH #1 SMP PREEMPT Mon Feb 25 12:29:24 CET 2013 i686
    [ 64.059] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=04cd4af5-5d6e-4812-8bfa-4c9568487550 ro resume=/dev/sda2 quiet
    [ 64.059] Build Date: 09 March 2013 11:46:22AM
    [ 64.059]
    [ 64.059] Current version of pixman: 0.28.2
    [ 64.060] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 64.060] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 64.062] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Mar 31 19:59:42 2013
    [ 64.065] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 64.066] (==) No Layout section. Using the first Screen section.
    [ 64.066] (==) No screen section available. Using defaults.
    [ 64.066] (**) |-->Screen "Default Screen Section" (0)
    [ 64.066] (**) | |-->Monitor "<default monitor>"
    [ 64.067] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 64.067] (==) Automatically adding devices
    [ 64.067] (==) Automatically enabling devices
    [ 64.067] (==) Automatically adding GPU devices
    [ 64.069] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 64.069] Entry deleted from font path.
    [ 64.072] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 64.072] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 64.072] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 64.073] (II) Loader magic: 0x825b620
    [ 64.073] (II) Module ABI versions:
    [ 64.073] X.Org ANSI C Emulation: 0.4
    [ 64.073] X.Org Video Driver: 14.1
    [ 64.073] X.Org XInput driver : 19.1
    [ 64.073] X.Org Server Extension : 7.0
    [ 64.073] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 64.074] (--) PCI:*(0:0:2:0) 8086:0166:1028:0532 rev 9, Mem @ 0xf6400000/4194304, 0xe0000000/268435456, I/O @ 0x0000f000/64
    [ 64.075] Initializing built-in extension Generic Event Extension
    [ 64.076] Initializing built-in extension SHAPE
    [ 64.076] Initializing built-in extension MIT-SHM
    [ 64.077] Initializing built-in extension XInputExtension
    [ 64.078] Initializing built-in extension XTEST
    [ 64.078] Initializing built-in extension BIG-REQUESTS
    [ 64.079] Initializing built-in extension SYNC
    [ 64.080] Initializing built-in extension XKEYBOARD
    [ 64.080] Initializing built-in extension XC-MISC
    [ 64.081] Initializing built-in extension SECURITY
    [ 64.081] Initializing built-in extension XINERAMA
    [ 64.082] Initializing built-in extension XFIXES
    [ 64.083] Initializing built-in extension RENDER
    [ 64.083] Initializing built-in extension RANDR
    [ 64.084] Initializing built-in extension COMPOSITE
    [ 64.084] Initializing built-in extension DAMAGE
    [ 64.085] Initializing built-in extension MIT-SCREEN-SAVER
    [ 64.086] Initializing built-in extension DOUBLE-BUFFER
    [ 64.086] Initializing built-in extension RECORD
    [ 64.087] Initializing built-in extension DPMS
    [ 64.087] Initializing built-in extension X-Resource
    [ 64.087] Initializing built-in extension XVideo
    [ 64.088] Initializing built-in extension XVideo-MotionCompensation
    [ 64.088] Initializing built-in extension XFree86-VidModeExtension
    [ 64.089] Initializing built-in extension XFree86-DGA
    [ 64.089] Initializing built-in extension XFree86-DRI
    [ 64.090] Initializing built-in extension DRI2
    [ 64.090] (II) LoadModule: "glx"
    [ 64.093] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 64.095] (II) Module glx: vendor="X.Org Foundation"
    [ 64.095] compiled for 1.14.0, module version = 1.0.0
    [ 64.095] ABI class: X.Org Server Extension, version 7.0
    [ 64.095] (==) AIGLX enabled
    [ 64.096] Loading extension GLX
    [ 64.096] (==) Matched intel as autoconfigured driver 0
    [ 64.096] (==) Matched intel as autoconfigured driver 1
    [ 64.096] (==) Matched vesa as autoconfigured driver 2
    [ 64.096] (==) Matched modesetting as autoconfigured driver 3
    [ 64.096] (==) Matched fbdev as autoconfigured driver 4
    [ 64.096] (==) Assigned the driver to the xf86ConfigLayout
    [ 64.096] (II) LoadModule: "intel"
    [ 64.097] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 64.100] (II) Module intel: vendor="X.Org Foundation"
    [ 64.100] compiled for 1.14.0, module version = 2.21.5
    [ 64.100] Module class: X.Org Video Driver
    [ 64.100] ABI class: X.Org Video Driver, version 14.1
    [ 64.100] (II) LoadModule: "vesa"
    [ 64.101] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 64.101] (II) Module vesa: vendor="X.Org Foundation"
    [ 64.101] compiled for 1.14.0, module version = 2.3.2
    [ 64.101] Module class: X.Org Video Driver
    [ 64.101] ABI class: X.Org Video Driver, version 14.1
    [ 64.102] (II) LoadModule: "modesetting"
    [ 64.102] (WW) Warning, couldn't open module modesetting
    [ 64.102] (II) UnloadModule: "modesetting"
    [ 64.102] (II) Unloading modesetting
    [ 64.102] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 64.102] (II) LoadModule: "fbdev"
    [ 64.102] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 64.103] (II) Module fbdev: vendor="X.Org Foundation"
    [ 64.103] compiled for 1.14.0, module version = 0.4.3
    [ 64.103] Module class: X.Org Video Driver
    [ 64.103] ABI class: X.Org Video Driver, version 14.1
    [ 64.103] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
    Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
    Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
    Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
    Haswell Server (GT2+), Haswell SDV Desktop (GT1),
    Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
    Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
    Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
    Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
    Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
    Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
    Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
    Haswell ULT Server (GT1), Haswell ULT Server (GT2),
    Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
    Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
    Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
    Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
    Haswell CRW Server (GT2), Haswell CRW Server (GT2+),
    ValleyView PO board
    [ 64.104] (II) VESA: driver for VESA chipsets: vesa
    [ 64.104] (II) FBDEV: driver for framebuffer: fbdev
    [ 64.104] (--) using VT number 2
    [ 64.109] (WW) Falling back to old probe method for vesa
    [ 64.109] (WW) Falling back to old probe method for fbdev
    [ 64.109] (II) Loading sub module "fbdevhw"
    [ 64.109] (II) LoadModule: "fbdevhw"
    [ 64.109] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 64.110] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 64.110] compiled for 1.14.0, module version = 0.0.2
    [ 64.110] ABI class: X.Org Video Driver, version 14.1
    [ 64.110] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 64.110] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 64.110] (==) intel(0): RGB weight 888
    [ 64.110] (==) intel(0): Default visual is TrueColor
    [ 64.110] (--) intel(0): Integrated Graphics Chipset: Intel(R) Ivybridge Mobile (GT2)
    [ 64.110] (**) intel(0): Relaxed fencing enabled
    [ 64.110] (**) intel(0): Wait on SwapBuffers? enabled
    [ 64.110] (**) intel(0): Triple buffering? enabled
    [ 64.110] (**) intel(0): Framebuffer tiled
    [ 64.110] (**) intel(0): Pixmaps tiled
    [ 64.110] (**) intel(0): 3D buffers tiled
    [ 64.111] (**) intel(0): SwapBuffers wait enabled
    [ 64.111] (==) intel(0): video overlay key set to 0x101fe
    [ 64.111] (II) intel(0): Output LVDS1 has no monitor section
    [ 64.116] (--) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
    [ 64.130] (II) intel(0): Output VGA1 has no monitor section
    [ 64.131] (II) intel(0): Output HDMI1 has no monitor section
    [ 64.173] (II) intel(0): Output DP1 has no monitor section
    [ 64.186] (II) intel(0): Output HDMI2 has no monitor section
    [ 64.200] (II) intel(0): Output HDMI3 has no monitor section
    [ 64.240] (II) intel(0): Output DP2 has no monitor section
    [ 64.351] (II) intel(0): Output DP3 has no monitor section
    [ 64.351] (II) intel(0): EDID for output LVDS1
    [ 64.351] (II) intel(0): Manufacturer: LGD Model: 36c Serial#: 0
    [ 64.351] (II) intel(0): Year: 2012 Week: 0
    [ 64.351] (II) intel(0): EDID Version: 1.4
    [ 64.351] (II) intel(0): Digital Display Input
    [ 64.351] (II) intel(0): 6 bits per channel
    [ 64.351] (II) intel(0): Digital interface is undefined
    [ 64.351] (II) intel(0): Max Image Size [cm]: horiz.: 28 vert.: 16
    [ 64.351] (II) intel(0): Gamma: 2.20
    [ 64.351] (II) intel(0): No DPMS capabilities specified
    [ 64.351] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 64.351] (II) intel(0): First detailed timing is preferred mode
    [ 64.351] (II) intel(0): Preferred mode is native pixel format and refresh rate
    [ 64.352] (II) intel(0): redX: 0.585 redY: 0.345 greenX: 0.333 greenY: 0.555
    [ 64.352] (II) intel(0): blueX: 0.157 blueY: 0.123 whiteX: 0.313 whiteY: 0.329
    [ 64.352] (II) intel(0): Manufacturer's mask: 0
    [ 64.352] (II) intel(0): Supported detailed timing:
    [ 64.352] (II) intel(0): clock: 69.6 MHz Image Size: 277 x 156 mm
    [ 64.352] (II) intel(0): h_active: 1366 h_sync: 1398 h_sync_end 1430 h_blank_end 1478 h_border: 0
    [ 64.352] (II) intel(0): v_active: 768 v_sync: 770 v_sync_end 774 v_blanking: 782 v_border: 0
    [ 64.352] (II) intel(0): Supported detailed timing:
    [ 64.352] (II) intel(0): clock: 69.6 MHz Image Size: 277 x 156 mm
    [ 64.352] (II) intel(0): h_active: 1366 h_sync: 1414 h_sync_end 1462 h_blank_end 1796 h_border: 0
    [ 64.352] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 776 v_blanking: 968 v_border: 0
    [ 64.352] (II) intel(0): 8Y92T<80>125WH2
    [ 64.352] (II) intel(0): Unknown vendor-specific block 0
    [ 64.352] (II) intel(0): EDID (in hex):
    [ 64.352] (II) intel(0): 00ffffffffffff0030e46c0300000000
    [ 64.352] (II) intel(0): 00160104901c10780ad4659558558e28
    [ 64.352] (II) intel(0): 1f505400000001010101010101010101
    [ 64.352] (II) intel(0): 010101010101301b567050000e302020
    [ 64.352] (II) intel(0): 2400159c1000001a301b56ae5100c830
    [ 64.352] (II) intel(0): 30303500159c1000001a000000fe0038
    [ 64.352] (II) intel(0): 59393254803132355748320a00000000
    [ 64.352] (II) intel(0): 00004131940010000001010a2020009d
    [ 64.352] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 64.352] (II) intel(0): Printing probed modes for output LVDS1
    [ 64.352] (II) intel(0): Modeline "1366x768"x60.2 69.60 1366 1398 1430 1478 768 770 774 782 +hsync -vsync (47.1 kHz eP)
    [ 64.352] (II) intel(0): Modeline "1366x768"x40.0 69.60 1366 1414 1462 1796 768 771 776 968 +hsync -vsync (38.8 kHz e)
    [ 64.352] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
    [ 64.352] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
    [ 64.352] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
    [ 64.352] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
    [ 64.363] (II) intel(0): EDID for output VGA1
    [ 64.364] (II) intel(0): EDID for output HDMI1
    [ 64.406] (II) intel(0): EDID for output DP1
    [ 64.420] (II) intel(0): EDID for output HDMI2
    [ 64.433] (II) intel(0): EDID for output HDMI3
    [ 64.473] (II) intel(0): EDID for output DP2
    [ 64.585] (II) intel(0): EDID for output DP3
    [ 64.585] (II) intel(0): Manufacturer: DEL Model: a057 Serial#: 809840972
    [ 64.585] (II) intel(0): Year: 2012 Week: 24
    [ 64.585] (II) intel(0): EDID Version: 1.4
    [ 64.585] (II) intel(0): Digital Display Input
    [ 64.585] (II) intel(0): 10 bits per channel
    [ 64.585] (II) intel(0): Digital interface is DisplayPort
    [ 64.585] (II) intel(0): Max Image Size [cm]: horiz.: 60 vert.: 34
    [ 64.585] (II) intel(0): Gamma: 2.20
    [ 64.585] (II) intel(0): DPMS capabilities: Off
    [ 64.585] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 YCrCb 4:2:2
    [ 64.585] (II) intel(0): First detailed timing is preferred mode
    [ 64.585] (II) intel(0): Preferred mode is native pixel format and refresh rate
    [ 64.585] (II) intel(0): redX: 0.678 redY: 0.309 greenX: 0.202 greenY: 0.689
    [ 64.585] (II) intel(0): blueX: 0.148 blueY: 0.051 whiteX: 0.313 whiteY: 0.329
    [ 64.585] (II) intel(0): Supported established timings:
    [ 64.585] (II) intel(0): 720x400@70Hz
    [ 64.585] (II) intel(0): 640x480@60Hz
    [ 64.585] (II) intel(0): 640x480@75Hz
    [ 64.585] (II) intel(0): 800x600@60Hz
    [ 64.585] (II) intel(0): 800x600@75Hz
    [ 64.585] (II) intel(0): 1024x768@60Hz
    [ 64.585] (II) intel(0): 1024x768@75Hz
    [ 64.585] (II) intel(0): 1280x1024@75Hz
    [ 64.585] (II) intel(0): Manufacturer's mask: 0
    [ 64.585] (II) intel(0): Supported standard timings:
    [ 64.585] (II) intel(0): #0: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 64.585] (II) intel(0): #1: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 64.585] (II) intel(0): #2: hsize: 1920 vsize 1200 refresh: 60 vid: 209
    [ 64.585] (II) intel(0): #3: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 64.585] (II) intel(0): #4: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 64.585] (II) intel(0): #5: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 64.585] (II) intel(0): Supported detailed timing:
    [ 64.585] (II) intel(0): clock: 241.5 MHz Image Size: 597 x 336 mm
    [ 64.585] (II) intel(0): h_active: 2560 h_sync: 2608 h_sync_end 2640 h_blank_end 2720 h_border: 0
    [ 64.585] (II) intel(0): v_active: 1440 v_sync: 1443 v_sync_end 1448 v_blanking: 1481 v_border: 0
    [ 64.585] (II) intel(0): Serial No: G606T26D0E1L
    [ 64.585] (II) intel(0): Monitor name: DELL U2711
    [ 64.585] (II) intel(0): Ranges: V min: 49 V max: 86 Hz, H min: 29 H max: 113 kHz, PixClock max 305 MHz
    [ 64.585] (II) intel(0): Supported detailed timing:
    [ 64.585] (II) intel(0): clock: 148.5 MHz Image Size: 597 x 336 mm
    [ 64.585] (II) intel(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 64.585] (II) intel(0): v_active: 1080 v_sync: 1082 v_sync_end 1087 v_blanking: 1125 v_border: 0
    [ 64.585] (II) intel(0): Supported detailed timing:
    [ 64.585] (II) intel(0): clock: 74.2 MHz Image Size: 597 x 336 mm
    [ 64.585] (II) intel(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 64.585] (II) intel(0): v_active: 540 v_sync: 542 v_sync_end 547 v_blanking: 562 v_border: 0
    [ 64.585] (II) intel(0): Supported detailed timing:
    [ 64.585] (II) intel(0): clock: 74.2 MHz Image Size: 597 x 336 mm
    [ 64.585] (II) intel(0): h_active: 1280 h_sync: 1390 h_sync_end 1430 h_blank_end 1650 h_border: 0
    [ 64.585] (II) intel(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 64.585] (II) intel(0): Supported detailed timing:
    [ 64.585] (II) intel(0): clock: 27.0 MHz Image Size: 597 x 336 mm
    [ 64.585] (II) intel(0): h_active: 720 h_sync: 736 h_sync_end 798 h_blank_end 858 h_border: 0
    [ 64.585] (II) intel(0): v_active: 480 v_sync: 489 v_sync_end 495 v_blanking: 525 v_border: 0
    [ 64.585] (II) intel(0): Number of EDID sections to follow: 1
    [ 64.585] (II) intel(0): EDID (in hex):
    [ 64.585] (II) intel(0): 00ffffffffffff0010ac57a04c314530
    [ 64.585] (II) intel(0): 18160104b53c22783a8e05ad4f33b026
    [ 64.585] (II) intel(0): 0d5054a54b008100b300d100714fa940
    [ 64.585] (II) intel(0): 818001010101565e00a0a0a029503020
    [ 64.585] (II) intel(0): 350055502100001a000000ff00473630
    [ 64.585] (II) intel(0): 36543236443045314c0a000000fc0044
    [ 64.585] (II) intel(0): 454c4c2055323731310a2020000000fd
    [ 64.585] (II) intel(0): 0031561d711e000a202020202020018b
    [ 64.585] (II) intel(0): 02031df1509005040302071601061112
    [ 64.585] (II) intel(0): 1513141f20230d7f07830f0000023a80
    [ 64.585] (II) intel(0): 1871382d40582c250055502100001e01
    [ 64.585] (II) intel(0): 1d8018711c1620582c25005550210000
    [ 64.585] (II) intel(0): 9e011d007251d01e206e285500555021
    [ 64.585] (II) intel(0): 00001e8c0ad08a20e02d10103e960055
    [ 64.585] (II) intel(0): 50210000180000000000000000000000
    [ 64.585] (II) intel(0): 0000000000000000000000000000004b
    [ 64.585] (II) intel(0): Printing probed modes for output DP3
    [ 64.585] (II) intel(0): Modeline "2560x1440"x60.0 241.50 2560 2608 2640 2720 1440 1443 1448 1481 +hsync -vsync (88.8 kHz eP)
    [ 64.585] (II) intel(0): Modeline "1920x1440"x75.0 297.00 1920 2064 2288 2640 1440 1441 1444 1500 -hsync +vsync (112.5 kHz e)
    [ 64.585] (II) intel(0): Modeline "1920x1440"x60.0 234.00 1920 2048 2256 2600 1440 1441 1444 1500 -hsync +vsync (90.0 kHz e)
    [ 64.585] (II) intel(0): Modeline "1856x1392"x75.0 288.00 1856 1984 2208 2560 1392 1395 1399 1500 -hsync +vsync (112.5 kHz e)
    [ 64.585] (II) intel(0): Modeline "1856x1392"x60.0 218.25 1856 1952 2176 2528 1392 1393 1396 1439 -hsync +vsync (86.3 kHz e)
    [ 64.585] (II) intel(0): Modeline "1792x1344"x75.0 261.00 1792 1888 2104 2456 1344 1345 1348 1417 -hsync +vsync (106.3 kHz e)
    [ 64.585] (II) intel(0): Modeline "1792x1344"x60.0 204.75 1792 1920 2120 2448 1344 1345 1348 1394 -hsync +vsync (83.6 kHz e)
    [ 64.585] (II) intel(0): Modeline "2048x1152"x60.0 198.02 2048 2184 2408 2768 1152 1153 1156 1192 -hsync +vsync (71.5 kHz)
    [ 64.585] (II) intel(0): Modeline "1920x1200"x84.9 281.25 1920 2064 2272 2624 1200 1203 1209 1262 -hsync +vsync (107.2 kHz e)
    [ 64.585] (II) intel(0): Modeline "1920x1200"x74.9 245.25 1920 2056 2264 2608 1200 1203 1209 1255 -hsync +vsync (94.0 kHz e)
    [ 64.585] (II) intel(0): Modeline "1920x1200"x59.9 193.25 1920 2056 2256 2592 1200 1203 1209 1245 -hsync +vsync (74.6 kHz e)
    [ 64.585] (II) intel(0): Modeline "1920x1080"x50.0 148.50 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
    [ 64.585] (II) intel(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 64.585] (II) intel(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1082 1087 1125 +hsync +vsync (67.5 kHz e)
    [ 64.585] (II) intel(0): Modeline "1920x1080"x24.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 64.585] (II) intel(0): Modeline "1920x1080i"x50.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 64.585] (II) intel(0): Modeline "1920x1080i"x60.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 64.585] (II) intel(0): Modeline "1600x1200"x85.0 229.50 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (106.2 kHz e)
    [ 64.585] (II) intel(0): Modeline "1600x1200"x75.0 202.50 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (93.8 kHz e)
    [ 64.585] (II) intel(0): Modeline "1600x1200"x70.0 189.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (87.5 kHz e)
    [ 64.585] (II) intel(0): Modeline "1600x1200"x65.0 175.50 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (81.2 kHz e)
    [ 64.585] (II) intel(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 64.585] (II) intel(0): Modeline "1680x1050"x84.9 214.75 1680 1808 1984 2288 1050 1053 1059 1105 -hsync +vsync (93.9 kHz e)
    [ 64.585] (II) intel(0): Modeline "1680x1050"x74.9 187.00 1680 1800 1976 2272 1050 1053 1059 1099 -hsync +vsync (82.3 kHz e)
    [ 64.585] (II) intel(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
    [ 64.585] (II) intel(0): Modeline "1680x945"x60.0 131.48 1680 1784 1960 2240 945 946 949 978 -hsync +vsync (58.7 kHz)
    [ 64.585] (II) intel(0): Modeline "1400x1050"x85.0 179.50 1400 1504 1656 1912 1050 1053 1057 1105 -hsync +vsync (93.9 kHz e)
    [ 64.585] (II) intel(0): Modeline "1400x1050"x74.9 156.00 1400 1504 1648 1896 1050 1053 1057 1099 -hsync +vsync (82.3 kHz e)
    [ 64.585] (II) intel(0): Modeline "1400x1050"x60.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
    [ 64.585] (II) intel(0): Modeline "1600x900"x60.0 118.96 1600 1696 1864 2128 900 901 904 932 -hsync +vsync (55.9 kHz)
    [ 64.585] (II) intel(0): Modeline "1280x1024"x85.0 157.50 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync (91.1 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 64.585] (II) intel(0): Modeline "1440x900"x84.8 157.00 1440 1544 1696 1952 900 903 909 948 -hsync +vsync (80.4 kHz e)
    [ 64.585] (II) intel(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 64.585] (II) intel(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x960"x85.0 148.50 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync (85.9 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 64.585] (II) intel(0): Modeline "1366x768"x60.0 85.89 1366 1439 1583 1800 768 769 772 795 -hsync +vsync (47.7 kHz)
    [ 64.585] (II) intel(0): Modeline "1360x768"x60.0 85.50 1360 1424 1536 1792 768 771 777 795 +hsync +vsync (47.7 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x800"x84.9 122.50 1280 1360 1496 1712 800 803 809 843 -hsync +vsync (71.6 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x800"x74.9 106.50 1280 1360 1488 1696 800 803 809 838 -hsync +vsync (62.8 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 +hsync -vsync (49.7 kHz e)
    [ 64.585] (II) intel(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x768"x84.8 117.50 1280 1360 1496 1712 768 771 778 809 -hsync +vsync (68.6 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x768"x74.9 102.25 1280 1360 1488 1696 768 771 778 805 +hsync -vsync (60.3 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x768"x59.9 79.50 1280 1344 1472 1664 768 771 778 798 -hsync +vsync (47.8 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x720"x50.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 64.585] (II) intel(0): Modeline "1280x720"x60.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 64.585] (II) intel(0): Modeline "1024x768"x85.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz e)
    [ 64.585] (II) intel(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 64.586] (II) intel(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 64.586] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 64.586] (II) intel(0): Modeline "1024x768i"x87.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace +hsync +vsync (35.5 kHz e)
    [ 64.586] (II) intel(0): Modeline "1024x576"x60.0 46.97 1024 1064 1168 1312 576 577 580 597 -hsync +vsync (35.8 kHz)
    [ 64.586] (II) intel(0): Modeline "800x600"x85.1 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 64.586] (II) intel(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 64.586] (II) intel(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 64.586] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 64.586] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 64.586] (II) intel(0): Modeline "720x576"x50.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 64.586] (II) intel(0): Modeline "848x480"x60.0 33.75 848 864 976 1088 480 486 494 517 +hsync +vsync (31.0 kHz e)
    [ 64.586] (II) intel(0): Modeline "720x480"x59.9 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 64.586] (II) intel(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 64.586] (II) intel(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 64.586] (II) intel(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 64.586] (II) intel(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 64.586] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 64.586] (II) intel(0): Modeline "720x400"x85.0 35.50 720 756 828 936 400 401 404 446 -hsync +vsync (37.9 kHz e)
    [ 64.586] (II) intel(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 64.586] (II) intel(0): Modeline "640x400"x85.1 31.50 640 672 736 832 400 401 404 445 -hsync +vsync (37.9 kHz e)
    [ 64.586] (II) intel(0): Modeline "640x350"x85.1 31.50 640 672 736 832 350 382 385 445 +hsync -vsync (37.9 kHz e)
    [ 64.586] (II) intel(0): Output LVDS1 connected
    [ 64.586] (II) intel(0): Output VGA1 disconnected
    [ 64.586] (II) intel(0): Output HDMI1 disconnected
    [ 64.586] (II) intel(0): Output DP1 disconnected
    [ 64.586] (II) intel(0): Output HDMI2 disconnected
    [ 64.586] (II) intel(0): Output HDMI3 disconnected
    [ 64.586] (II) intel(0): Output DP2 disconnected
    [ 64.586] (II) intel(0): Output DP3 connected
    [ 64.586] (II) intel(0): Using exact sizes for initial modes
    [ 64.586] (II) intel(0): Output LVDS1 using initial mode 1366x768
    [ 64.586] (II) intel(0): Output DP3 using initial mode 1366x768
    [ 64.586] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 64.586] (II) intel(0): Kernel page flipping support detected, enabling
    [ 64.586] (==) intel(0): DPI set to (96, 96)
    [ 64.586] (II) Loading sub module "fb"
    [ 64.586] (II) LoadModule: "fb"
    [ 64.586] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 64.588] (II) Module fb: vendor="X.Org Foundation"
    [ 64.588] compiled for 1.14.0, module version = 1.0.0
    [ 64.588] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 64.588] (II) Loading sub module "dri2"
    [ 64.588] (II) LoadModule: "dri2"
    [ 64.588] (II) Module "dri2" already built-in
    [ 64.588] (II) UnloadModule: "vesa"
    [ 64.588] (II) Unloading vesa
    [ 64.588] (II) UnloadModule: "fbdev"
    [ 64.588] (II) Unloading fbdev
    [ 64.588] (II) UnloadSubModule: "fbdevhw"
    [ 64.588] (II) Unloading fbdevhw
    [ 64.588] (==) Depth 24 pixmap format is 32 bpp
    [ 64.589] (II) intel(0): [DRI2] Setup complete
    [ 64.589] (II) intel(0): [DRI2] DRI driver: i965
    [ 64.589] (II) intel(0): Allocated new frame buffer 1408x768 stride 5632, tiled
    [ 64.591] (II) UXA(0): Driver registered support for the following operations:
    [ 64.591] (II) solid
    [ 64.591] (II) copy
    [ 64.591] (II) composite (RENDER acceleration)
    [ 64.591] (II) put_image
    [ 64.591] (II) get_image
    [ 64.591] (==) intel(0): Backing store disabled
    [ 64.591] (==) intel(0): Silken mouse enabled
    [ 64.591] (II) intel(0): Initializing HW Cursor
    [ 64.591] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 64.637] (==) intel(0): DPMS enabled
    [ 64.637] (==) intel(0): Intel XvMC decoder enabled
    [ 64.637] (II) intel(0): Set up textured video
    [ 64.638] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 64.638] (II) intel(0): direct rendering: DRI2 Enabled
    [ 64.638] (==) intel(0): hotplug detection: "enabled"
    [ 64.960] (--) RandR disabled
    [ 64.985] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 64.985] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 64.985] (II) AIGLX: enabled GLX_ARB_create_context
    [ 64.985] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 64.985] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 64.985] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 64.985] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 64.985] (II) AIGLX: Loaded and initialized i965
    [ 64.985] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 64.985] (II) intel(0): Setting screen physical size to 361 x 203
    [ 65.066] (II) XKB: Reusing cached keymap
    [ 65.068] (II) config/udev: getting attribute name on (null) returned "Power Button"
    [ 65.068] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.068] (II) config/udev: getting property PRODUCT on (null) returned "19/0/1/0"
    [ 65.068] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event4 returned "(null)"
    [ 65.068] (II) config/udev: getting property ID_INPUT_KEY on /dev/input/event4 returned "1"
    [ 65.068] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 65.068] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 65.068] (II) LoadModule: "evdev"
    [ 65.068] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 65.070] (II) Module evdev: vendor="X.Org Foundation"
    [ 65.070] compiled for 1.14.0, module version = 2.8.0
    [ 65.070] Module class: X.Org XInput Driver
    [ 65.070] ABI class: X.Org XInput driver, version 19.1
    [ 65.070] (II) Using input driver 'evdev' for 'Power Button'
    [ 65.070] Option "XkbRules" "evdev"
    [ 65.070] Option "XkbModel" "evdev"
    [ 65.070] Option "XkbLayout" "us"
    [ 65.070] Option "_source" "server/udev"
    [ 65.070] Option "name" "Power Button"
    [ 65.070] Option "path" "/dev/input/event4"
    [ 65.070] Option "device" "/dev/input/event4"
    [ 65.070] Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
    [ 65.070] Option "driver" "evdev"
    [ 65.070] (**) Power Button: always reports core events
    [ 65.070] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 65.070] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 65.070] (--) evdev: Power Button: Found keys
    [ 65.070] (II) evdev: Power Button: Configuring as keyboard
    [ 65.070] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
    [ 65.070] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 65.070] (**) Option "xkb_rules" "evdev"
    [ 65.070] (**) Option "xkb_model" "evdev"
    [ 65.070] (**) Option "xkb_layout" "us"
    [ 65.094] (II) config/udev: getting attribute name on (null) returned "Video Bus"
    [ 65.094] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.094] (II) config/udev: getting property PRODUCT on (null) returned "19/0/6/0"
    [ 65.094] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event5 returned "(null)"
    [ 65.094] (II) config/udev: getting property ID_INPUT_KEY on /dev/input/event5 returned "1"
    [ 65.094] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
    [ 65.094] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 65.094] (II) Using input driver 'evdev' for 'Video Bus'
    [ 65.094] Option "XkbRules" "evdev"
    [ 65.094] Option "XkbModel" "evdev"
    [ 65.094] Option "XkbLayout" "us"
    [ 65.094] Option "_source" "server/udev"
    [ 65.094] Option "name" "Video Bus"
    [ 65.094] Option "path" "/dev/input/event5"
    [ 65.094] Option "device" "/dev/input/event5"
    [ 65.094] Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5/event5"
    [ 65.094] Option "driver" "evdev"
    [ 65.094] (**) Video Bus: always reports core events
    [ 65.094] (**) evdev: Video Bus: Device: "/dev/input/event5"
    [ 65.094] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 65.094] (--) evdev: Video Bus: Found keys
    [ 65.094] (II) evdev: Video Bus: Configuring as keyboard
    [ 65.094] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5/event5"
    [ 65.094] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 65.094] (**) Option "xkb_rules" "evdev"
    [ 65.094] (**) Option "xkb_model" "evdev"
    [ 65.094] (**) Option "xkb_layout" "us"
    [ 65.094] (II) XKB: Reusing cached keymap
    [ 65.095] (II) config/udev: getting attribute name on (null) returned "Power Button"
    [ 65.095] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.095] (II) config/udev: getting property PRODUCT on (null) returned "19/0/1/0"
    [ 65.095] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event2 returned "(null)"
    [ 65.095] (II) config/udev: getting property ID_INPUT_KEY on /dev/input/event2 returned "1"
    [ 65.095] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 65.095] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 65.095] (II) Using input driver 'evdev' for 'Power Button'
    [ 65.095] Option "XkbRules" "evdev"
    [ 65.095] Option "XkbModel" "evdev"
    [ 65.095] Option "XkbLayout" "us"
    [ 65.095] Option "_source" "server/udev"
    [ 65.095] Option "name" "Power Button"
    [ 65.095] Option "path" "/dev/input/event2"
    [ 65.095] Option "device" "/dev/input/event2"
    [ 65.095] Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event2"
    [ 65.095] Option "driver" "evdev"
    [ 65.095] (**) Power Button: always reports core events
    [ 65.095] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 65.095] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 65.095] (--) evdev: Power Button: Found keys
    [ 65.095] (II) evdev: Power Button: Configuring as keyboard
    [ 65.095] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event2"
    [ 65.095] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 65.095] (**) Option "xkb_rules" "evdev"
    [ 65.095] (**) Option "xkb_model" "evdev"
    [ 65.095] (**) Option "xkb_layout" "us"
    [ 65.095] (II) XKB: Reusing cached keymap
    [ 65.096] (II) config/udev: getting attribute name on (null) returned "Lid Switch"
    [ 65.096] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.096] (II) config/udev: getting property PRODUCT on (null) returned "19/0/5/0"
    [ 65.096] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event1 returned "(null)"
    [ 65.096] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 65.096] (II) No input driver specified, ignoring this device.
    [ 65.096] (II) This device may have been added with another device file.
    [ 65.096] (II) config/udev: getting attribute name on (null) returned "Sleep Button"
    [ 65.096] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.096] (II) config/udev: getting property PRODUCT on (null) returned "19/0/3/0"
    [ 65.096] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event3 returned "(null)"
    [ 65.096] (II) config/udev: getting property ID_INPUT_KEY on /dev/input/event3 returned "1"
    [ 65.096] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 65.097] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 65.097] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 65.097] Option "XkbRules" "evdev"
    [ 65.097] Option "XkbModel" "evdev"
    [ 65.097] Option "XkbLayout" "us"
    [ 65.097] Option "_source" "server/udev"
    [ 65.097] Option "name" "Sleep Button"
    [ 65.097] Option "path" "/dev/input/event3"
    [ 65.097] Option "device" "/dev/input/event3"
    [ 65.097] Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3/event3"
    [ 65.097] Option "driver" "evdev"
    [ 65.097] (**) Sleep Button: always reports core events
    [ 65.097] (**) evdev: Sleep Button: Device: "/dev/input/event3"
    [ 65.097] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 65.097] (--) evdev: Sleep Button: Found keys
    [ 65.097] (II) evdev: Sleep Button: Configuring as keyboard
    [ 65.097] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3/event3"
    [ 65.097] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 65.097] (**) Option "xkb_rules" "evdev"
    [ 65.097] (**) Option "xkb_model" "evdev"
    [ 65.097] (**) Option "xkb_layout" "us"
    [ 65.097] (II) XKB: Reusing cached keymap
    [ 65.097] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 65.098] (II) config/udev: getting attribute name on (null) returned "Laptop_Integrated_Webcam_E4HD"
    [ 65.098] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.098] (II) config/udev: getting property PRODUCT on (null) returned "3/c45/643f/2208"
    [ 65.098] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event10 returned "(null)"
    [ 65.098] (II) config/udev: getting property ID_INPUT_KEY on /dev/input/event10 returned "1"
    [ 65.098] (II) config/udev: getting property ID_VENDOR on /dev/input/event10 returned "CN0Y4TWT72487241ABM0A00"
    [ 65.098] (II) config/udev: Adding input device Laptop_Integrated_Webcam_E4HD (/dev/input/event10)
    [ 65.098] (**) Laptop_Integrated_Webcam_E4HD: Applying InputClass "evdev keyboard catchall"
    [ 65.098] (II) Using input driver 'evdev' for 'Laptop_Integrated_Webcam_E4HD'
    [ 65.098] Option "XkbRules" "evdev"
    [ 65.098] Option "XkbModel" "evdev"
    [ 65.098] Option "XkbLayout" "us"
    [ 65.098] Option "_source" "server/udev"
    [ 65.098] Option "name" "Laptop_Integrated_Webcam_E4HD"
    [ 65.098] Option "path" "/dev/input/event10"
    [ 65.098] Option "device" "/dev/input/event10"
    [ 65.098] Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.5/3-1.5:1.0/input/input10/event10"
    [ 65.098] Option "driver" "evdev"
    [ 65.098] (**) Laptop_Integrated_Webcam_E4HD: always reports core events
    [ 65.098] (**) evdev: Laptop_Integrated_Webcam_E4HD: Device: "/dev/input/event10"
    [ 65.098] (--) evdev: Laptop_Integrated_Webcam_E4HD: Vendor 0xc45 Product 0x643f
    [ 65.098] (--) evdev: Laptop_Integrated_Webcam_E4HD: Found keys
    [ 65.098] (II) evdev: Laptop_Integrated_Webcam_E4HD: Configuring as keyboard
    [ 65.098] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.5/3-1.5:1.0/input/input10/event10"
    [ 65.098] (II) XINPUT: Adding extended input device "Laptop_Integrated_Webcam_E4HD" (type: KEYBOARD, id 10)
    [ 65.098] (**) Option "xkb_rules" "evdev"
    [ 65.098] (**) Option "xkb_model" "evdev"
    [ 65.098] (**) Option "xkb_layout" "us"
    [ 65.098] (II) XKB: Reusing cached keymap
    [ 65.099] (II) config/udev: getting attribute name on (null) returned "HDA Digital PCBeep"
    [ 65.099] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.099] (II) config/udev: getting property PRODUCT on (null) returned "1/111d/76df/1"
    [ 65.099] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event11 returned "(null)"
    [ 65.099] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event11)
    [ 65.099] (II) No input driver specified, ignoring this device.
    [ 65.099] (II) This device may have been added with another device file.
    [ 65.100] (II) config/udev: getting attribute name on (null) returned "HDA Intel PCH HDMI/DP,pcm=8"
    [ 65.100] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.100] (II) config/udev: getting property PRODUCT on (null) returned "0/0/0/0"
    [ 65.100] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event12 returned "(null)"
    [ 65.100] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event12)
    [ 65.100] (II) No input driver specified, ignoring this device.
    [ 65.100] (II) This device may have been added with another device file.
    [ 65.100] (II) config/udev: getting attribute name on (null) returned "HDA Intel PCH HDMI/DP,pcm=7"
    [ 65.100] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.100] (II) config/udev: getting property PRODUCT on (null) returned "0/0/0/0"
    [ 65.100] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event13 returned "(null)"
    [ 65.100] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event13)
    [ 65.100] (II) No input driver specified, ignoring this device.
    [ 65.100] (II) This device may have been added with another device file.
    [ 65.100] (II) config/udev: getting attribute name on (null) returned "HDA Intel PCH HDMI/DP,pcm=3"
    [ 65.100] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.100] (II) config/udev: getting property PRODUCT on (null) returned "0/0/0/0"
    [ 65.100] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event14 returned "(null)"
    [ 65.100] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event14)
    [ 65.100] (II) No input driver specified, ignoring this device.
    [ 65.100] (II) This device may have been added with another device file.
    [ 65.101] (II) config/udev: getting attribute name on (null) returned "HDA Intel PCH Dock Mic"
    [ 65.101] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.101] (II) config/udev: getting property PRODUCT on (null) returned "0/0/0/0"
    [ 65.101] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event15 returned "(null)"
    [ 65.101] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event15)
    [ 65.101] (II) No input driver specified, ignoring this device.
    [ 65.101] (II) This device may have been added with another device file.
    [ 65.101] (II) config/udev: getting attribute name on (null) returned "HDA Intel PCH Mic"
    [ 65.101] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.101] (II) config/udev: getting property PRODUCT on (null) returned "0/0/0/0"
    [ 65.101] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event16 returned "(null)"
    [ 65.101] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event16)
    [ 65.101] (II) No input driver specified, ignoring this device.
    [ 65.101] (II) This device may have been added with another device file.
    [ 65.102] (II) config/udev: getting attribute name on (null) returned "HDA Intel PCH Headphone"
    [ 65.102] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.102] (II) config/udev: getting property PRODUCT on (null) returned "0/0/0/0"
    [ 65.102] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event17 returned "(null)"
    [ 65.102] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event17)
    [ 65.102] (II) No input driver specified, ignoring this device.
    [ 65.102] (II) This device may have been added with another device file.
    [ 65.102] (II) config/udev: getting attribute name on (null) returned "HDA Intel PCH Dock Line Out"
    [ 65.102] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.102] (II) config/udev: getting property PRODUCT on (null) returned "0/0/0/0"
    [ 65.102] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event18 returned "(null)"
    [ 65.102] (II) config/udev: Adding input device HDA Intel PCH Dock Line Out (/dev/input/event18)
    [ 65.102] (II) No input driver specified, ignoring this device.
    [ 65.102] (II) This device may have been added with another device file.
    [ 65.102] (II) config/udev: getting attribute name on (null) returned "Dell Dell USB Keyboard Hub"
    [ 65.102] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.102] (II) config/udev: getting property PRODUCT on (null) returned "3/413c/2010/110"
    [ 65.102] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event6 returned "(null)"
    [ 65.102] (II) config/udev: getting property ID_INPUT_KEY on /dev/input/event6 returned "1"
    [ 65.103] (II) config/udev: getting property ID_VENDOR on /dev/input/event6 returned "Dell"
    [ 65.103] (II) config/udev: Adding input device Dell Dell USB Keyboard Hub (/dev/input/event6)
    [ 65.103] (**) Dell Dell USB Keyboard Hub: Applying InputClass "evdev keyboard catchall"
    [ 65.103] (II) Using input driver 'evdev' for 'Dell Dell USB Keyboard Hub'
    [ 65.103] Option "XkbRules" "evdev"
    [ 65.103] Option "XkbModel" "evdev"
    [ 65.103] Option "XkbLayout" "us"
    [ 65.103] Option "_source" "server/udev"
    [ 65.103] Option "name" "Dell Dell USB Keyboard Hub"
    [ 65.103] Option "path" "/dev/input/event6"
    [ 65.103] Option "device" "/dev/input/event6"
    [ 65.103] Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.7/4-1.7.3/4-1.7.3.3/4-1.7.3.3.1/4-1.7.3.3.1:1.0/input/input6/event6"
    [ 65.103] Option "driver" "evdev"
    [ 65.103] (**) Dell Dell USB Keyboard Hub: always reports core events
    [ 65.103] (**) evdev: Dell Dell USB Keyboard Hub: Device: "/dev/input/event6"
    [ 65.103] (--) evdev: Dell Dell USB Keyboard Hub: Vendor 0x413c Product 0x2010
    [ 65.103] (--) evdev: Dell Dell USB Keyboard Hub: Found keys
    [ 65.103] (II) evdev: Dell Dell USB Keyboard Hub: Configuring as keyboard
    [ 65.103] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.7/4-1.7.3/4-1.7.3.3/4-1.7.3.3.1/4-1.7.3.3.1:1.0/input/input6/event6"
    [ 65.103] (II) XINPUT: Adding extended input device "Dell Dell USB Keyboard Hub" (type: KEYBOARD, id 11)
    [ 65.103] (**) Option "xkb_rules" "evdev"
    [ 65.103] (**) Option "xkb_model" "evdev"
    [ 65.103] (**) Option "xkb_layout" "us"
    [ 65.103] (II) XKB: Reusing cached keymap
    [ 65.104] (II) config/udev: getting attribute name on (null) returned "Dell Dell USB Keyboard Hub"
    [ 65.104] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.104] (II) config/udev: getting property PRODUCT on (null) returned "3/413c/2010/110"
    [ 65.104] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event7 returned "(null)"
    [ 65.104] (II) config/udev: getting property ID_INPUT_KEY on /dev/input/event7 returned "1"
    [ 65.104] (II) config/udev: getting property ID_VENDOR on /dev/input/event7 returned "Dell"
    [ 65.104] (II) config/udev: Adding input device Dell Dell USB Keyboard Hub (/dev/input/event7)
    [ 65.104] (**) Dell Dell USB Keyboard Hub: Applying InputClass "evdev keyboard catchall"
    [ 65.104] (II) Using input driver 'evdev' for 'Dell Dell USB Keyboard Hub'
    [ 65.104] Option "XkbRules" "evdev"
    [ 65.104] Option "XkbModel" "evdev"
    [ 65.104] Option "XkbLayout" "us"
    [ 65.104] Option "_source" "server/udev"
    [ 65.104] Option "name" "Dell Dell USB Keyboard Hub"
    [ 65.104] Option "path" "/dev/input/event7"
    [ 65.104] Option "device" "/dev/input/event7"
    [ 65.104] Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.7/4-1.7.3/4-1.7.3.3/4-1.7.3.3.1/4-1.7.3.3.1:1.1/input/input7/event7"
    [ 65.104] Option "driver" "evdev"
    [ 65.104] (**) Dell Dell USB Keyboard Hub: always reports core events
    [ 65.104] (**) evdev: Dell Dell USB Keyboard Hub: Device: "/dev/input/event7"
    [ 65.104] (--) evdev: Dell Dell USB Keyboard Hub: absolute axis 0x20 [24..-24]
    [ 65.104] (--) evdev: Dell Dell USB Keyboard Hub: Vendor 0x413c Product 0x2010
    [ 65.104] (--) evdev: Dell Dell USB Keyboard Hub: Found absolute axes
    [ 65.104] (II) evdev: Dell Dell USB Keyboard Hub: Forcing absolute x/y axes to exist.
    [ 65.104] (--) evdev: Dell Dell USB Keyboard Hub: Found keys
    [ 65.104] (II) evdev: Dell Dell USB Keyboard Hub: Forcing relative x/y axes to exist.
    [ 65.104] (II) evdev: Dell Dell USB Keyboard Hub: Configuring as mouse
    [ 65.104] (II) evdev: Dell Dell USB Keyboard Hub: Configuring as keyboard
    [ 65.104] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.7/4-1.7.3/4-1.7.3.3/4-1.7.3.3.1/4-1.7.3.3.1:1.1/input/input7/event7"
    [ 65.104] (II) XINPUT: Adding extended input device "Dell Dell USB Keyboard Hub" (type: KEYBOARD, id 12)
    [ 65.104] (**) Option "xkb_rules" "evdev"
    [ 65.104] (**) Option "xkb_model" "evdev"
    [ 65.104] (**) Option "xkb_layout" "us"
    [ 65.104] (II) XKB: Reusing cached keymap
    [ 65.105] (II) evdev: Dell Dell USB Keyboard Hub: initialized for absolute axes.
    [ 65.105] (**) Dell Dell USB Keyboard Hub: (accel) keeping acceleration scheme 1
    [ 65.105] (**) Dell Dell USB Keyboard Hub: (accel) acceleration profile 0
    [ 65.105] (**) Dell Dell USB Keyboard Hub: (accel) acceleration factor: 2.000
    [ 65.105] (**) Dell Dell USB Keyboard Hub: (accel) acceleration threshold: 4
    [ 65.105] (II) config/udev: getting attribute name on (null) returned "Dell Dell USB Optical Mouse"
    [ 65.105] (II) config/udev: getting attribute id on (null) returned "(null)"
    [ 65.105] (II) config/udev: getting property PRODUCT on (null) returned "3/413c/3012/111"
    [ 65.105] (II) config/udev: getting property ID_INPUT.tags on /dev/input/event8 returned "(null)"
    [ 65.105] (II) config/udev: getting property ID_INPUT_MOUSE on /dev/input/event8 returned "1"
    [ 65.105] (II) config/udev: getting property ID_VENDOR on /dev/input/event8 returned "Dell"
    [ 65.105] (II) config/udev: Adding input device Dell Dell USB Optical Mouse (/dev/input/event8)
    [ 65.105] (**) Dell Dell USB Optical Mouse: Applying InputClass "evdev pointer catchall"
    [ 65.105] (II) Using input driver 'evdev' for 'Dell Dell USB Optical Mouse'
    [ 65.105] Option "XkbRules" "evdev"
    [ 65.105] Option "XkbModel" "evdev"
    [ 65.105]

    This is very interesting.  I have two nearly identically configured Arch systems (home and office), and I just did the last big upgrade on both.  The office system survived just fine, but the home system, after running for a minute or two, core dumps with a graphics-sounding error spew and sends me out of my window manager and back to a command prompt. ("can't open screen at 0,0" or something...no time for a deeper dive--I had to leave for work)  I didn't have time to t-shoot before taking off, but I reproduced the issue three times before leaving for the office.  One of the few differences between the two dual-monitor systems is that the failing one is driving two 2560 x 1440 res screens.  Odd thing is, I can get into my graphical environment for a few minutes before the crash...might try rolling the kernel back.  thanks!

  • Random freezes with kernel 2.6.34 and xorg 1.8

    The other day I upgraded the kernel to version 2.6.34 and at the same time xorg-server to 1.8 (along with input drivers and video drivers). From that moment, I suffer from random freezes, the system is completely locked up; the screen doesn't blank, though. The system appears to be perfectly fine, but after some minutes it will freeze.
    As far as I can remember, the freezes only occur when using a webbrowser. Chromium is my default browser, but also Firefox and Konqueror caused the system to freeze completely when I want to open a webpage. Other network programs such as irssi can run for hours and they didn't seem to cause any havoc.
    At first I thought this might be caused by some instability in the latest xf86-video-ati driver, so I downgraded back to xorg-server 1.7. Still the same symptoms, so I am pretty sure now there's something in the kernel. So I went back to xorg-server 1.8 and downgraded the kernel to 2.6.33. So far, the system hasn't let me down, yet. Also, I uninstalled the madwifi packages on my system so I'm using the ath5 drivers shipped with the kernel. That change doesn't seem to make a difference.
    I am not exactly sure what exactly could cause this, there's no trace in any log file to be found. My suspicion is that it's network related.
    The hardware is a Thinkpad T42 with an ATI Radeon Mobility 9600 (r300) chip and an Atheros wireless card.
    Anyone else with similar experiences with this hardware? I can't think of a way how to properly debug this. I know I can bisect, but that's time consuming and perhaps it's quicker to ask around first before I walk down that road. Any suggestions are welcome on how to track this down.

    The last time I used arch was to do the updates, just got back to using it and crash!
    Mine boots up to the point of the UDev events, but when I change the boot line to use /dev/sdxx instead of the /dev/disk/by-id/ xxxxxxxxxxxxxxxxx I go to the next step where the video mode changes, then it freezes.  Half the other time it would stop at udev and either blank out totally or just stop.  I don't even get a full bootup (standard or fallback).  My other archs boot just fine.
    Downgraded the kernel to the immediate previous kernel before .34 and booted upto the point of the window manager, so I think it's a problem with either the video driver or the xorg, because they were both updated at the same time, but the kernel may be a bit buggy also. (Of course, using the chroot and the arch install CD appropriate for my arch).  Also, it only shows up on one screen on the dual headed setup, which makes obvious which one isn't working.
    When the kernel calls the videomode (same one that can be called from kernel command line), that's when it is dying.  The only machine I'm having trouble with is the same one that will be the only one to do any updates, maybe this will fix the problem.
    The updates didn't make any difference.  It still hangs at the videomode change.  Was able to get a read out one time that one of the video cards had wrong ROM contents?
    Have had to use the top level ftp.archlinux.org just to get the most recent updates, without having to fish through mirrors.
    My presumption is that the kernel/video hardware is just not working in console mode or the graphics mode. 
    Strangely enough both of my hardwares, one is a mobile intel 945 and the other is a desktop 945.  The mobile works without a hitch, and the desktop freezes. 
    Last edited by nomorewindows (2010-08-15 21:23:56)

  • Mouse and Audio stutter/freezes with Intel ICH9R AHCI drivers

    edit: Initially (in original post) I suspected the random mouse and audio stutter/freezes were from a driver update. However between a reboot during these updates I had disconnected an eSATA cable from a drive that was not powered. It turns out the ICH9R when running in AHCI or RAID mode with appropriate drivers installed has problems with some HDDs when the drive isn't powered but the SATA data cable is connected. This is quite normal in SATA enclosures which I have plenty.
    What makes this more puzzling is that the stutter/freezes are very tiny and hard to notice IF you don't have any PCI cards connected. With a Intel 100 Mbit PCI NIC connected these stutters became real blocking issue that would have prompted me to return this Gigabyte G33 motherboard (Also affects P35) to the shop had I noticed this issue sooner. I'm not yet sure whether this stutter w/ AHCI/RAID issue affects only the Gigabyte boards but what is certain is that it does affect these in quantity based on how there's others reporting the exact same issue if googling around.

    This issue has been confirmed not to be limited to just my system.
    http://forums.microsoft.com/msdn/showpost.aspx?postid=1196678&siteid=1&sb=0&d=1&at=7&ft=11&tf=0&pageid=5
     androidi wrote:
    Same problem here, it's not limited to Vista, also happens on XP/2003 both 32/64 bit. I'm 99% sure it's to do with the Intel AHCI/Matrix storage driver. It'd be interesting to know what your motherboard brand/model is. Mine is Gigabyte DS2R and I've seen reports of this issue on other forums as well. I'm using the integrated Intel graphics and every component is Intel except Audio Realtek and Network Broadcom. The issue goes away by disabling AHCI/RAID but you lose hot-swap of SATA drives and NCQ.
    The primary indicator for this issue is that if any of the SATA ports has a drive that is plugged in but not powered up (and not powered down by the AHCI driver programmatically) then you get this global stutter/studder/hickups/choppy. In audio it sounds like tiny repeats. How bad it is seems to depend on what drive brand is plugged in etc so on some combinations it's very tiny and doesn't happen that often, on other drives it's more constant and easy to detect.
    I'd suggest you report at:
    http://supportmail.intel.com/scripts-emf/welcome.aspx?id=
    Chipsets/Chipset software/Matrix storage Technology
    btw. My AHCI BIOS/OROM version that is shown on boot with AHCI/RAID enabled is iSRC 1.07 08042006, what's yours?
     nada_clue wrote:
    Though most posts in this thread involve laptops and many of them attempt to isolate the problem in wireless network adapters, let me assure you the same problem can show up in a desktop with wired-ethernet-only. (Admittedly, it's a Realtek onboard gigabit LAN, and Realtek has been fingered by a number of you for its drivers, at least its audio drivers.)
    On a brand new core2-quad P35 chipset machine with 4GB ddrII, with a completely clean install of Vista 32 business, I have been suffering intermittent global stuttering. It affects not only audio (of any sort, through any player, whether or not dsp-enhanced) but also video (you can see it in screen saver motion, for instance) and even cursor or mouse movement (hit and hold the spacebar in a text editor and watch the stuttering fun begin!). It's intermittent but not random; that is, it can disappear for a while after I apply one of my stab-in-the-dark fixes (read on) but can come back and then generally remains until I re-apply a fix. It's been like this since about day 1. Well, maybe day 2 or 3.
    I've seen so many variants of this problem posted in so many forums, with so many theories, that I could spend the next three months doing nothing but troubleshooting it, assuming I had the budget and time to try endless substitute components or re-builds from scratch, but there's no assurance any or all of that would actually fix it. I do have the Intel Storage Matrix AHCI drivers pre-installed, and Intel itself vaguely alludes to possible 'degraded performance in Vista' with regard to those drivers--is this what they're talking about? They don't say. I do have an Nvidia 8800gts, and Nvidia forums are full of complaints about unacceptable issues with their video drivers, but again it's vague, no smoking gun for global stuttering. I have tried THREE different audio configurations--the onboard realtek hi-def; an x-fi elite; and a c-media based Omega Claro card. I have the problem with all of them. Discovering how musical the c-media card is was a happy accidental side effect of this miserable odyssey, but it really just makes it more frustrating, since I now want to listen to music more than ever but can't find a permanent solution to this vexing problem.
    One of the weirdest symptoms is that the stuttering can re-appear (if it has been gone for a few days) just by connecting an external SATA drive, even if the drive is not turned on! Equally weird: simply going into the BIOS and just looking, changing nothing, exiting without saving, can cause it to reappear upon re-boot!
    And to ice this cake of weirdness, here are some things that can make it go away (sometimes, at least for a while): removing the external SATA drive and rebooting; removing and re-seating the cards on the motherboard; and clearing the BIOS (jumper or pull out the battery) and then re-entering all the same settings as were there already.
    The symptoms are driving me nuts, as audio is one of my main uses for a computer, but it's the HUH? quality of these various actions that can seem to make the problem disappear or re-appear that are really threatening my sanity. If anybody can sift a better clue out of these ashes of frustration than I can, I wish you would post it.

  • Safari and Firefox are FREEZING the entire OS requiring hard reboot.

    Hello new user here.
    I have been working on a client computer:
    Dual 2.7 G5 Tower with 8GB Ram (early 2005), only mouse and keyboard plugged into USB port.
    Installed on new HD with clean install from Leopard 10.5.6 Install Disk. Updated to OS X 10.5.8, all apple updates and firmware updates applied.
    ASD for the system PASSED all tests and on multiple loops.
    MEMTEST Passed, no errors
    Temperature monitor within safe ranges under 70C for everything.
    Temperature Calibration of the chips completed through ASD
    No dust in the case, no leaks detected, no evidence of leaks either.
    Through diagnostics and testing original components by using replacing with known good components show that the hardware is SOLID. All the tower components passed the Apple Diagnostics and tested as WORKING in other towers.
    Permissions Fix = completed
    Deleted the browser preferences, deleted caches, etc etc.
    The system is CLEAN CLEAN CLEAN
    So when I got to run Safari, it crashes within 1 minute and takes out the entire system with it. Firefox will do the same but in 5 minutes or so. Opera browser WORKS. (But that doesn't solve the problem of why Safari and Firefox are hosing the system.
    I also tried this on wired lan, and a wireless lan, and a USB data modem (AT&T), and changed MTU, etc etc etc. The network is SOLID.
    I am a 15 year experienced desktop IT tech working on PCs and MACs and I am completely stumped.
    I can duplicate it each and every time. Browsing on google, cnn, yahoo, will crash the system.
    Here is something odd too. I ran folding at home for > 48 hours on this machine and came back over the weekend and it was FINE. The second I started up a Safari, it crashed that a reboot was required to recover.
    Any ideas? Any help appreciated.

    Hi stantony1, and a warm welcome to the forums!
    Wow, great work so far!
    Temperature monitor within safe ranges under 70C for everything.
    Hopefully way under, like under 60°C.?
    MEMTEST Passed, no errors
    The Memory test can really only be trusted if it finds a problem, not if it doesn't find a problem.
    Memtest OS X...
    http://www.memtestosx.org/joomla/index.php
    Rember is a freeware GUI for the memtest ...
    http://tech.kateva.org/2005/10/rember-freeware-memory-test-utility.html
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Does ȃfari crash it in Safe Mode???
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport in 10.4 & below.

  • Intel 82845G and xorg 1.8 - anyone got it working?

    By 'working' I mean 'not crashing'. I can install xorg 1.8 just fine, but rebooting every half an hour is not my thing. The crashes happen even if I'm just typing away at the xterm.
    [karol@black ~]$ lspci -v | grep -i -A8 VGA
    00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 01) (prog-if 00 [VGA controller])
    Subsystem: IBM NetVista A30p
    Flags: bus master, fast devsel, latency 0, IRQ 16
    Memory at 88000000 (32-bit, prefetchable) [size=128M]
    Memory at 80000000 (32-bit, non-prefetchable) [size=512K]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: <access denied>
    Kernel driver in use: i915
    Kernel modules: i915
    There are some bug reports in both our and upstream bugtrackers but the issues are still open.
    I'm quite happy w/ xorg 1.6 I have so it's not a life-or-death situation by any means. If you got it working, please tell me how you did it - there's a myriad of "switches" to flip and I'm too lazy / busy to try them all out. I've tried a few and got nowhere, so I'm asking you, my fellow Archers.

    Same hardware here, having this issue for about two years now with linux in general, about six months ago I start using arch, to my surprise it didn't crash that much and when it did a least it took me to the console login, so no data was lost. a month ago I switch to arch completely and just for the fun of it I have four arch DE in my single computer the results are as follow:
    Gnome=no crashes smooth performance even with composite enabled (the simple one build in gnome)
    KDE=freezes on some heavy loaded webpages with flash media, a strange garbaged screen occurs when I am using some software in root mode like dolphin then it crash and takes me to login window. this could be kde I have no idea.
    Xfce=freezes with heavy flash media once in a while. can be restarted by killing x.
    LXDE=no crashes/freezes (I use it just for internet surfing)
    all of the above with up to date software.
    Coming from Ubuntu lucid I may said that the driver has been improved, and probably cutting the fat out of the system may improve performance. I use gnome as my main system and all I can say is that finally I can use my computer for something else other than trying to fix xorg and intel. I was really moved to buy a new one but Arch just give me some more juice out of this old machine. same intel card than described in the first post. this is definitely not my Ubuntu 8.04 which was flying in amazing compositing effects but a least is back to a tool I can work on.
    All of my systems are fresh installs, all of them with the xorg 1.8 and the ..34.. kernel since the beginning, there is no xorg.conf file on any, I haven't had a crash in which I need to do a hard restart.

  • [SOLVED] Audio over HDMI stopped working? (Intel/i915)

    My audio over HDMI was working fine until recently and I can't figure out what's stopped it from working... My configs haven't changed and aplay -D plughw:0,3 /usr/share/sounds/alsa/Front_Center.wav gives no errors, but no sound can be heard. There are no errors/messages in dmesg either.
    My graphics card uses the Intel i915 chipset (Asus laptop).
    Config stuff:
    /etc/asound.conf:
    pcm.!default {
    type hw
    card 0
    device 3
    ctl.!default {
    type hw
    card 0
    device 3
    aplay -l:
    **** List of PLAYBACK Hardware Devices ****
    card 0: MID [HDA Intel MID], device 0: CONEXANT Analog [CONEXANT Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: MID [HDA Intel MID], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    Any ideas?
    Last edited by Minsc (2014-06-19 01:04:29)

    Yeah I checked and everything is fine... this is really weird!
    I've tested audio over HDMI on windows, so I know it's not the cable/HDMI port. I've looked through my pacman.log (I tend to update daily) and the only thing I can see which could affect it is a kernel update and intel-dri. I tried downgrading those and re-tested, to no avail.
    I also installed pulseaudio and pulseaudio-alsa before it stopped working. This could have broken it, but I've since uninstalled them and replaced /etc/asound.conf with my original, so that rules those out; unless there is something else that pulse could have broken?
    Cheers
    Last edited by Minsc (2013-01-28 07:42:59)

  • I915 and KMS problem

    Hi to all, I have bought a new netbook, an acer with intel 3150 graphics. It works well but it has a little glitch. When I boot up the system the kernel shows the usual messages ( I have removed quiet from the kernel boot parameters ) and it starts up kms well. However after the execution of all the hooks in the initramfs the screen goes black and it reactivates just after executing the hal daemon. Then the system loads the window manager and it works great.
    However it is annoying to see the screen going black during the boot process. I think it could be an acpi problem. Because the kms works, the xorg starts, after executing hal the screen reactivates and during the first part of the boot process I can see kernel messages and the screen setted to the proper resolution ( 1024x600 ).
    I have inserted the i195 and intel_agp modules into the initramfs. If I delete these modules from the initramfs the screen goes black too but it reactivates earlier ( I suppose when the i915 driver gets loaded ).
    From the /etc/logs/everything.log I cannot see errors or strange behaviours. I'm using syslinux to boot the system and I have as parameters only i915.modeset=1. I tried the SVIDEO option but it doesn't work.
    P.S. I have tried setting the splash boot parameter too, but I cannot see the arch logo on the top of the screen. This is another reason why I think it is an acpi problem.
    Last edited by pabloski (2010-10-20 09:49:57)

    Thanks for the reply. I haven't used the arch method to build a kernel, but in the old days of redhat and caldera I have built a lot of kernels manually. I have seen the number of options have grown, so it will need a bit of study to configure it good.
    Also I have seen another ( real strange ) problem. I'm using encrypted volumes for the system and on the 32 bit kernel ( the netbook ) I can use cryptsetup/device mapper without problems with 2.6.35 kernel, on the 64 bit desktop the 2.6.35 kernel causes troubles to cryptsetup ( it says that cannot mount /dev/sda as read-only or something like this ). I haven't investigated too much ( I'm using the 2.6.33 kernel on the desktop ) but I suspect it could be a configuration problem in the 64 bit kernel package.

  • Mail and Safari still freeze all the time-help

    Even with the latest Mavericks updates, Apple mail and Safari freeze contstantly to the point that I can't send email or use Safari. I had after the initial mavericks release gotten mail to function by shutting off 2 Gmail accounts I had on my MacPro. After the update that supposedly fixed the Gmail issues, I turned on my Gmail accounts and Mail started freezing almost immediately on startup. Was able to get in and shut the accounts don again, but Mail keeps freezing. I even removed the Gmail accounts from Mail prefs, but that didn't help either. I can usually get Mail to launch and for the most part can read email, but if I try to respond, once i type and email and try to send, Mail freezes and I have to force quit. Once Mail hangs Safari hangs shortly thereafter or if it's not even launched I can't launch.
    I have been using macs for a long time and have never had such a bad time with an upgrade. Have tried most of the solutions posted, and am baffled as to how to make things work.
    Any suggestions welcome.

    here's your report with some comments in red:
    Hardware Information:
              Mac Pro (Early 2009)
              Mac Pro - model: MacPro4,1
              1 2.66 GHz Quad-Core Intel Xeon CPU: 4 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce GT 120 - VRAM: 512 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    Startup Items:
              DynDNSUpdater: Path: /Library/StartupItems/DynDNSUpdater   these may be a problem. See comments below.
              EyeConnect: Path: /Library/StartupItems/EyeConnect
              ProTec6b: Path: /Library/StartupItems/ProTec6b
              VirtualBox: Path: /Library/StartupItems/VirtualBox
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 1:6:49
    Disk Information:
              HL-DT-ST DVD-RW GH41N
              WDC WD6400AAKS-41H2B0 disk1 : (640.14 GB)
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        MacPro HD (disk1s2) /: 639.28 GB (305.06 GB free)
                        Recovery HD (disk1s3) <not mounted>: 650 MB
              Hitachi HDS721010CLA332 disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Internal 1TB HD (disk0s2) /Volumes/Internal 1TB HD: 999.86 GB (16.64 GB free)
    USB Information:
              Apple Computer, Inc. Apple Cinema Display
              Apple, Inc. Keyboard Hub
                        Logitech USB Receiver
                        Apple, Inc Apple Keyboard
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
              Initio ST380013A 400mbit - 400mbit max
                        disk3s1 (disk3s1) <not mounted>: 32 KB
                        80GB MadDog (disk3s3) /Volumes/80GB MadDog: 79.89 GB (1.89 GB free)
              Oxford Semiconductor Ltd. OXFORD IDE Device 400mbit - 400mbit max
                        disk5s1 (disk5s1) <not mounted>: 32 KB
                        disk5s2 (disk5s2) <not mounted>: 51 KB
                        OWC Mercury Express (disk5s3) /Volumes/OWC Mercury Express: 20 GB (1.5 MB free)
              OWC Mercury Elite Pro AL OXFORD IDE Device 1 400mbit - 400mbit max
                        disk2s1 (disk2s1) <not mounted>: 32 KB
                        disk2s2 (disk2s2) <not mounted>: 29 KB
                        disk2s3 (disk2s3) <not mounted>: 29 KB
                        disk2s4 (disk2s4) <not mounted>: 29 KB
                        disk2s5 (disk2s5) <not mounted>: 29 KB
                        disk2s6 (disk2s6) <not mounted>: 262 KB
                        disk2s7 (disk2s7) <not mounted>: 262 KB
                        disk2s8 (disk2s8) <not mounted>: 262 KB
                        OWC Mercury Elite  (disk2s10) /Volumes/OWC Mercury Elite : 249.92 GB (20.51 GB free)
              WD My Book 800mbit - 800mbit max
                        disk4s1 (disk4s1) <not mounted>: 32 KB
                        My Book (disk4s3) /Volumes/My Book: 1 TB (155.85 GB free)  Big Problem. WD drives have software (and firmware) on them which are incompatible with Macs. I would rip the drive out of this, erase it, and put it in another (non-WD) enclosure, smash the WD enclosure to bits with a sledgehammer, and mail it back to WD.
    Thunderbolt Information:
    The next categories are loaded at startup and are potential causes for poor performance, as they run all the time, in the background. The green ones are potential problems, the red ones are definite problems. See below for my suggestions.
    Kernel Extensions:
              com.rogueamoeba.InstantOn          (6.0.4 - SDK 10.8) Pretty sure the rogue amoeba stuff is not compatible with Mavericks yet.
              com.Logitech.Control Center.HID Driver          (3.2.0)
              com.Logitech.Unifying.HID Driver          (1.1.0)
              org.virtualbox.kext.VBoxDrv          (4.2.6)
              org.virtualbox.kext.VBoxUSB          (4.2.6)
              com.rogueamoeba.InstantOnCore          (6.0.4 - SDK 10.8)
              com.logmein.driver.LogMeInSoundDriver          (1.0.2 - SDK 10.5)
              com.Cycling74.driver.Soundflower          (1.5.3 - SDK 10.6)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.acquia.drupal.apache0.plist
              [loaded] com.acquia.drupal.mysql0.plist
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.adobe.SwitchBoard.plist
              [loaded] com.barebones.authd.plist
              [loaded] com.barebones.textwrangler.plist
              [loaded] com.cocoatech.pathfinder.SMFHelper.plist
              [loaded] com.google.keystone.daemon.plist   this is spyware from Google.
              [not loaded] com.logmein.logmeinblanker.plist
              [loaded] com.logmein.logmeinserver.plist
              [loaded] com.logmein.raupdate.plist
              [loaded] com.memeo.WDMemeod.plist
              [loaded] com.microsoft.office.licensing.helper.plist
              [invalid] com.oracle.java.Helper-Tool.plist
              [loaded] com.quark.quarkupdate.plist
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.adobe.AdobeCreativeCloud.plist
              [loaded] com.adobe.CS4ServiceManager.plist
              [loaded] com.adobe.CS5ServiceManager.plist
              [loaded] com.extensis.FMCore.plist
              [loaded] com.google.keystone.agent.plist   spyware from Google
              [loaded] com.Logitech.Control Center.Daemon.plist
              [failed] com.logmein.LMILaunchAgentFixer.plist
              [loaded] com.logmein.logmeingui.plist
              [loaded] com.logmein.logmeinguiagent.plist
              [not loaded] com.logmein.logmeinguiagentatlogin.plist
              [invalid] com.oracle.java.Java-Updater.plist
              [loaded] com.quark.quarkupdate.agent.plist
              [loaded] com.wacom.wacomtablet.plist
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.akamai.client.plist
              [loaded] com.akamai.single-user-client.plist
              [loaded] com.facebook.videochat.[redacted].plist
              [not loaded] com.linotype.FontFolderProtector.plist
              [loaded] com.macpaw.CleanMyMac.trashSizeWatcher.plist  This may be the majority of your problem. CleanMyMac is second only to MacKeeper in the royalty of crapware. MacKeeper is the King of Crapware. Crapware is stuff like "cleaners', "optimizers", "defragmenters". Unnecessary on macs, usually poorly written, often harmful to your OS. Can be impossible to uninstall. Popular with recent converts from the Windows world. CleanMyMac should really be called "TakeABigShitOnMyMac". Needs to be uninstalled.
              [not loaded] jp.co.canon.Inkjet_Extended_Survey_Agent.plist
              [not loaded] org.virtualbox.vboxwebsrv.plist
              [loaded] ws.agile.1PasswordAgent.plist
    User Login Items:
              iTunesHelper
              BusyCalAlarm
              Reminder
              Reminder  two of these can't be good.
              Dropbox
              AdobeResourceSynchronizer
              ConnectService
              SFCoreHelper
    3rd Party Preference Panes:
              Akamai NetSession Preferences
              Default Folder X
              EyeConnect
              Flash Player
              Flip4Mac WMV
              Logitech Control Center
              MacFUSE
              Microsoft Mouse
              MusicManager
              Quark Update Preferences
              WacomTablet
    Internet Plug-ins::
              OfficeLiveBrowserPlugin: Version: 12.3.2
              AdobePDFViewerNPAPI: Version: 11.0.04 - SDK 10.6
              Flash Player: Version: 11.9.900.152 - SDK 10.6
              AdobePDFViewer: Version: 11.0.04 - SDK 10.6
              LogMeInSafari32: Version: 1.0.961 - SDK 10.7
              EPPEX Plugin: Version: 3.0.5.0
              WidevineMediaOptimizer: Version: 6.0.0.12607 - SDK 10.7
              AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7
              iPhotoPhotocast: Version: 7.0
              QuickTime Plugin: Version: 7.7.3
              FlashPlayer-10.6: Version: 11.9.900.152 - SDK 10.6
              AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7
              AmazonMP3DownloaderPlugin: Version: AmazonMP3DownloaderPlugin 1.0.17
              AmazonMP3DownloaderPlugin1017277: Version: AmazonMP3DownloaderPlugin 1.0.17
              Silverlight: Version: 5.1.20125.0 - SDK 10.6
              LogMeIn: Version: 1.0.961 - SDK 10.7
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 2.4.2.4
              SharePointBrowserPlugin: Version: 14.1.4 - SDK 10.6
              WacomSafari: Version: 1.1.0-5
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Outdated! Update
              WacomNetscape: Version: 1.1.0-5
    User Internet Plug-ins::
              fbplugin_1_0_3: Version: (null)
              DazzboardNPAPIPlugin: Version: 0.9.18
              fbplugin_1_0_1: Version: (null)
    Bad Fonts:
              None
    Old applications: you have a lot of these. Make sure they are all up to date.
              Audacity:          Version: 2.0.3.0 - SDK 10.4
                        /Applications/Audacity/Audacity.app
              DockPlistEdit:          Version: 7.0 - SDK 10.5
                        /Library/Parallels/Uninstaller/Parallels Hypervisor/DockPlistEdit.app
              FacebookVideoCalling:          Version: 1.2.0.157 - SDK 10.5
                        /Users/jeffreysternMacPro/Library/Application Support/Facebook/video/1.2.0.158/FacebookVideoCalling.app
              Freeway 5:          Version: 5.6.5 - SDK 10.5
                        /Applications/Freeway 5.5 Pro.app
              Intaglio:          Version: 3.4.2 - SDK 10.5
                        /Applications/Intaglio.app
              Microsoft Alerts Daemon:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Alerts Daemon.app
              Microsoft Chart Converter:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Chart Converter.app
              Microsoft Clip Gallery:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Clip Gallery.app
              Microsoft Database Daemon:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app
              Microsoft Database Utility:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Utility.app
              Microsoft Document Connection:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Document Connection.app
              Microsoft Excel:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Excel.app
              Microsoft Graph:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Graph.app
              Microsoft Language Register:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
              Microsoft Office Reminders:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.app
              Microsoft Outlook:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Outlook.app
              Microsoft PowerPoint:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft PowerPoint.app
              Microsoft Upload Center:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Upload Center.app
              Microsoft Word:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Word.app
              My Day:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/My Day.app
              Open XML for Excel:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Open XML for Excel.app
              Pages:          Version: 4.3 - SDK 10.5
                        /Applications/iWork '09/Pages.app
              QuarkUpdate:          Version: 1.1.0.1 - SDK 10.5
                        /Library/Application Support/Quark/AutoUpdate/QuarkUpdate.app
              RockMelt:          Version: 0.16.91.371 - SDK 10.5
                        /Applications/RockMelt.app
              SLLauncher:          Version: 1.0 - SDK 10.5
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              SyncServicesAgent:          Version: 14.1.4 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/SyncServicesAgent.app
              XLD:          Version: 20120407 - SDK 10.4
                        /Users/jeffreysternMacPro/Downloads/xld-gui-20120407/XLD.app
              dynamiclinkmanager:          Version: 6.0.0 - SDK 10.5
                        /Library/Application Support/Adobe/Common/dynamiclink/CS6/dynamiclinkmanager.app
              dynamiclinkmediaserver:          Version: 6.0.1 - SDK 10.5
                        /Library/Application Support/Adobe/Common/dynamiclinkmediaserver/1.0/dynamiclinkmediaserver.app
    Time Machine:
              Skip System Files: NO
              Auto backup: YES
              Volumes being backed up:
                        MacPro HD: Disk size: 595.37 GB Disk used: 311.26 GB
                        OWC Mercury Elite : Disk size: 232.76 GB Disk used: 213.66 GB
                        My Book: Disk size: 931.39 GB Disk used: 786.24 GB
              Destinations:
                        Internal 1TB HD [Local] (Last used)
                        Total size: 931.19 GB
                        Total number of backups: 124
                        Oldest backup: 2012-01-01 05:49:38 +0000
                        Last backup: 2013-12-09 00:35:29 +0000
                        Size of backup disk: Too small
                                  Backup size 931.19 GB < (Disk used 1  X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   2%          EtreCheck
                   1%          WindowServer
                   1%          Mail
                   0%          LCCDaemon
                   0%          2BUA8C4S2C.com.agilebits.onepassword4-helper
    Top Processes by Memory:
              393 MB          mds_stores

  • I own a late 2009 Macbook Pro, and it keeps freezing after OSX Lion installation.

    I own a late 2009 Macbook Pro, and it keeps freezing after OSX Lion installation.  I will post my computer's 'specs' below.  I installed Lion, from Snow Leopard, through the App store.  The first week, it worked like a dream, and was loving my brand new computer, or so it seemed.  I then began to run into problems, and I can't confirm this 100%, but I believe it was after I updated from 10.7.1, to 10.7.2. 
    The freezes are sporatic at best, and cannot be narrowed down to one app.  I googled the issue about two weeks ago, and found a fix involving a temporary log-in, verifying the disk, restarting the computer holding CMD+R, and repairing the disk from there.  That fixed the problem.  For about three or four days.  From there I brought my laptop to Best Buy, where I purchased the computer (start the groans, my dad wanted the accidental damage, and he was paying, there was no argument).  My warranty there was still good, but all they were offering was to check my hard-drive, and possibly ship it out.  That would not be good for me, as I am a High School student, who works online. 
    So I then decided to go to the Apple store, see what they said.  They said a bunch of people had this problem, it would cost a lot to fix, as I would need a new Logic Board.  This did not make any sense to me, as I knew it was Lion's fault, so why would they not make the L-2009MBP Logic Board compatible, and why are only a few people having this problem, well a lot more than a few, but I mean not everyone. 
    So I asked a friend about it, and we decided to run a back up, and erase the computer, and re-install Lion.  Figuring maybe my data was corrupted during install.  This helped for a day or two, and happened again.  So this time, we backed up only files (music, pics, documents, etc.,) and did a fresh install.  I got my computer back last night.  Now, I am not saying that didn't help.  Previously I would have frozen about 18 times well writing this, but I have not frozen once (hopefully I didn't just jinx myself).  I have gone from about one freeze every 10-15 minutes (sometimes worse), to about one every 1-3 hours.  Which, let's be honest is still a lot. 
    So, before I just decide to go and revert to Snow Leopard on my merry way, I ask, do any of you have any other ideas?  Or guarenteed fixes?  I know a guarentee is a hard thing to ask for, but I am desperate, my teachers are getting angry with me for not sending work, and I know this would help a lot of people.  Thank you to those who read through my whole spiel, and thank you to those who will help me!
    [Ps, while I am somewhat of a noob, I know my way around a computer, so any help, or knowledge you could bestow upon me is awesome.  Especially DIY fixes.  (if your only advice is, don't buy a mac at Best Buy, don't bother commenting)]
    Macbook Pro
    15-inch, 2.53GHz, Mid 2009
    Processor:  2.53 GHz Intel Core 2 Duo
    Memory:  4 GB 1067 MHz DDR3
    Graphics:  NVIDIA GeForce 9400M 256 MB
    Software:  Mac OS X Lion 10.7.2 (11C74)

    Once it is downloaded you need to restart the computer if it does not restart automatically. When it next starts up you should note a progress bar appearing below the Apple logo. When done the computer will restart once more. The new firmware should now be installed.

  • Can no longer echo brightness after upgrading intel-dri and libgl

    I just upgraded these two packages for my Intel HD 3000:
    [2011-11-29 17:13] upgraded libgl (7.11.1-1 -> 7.11.2-1)
    [2011-11-29 17:13] upgraded intel-dri (7.11.1-1 -> 7.11.2-1)
    And afterwards this file into which I used to echo brigthness values has disappeared:
    /sys/class/backlight/acpi_video0/brightness
    I failed to find any relevant information on http://dri.freedesktop.org/.

    Dear Ernie,
    Thanks. Tried this but mail still crashes. I get a bit further, can click on sent mail and can sometimes reach one e-mail before the system crashes (heavy hard disk access, whole system slows, and eventually I get the message - Mail Unexpectedly Shut Down).
    Would it make sense to go a few days back on time machine and restore an earlier entire mail folder? (I have a few days of mail on the server even on my normal POP accounts).
    Let me know if there is anything else I can try.
    Charles

  • I have a MacBook Pro 13.3 OS- MAC OS X LION.Whenever I am staring the computer, it says You need to restart your computer by pressing the power button.I did this number of times and everytime it freezes to the same screen.Solution needed urgently pls.

    I have a MacBook Pro 13.3 OS- MAC OS X LION.
    Whenever I am staring the computer, it says You need to restart your computer by pressing the power button.
    I did this number of times and everytime it freezes to the same screen.Solution needed urgently pls.
    Thank you for any help in this regard that comes fast.

    The details of the kernel-panic report is as follows-
    Interval Since Last Panic Report:  1458653 sec
    Panics Since Last Report:          6
    Anonymous UUID:                    70BA6A**************************************************
    Sun Sep 16 23:00:13 2012
    panic(cpu 0 caller 0xffffff80002c4794): Kernel trap at 0xffffff8000290560, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000000800028, CR3: 0x000000000a509005, CR4: 0x00000000001606e0
    RAX: 0x0000000000000001, RBX: 0x0000000000820000, RCX: 0xffffff801122dc40, RDX: 0x0000000000020501
    RSP: 0xffffff80ef3d3da0, RBP: 0xffffff80ef3d3dc0, RSI: 0x000000002b1d78b6, RDI: 0xffffff800342d280
    R8:  0xffffff80ef3d3f08, R9:  0xffffff80ef3d3ef8, R10: 0x000000010d901000, R11: 0x0000000000000206
    R12: 0xffffff800342d280, R13: 0x0000000000000000, R14: 0xffffff8011cd6500, R15: 0x0000000000800000
    RFL: 0x0000000000010206, RIP: 0xffffff8000290560, CS:  0x0000000000000008, SS:  0x0000000000000000
    CR2: 0x0000000000800028, Error code: 0x0000000000000000, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80ef3d3a50 : 0xffffff8000220792
    0xffffff80ef3d3ad0 : 0xffffff80002c4794
    0xffffff80ef3d3c80 : 0xffffff80002da55d
    0xffffff80ef3d3ca0 : 0xffffff8000290560
    0xffffff80ef3d3dc0 : 0xffffff800026c9c3
    0xffffff80ef3d3f40 : 0xffffff80002c3fbb
    0xffffff80ef3d3fb0 : 0xffffff80002da481
    BSD process name corresponding to current thread: fsck_hfs
    Mac OS version:
    11E2620
    Kernel version:
    Darwin Kernel Version 11.4.2: Wed May 30 20:13:51 PDT 2012; root:xnu-1699.31.2~1/RELEASE_X86_64
    Kernel UUID: 25EC645A-8793-3201-8D0A-23EA280EC755
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 4850001132
    last loaded kext at 1796984176: com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.7f2 (addr 0xffffff7f80e16000, size 57344)
    loaded kexts:
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.7f2
    com.apple.driver.AppleUSBTCButtons    227.6
    com.apple.driver.AppleUSBTCKeyEventDriver    227.6
    com.apple.driver.AppleUSBTCKeyboard    227.6
    com.apple.driver.AppleIRController    312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.SCSITaskUserClient    3.2.1
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCISerialATAPI    2.0.3
    com.apple.iokit.IOAHCIBlockStorage    2.0.4
    com.apple.driver.AppleFWOHCI    4.8.9
    com.apple.driver.AirPort.Brcm4331    560.7.21
    com.apple.driver.AppleSDXC    1.2.2
    com.apple.driver.AppleUSBHub    5.0.8
    com.apple.iokit.AppleBCM5701Ethernet    3.2.4b8
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleAHCIPort    2.3.0
    com.apple.driver.AppleUSBEHCI    5.0.7
    com.apple.driver.AppleUSBXHCI    1.0.7
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    195.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.3
    com.apple.security.TMSafetyNet    8
    com.apple.driver.AppleIntelCPUPowerManagement    195.0.0
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.7f2
    com.apple.iokit.IOBluetoothFamily    4.0.7f2
    com.apple.driver.AppleFileSystemDriver    13
    com.apple.driver.AppleUSBMultitouch    230.5
    com.apple.driver.AppleThunderboltDPInAdapter    1.8.4
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.8.4
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.2.5
    com.apple.iokit.IOUSBHIDDriver    5.0.0
    com.apple.driver.AppleUSBMergeNub    5.0.7
    com.apple.driver.AppleUSBComposite    5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.driver.AppleThunderboltNHI    1.6.0
    com.apple.iokit.IOThunderboltFamily    2.0.3
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.1
    com.apple.iokit.IOFireWireFamily    4.4.5
    com.apple.iokit.IO80211Family    420.3
    com.apple.iokit.IOEthernetAVBController    1.0.1b1
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOUSBUserClient    5.0.0
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IOUSBFamily    5.0.8
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.5
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.DiskImages    331.7
    com.apple.iokit.IOStorageFamily    1.7.2
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.7
    com.apple.iokit.IOACPIFamily    1.4

  • Have a problem where I'll occasionally shift my computer (i.e. physically move it, say from the coffee table to my lap on the couch) and it will freeze and the screen will turn into a bunch of horizontal multicolored lines (closer to 100 lines than 5). Us

    Have a problem where I'll occasionally shift my computer (i.e. physically move it, say from the coffee table to my lap on the couch) and it will freeze and the screen will turn into a bunch of horizontal multicolored lines (closer to 100 lines than 5). Usually restarting (by holding the power button to turn it off) works. A few times that has resulted in the three beeps (RAM issue? -- I've since replaced my RAM [it *seemed* to stop it for a while, but maybe not]), but the second time it always works. Attempting to SSH into the computer during this state does not work. Please advise as to what to do/what reports I can run and post. I will take a pic next time it happens.
    Here's this info:
      Model Name:          MacBook Pro
      Model Identifier:          MacBookPro7,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.4 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          3 MB
      Memory:          8 GB
      Bus Speed:          1.07 GHz
      Boot ROM Version:          MBP71.0039.B0B
      OS 10.6.8

    Sounds like a problem with your GPU. Do you have an external display you could connect your machine to in order to test this? If the external display renders the same way, then your GPU is damaged. If the external renders fine, then the CPU display is damaged.

  • Configure a intel i915 (Solved)

    I need help to configure a intel i915 chipset, I installed the 3ddesktop package, and the command "3ddesk" gives me this message:
    Xlib:  extension "GLX" missing on display ":0.0".
    Xlib:  extension "GLX" missing on display ":0.0".
    Xlib:  extension "GLX" missing on display ":0.0".
    Xlib:  extension "GLX" missing on display ":0.0".
    Daemon started.  Run 3ddesk to activate.
    Server not found after waiting 5 seconds.
    Could not find server.
    Try starting manually (3ddeskd)
    Then I tried with "3ddeskd" and got:
    Xlib:  extension "GLX" missing on display ":0.0".
    Xlib:  extension "GLX" missing on display ":0.0".
    Xlib:  extension "GLX" missing on display ":0.0".
    Xlib:  extension "GLX" missing on display ":0.0".
    Daemon started.  Run 3ddesk to activate.
    And so it goes and goes, then the command glxgears gives me this other message:
    Xlib:  extension "GLX" missing on display ":0.0".
    Error: couldn't get an RGB, Double-buffered visual
    So, I guess my card is not configured properly, so how can I make it work on xorg 7?
    this is my xorg.conf:
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5x) man page for details about the format of
    # this file.
    # Module section -- this  section  is used to specify
    # which dynamically loadable modules to load.
    Section "Module"
    # This loads the DBE extension module.
        Load        "dbe"      # Double buffer extension
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
        SubSection  "extmod"
          Option    "omit xfree86-dga"   # don't initialise the DGA extension
        EndSubSection
    # This loads the font modules
    #    Load        "type1"
    #    Load        "speedo"
        Load        "freetype"
    #    Load        "xtt"
    # This loads the GLX module
    #    Load       "glx"
    # This loads the DRI module
    #    Load       "dri"
    EndSection
    # Files section.  This allows default font and rgb paths to be set
    Section "Files"
    # The location of the RGB database.  Note, this is the name of the
    # file minus the extension (like ".txt" or ".db").  There is normally
    # no need to change the default.
        RgbPath    "/usr/share/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
        FontPath   "/usr/share/fonts/misc"
        FontPath   "/usr/share/fonts/75dpi"
        FontPath   "/usr/share/fonts/100dpi"
        FontPath   "/usr/share/fonts/TTF"
        FontPath   "/usr/share/fonts/Type1"
    #    FontPath   "/usr/lib/X11/fonts/local/"
    #    FontPath   "/usr/lib/X11/fonts/misc/"
    #    FontPath   "/usr/lib/X11/fonts/75dpi/:unscaled"
    #    FontPath   "/usr/lib/X11/fonts/100dpi/:unscaled"
    #    FontPath   "/usr/lib/X11/fonts/Speedo/"
    #    FontPath   "/usr/lib/X11/fonts/Type1/"
    #    FontPath   "/usr/lib/X11/fonts/TrueType/"
    #    FontPath   "/usr/lib/X11/fonts/freefont/"
    #    FontPath   "/usr/lib/X11/fonts/75dpi/"
    #    FontPath   "/usr/lib/X11/fonts/100dpi/"
    # The module search path.  The default path is shown here.
    #    ModulePath "/usr/lib/modules"
    EndSection
    # Server flags section.
    Section "ServerFlags"
    # Uncomment this to cause a core dump at the spot where a signal is
    # received.  This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    #    Option "NoTrapSignals"
    # Uncomment this to disable the <Ctrl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12).  This allows clients to receive these key
    # events.
    #    Option "DontVTSwitch"
    # Uncomment this to disable the <Ctrl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    #    Option "DontZap"
    # Uncomment this to disable the <Ctrl><Alt><KP_+>/<KP_-> mode switching
    # sequences.  This allows clients to receive these key events.
    #    Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    #    Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    #    Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    #    Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    #    Option "AllowNonLocalModInDev"
    EndSection
    # Input devices
    # Core keyboard's InputDevice section
    Section "InputDevice"
        Identifier    "Keyboard1"
        Driver    "kbd"
    # For most OSs the protocol can be omitted (it defaults to "Standard").
    # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
    # uncomment the following line.
    #    Option     "Protocol"      "Xqueue"
        Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    #    Option    "Xleds"      "1 2 3"
    #    Option "LeftAlt"     "Meta"
    #    Option "RightAlt"    "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults).  For example, for a non-U.S.
    # keyboard, you will probably want to use:
    #    Option "XkbModel"    "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    #    Option "XkbModel"    "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    #    Option "XkbLayout"   "de"
    # or:
    #    Option "XkbLayout"   "de"
    #    Option "XkbVariant"  "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    #    Option "XkbOptions"  "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    #    Option "XkbRules"    "xorg"
    #    Option "XkbModel"    "pc105"
    #    Option "XkbLayout"   "us"
    #    Option "XkbVariant"  ""
    #    Option "XkbOptions"  ""
    #    Option "XkbDisable"
        Option "XkbRules"    "xorg"
        Option "XkbModel"    "pc105"
        Option "XkbLayout"    "latam"
    EndSection
    # Core Pointer's InputDevice section
    Section "InputDevice"
    # Identifier and driver
        Identifier    "Mouse1"
        Driver    "mouse"
        Option "Protocol"    "Auto"    # Auto detect
        Option "Device"      "/dev/input/mouse0"
    # When using XQUEUE, comment out the above two lines, and uncomment
    # the following line.
    #    Option "Protocol"    "Xqueue"
    # Mouse-speed setting for PS/2 mouse.
    #    Option "Resolution"    "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    #    Option "BaudRate"    "9600"
    #    Option "SampleRate"    "150"
    # Mouse wheel mapping.  Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7.   Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
        Option "ZAxisMapping"   "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    #    Option "Emulate3Buttons"
    #    Option "Emulate3Timeout"    "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    #    Option "ChordMiddle"
    EndSection
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices.  This is for example only.  Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    #    Identifier  "Mouse2"
    #    Driver      "mouse"
    #    Option      "Protocol"      "MouseMan"
    #    Option      "Device"        "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    #    Identifier "spaceball"
    #    Driver     "magellan"
    #    Option     "Device"        "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    #    Identifier "spaceball2"
    #    Driver     "spaceorb"
    #    Option     "Device"        "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    #    Identifier "touchscreen0"
    #    Driver     "microtouch"
    #    Option     "Device"        "/dev/ttyS0"
    #    Option     "MinX"          "1412"
    #    Option     "MaxX"          "15184"
    #    Option     "MinY"          "15372"
    #    Option     "MaxY"          "1230"
    #    Option     "ScreenNumber"  "0"
    #    Option     "ReportingMode" "Scaled"
    #    Option     "ButtonNumber"  "1"
    #    Option     "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    #    Identifier "touchscreen1"
    #    Driver     "elo2300"
    #    Option     "Device"        "/dev/ttyS0"
    #    Option     "MinX"          "231"
    #    Option     "MaxX"          "3868"
    #    Option     "MinY"          "3858"
    #    Option     "MaxY"          "272"
    #    Option     "ScreenNumber"  "0"
    #    Option     "ReportingMode" "Scaled"
    #    Option     "ButtonThreshold"       "17"
    #    Option     "ButtonNumber"  "1"
    #    Option     "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    Section "Monitor"
        Identifier  "HPvs15"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
        HorizSync   31.5, 35.15, 35.5
    #    HorizSync    30-64         # multisync
    #    HorizSync    31.5, 35.2    # multiple fixed sync frequencies
    #    HorizSync    15-25, 30-50  # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
        VertRefresh 50-70
    EndSection
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    Section "Device"
        Identifier    "Standard VGA"
        VendorName    "Unknown"
        BoardName    "Unknown"
    # The chipset line is optional in most cases.  It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    #    Chipset    "generic"
    # The Driver line must be present.  When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module.  Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
        Driver     "vga"
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for.  When this line isn't present, a device
    # section can only match up with the primary video device.  For PCI
    # devices a line like the following could be used.  This line should not
    # normally be included unless there is more than one video device
    # intalled.
    #    BusID      "PCI:0:10:0"
    #    VideoRam    256
    #    Clocks    25.2 28.3
    EndSection
    # Device configured by xorgconfig:
    Section "Device"
        Identifier  "** Intel i810 (generic)               [i810]"
        Driver      "i810"
        #VideoRam    131072
        # Insert Clocks lines here if appropriate
    EndSection
    # Screen sections
    # Any number of screen sections may be present.  Each describes
    # the configuration of a single screen.  A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    Section "Screen"
        Identifier  "Screen 1"
        Device      "** Intel i810 (generic)               [i810]"
        Monitor     "HPvs15"
        DefaultDepth 24
        Subsection "Display"
            Depth       8
            Modes       "1024x768" "800x600" "640x480"
            ViewPort    0 0
        EndSubsection
        Subsection "Display"
            Depth       16
            Modes       "1024x768" "800x600" "640x480"
            ViewPort    0 0
        EndSubsection
        Subsection "Display"
            Depth       24
            Modes       "1024x768" "800x600" "640x480"
            ViewPort    0 0
        EndSubsection
    EndSection
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present.  Each describes
    # the way multiple screens are organised.  A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option.  In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
        Identifier  "Simple Layout"
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens.  The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen.  In this example, screen 2 is located to the
    # right of screen 1.
        Screen "Screen 1"
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used.  Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
        InputDevice "Mouse1" "CorePointer"
        InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    # Section "DRI"
    #    Mode 0666
    # EndSection
    [/list]

    Here's a copy of my Xorg.conf designed for i810/i910, just copy the contents over your xorg.conf (make backup!!) and adjust it to your needs (u may want to change the keyboard layout)
    This xorg conf work with nomal as well as Xinerama by doing
    startx -- -layout Xinerama
    :arrow: http://arch.pastebin.com/613767

  • Wifi freeze! MBP will freeze entire wireless network on "join network"

    This took a quite time to prove. My MacBook Pro on connecting to WiFi or on renewal of IP via wireless will freeze entire LAN (cut off) all other devices! And of course it will not connect it self. I think it would work if a static IP assigned. Now one will say that is the Router. Not likely, tested with 3 routers always same issue. Must say this was not always like this. A few months ago just randomly disconnecting some devices on network but the MBP stayed connected or just needed restart.
    For those who are interested in this trouble, and perhaps learn for future references some background info. Entire LAN is about 20 devices, 8 wireless. From Windows PC, Linux box, LAN attached DVD player, printers, 4 Apple devices and 3 Andriods. All work just fine if this MBP is not turned on. I do work with computers quite a bit but never have seen this. that a computer on the DHCP requests will freeze the router! I would like to know if anybody out there ever had the same problem.

    Have you contacted your Internet Service Provider? They may have throttling and might be disconnecting you unintentionally when they begin throttling you.

Maybe you are looking for

  • Problem of using Parameters in Query templates

    Hi,   how do use parameter values in SQL query in query templates? i have 2 field database no1, no2. i want to filter it by no2 by using param. i gave in filter field of query template as order1.no2 like '[Param.1]' and in parameters as % and clicked

  • Can't Reset Game

    Hi! I'm working on a simple game. At the moment I'm trying to get back to the game menu when the game ends, then allow the user to be able to start the game again. Here is an image of my game menu, [http://www.cppjj.com/game/gameMenu.jpg] Right now,

  • When updating get a message that reads  the disk could not read or write -

    i downloaded several songs from cd (only some cd do not update )- all loaded up well in i tunes - but when i update - i get a message on the i tunes screen "attempting to copy to the disk david i pod faults - the disk could not read or write- i reins

  • Error message: Unknown error (-69)

    Recently, when I sync new songs to my iPod, all it will do is sync one, two, or even no songs and then stop syncing. This error message will come up: "Attempting to copy to the disk "CAMERON'S I" failed. An unknown error occured (-69)." "CAMERON'S I"

  • Big datafile vs many datafile

    I'm currently contemplating on how do design my datafiles layout. I'm running ERP6 on AIX 6.1 with Oracle 10g. Total DB size is 1300GB. The default is to have 10G of datafiles which will leads to 130 data files which I think too much of a hassle to k