Zsh completion defaults crash

$ zsh -f
$ autoload -U compinit
$ compinit
$ zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
now here's the problem:
$ defaults read com.apple.S<tab> offers a number of completions, but
$ defaults read com.apple.s<tab> crashes the shell.
apparently case-insensitive matching can't coexist with the partial-completion matching used in the _defaults function (removing the latter solved the problem). so i'm wondering if my mac just isn't powerful enough to handle this or (if other people can reproduce this) it's a _defaults function bug.
zsh 4.2.6

It seems the problem can be reproduced (on MacOSX and Linux) by the following procedure:
Create a file _mycmd in $HOME/.zsh/functions/ (or anywhere in your FPATH) with the following contents:
#compdef mycmd
_mydomains() {
local -a list
local expl
list=( a.b.Cx a.b.cy a.b.cz )
_wanted domains expl domain compadd -M 'r:|.=* r:|=*' -a list
_arguments '*:domains:_mydomains'
and start a new zsh
% zsh -f
zsh% FPATH=$HOME/.zsh/fuctions:$FPATH
zsh% autoload -U compinit; compinit
zsh% zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
zsh% mycmd a.b.c<TAB>
If you hit <TAB>, zsh hangs and eventually core dumps after few seconds (or minutes). This happens on (at least) Tiger, Leopard and Linux (Fefora7).
As ra5ul writes, the core dump does not occur
if "zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'" is not run, or
if "-M 'r:|.=* r:|=*'" is omitted from _mycmd, or
if the value of "list" is changed to either of
list=( a.b.Cx a.b.cy )
list=( a.b.cx a.b.cy a.b.cz )
list=( b.Cx b.cy b.cz )
I have posted a bug report to zsh-workers mailing list.

Similar Messages

  • How do I retrieve my music library after a complete computer crash.  I have a backup on a flash drive and I can access my Itunes account but my play lists and music are gone.

    How do you retrieve downloaded music and playlists after a complete computer crash.  I can log into my Itunes account and make purchases but my music library is gone.  I have an external backup on a flash drive but for some reason the music does not show up there either. It's like I have a brand new account and have to start all over.  Itunes must have an archive I can access to get my music back, right?
    Maya

    Playlists should be part of your backup copy.
    You can redownload some purchases in some countries:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Zsh completion with pacman 3.5

    Hi.
    Does zsh completion work for you with pacman 3.5 for -S?
    Bash completion works as intended:
    [chris@chriseee ~]$ sudo pacman -S fire
    firefox firefox-adblock-plus firefox-i18n firefox-noscript firefox-spell-ru firehol
    However, with zsh it is broken:
    ~ % sudo pacman -S fire core/
    No matches for: `arguments', `package', `packages', `repository/package', or `file'
    and it "corrects" fire to core/
    With -Q it works with zsh too:
    ~ % pacman -Q firefox :(
    completing package
    firefox firefox-i18n

    Oh well, thank you.

  • [SOLVED]zsh completion config not being loaded but other settings work

    This seems like a slightly odd problem.  I've been using zsh quite happily for a while now and as far as I've been aware, my .zshrc has been loaded consistently and properly.
    Today I decided to add auto-completion for one of my own programs.  It works, BUT I have to manually `source ~/.zshrc` in each new terminal even after logging out and back in.  The `fpath` variable is not being read from the .zshrc when I log in or start a terminal/emulator, but if I manually source .zshrc it works fine.
    Here are the relevant files:
    ~/.zshenv
    #!/bin/zsh
    ZDOTDIR=~/.config/zsh
    typeset -U path
    path=($HOME/bin $HOME/scripts $path)
    export EDITOR=vim
    export DIRB=~/.local/share/DirB
    export LOCAL_PACKAGE_SOURCES=/home/ian/dl
    ~/.config/_zshrc
    # The following lines were added by compinstall
    zstyle ':completion:*' completer _complete _ignored
    zstyle :compinstall filename '/home/ian/.config/zsh/_zshrc'
    autoload -Uz promptinit colors
    colors
    promptinit
    # COMPLETION settings
    fpath=(~/.config/zsh/completion $fpath)
    autoload -Uz compinit
    compinit
    zstyle ':completion:*' menu select=2
    # Lines configured by zsh-newuser-install
    HISTFILE=~/.local/share/zshhistfile
    HISTSIZE=1000
    SAVEHIST=1000
    if ! [[ "${PATH}" =~ "^${HOME}/bin" ]]; then
    export PATH="${HOME}/bin:${PATH}"
    fi
    if ! [[ "${PATH}" =~ "^${HOME}/scripts" ]]; then
    export PATH="${HOME}/scripts:${PATH}"
    fi
    # history options:
    setopt append_history hist_ignore_dups hist_ignore_all_dups hist_ignore_space hist_no_store
    # background jobs:
    setopt notify
    # changing directory:
    setopt auto_cd auto_pushd pushd_silent
    # globbing:
    setopt extended_glob
    # unset:
    unsetopt beep flow_control
    # keymap: emacs
    bindkey -e
    # End of lines configured by zsh-newuser-install
    # make M-f and M-b stop at / in paths:
    export WORDCHARS=''
    source ~/.bash_profile
    source ~/.config/bash/aliases
    source ~/.config/zsh/alias_s
    source ~/.config/zsh/alias_g
    source ~/.config/bash/DirB
    source ~/.config/zsh/functions
    # prompt:
    PS1="%B%{$fg[black]%}::%{$fg[cyan]%}(%b%{$fg[cyan]%}%n@%m%B%{$fg[cyan]%})%{$fg[black]%}-%{$fg[cyan]%}(%b%{$fg[cyan]%}%T%B%{$fg[cyan]%})%{$fg[black]%}-%{$fg[cyan]%}[%b%{$fg[cyan]%}%h%B%{$fg[cyan]%}]%{$fg[black]%}-%{$fg[cyan]%}(%b%{$fg[yellow]%}%2~%B%{$fg[cyan]%})%{$fg[black]%}>%b %{$reset_color%}"
    The only changes I've made are the lines under "COMPLETION."
    Can anyone spot something in there to suggest why everything seems to work except the `fpath=(~/.config/zsh/completion $fpath)` line?
    Last edited by ibrunton (2015-06-09 22:43:24)

    This is what I use (note, different ZSHDOTDIR to you):
    # completions
    # add custom completion scripts
    fpath=(~/.zsh/completion $fpath)
    autoload -Uz compinit
    compinit
    zstyle ':completion:*' completer _complete _correct _approximate
    zstyle ':completion:*' expand prefix suffix
    zstyle ':completion:*' completer _expand_alias _complete _approximate
    zstyle ':completion:*' menu select
    zstyle ':completion:*' file-sort name
    zstyle ':completion:*' ignore-parents pwd
    zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
    zstyle ':completion:*:pacman:*' force-list always
    zstyle ':completion:*:*:pacman:*' menu yes select
    zstyle -e ':completion:*' hosts 'reply=(cent pi sent veles)'
    zstyle :compinstall filename '$HOME/.zsh/zshrc'

  • Taskwarrior and zsh completion makes terminal crash

    Hi all,
    I had been using taskwarrior a while back. The Tab-completion was working fine with zsh, meaning that if I was typing
    $ task add Something project:<TAB><TAB>
    I was getting a list of all the projects already listed in my task files.
    Now, if I do that, my terminal crashes (virtual or tty).
    Does anyone have the same behaviour or has an idea how I could debug this?
    Thanks!

    Made a hack and slash solution. May add to it if I need extra functionality...
    #compdef task
    _task () {
    _arguments -s \
    '::ids:($(task -ids))'\
    ':add:(add)'\
    '::commands:(start done modify)'\
    "::tags:($(task _tags | sed 's/.*/\+&/'))"\
    ":projects:($(task _projects | sed 's/.*/projects:&/'))"
    I might try and do this slightly better when I have reliable internet and some time...
    Hope this helps.

  • Complete System Crash

    Hello
    Currently since around September I have experiancing complete freeze of the system. I have tried many different ways to try and diagnose the problem which it reaches this state such as changing ttys and attempting to connect through ssh but with no avail which ends up resulting in a forced reboot.
    This only appears to happen when I have a game open with wine (WoW/ CS:GO.. or yet to experiance a crash with other wine apps) while using dual screen, I have taken out one of the monitors for a LAN for a couple of days,which I have never recieved this crash (and this crash happens every 1 - 3 dayish at a time). I have used KDE in the past and now recently using Openbox and the problem still persists. So to me this could be a problem with Wine while using Dual Screen, but I am unsure. I have asked a fellow (more knowledgeable) Archer to enlighten me on my problem which he stated it could be an Nvidia driver problem which I will use nouveau soon to see if there are any changes... but I would like to know if any of you could also help me with this?
    I may also note before hand that I have had this dual monitor setup since I have installed Arch and have been playing the same games without problems untill this has suddenly sparked up months later after installation...
    My system is also updated by -Syu every couple of days.
    Here is a picture after the crash.
    Thumbnail:
    Here is full size image:
    http://tinypic.com/r/2v34lkz/5
    Here is Journalctl -b -1 after the crash
    Pastebin
    I have noticed this line which could of been the crash point ?
    Jan 14 23:54:08 nickarch kernel: threaded-ml[753]: segfault at 0 ip (null) sp 00007fbfd52b8bf8 error 14 in ts3client_linux_amd64[400000+bcb000]
    So I decided to do a Journalctl -xn -b -1..
    -- Logs begin at Fri 2013-08-16 14:14:16 BST, end at Wed 2014-01-15 23:17:46 GMT. --
    Jan 15 17:00:09 nickarch dbus[296]: [system] Activating via systemd: service name='org.freedesktop.Avahi' unit
    Jan 15 17:00:09 nickarch dbus[296]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.Avah
    Jan 15 17:00:09 nickarch dbus-daemon[296]: dbus[296]: [system] Activation via systemd failed for unit 'dbus-or
    Jan 15 17:00:20 nickarch polkitd[443]: Registered Authentication Agent for unix-session:1 (system bus name :1.
    Jan 15 17:00:59 nickarch kernel: threaded-ml[652]: segfault at 0 ip (null) sp 00007fa77599abf8 error
    Jan 15 17:00:59 nickarch systemd-coredump[654]: Process 647 (threaded-ml) dumped core.
    -- Subject: Process 647 (threaded-ml) dumped core
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Documentation: man:core(5)
    -- Process 647 (threaded-ml) crashed and dumped core.
    -- This usually indicates a programming error in the crashing program and
    -- should be reported to its vendor as a bug.
    So this is flagged up as a possible bug possibly?
    But then again.. After a same crash 5 days earlier the logs show different.. throwing lots of dbus errors.
    -- Logs begin at Sun 2013-08-11 19:08:04 BST, end at Sat 2014-01-11 00:39:52 GMT. --
    Jan 10 16:20:03 nickarch systemd-journal[155]: Runtime journal is using 2.7M (max 801.7M, leaving 1.1G of free 7.8G, current limit 801.7M).
    Jan 10 16:20:03 nickarch systemd-journal[155]: Runtime journal is using 2.7M (max 801.7M, leaving 1.1G of free 7.8G, current limit 801.7M).
    Jan 10 16:20:03 nickarch kernel: Initializing cgroup subsys cpuset
    Jan 10 16:20:03 nickarch kernel: Initializing cgroup subsys cpu
    Jan 10 16:20:03 nickarch kernel: Initializing cgroup subsys cpuacct
    Jan 10 16:20:03 nickarch kernel: Linux version 3.12.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SMP PREEMPT Fri Dec 20 19:39:00 CET 2013
    Jan 10 16:20:03 nickarch kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=0e59a6e2-e320-45ef-98bc-1d7b8e363398 rw quiet
    Jan 10 16:20:03 nickarch kernel: e820: BIOS-provided physical RAM map:
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000df528fff] usable
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000df529000-0x00000000df583fff] ACPI NVS
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000df584000-0x00000000df5a5fff] reserved
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000df5a6000-0x00000000df5b6fff] ACPI NVS
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000df5b7000-0x00000000df5cdfff] reserved
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000df5ce000-0x00000000df5cffff] usable
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000df5d0000-0x00000000df5d7fff] reserved
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000df5d8000-0x00000000df5e1fff] ACPI NVS
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000df5e2000-0x00000000df63dfff] reserved
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000df63e000-0x00000000df680fff] ACPI NVS
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000df681000-0x00000000df7fffff] usable
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    Jan 10 16:20:03 nickarch kernel: BIOS-e820: [mem 0x0000000100000000-0x000000041f7fffff] usable
    Jan 10 16:20:03 nickarch kernel: NX (Execute Disable) protection: active
    Jan 10 16:20:03 nickarch kernel: SMBIOS 2.6 present.
    Jan 10 16:20:03 nickarch kernel: DMI: System manufacturer System Product Name/P8Z68-V LX, BIOS 0401 07/15/2011
    Jan 10 16:20:03 nickarch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jan 10 16:20:03 nickarch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jan 10 16:20:03 nickarch kernel: No AGP bridge found
    Jan 10 16:20:03 nickarch kernel: e820: last_pfn = 0x41f800 max_arch_pfn = 0x400000000
    Jan 10 16:20:03 nickarch kernel: MTRR default type: uncachable
    Jan 10 16:20:03 nickarch kernel: MTRR fixed ranges enabled:
    Jan 10 16:20:03 nickarch kernel: 00000-9FFFF write-back
    Jan 10 16:20:03 nickarch kernel: A0000-BFFFF uncachable
    Jan 10 16:20:03 nickarch kernel: C0000-CFFFF write-protect
    Jan 10 16:20:03 nickarch kernel: D0000-E7FFF uncachable
    Jan 10 16:20:03 nickarch kernel: E8000-FFFFF write-protect
    Jan 10 16:20:03 nickarch kernel: MTRR variable ranges enabled:
    Jan 10 16:20:03 nickarch kernel: 0 base 000000000 mask C00000000 write-back
    Jan 10 16:20:03 nickarch kernel: 1 base 400000000 mask FE0000000 write-back
    Jan 10 16:20:03 nickarch kernel: 2 base 0E0000000 mask FE0000000 uncachable
    Jan 10 16:20:03 nickarch kernel: 3 base 41F800000 mask FFF800000 uncachable
    Jan 10 16:20:03 nickarch kernel: 4 disabled
    Jan 10 16:20:03 nickarch kernel: 5 disabled
    Jan 10 16:20:03 nickarch kernel: 6 disabled
    Jan 10 16:20:03 nickarch kernel: 7 disabled
    Jan 10 16:20:03 nickarch kernel: 8 disabled
    Jan 10 16:20:03 nickarch kernel: 9 disabled
    Jan 10 16:20:03 nickarch kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jan 10 16:20:03 nickarch kernel: e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
    Jan 10 16:20:03 nickarch kernel: e820: last_pfn = 0xdf800 max_arch_pfn = 0x400000000
    Jan 10 16:20:03 nickarch kernel: found SMP MP-table at [mem 0x000fcda0-0x000fcdaf] mapped at [ffff8800000fcda0]
    Jan 10 16:20:03 nickarch kernel: Scanning 1 areas for low memory corruption
    Jan 10 16:20:03 nickarch kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    Jan 10 16:20:03 nickarch kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jan 10 16:20:03 nickarch kernel: [mem 0x00000000-0x000fffff] page 4k
    Jan 10 16:20:03 nickarch kernel: BRK [0x01b32000, 0x01b32fff] PGTABLE
    Jan 10 16:20:03 nickarch kernel: BRK [0x01b33000, 0x01b33fff] PGTABLE
    Jan 10 16:20:03 nickarch kernel: BRK [0x01b34000, 0x01b34fff] PGTABLE
    Jan 10 16:20:03 nickarch kernel: init_memory_mapping: [mem 0x41f600000-0x41f7fffff]
    Jan 10 16:20:03 nickarch kernel: [mem 0x41f600000-0x41f7fffff] page 2M
    Jan 10 16:20:03 nickarch kernel: BRK [0x01b35000, 0x01b35fff] PGTABLE
    Jan 10 16:20:03 nickarch kernel: init_memory_mapping: [mem 0x41c000000-0x41f5fffff]
    Jan 10 16:20:03 nickarch kernel: [mem 0x41c000000-0x41f5fffff] page 2M
    Jan 10 16:20:03 nickarch kernel: init_memory_mapping: [mem 0x400000000-0x41bffffff]
    Jan 10 16:20:03 nickarch kernel: [mem 0x400000000-0x41bffffff] page 2M
    Jan 10 16:20:03 nickarch kernel: init_memory_mapping: [mem 0x00100000-0xdf528fff]
    Jan 10 16:20:03 nickarch kernel: [mem 0x00100000-0x001fffff] page 4k
    Jan 10 16:20:03 nickarch kernel: [mem 0x00200000-0xdf3fffff] page 2M
    Jan 10 16:20:03 nickarch kernel: [mem 0xdf400000-0xdf528fff] page 4k
    Jan 10 16:20:03 nickarch kernel: init_memory_mapping: [mem 0xdf5ce000-0xdf5cffff]
    Jan 10 16:20:03 nickarch kernel: [mem 0xdf5ce000-0xdf5cffff] page 4k
    Jan 10 16:20:03 nickarch kernel: init_memory_mapping: [mem 0xdf681000-0xdf7fffff]
    Jan 10 16:20:03 nickarch kernel: [mem 0xdf681000-0xdf7fffff] page 4k
    Jan 10 16:20:03 nickarch kernel: BRK [0x01b36000, 0x01b36fff] PGTABLE
    Jan 10 16:20:03 nickarch kernel: init_memory_mapping: [mem 0x100000000-0x3ffffffff]
    Jan 10 16:20:03 nickarch kernel: [mem 0x100000000-0x3ffffffff] page 2M
    Jan 10 16:20:03 nickarch kernel: BRK [0x01b37000, 0x01b37fff] PGTABLE
    Jan 10 16:20:03 nickarch kernel: RAMDISK: [mem 0x379fc000-0x37cf5fff]
    Jan 10 16:20:03 nickarch kernel: ACPI: RSDP 00000000000f0420 00024 (v02 ALASKA)
    Jan 10 16:20:03 nickarch kernel: ACPI: XSDT 00000000df577068 0004C (v01 ALASKA A M I 01072009 AMI 00010013)
    Jan 10 16:20:03 nickarch kernel: ACPI: FACP 00000000df580818 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    Jan 10 16:20:03 nickarch kernel: ACPI: DSDT 00000000df577140 096D7 (v02 ALASKA A M I 00000000 INTL 20051117)
    Jan 10 16:20:03 nickarch kernel: ACPI: FACS 00000000df5d9f80 00040
    Jan 10 16:20:03 nickarch kernel: ACPI: APIC 00000000df580910 00092 (v03 ALASKA A M I 01072009 AMI 00010013)
    Jan 10 16:20:03 nickarch kernel: ACPI: SSDT 00000000df5809a8 001D6 (v01 AMICPU PROC 00000001 MSFT 03000001)
    Jan 10 16:20:03 nickarch kernel: ACPI: MCFG 00000000df580b80 0003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    Jan 10 16:20:03 nickarch kernel: ACPI: HPET 00000000df580bc0 00038 (v01 ALASKA A M I 01072009 AMI. 00000004)
    Jan 10 16:20:03 nickarch kernel: ACPI: Local APIC address 0xfee00000
    Jan 10 16:20:03 nickarch kernel: No NUMA configuration found
    Jan 10 16:20:03 nickarch kernel: Faking a node at [mem 0x0000000000000000-0x000000041f7fffff]
    Jan 10 16:20:03 nickarch kernel: Initmem setup node 0 [mem 0x00000000-0x41f7fffff]
    Jan 10 16:20:03 nickarch kernel: NODE_DATA [mem 0x41f7ec000-0x41f7f0fff]
    Jan 10 16:20:03 nickarch kernel: [ffffea0000000000-ffffea00107fffff] PMD -> [ffff88040ee00000-ffff88041edfffff] on node 0
    Jan 10 16:20:03 nickarch kernel: Zone ranges:
    Jan 10 16:20:03 nickarch kernel: DMA [mem 0x00001000-0x00ffffff]
    Jan 10 16:20:03 nickarch kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 10 16:20:03 nickarch kernel: Normal [mem 0x100000000-0x41f7fffff]
    Jan 10 16:20:03 nickarch kernel: Movable zone start for each node
    Jan 10 16:20:03 nickarch kernel: Early memory node ranges
    Jan 10 16:20:03 nickarch kernel: node 0: [mem 0x00001000-0x0009cfff]
    Jan 10 16:20:03 nickarch kernel: node 0: [mem 0x00100000-0xdf528fff]
    Jan 10 16:20:03 nickarch kernel: node 0: [mem 0xdf5ce000-0xdf5cffff]
    Jan 10 16:20:03 nickarch kernel: node 0: [mem 0xdf681000-0xdf7fffff]
    Jan 10 16:20:03 nickarch kernel: node 0: [mem 0x100000000-0x41f7fffff]
    Jan 10 16:20:03 nickarch kernel: On node 0 totalpages: 4189766
    Jan 10 16:20:03 nickarch kernel: DMA zone: 64 pages used for memmap
    Jan 10 16:20:03 nickarch kernel: DMA zone: 21 pages reserved
    Jan 10 16:20:03 nickarch kernel: DMA zone: 3996 pages, LIFO batch:0
    Jan 10 16:20:03 nickarch kernel: DMA32 zone: 14235 pages used for memmap
    Jan 10 16:20:03 nickarch kernel: DMA32 zone: 911018 pages, LIFO batch:31
    Jan 10 16:20:03 nickarch kernel: Normal zone: 51168 pages used for memmap
    Jan 10 16:20:03 nickarch kernel: Normal zone: 3274752 pages, LIFO batch:31
    Jan 10 16:20:03 nickarch kernel: ACPI: PM-Timer IO Port: 0x408
    Jan 10 16:20:03 nickarch kernel: ACPI: Local APIC address 0xfee00000
    Jan 10 16:20:03 nickarch kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Jan 10 16:20:03 nickarch kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    Jan 10 16:20:03 nickarch kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    Jan 10 16:20:03 nickarch kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    Jan 10 16:20:03 nickarch kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    Jan 10 16:20:03 nickarch kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    Jan 10 16:20:03 nickarch kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    Jan 10 16:20:03 nickarch kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    Jan 10 16:20:03 nickarch kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    Jan 10 16:20:03 nickarch kernel: ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    Jan 10 16:20:03 nickarch kernel: IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    Jan 10 16:20:03 nickarch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 10 16:20:03 nickarch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jan 10 16:20:03 nickarch kernel: ACPI: IRQ0 used by override.
    Jan 10 16:20:03 nickarch kernel: ACPI: IRQ2 used by override.
    Jan 10 16:20:03 nickarch kernel: ACPI: IRQ9 used by override.
    Jan 10 16:20:03 nickarch kernel: Using ACPI (MADT) for SMP configuration information
    Jan 10 16:20:03 nickarch kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
    Jan 10 16:20:03 nickarch kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    Jan 10 16:20:03 nickarch kernel: nr_irqs_gsi: 40
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xdf529000-0xdf583fff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xdf584000-0xdf5a5fff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xdf5a6000-0xdf5b6fff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xdf5b7000-0xdf5cdfff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xdf5d0000-0xdf5d7fff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xdf5d8000-0xdf5e1fff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xdf5e2000-0xdf63dfff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xdf63e000-0xdf680fff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xdf800000-0xfed1bfff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
    Jan 10 16:20:03 nickarch kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    Jan 10 16:20:03 nickarch kernel: e820: [mem 0xdf800000-0xfed1bfff] available for PCI devices
    Jan 10 16:20:03 nickarch kernel: Booting paravirtualized kernel on bare hardware
    Jan 10 16:20:03 nickarch kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    Jan 10 16:20:03 nickarch kernel: PERCPU: Embedded 29 pages/cpu @ffff88041f400000 s86464 r8192 d24128 u262144
    Jan 10 16:20:03 nickarch kernel: pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    Jan 10 16:20:03 nickarch kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Jan 10 16:20:03 nickarch kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4124278
    Jan 10 16:20:03 nickarch kernel: Policy zone: Normal
    Jan 10 16:20:03 nickarch kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=0e59a6e2-e320-45ef-98bc-1d7b8e363398 rw quiet
    Jan 10 16:20:03 nickarch kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 10 16:20:03 nickarch kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
    Jan 10 16:20:03 nickarch kernel: Checking aperture...
    Jan 10 16:20:03 nickarch kernel: No AGP bridge found
    Jan 10 16:20:03 nickarch kernel: Calgary: detecting Calgary via BIOS EBDA area
    Jan 10 16:20:03 nickarch kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Jan 10 16:20:03 nickarch kernel: Memory: 16414980K/16759064K available (5124K kernel code, 807K rwdata, 1628K rodata, 1144K init, 1288K bss, 344084K reserved)
    Jan 10 16:20:03 nickarch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Jan 10 16:20:03 nickarch kernel: Preemptible hierarchical RCU implementation.
    Jan 10 16:20:03 nickarch kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 10 16:20:03 nickarch kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 10 16:20:03 nickarch kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    Jan 10 16:20:03 nickarch kernel: NR_IRQS:8448 nr_irqs:744 16
    Jan 10 16:20:03 nickarch kernel: Console: colour dummy device 80x25
    Jan 10 16:20:03 nickarch kernel: console [tty0] enabled
    Jan 10 16:20:03 nickarch kernel: allocated 67108864 bytes of page_cgroup
    Jan 10 16:20:03 nickarch kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 10 16:20:03 nickarch kernel: hpet clockevent registered
    Jan 10 16:20:03 nickarch kernel: tsc: Fast TSC calibration using PIT
    Jan 10 16:20:03 nickarch kernel: tsc: Detected 3411.229 MHz processor
    Jan 10 16:20:03 nickarch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6825.72 BogoMIPS (lpj=11370763)
    Jan 10 16:20:03 nickarch kernel: pid_max: default: 32768 minimum: 301
    Jan 10 16:20:03 nickarch kernel: Security Framework initialized
    Jan 10 16:20:03 nickarch kernel: AppArmor: AppArmor disabled by boot time parameter
    Jan 10 16:20:03 nickarch kernel: Yama: becoming mindful.
    Jan 10 16:20:03 nickarch kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    Jan 10 16:20:03 nickarch kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Jan 10 16:20:03 nickarch kernel: Mount-cache hash table entries: 256
    Jan 10 16:20:03 nickarch kernel: Initializing cgroup subsys memory
    Jan 10 16:20:03 nickarch kernel: Initializing cgroup subsys devices
    Jan 10 16:20:03 nickarch kernel: Initializing cgroup subsys freezer
    Jan 10 16:20:03 nickarch kernel: Initializing cgroup subsys net_cls
    Jan 10 16:20:03 nickarch kernel: Initializing cgroup subsys blkio
    Jan 10 16:20:03 nickarch kernel: CPU: Physical Processor ID: 0
    Jan 10 16:20:03 nickarch kernel: CPU: Processor Core ID: 0
    Jan 10 16:20:03 nickarch kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    Jan 10 16:20:03 nickarch kernel: mce: CPU supports 9 MCE banks
    Jan 10 16:20:03 nickarch kernel: CPU0: Thermal monitoring enabled (TM1)
    Jan 10 16:20:03 nickarch kernel: Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 5
    Jan 10 16:20:03 nickarch kernel: Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    Jan 10 16:20:03 nickarch kernel: ACPI: Core revision 20130725
    Jan 10 16:20:03 nickarch kernel: ACPI: All ACPI Tables successfully acquired
    Jan 10 16:20:03 nickarch kernel: ftrace: allocating 20318 entries in 80 pages
    Jan 10 16:20:03 nickarch kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jan 10 16:20:03 nickarch kernel: smpboot: CPU0: Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz (fam: 06, model: 2a, stepping: 07)
    Jan 10 16:20:03 nickarch kernel: TSC deadline timer enabled
    Jan 10 16:20:03 nickarch kernel: Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
    Jan 10 16:20:03 nickarch kernel: perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
    Jan 10 16:20:03 nickarch kernel: ... version: 3
    Jan 10 16:20:03 nickarch kernel: ... bit width: 48
    Jan 10 16:20:03 nickarch kernel: ... generic registers: 4
    Jan 10 16:20:03 nickarch kernel: ... value mask: 0000ffffffffffff
    Jan 10 16:20:03 nickarch kernel: ... max period: 0000ffffffffffff
    Jan 10 16:20:03 nickarch kernel: ... fixed-purpose events: 3
    Jan 10 16:20:03 nickarch kernel: ... event mask: 000000070000000f
    Jan 10 16:20:03 nickarch kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jan 10 16:20:03 nickarch kernel: smpboot: Booting Node 0, Processors # 1 # 2 # 3 # 4 # 5 # 6 # 7 OK
    Jan 10 16:20:03 nickarch kernel: Brought up 8 CPUs
    Jan 10 16:20:03 nickarch kernel: smpboot: Total of 8 processors activated (54601.81 BogoMIPS)
    Jan 10 16:20:03 nickarch kernel: devtmpfs: initialized
    Jan 10 16:20:03 nickarch kernel: PM: Registering ACPI NVS region [mem 0xdf529000-0xdf583fff] (372736 bytes)
    Jan 10 16:20:03 nickarch kernel: PM: Registering ACPI NVS region [mem 0xdf5a6000-0xdf5b6fff] (69632 bytes)
    Jan 10 16:20:03 nickarch kernel: PM: Registering ACPI NVS region [mem 0xdf5d8000-0xdf5e1fff] (40960 bytes)
    Jan 10 16:20:03 nickarch kernel: PM: Registering ACPI NVS region [mem 0xdf63e000-0xdf680fff] (274432 bytes)
    Jan 10 16:20:03 nickarch kernel: RTC time: 16:20:00, date: 01/10/14
    Jan 10 16:20:03 nickarch kernel: NET: Registered protocol family 16
    Jan 10 16:20:03 nickarch kernel: cpuidle: using governor ladder
    Jan 10 16:20:03 nickarch kernel: cpuidle: using governor menu
    Jan 10 16:20:03 nickarch kernel: ACPI: bus type PCI registered
    Jan 10 16:20:03 nickarch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Jan 10 16:20:03 nickarch kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
    Jan 10 16:20:03 nickarch kernel: PCI: not using MMCONFIG
    Jan 10 16:20:03 nickarch kernel: PCI: Using configuration type 1 for base access
    Jan 10 16:20:03 nickarch kernel: bio: create slab <bio-0> at 0
    Jan 10 16:20:03 nickarch kernel: ACPI: Added _OSI(Module Device)
    Jan 10 16:20:03 nickarch kernel: ACPI: Added _OSI(Processor Device)
    Jan 10 16:20:03 nickarch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 10 16:20:03 nickarch kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 10 16:20:03 nickarch kernel: ACPI: EC: Look up EC in DSDT
    Jan 10 16:20:03 nickarch kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Jan 10 16:20:03 nickarch kernel: ACPI: SSDT 00000000df5e1898 006F4 (v01 AMI IST 00000001 MSFT 03000001)
    Jan 10 16:20:03 nickarch kernel: ACPI: Dynamic OEM Table Load:
    Jan 10 16:20:03 nickarch kernel: ACPI: SSDT (null) 006F4 (v01 AMI IST 00000001 MSFT 03000001)
    Jan 10 16:20:03 nickarch kernel: ACPI: SSDT 00000000df5d8d98 000E4 (v01 AMI CST 00000001 MSFT 03000001)
    Jan 10 16:20:03 nickarch kernel: ACPI: Dynamic OEM Table Load:
    Jan 10 16:20:03 nickarch kernel: ACPI: SSDT (null) 000E4 (v01 AMI CST 00000001 MSFT 03000001)
    Jan 10 16:20:03 nickarch kernel: ACPI: Interpreter enabled
    Jan 10 16:20:03 nickarch kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    Jan 10 16:20:03 nickarch kernel: ACPI: (supports S0 S1 S3 S4 S5)
    Jan 10 16:20:03 nickarch kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 10 16:20:03 nickarch kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
    Jan 10 16:20:03 nickarch kernel: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in ACPI motherboard resources
    Jan 10 16:20:03 nickarch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jan 10 16:20:03 nickarch kernel: ACPI: No dock devices found.
    Jan 10 16:20:03 nickarch kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Jan 10 16:20:03 nickarch kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jan 10 16:20:03 nickarch kernel: acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    Jan 10 16:20:03 nickarch kernel: acpi PNP0A08:00: ACPI _OSC control (0x1c) granted
    Jan 10 16:20:03 nickarch kernel: acpi PNP0A08:00: ignoring host bridge window [mem 0x000c8000-0x000dffff] (conflicts with Video ROM [mem 0x000c0000-0x000ce7ff])
    Jan 10 16:20:03 nickarch kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    Jan 10 16:20:03 nickarch kernel: ACPI: \_SB_.PCI0.MCH_: can't evaluate _ADR (0x5)
    Jan 10 16:20:03 nickarch kernel: ACPI: \_SB_.PCI0.PCH_: can't evaluate _ADR (0x5)
    Jan 10 16:20:03 nickarch kernel: ACPI: \_SB_.PCI0.CWDT: can't evaluate _ADR (0x5)
    Jan 10 16:20:03 nickarch kernel: ACPI: \_SB_.PCI0.WMI1: can't evaluate _ADR (0x5)
    Jan 10 16:20:03 nickarch kernel: ACPI: \_SB_.PCI0.HPET: can't evaluate _ADR (0x5)
    Jan 10 16:20:03 nickarch kernel: PCI host bridge to bus 0000:00
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:00: root bus resource [mem 0xe4000000-0xffffffff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:16.0: reg 0x10: [mem 0xfb208000-0xfb20800f 64bit]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xfb207000-0xfb2073ff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xfb200000-0xfb203fff 64bit]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.2: System wakeup disabled by ACPI
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.3: System wakeup disabled by ACPI
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.4: System wakeup disabled by ACPI
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.5: System wakeup disabled by ACPI
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.6: [8086:1c1c] type 01 class 0x060400
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.6: System wakeup disabled by ACPI
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.7: [8086:244e] type 01 class 0x060401
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.7: System wakeup disabled by ACPI
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xfb206000-0xfb2063ff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.0: [8086:1c44] type 00 class 0x060100
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.2: reg 0x10: [io 0xf070-0xf077]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.2: reg 0x14: [io 0xf060-0xf063]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.2: reg 0x18: [io 0xf050-0xf057]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.2: reg 0x1c: [io 0xf040-0xf043]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.2: reg 0x20: [io 0xf020-0xf03f]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xfb205000-0xfb2057ff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xfb204000-0xfb2040ff 64bit]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1f.3: reg 0x20: [io 0xf000-0xf01f]
    Jan 10 16:20:03 nickarch kernel: pci 0000:01:00.0: [10de:11c6] type 00 class 0x030000
    Jan 10 16:20:03 nickarch kernel: pci 0000:01:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:01:00.0: reg 0x14: [mem 0xe8000000-0xefffffff 64bit pref]
    Jan 10 16:20:03 nickarch kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
    Jan 10 16:20:03 nickarch kernel: pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f]
    Jan 10 16:20:03 nickarch kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfb000000-0xfb07ffff pref]
    Jan 10 16:20:03 nickarch kernel: pci 0000:01:00.1: [10de:0e0b] type 00 class 0x040300
    Jan 10 16:20:03 nickarch kernel: pci 0000:01:00.1: reg 0x10: [mem 0xfb080000-0xfb083fff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:01.0: bridge window [mem 0xfa000000-0xfb0fffff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:01.0: bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.3: PCI bridge to [bus 04]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.4: PCI bridge to [bus 05]
    Jan 10 16:20:03 nickarch kernel: pci 0000:06:00.0: [1b21:1042] type 00 class 0x0c0330
    Jan 10 16:20:03 nickarch kernel: pci 0000:06:00.0: reg 0x10: [mem 0xfb100000-0xfb107fff 64bit]
    Jan 10 16:20:03 nickarch kernel: pci 0000:06:00.0: PME# supported from D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.5: PCI bridge to [bus 06]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.5: bridge window [mem 0xfb100000-0xfb1fffff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:07:00.0: [10ec:8168] type 00 class 0x020000
    Jan 10 16:20:03 nickarch kernel: pci 0000:07:00.0: reg 0x10: [io 0xd000-0xd0ff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:07:00.0: reg 0x18: [mem 0xf2104000-0xf2104fff 64bit pref]
    Jan 10 16:20:03 nickarch kernel: pci 0000:07:00.0: reg 0x20: [mem 0xf2100000-0xf2103fff 64bit pref]
    Jan 10 16:20:03 nickarch kernel: pci 0000:07:00.0: supports D1 D2
    Jan 10 16:20:03 nickarch kernel: pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.6: PCI bridge to [bus 07]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.6: bridge window [io 0xd000-0xdfff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.6: bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: [1b21:1080] type 01 class 0x060401
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: System wakeup disabled by ACPI
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.7: PCI bridge to [bus 08-09] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.7: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.7: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.7: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.7: bridge window [mem 0xe4000000-0xffffffff] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: PCI bridge to [bus 09] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: bridge window [mem 0xe4000000-0xffffffff] (subtractive decode)
    Jan 10 16:20:03 nickarch kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    Jan 10 16:20:03 nickarch kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    Jan 10 16:20:03 nickarch kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
    Jan 10 16:20:03 nickarch kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
    Jan 10 16:20:03 nickarch kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    Jan 10 16:20:03 nickarch kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    Jan 10 16:20:03 nickarch kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    Jan 10 16:20:03 nickarch kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15)
    Jan 10 16:20:03 nickarch kernel: ACPI: Enabled 2 GPEs in block 00 to 3F
    Jan 10 16:20:03 nickarch kernel: ACPI: \_SB_.PCI0: notify handler is installed
    Jan 10 16:20:03 nickarch kernel: Found 1 acpi root devices
    Jan 10 16:20:03 nickarch kernel: ACPI: EC: GPE = 0x18, I/O: command/status = 0x66, data = 0x62
    Jan 10 16:20:03 nickarch kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 10 16:20:03 nickarch kernel: vgaarb: loaded
    Jan 10 16:20:03 nickarch kernel: vgaarb: bridge control possible 0000:01:00.0
    Jan 10 16:20:03 nickarch kernel: PCI: Using ACPI for IRQ routing
    Jan 10 16:20:03 nickarch kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 10 16:20:03 nickarch kernel: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    Jan 10 16:20:03 nickarch kernel: e820: reserve RAM buffer [mem 0xdf529000-0xdfffffff]
    Jan 10 16:20:03 nickarch kernel: e820: reserve RAM buffer [mem 0xdf5d0000-0xdfffffff]
    Jan 10 16:20:03 nickarch kernel: e820: reserve RAM buffer [mem 0xdf800000-0xdfffffff]
    Jan 10 16:20:03 nickarch kernel: e820: reserve RAM buffer [mem 0x41f800000-0x41fffffff]
    Jan 10 16:20:03 nickarch kernel: NetLabel: Initializing
    Jan 10 16:20:03 nickarch kernel: NetLabel: domain hash size = 128
    Jan 10 16:20:03 nickarch kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 10 16:20:03 nickarch kernel: NetLabel: unlabeled traffic allowed by default
    Jan 10 16:20:03 nickarch kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    Jan 10 16:20:03 nickarch kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    Jan 10 16:20:03 nickarch kernel: Switched to clocksource hpet
    Jan 10 16:20:03 nickarch kernel: pnp: PnP ACPI init
    Jan 10 16:20:03 nickarch kernel: ACPI: bus type PNP registered
    Jan 10 16:20:03 nickarch kernel: system 00:00: [mem 0xfed10000-0xfed19fff] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:00: [mem 0xe0000000-0xe3ffffff] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jan 10 16:20:03 nickarch kernel: system 00:01: [io 0x0290-0x029f] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 10 16:20:03 nickarch kernel: pnp 00:02: [dma 4]
    Jan 10 16:20:03 nickarch kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    Jan 10 16:20:03 nickarch kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 10 16:20:03 nickarch kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    Jan 10 16:20:03 nickarch kernel: system 00:05: [io 0x04d0-0x04d1] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 10 16:20:03 nickarch kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jan 10 16:20:03 nickarch kernel: pnp 00:07: [dma 0 disabled]
    Jan 10 16:20:03 nickarch kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
    Jan 10 16:20:03 nickarch kernel: system 00:08: [io 0x0400-0x0453] could not be reserved
    Jan 10 16:20:03 nickarch kernel: system 00:08: [io 0x0458-0x047f] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:08: [io 0x0500-0x057f] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved
    Jan 10 16:20:03 nickarch kernel: system 00:08: [mem 0xfed08000-0xfed08fff] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:08: [mem 0xff000000-0xffffffff] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jan 10 16:20:03 nickarch kernel: system 00:09: [io 0x0454-0x0457] has been reserved
    Jan 10 16:20:03 nickarch kernel: system 00:09: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    Jan 10 16:20:03 nickarch kernel: pnp 00:0a: Plug and Play ACPI device, IDs PNP0103 (active)
    Jan 10 16:20:03 nickarch kernel: pnp: PnP ACPI: found 11 devices
    Jan 10 16:20:03 nickarch kernel: ACPI: bus type PNP unregistered
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:01.0: bridge window [mem 0xfa000000-0xfb0fffff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:01.0: bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.3: PCI bridge to [bus 04]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.4: PCI bridge to [bus 05]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.5: PCI bridge to [bus 06]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.5: bridge window [mem 0xfb100000-0xfb1fffff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.6: PCI bridge to [bus 07]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.6: bridge window [io 0xd000-0xdfff]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.6: bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
    Jan 10 16:20:03 nickarch kernel: pci 0000:08:00.0: PCI bridge to [bus 09]
    Jan 10 16:20:03 nickarch kernel: pci 0000:00:1c.7: PCI bridge to [bus 08-09]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:00: resource 7 [mem 0xe4000000-0xffffffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:01: resource 1 [mem 0xfa000000-0xfb0fffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:01: resource 2 [mem 0xe8000000-0xf1ffffff 64bit pref]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:06: resource 1 [mem 0xfb100000-0xfb1fffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:07: resource 0 [io 0xd000-0xdfff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:07: resource 2 [mem 0xf2100000-0xf21fffff 64bit pref]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:08: resource 4 [io 0x0000-0x0cf7]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:08: resource 5 [io 0x0d00-0xffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:08: resource 7 [mem 0xe4000000-0xffffffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:09: resource 8 [io 0x0000-0x0cf7]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:09: resource 9 [io 0x0d00-0xffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:09: resource 10 [mem 0x000a0000-0x000bffff]
    Jan 10 16:20:03 nickarch kernel: pci_bus 0000:09: resource 11 [mem 0xe4000000-0xffffffff]
    Jan 10 16:20:03 nickarch kernel: NET: Registered protocol family 2
    Jan 10 16:20:03 nickarch kernel: TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
    Jan 10 16:20:03 nickarch kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Jan 10 16:20:03 nickarch kernel: TCP: Hash tables configured (established 131072 bind 65536)
    Jan 10 16:20:03 nickarch kernel: TCP: reno registered
    Jan 10 16:20:03 nickarch kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes)
    Jan 10 16:20:03 nickarch kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    Jan 10 16:20:03 nickarch kernel: NET: Registered protocol family 1
    Jan 10 16:20:03 nickarch kernel: pci 0000:01:00.0: Boot video device
    Jan 10 16:20:03 nickarch kernel: PCI: CLS 64 bytes, default 64
    Jan 10 16:20:03 nickarch kernel: Unpacking initramfs...
    Jan 10 16:20:03 nickarch kernel: Freeing initrd memory: 3048K (ffff8800379fc000 - ffff880037cf6000)
    Jan 10 16:20:03 nickarch kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Jan 10 16:20:03 nickarch kernel: software IO TLB [mem 0xdb529000-0xdf529000] (64MB) mapped at [ffff8800db529000-ffff8800df528fff]
    Jan 10 16:20:03 nickarch kernel: Scanning for low memory corruption every 60 seconds
    Jan 10 16:20:03 nickarch kernel: audit: initializing netlink socket (disabled)
    Jan 10 16:20:03 nickarch kernel: type=2000 audit(1389370800.519:1): initialized
    Jan 10 16:20:03 nickarch kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 10 16:20:03 nickarch kernel: zbud: loaded
    Jan 10 16:20:03 nickarch kernel: VFS: Disk quotas dquot_6.5.2
    Jan 10 16:20:03 nickarch kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 10 16:20:03 nickarch kernel: msgmni has been set to 32066
    Jan 10 16:20:03 nickarch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 10 16:20:03 nickarch kernel: io scheduler noop registered
    Jan 10 16:20:03 nickarch kernel: io scheduler deadline registered
    Jan 10 16:20:03 nickarch kernel: io scheduler cfq registered (default)
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.4: irq 44 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.5: irq 45 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.6: irq 46 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
    Jan 10 16:20:03 nickarch kernel: pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    Jan 10 16:20:03 nickarch kernel: pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
    Jan 10 16:20:03 nickarch kernel: pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    Jan 10 16:20:03 nickarch kernel: pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.2: Signaling PME through PCIe PME interrupt
    Jan 10 16:20:03 nickarch kernel: pcie_pme 0000:00:1c.2:pcie01: service driver pcie_pme loaded
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
    Jan 10 16:20:03 nickarch kernel: pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
    Jan 10 16:20:03 nickarch kernel: pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.5: Signaling PME through PCIe PME interrupt
    Jan 10 16:20:03 nickarch kernel: pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
    Jan 10 16:20:03 nickarch kernel: pcie_pme 0000:00:1c.5:pcie01: service driver pcie_pme loaded
    Jan 10 16:20:03 nickarch kernel: pcieport 0000:00:1c.6: Signaling PME through PCIe PME interrupt
    Jan 10 16:20:03 nickarch kernel: pci 0000:07:00.0: Signaling PME through PCIe PME interrupt
    Jan 10 16:20:03 nickarch kernel: pcie_pme 0000:00:1c.6:pcie01: service driver pcie_pme loaded
    Jan 10 16:20:03 nickarch kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jan 10 16:20:03 nickarch kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Jan 10 16:20:03 nickarch kernel: vesafb: mode is 1024x768x32, linelength=4096, pages=0
    Jan 10 16:20:03 nickarch kernel: vesafb: scrolling: redraw
    Jan 10 16:20:03 nickarch kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Jan 10 16:20:03 nickarch kernel: vesafb: framebuffer at 0xf1000000, mapped to 0xffffc90005c00000, using 3072k, total 3072k
    Jan 10 16:20:03 nickarch kernel: Console: switching to colour frame buffer device 128x48
    Jan 10 16:20:03 nickarch kernel: fb0: VESA VGA frame buffer device
    Jan 10 16:20:03 nickarch kernel: intel_idle: MWAIT substates: 0x1120
    Jan 10 16:20:03 nickarch kernel: intel_idle: v0.4 model 0x2A
    Jan 10 16:20:03 nickarch kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    Jan 10 16:20:03 nickarch kernel: GHES: HEST is not enabled!
    Jan 10 16:20:03 nickarch kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 10 16:20:03 nickarch kernel: 00:07: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    Jan 10 16:20:03 nickarch kernel: Linux agpgart interface v0.103
    Jan 10 16:20:03 nickarch kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
    Jan 10 16:20:03 nickarch kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 10 16:20:03 nickarch kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jan 10 16:20:03 nickarch kernel: mousedev: PS/2 mouse device common for all mice
    Jan 10 16:20:03 nickarch kernel: rtc_cmos 00:03: RTC can wake from S4
    Jan 10 16:20:03 nickarch kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    Jan 10 16:20:03 nickarch kernel: rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    Jan 10 16:20:03 nickarch kernel: Intel P-state driver initializing.
    Jan 10 16:20:03 nickarch kernel: Intel pstate controlling: cpu 0
    Jan 10 16:20:03 nickarch kernel: Intel pstate controlling: cpu 1
    Jan 10 16:20:03 nickarch kernel: Intel pstate controlling: cpu 2
    Jan 10 16:20:03 nickarch kernel: Intel pstate controlling: cpu 3
    Jan 10 16:20:03 nickarch kernel: Intel pstate controlling: cpu 4
    Jan 10 16:20:03 nickarch kernel: Intel pstate controlling: cpu 5
    Jan 10 16:20:03 nickarch kernel: Intel pstate controlling: cpu 6
    Jan 10 16:20:03 nickarch kernel: Intel pstate controlling: cpu 7
    Jan 10 16:20:03 nickarch kernel: drop_monitor: Initializing network drop monitor service
    Jan 10 16:20:03 nickarch kernel: TCP: cubic registered
    Jan 10 16:20:03 nickarch kernel: NET: Registered protocol family 10
    Jan 10 16:20:03 nickarch kernel: NET: Registered protocol family 17
    Jan 10 16:20:03 nickarch kernel: Key type dns_resolver registered
    Jan 10 16:20:03 nickarch kernel: registered taskstats version 1
    Jan 10 16:20:03 nickarch kernel: Magic number: 14:686:337
    Jan 10 16:20:03 nickarch kernel: tty tty58: hash matches
    Jan 10 16:20:03 nickarch kernel: rtc_cmos 00:03: setting system clock to 2014-01-10 16:20:00 UTC (1389370800)
    Jan 10 16:20:03 nickarch kernel: PM: Hibernation image not present or could not be loaded.
    Jan 10 16:20:03 nickarch kernel: Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    Jan 10 16:20:03 nickarch kernel: Write protecting the kernel read-only data: 8192k
    Jan 10 16:20:03 nickarch kernel: Freeing unused kernel memory: 1008K (ffff880001504000 - ffff880001600000)
    Jan 10 16:20:03 nickarch kernel: Freeing unused kernel memory: 420K (ffff880001797000 - ffff880001800000)
    Jan 10 16:20:03 nickarch systemd-udevd[77]: starting version 208
    Jan 10 16:20:03 nickarch kernel: ACPI: bus type USB registered
    Jan 10 16:20:03 nickarch kernel: usbcore: registered new interface driver usbfs
    Jan 10 16:20:03 nickarch kernel: usbcore: registered new interface driver hub
    Jan 10 16:20:03 nickarch kernel: usbcore: registered new device driver usb
    Jan 10 16:20:03 nickarch kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 10 16:20:03 nickarch kernel: ehci-pci: EHCI PCI platform driver
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1a.0: setting latency timer to 64
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1a.0: debug port 2
    Jan 10 16:20:03 nickarch kernel: SCSI subsystem initialized
    Jan 10 16:20:03 nickarch kernel: libata version 3.00 loaded.
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1a.0: irq 23, io mem 0xfb207000
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    Jan 10 16:20:03 nickarch kernel: hub 1-0:1.0: USB hub found
    Jan 10 16:20:03 nickarch kernel: hub 1-0:1.0: 2 ports detected
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: xHCI Host Controller
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 2
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1d.0: setting latency timer to 64
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: irq 47 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: irq 48 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: irq 49 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: irq 50 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: irq 51 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: irq 52 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: irq 53 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: irq 54 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: hub 2-0:1.0: USB hub found
    Jan 10 16:20:03 nickarch kernel: hub 2-0:1.0: 2 ports detected
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: xHCI Host Controller
    Jan 10 16:20:03 nickarch kernel: xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 3
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1d.0: debug port 2
    Jan 10 16:20:03 nickarch kernel: hub 3-0:1.0: USB hub found
    Jan 10 16:20:03 nickarch kernel: hub 3-0:1.0: 2 ports detected
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb206000
    Jan 10 16:20:03 nickarch kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    Jan 10 16:20:03 nickarch kernel: hub 4-0:1.0: USB hub found
    Jan 10 16:20:03 nickarch kernel: hub 4-0:1.0: 2 ports detected
    Jan 10 16:20:03 nickarch kernel: ahci 0000:00:1f.2: version 3.0
    Jan 10 16:20:03 nickarch kernel: ahci 0000:00:1f.2: irq 55 for MSI/MSI-X
    Jan 10 16:20:03 nickarch kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
    Jan 10 16:20:03 nickarch kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
    Jan 10 16:20:03 nickarch kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Jan 10 16:20:03 nickarch kernel: scsi0 : ahci
    Jan 10 16:20:03 nickarch kernel: scsi1 : ahci
    Jan 10 16:20:03 nickarch kernel: scsi2 : ahci
    Jan 10 16:20:03 nickarch kernel: scsi3 : ahci
    Jan 10 16:20:03 nickarch kernel: scsi4 : ahci
    Jan 10 16:20:03 nickarch kernel: scsi5 : ahci
    Jan 10 16:20:03 nickarch kernel: ata1: SATA max UDMA/133 abar m2048@0xfb205000 port 0xfb205100 irq 55
    Jan 10 16:20:03 nickarch kernel: ata2: SATA max UDMA/133 abar m2048@0xfb205000 port 0xfb205180 irq 55
    Jan 10 16:20:03 nickarch kernel: ata3: DUMMY
    Jan 10 16:20:03 nickarch kernel: ata4: DUMMY
    Jan 10 16:20:03 nickarch kernel: ata5: DUMMY
    Jan 10 16:20:03 nickarch kernel: ata6: DUMMY
    Jan 10 16:20:03 nickarch kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
    Jan 10 16:20:03 nickarch kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jan 10 16:20:03 nickarch kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jan 10 16:20:03 nickarch kernel: ata2.00: ATAPI: TSSTcorp CDDVDW SH-222AB, SB00, max UDMA/100
    Jan 10 16:20:03 nickarch kernel: ata2.00: configured for UDMA/100
    Jan 10 16:20:03 nickarch kernel: ata1.00: ATA-8: MD05000-BQDW-RO, 12.01C02, max UDMA/133
    Jan 10 16:20:03 nickarch kernel: ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Jan 10 16:20:03 nickarch kernel: ata1.00: configured for UDMA/133
    Jan 10 16:20:03 nickarch kernel: scsi 0:0:0:0: Direct-Access ATA MD05000-BQDW-RO 12.0 PQ: 0 ANSI: 5
    Jan 10 16:20:03 nickarch kernel: scsi 1:0:0:0: CD-ROM TSSTcorp CDDVDW SH-222AB SB00 PQ: 0 ANSI: 5
    Jan 10 16:20:03 nickarch kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Jan 10 16:20:03 nickarch kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 10 16:20:03 nickarch kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 10 16:20:03 nickarch kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jan 10 16:20:03 nickarch kernel: sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    Jan 10 16:20:03 nickarch kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jan 10 16:20:03 nickarch kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Jan 10 16:20:03 nickarch kernel: sda: sda1 sda2 sda3
    Jan 10 16:20:03 nickarch kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 10 16:20:03 nickarch kernel: hub 1-1:1.0: USB hub found
    Jan 10 16:20:03 nickarch kernel: hub 1-1:1.0: 6 ports detected
    Jan 10 16:20:03 nickarch kernel: usb 2-1: new full-speed USB device number 2 using xhci_hcd
    Jan 10 16:20:03 nickarch kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    Jan 10 16:20:03 nickarch kernel: tsc: Refined TSC clocksource calibration: 3411.127 MHz
    Jan 10 16:20:03 nickarch kernel: usb 2-1: ep 0x83 - rounding interval to 64 microframes, ep desc says 80 microframes
    Jan 10 16:20:03 nickarch kernel: usb 4-1: new high-speed USB device number 2 using ehci-pci
    Jan 10 16:20:03 nickarch kernel: hub 4-1:1.0: USB hub found
    Jan 10 16:20:03 nickarch kernel: hub 4-1:1.0: 8 ports detected
    Jan 10 16:20:03 nickarch systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Jan 10 16:20:03 nickarch systemd[1]: Set hostname to <nickarch>.
    Jan 10 16:20:03 nickarch kernel: usb 4-1.5: new full-speed USB device number 3 using ehci-pci
    Jan 10 16:20:03 nickarch kernel: usb 4-1.6: new full-speed USB device number 4 using ehci-pci
    Jan 10 16:20:03 nickarch kernel: Switched to clocksource tsc
    Jan 10 16:20:03 nickarch systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jan 10 16:20:03 nickarch systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Remote File Systems.
    Jan 10 16:20:03 nickarch systemd[1]: Reached target Remote File Systems.
    Jan 10 16:20:03 nickarch systemd[1]: Expecting device sys-subsystem-net-devices-enp7s0.device...
    Jan 10 16:20:03 nickarch systemd[1]: Starting Device-mapper event daemon FIFOs.
    Jan 10 16:20:03 nickarch systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Jan 10 16:20:03 nickarch systemd[1]: Starting LVM2 metadata daemon socket.
    Jan 10 16:20:03 nickarch systemd[1]: Listening on LVM2 metadata daemon socket.
    Jan 10 16:20:03 nickarch systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jan 10 16:20:03 nickarch systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Delayed Shutdown Socket.
    Jan 10 16:20:03 nickarch systemd[1]: Listening on Delayed Shutdown Socket.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jan 10 16:20:03 nickarch systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Encrypted Volumes.
    Jan 10 16:20:03 nickarch systemd[1]: Reached target Encrypted Volumes.
    Jan 10 16:20:03 nickarch systemd[1]: Starting udev Kernel Socket.
    Jan 10 16:20:03 nickarch systemd[1]: Listening on udev Kernel Socket.
    Jan 10 16:20:03 nickarch systemd[1]: Starting udev Control Socket.
    Jan 10 16:20:03 nickarch systemd[1]: Listening on udev Control Socket.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Jan 10 16:20:03 nickarch systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Paths.
    Jan 10 16:20:03 nickarch systemd[1]: Reached target Paths.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Journal Socket.
    Jan 10 16:20:03 nickarch systemd[1]: Listening on Journal Socket.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Create list of required static device nodes for the current kernel...
    Jan 10 16:20:03 nickarch systemd[1]: Started Load Kernel Modules.
    Jan 10 16:20:03 nickarch systemd[1]: Mounting Configuration File System...
    Jan 10 16:20:03 nickarch systemd[1]: Mounting POSIX Message Queue File System...
    Jan 10 16:20:03 nickarch systemd[1]: Starting Setup Virtual Console...
    Jan 10 16:20:03 nickarch systemd[1]: Started Set Up Additional Binary Formats.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Apply Kernel Variables...
    Jan 10 16:20:03 nickarch systemd[1]: Starting udev Coldplug all Devices...
    Jan 10 16:20:03 nickarch systemd[1]: Starting Journal Service...
    Jan 10 16:20:03 nickarch systemd[1]: Started Journal Service.
    Jan 10 16:20:03 nickarch kernel: EXT4-fs (sda1): re-mounted. Opts: data=ordered
    Jan 10 16:20:03 nickarch systemd-journal[155]: Journal started
    Jan 10 16:20:03 nickarch systemd[1]: Mounting Debug File System...
    Jan 10 16:20:03 nickarch systemd[1]: Mounted FUSE Control File System.
    Jan 10 16:20:03 nickarch systemd[1]: Mounting Huge Pages File System...
    Jan 10 16:20:03 nickarch systemd[1]: Expecting device dev-disk-by\x2duuid-ca7c0977\x2d81af\x2d4ab6\x2db080\x2de871ff0a611f.device...
    Jan 10 16:20:03 nickarch systemd[1]: Mounting Temporary Directory...
    Jan 10 16:20:03 nickarch systemd[1]: Started File System Check on Root Device.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Remount Root and Kernel File Systems...
    Jan 10 16:20:03 nickarch systemd[1]: Starting Root Slice.
    Jan 10 16:20:03 nickarch systemd[1]: Created slice Root Slice.
    Jan 10 16:20:03 nickarch systemd[1]: Starting User and Session Slice.
    Jan 10 16:20:03 nickarch systemd[1]: Created slice User and Session Slice.
    Jan 10 16:20:03 nickarch systemd[1]: Starting System Slice.
    Jan 10 16:20:03 nickarch systemd[1]: Created slice System Slice.
    Jan 10 16:20:03 nickarch systemd[1]: Starting system-dhcpcd.slice.
    Jan 10 16:20:03 nickarch systemd[1]: Created slice system-dhcpcd.slice.
    Jan 10 16:20:03 nickarch systemd[1]: Starting system-getty.slice.
    Jan 10 16:20:03 nickarch systemd[1]: Created slice system-getty.slice.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Slices.
    Jan 10 16:20:03 nickarch systemd[1]: Reached target Slices.
    Jan 10 16:20:03 nickarch systemd[1]: Expecting device dev-disk-by\x2duuid-5934c9bb\x2d84f6\x2d401a\x2dac64\x2d9212f318229b.device...
    Jan 10 16:20:03 nickarch systemd[1]: Mounted Configuration File System.
    Jan 10 16:20:03 nickarch systemd[1]: Mounted POSIX Message Queue File System.
    Jan 10 16:20:03 nickarch systemd[1]: Started Setup Virtual Console.
    Jan 10 16:20:03 nickarch systemd[1]: Started Apply Kernel Variables.
    Jan 10 16:20:03 nickarch systemd[1]: Mounted Debug File System.
    Jan 10 16:20:03 nickarch systemd[1]: Mounted Huge Pages File System.
    Jan 10 16:20:03 nickarch systemd[1]: Mounted Temporary Directory.
    Jan 10 16:20:03 nickarch systemd[1]: Started Remount Root and Kernel File Systems.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Load/Save Random Seed...
    Jan 10 16:20:03 nickarch systemd[1]: Started udev Coldplug all Devices.
    Jan 10 16:20:03 nickarch systemd[1]: Started Create list of required static device nodes for the current kernel.
    Jan 10 16:20:03 nickarch systemd[1]: Starting Create static device nodes in /dev...
    Jan 10 16:20:03 nickarch systemd[1]: Started Load/Save Random Seed.
    Jan 10 16:20:03 nickarch systemd[1]: Started Create static device nodes in /dev.
    Jan 10 16:20:03 nickarch systemd[1]: Starting udev Kernel Device Manager...
    Jan 10 16:20:03 nickarch systemd[1]: Starting Local File Systems (Pre).
    Jan 10 16:20:03 nickarch systemd[1]: Reached target Local File Systems (Pre).
    Jan 10 16:20:03 nickarch systemd[1]: Started udev Kernel Device Manager.
    Jan 10 16:20:03 nickarch systemd-udevd[187]: starting version 208
    Jan 10 16:20:03 nickarch kernel: microcode: CPU0 sig=0x206a7, pf=0x2, revision=0x18
    Jan 10 16:20:04 nickarch kernel: ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \_SB_.PCI0.SBRG.GPBX 1 (20130725/utaddress-251)
    Jan 10 16:20:04 nickarch kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jan 10 16:20:04 nickarch kernel: ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.SBRG.GPBX 1 (20130725/utaddress-251)
    Jan 10 16:20:04 nickarch kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jan 10 16:20:04 nickarch kernel: ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.SBRG.GPBX 1 (20130725/utaddress-251)
    Jan 10 16:20:04 nickarch kernel: ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_GPE.GPIO 2 (20130725/utaddress-251)
    Jan 10 16:20:04 nickarch kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jan 10 16:20:04 nickarch kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Jan 10 16:20:04 nickarch kernel: input: PC Speaker as /devices/platform/pcspkr/input/input2
    Jan 10 16:20:04 nickarch kernel: mei_me 0000:00:16.0: setting latency timer to 64
    Jan 10 16:20:04 nickarch kernel: mei_m

    Okay I have just had another crash after a week while playing WoW under Wine. I have looked at the logs again but again to me they dont really give me that much information to why the crash has happened.
    Journalctl -b -1
    http://pastebin.com/ktZs07s3
    Journalctl -xn -b -1
    -- Logs begin at Thu 2013-09-19 23:33:18 BST, end at Sat 2014-02-01 11:45:04 GMT. --
    Feb 01 10:49:46 nickarch systemd[1]: Starting Daemon for power management...
    -- Subject: Unit upower.service has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit upower.service has begun starting up.
    Feb 01 10:49:46 nickarch dbus[302]: [system] Successfully activated service 'org.freedesktop.UPower'
    Feb 01 10:49:46 nickarch systemd[1]: Started Daemon for power management.
    -- Subject: Unit upower.service has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit upower.service has finished starting up.
    -- The start-up result is done.
    Feb 01 10:56:54 nickarch smbd[355]: [2014/02/01 10:56:54.334150, 0] ../source3/printing/print_standard.c:68(std_pcap_cache_reload)
    Feb 01 10:56:54 nickarch smbd[355]: Unable to open printcap file /etc/printcap for read!
    Feb 01 11:09:06 nickarch kernel: retire_capture_urb: 1 callbacks suppressed
    Feb 01 11:09:55 nickarch smbd[355]: [2014/02/01 11:09:55.027150, 0] ../source3/printing/print_standard.c:68(std_pcap_cache_reload)
    Feb 01 11:09:55 nickarch smbd[355]: Unable to open printcap file /etc/printcap for read!
    Feb 01 11:22:55 nickarch smbd[355]: [2014/02/01 11:22:55.751226, 0] ../source3/printing/print_standard.c:68(std_pcap_cache_reload)
    Feb 01 11:22:55 nickarch smbd[355]: Unable to open printcap file /etc/printcap for read!
    Journalctl -b
    http://pastebin.com/rDTxMvXe
    Journalctl -xn -b
    -- Logs begin at Thu 2013-09-19 23:33:18 BST, end at Sat 2014-02-01 11:45:04 GMT. --
    Feb 01 11:36:01 nickarch su[558]: pam_unix(su:session): session closed for user root
    Feb 01 11:36:48 nickarch su[798]: (to root) nicholas on pts/0
    Feb 01 11:36:48 nickarch su[798]: pam_unix(su:session): session opened for user root by (uid=1000)
    Feb 01 11:38:00 nickarch su[798]: pam_unix(su:session): session closed for user root
    Feb 01 11:39:49 nickarch smbd[349]: [2014/02/01 11:39:49.447766, 0] ../source3/printing/print_standard.c:68(std_pcap_cache_reload)
    Feb 01 11:39:49 nickarch smbd[349]: Unable to open printcap file /etc/printcap for read!
    Feb 01 11:41:29 nickarch systemd[1]: Starting Cleanup of Temporary Directories...
    -- Subject: Unit systemd-tmpfiles-clean.service has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-tmpfiles-clean.service has begun starting up.
    Feb 01 11:41:30 nickarch systemd[1]: Started Cleanup of Temporary Directories.
    -- Subject: Unit systemd-tmpfiles-clean.service has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-tmpfiles-clean.service has finished starting up.
    -- The start-up result is done.
    Feb 01 11:45:04 nickarch su[906]: (to root) nicholas on pts/0
    Feb 01 11:45:04 nickarch su[906]: pam_unix(su:session): session opened for user root by (uid=1000)
    Xorg.1.log
    > ~ cat /var/log/Xorg.1.log
    [ 903.926]
    X.Org X Server 1.15.0
    Release Date: 2013-12-27
    [ 903.948] X Protocol Version 11, Revision 0
    [ 903.955] Build Operating System: Linux 3.12.5-1-ARCH x86_64
    [ 903.963] Current Operating System: Linux nickarch 3.12.7-2-ARCH #1 SMP PREEMPT Sun Jan 12 13:09:09 CET 2014 x86_64
    [ 903.963] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=0e59a6e2-e320-45ef-98bc-1d7b8e363398 rw quiet
    [ 903.980] Build Date: 09 January 2014 08:47:24AM
    [ 903.988]
    [ 903.997] Current version of pixman: 0.32.4
    [ 904.014] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 904.014] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 904.050] (==) Log file: "/var/log/Xorg.1.log", Time: Mon Jan 20 17:54:53 2014
    [ 904.060] (==) Using config file: "/etc/X11/xorg.conf"
    [ 904.069] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 904.069] (==) ServerLayout "Layout0"
    [ 904.069] (**) |-->Screen "Screen0" (0)
    [ 904.069] (**) | |-->Monitor "Monitor0"
    [ 904.069] (**) | |-->Device "Device0"
    [ 904.069] (**) |-->Input Device "Keyboard0"
    [ 904.069] (**) |-->Input Device "Mouse0"
    [ 904.069] (**) Option "Xinerama" "0"
    [ 904.069] (==) Automatically adding devices
    [ 904.069] (==) Automatically enabling devices
    [ 904.069] (==) Automatically adding GPU devices
    [ 904.070] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 904.070] Entry deleted from font path.
    [ 904.070] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 904.070] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 904.070] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 904.070] (WW) Disabling Keyboard0
    [ 904.070] (WW) Disabling Mouse0
    [ 904.070] (II) Loader magic: 0x804c80
    [ 904.070] (II) Module ABI versions:
    [ 904.070] X.Org ANSI C Emulation: 0.4
    [ 904.070] X.Org Video Driver: 15.0
    [ 904.070] X.Org XInput driver : 20.0
    [ 904.070] X.Org Server Extension : 8.0
    [ 904.070] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 904.079] setversion 1.4 failed: Permission denied
    [ 904.080] (--) PCI:*(0:1:0:0) 10de:11c6:3842:3652 rev 161, Mem @ 0xfa000000/16777216, 0xe8000000/134217728, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 904.080] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 904.089] Initializing built-in extension Generic Event Extension
    [ 904.099] Initializing built-in extension SHAPE
    [ 904.109] Initializing built-in extension MIT-SHM
    [ 904.118] Initializing built-in extension XInputExtension
    [ 904.128] Initializing built-in extension XTEST
    [ 904.137] Initializing built-in extension BIG-REQUESTS
    [ 904.146] Initializing built-in extension SYNC
    [ 904.155] Initializing built-in extension XKEYBOARD
    [ 904.164] Initializing built-in extension XC-MISC
    [ 904.173] Initializing built-in extension SECURITY
    [ 904.181] Initializing built-in extension XINERAMA
    [ 904.190] Initializing built-in extension XFIXES
    [ 904.199] Initializing built-in extension RENDER
    [ 904.208] Initializing built-in extension RANDR
    [ 904.217] Initializing built-in extension COMPOSITE
    [ 904.225] Initializing built-in extension DAMAGE
    [ 904.234] Initializing built-in extension MIT-SCREEN-SAVER
    [ 904.242] Initializing built-in extension DOUBLE-BUFFER
    [ 904.250] Initializing built-in extension RECORD
    [ 904.257] Initializing built-in extension DPMS
    [ 904.265] Initializing built-in extension Present
    [ 904.273] Initializing built-in extension DRI3
    [ 904.279] Initializing built-in extension X-Resource
    [ 904.286] Initializing built-in extension XVideo
    [ 904.294] Initializing built-in extension XVideo-MotionCompensation
    [ 904.301] Initializing built-in extension XFree86-VidModeExtension
    [ 904.308] Initializing built-in extension XFree86-DGA
    [ 904.315] Initializing built-in extension XFree86-DRI
    [ 904.321] Initializing built-in extension DRI2
    [ 904.321] (II) LoadModule: "glx"
    [ 904.322] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 904.328] (II) Module glx: vendor="NVIDIA Corporation"
    [ 904.328] compiled for 4.0.2, module version = 1.0.0
    [ 904.328] Module class: X.Org Server Extension
    [ 904.328] (II) NVIDIA GLX Module 331.38 Wed Jan 8 19:10:17 PST 2014
    [ 904.335] Loading extension GLX
    [ 904.335] (II) LoadModule: "nvidia"
    [ 904.335] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 904.335] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 904.335] compiled for 4.0.2, module version = 1.0.0
    [ 904.335] Module class: X.Org Video Driver
    [ 904.335] (II) NVIDIA dlloader X Driver 331.38 Wed Jan 8 18:51:00 PST 2014
    [ 904.335] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 904.335] (++) using VT number 2
    [ 904.335] (II) Loading sub module "fb"
    [ 904.335] (II) LoadModule: "fb"
    [ 904.336] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 904.336] (II) Module fb: vendor="X.Org Foundation"
    [ 904.336] compiled for 1.15.0, module version = 1.0.0
    [ 904.336] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 904.336] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 904.336] (II) Loading sub module "wfb"
    [ 904.336] (II) LoadModule: "wfb"
    [ 904.336] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 904.336] (II) Module wfb: vendor="X.Org Foundation"
    [ 904.336] compiled for 1.15.0, module version = 1.0.0
    [ 904.336] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 904.336] (II) Loading sub module "ramdac"
    [ 904.336] (II) LoadModule: "ramdac"
    [ 904.336] (II) Module "ramdac" already built-in
    [ 904.336] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [ 904.336] (==) NVIDIA(0): RGB weight 888
    [ 904.336] (==) NVIDIA(0): Default visual is TrueColor
    [ 904.336] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 904.336] (**) NVIDIA(0): Option "Stereo" "0"
    [ 904.336] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "CRT-0"
    [ 904.336] (**) NVIDIA(0): Option "SLI" "Off"
    [ 904.336] (**) NVIDIA(0): Option "MultiGPU" "Off"
    [ 904.336] (**) NVIDIA(0): Option "BaseMosaic" "off"
    [ 904.336] (**) NVIDIA(0): Stereo disabled by request
    [ 904.336] (**) NVIDIA(0): NVIDIA SLI disabled.
    [ 904.336] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
    [ 904.336] (**) NVIDIA(0): Option "MetaModes" "DVI-I-0: nvidia-auto-select +1920+0, DVI-D-0: nvidia-auto-select +0+0"
    [ 904.336] (**) NVIDIA(0): Enabling 2D acceleration
    [ 904.366] (II) NVIDIA(0): Display (Acer X223HQ (CRT-0)) does not support NVIDIA 3D
    [ 904.366] (II) NVIDIA(0): Vision stereo.
    [ 904.372] (II) NVIDIA(0): Display (AOC 2243W (DFP-2)) does not support NVIDIA 3D Vision
    [ 904.372] (II) NVIDIA(0): stereo.
    [ 904.372] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 904.373] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 650 Ti (GK106) at PCI:1:0:0 (GPU-0)
    [ 904.373] (--) NVIDIA(0): Memory: 1048576 kBytes
    [ 904.373] (--) NVIDIA(0): VideoBIOS: 80.06.21.00.52
    [ 904.373] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 904.376] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 650 Ti at PCI:1:0:0
    [ 904.376] (--) NVIDIA(0): Acer X223HQ (CRT-0) (boot, connected)
    [ 904.376] (--) NVIDIA(0): DFP-0
    [ 904.376] (--) NVIDIA(0): DFP-1
    [ 904.376] (--) NVIDIA(0): AOC 2243W (DFP-2) (connected)
    [ 904.376] (--) NVIDIA(0): Acer X223HQ (CRT-0): 480.0 MHz maximum pixel clock
    [ 904.376] (--) NVIDIA(0): DFP-0: Internal Single Link TMDS
    [ 904.376] (--) NVIDIA(0): DFP-0: 330.0 MHz maximum pixel clock
    [ 904.376] (--) NVIDIA(0): DFP-1: Internal Single Link TMDS
    [ 904.376] (--) NVIDIA(0): DFP-1: 165.0 MHz maximum pixel clock
    [ 904.376] (--) NVIDIA(0): AOC 2243W (DFP-2): Internal Dual Link TMDS
    [ 904.376] (--) NVIDIA(0): AOC 2243W (DFP-2): 330.0 MHz maximum pixel clock
    [ 904.376] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 904.376] (**) NVIDIA(0): device Acer X223HQ (CRT-0) (Using EDID frequencies has
    [ 904.376] (**) NVIDIA(0): been enabled on all display devices.)
    [ 904.377] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 904.377] (**) NVIDIA(0): device AOC 2243W (DFP-2) (Using EDID frequencies has been
    [ 904.377] (**) NVIDIA(0): enabled on all display devices.)
    [ 904.378] (II) NVIDIA(0): Validated MetaModes:
    [ 904.378] (II) NVIDIA(0):
    [ 904.378] (II) NVIDIA(0): "DVI-I-0:nvidia-auto-select+1920+0,DVI-D-0:nvidia-auto-select+0+0"
    [ 904.378] (II) NVIDIA(0): Virtual screen size determined to be 3840 x 1080
    [ 904.413] (--) NVIDIA(0): DPI set to (103, 101); computed from "UseEdidDpi" X config
    [ 904.413] (--) NVIDIA(0): option
    [ 904.413] (--) Depth 24 pixmap format is 32 bpp
    [ 904.413] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
    [ 904.413] (II) NVIDIA: access.
    [ 904.416] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 904.416] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 904.416] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 904.416] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 904.416] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 904.416] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 904.416] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 904.416] (II) NVIDIA(0): Config Options in the README.
    [ 904.418] (II) NVIDIA(0): Setting mode "DVI-I-0:nvidia-auto-select+1920+0,DVI-D-0:nvidia-auto-select+0+0"
    [ 904.533] Loading extension NV-GLX
    [ 904.593] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 904.593] (==) NVIDIA(0): Backing store enabled
    [ 904.593] (==) NVIDIA(0): Silken mouse enabled
    [ 904.594] (**) NVIDIA(0): DPMS enabled
    [ 904.594] Loading extension NV-CONTROL
    [ 904.594] Loading extension XINERAMA
    [ 904.594] (II) Loading sub module "dri2"
    [ 904.594] (II) LoadModule: "dri2"
    [ 904.594] (II) Module "dri2" already built-in
    [ 904.594] (II) NVIDIA(0): [DRI2] Setup complete
    [ 904.594] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 904.594] (--) RandR disabled
    [ 904.598] (II) Initializing extension GLX
    [ 904.660] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 904.660] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 904.660] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 904.660] (II) LoadModule: "evdev"
    [ 904.660] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 904.660] (II) Module evdev: vendor="X.Org Foundation"
    [ 904.660] compiled for 1.15.0, module version = 2.8.2
    [ 904.660] Module class: X.Org XInput Driver
    [ 904.660] ABI class: X.Org XInput driver, version 20.0
    [ 904.660] (II) Using input driver 'evdev' for 'Power Button'
    [ 904.660] (**) Power Button: always reports core events
    [ 904.660] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 904.660] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 904.660] (--) evdev: Power Button: Found keys
    [ 904.660] (II) evdev: Power Button: Configuring as keyboard
    [ 904.660] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event1"
    [ 904.660] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 904.660] (**) Option "xkb_rules" "evdev"
    [ 904.660] (**) Option "xkb_model" "pc104"
    [ 904.660] (**) Option "xkb_layout" "us"
    [ 904.660] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 904.672] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 904.672] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 904.672] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 904.672] (II) Using input driver 'evdev' for 'Power Button'
    [ 904.672] (**) Power Button: always reports core events
    [ 904.672] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 904.672] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 904.672] (--) evdev: Power Button: Found keys
    [ 904.672] (II) evdev: Power Button: Configuring as keyboard
    [ 904.672] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event0"
    [ 904.672] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 904.672] (**) Option "xkb_rules" "evdev"
    [ 904.672] (**) Option "xkb_model" "pc104"
    [ 904.672] (**) Option "xkb_layout" "us"
    [ 904.672] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 904.672] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 904.672] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 904.672] setversion 1.4 failed: Permission denied
    [ 904.672] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event19)
    [ 904.672] (II) No input driver specified, ignoring this device.
    [ 904.672] (II) This device may have been added with another device file.
    [ 904.673] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event18)
    [ 904.673] (II) No input driver specified, ignoring this device.
    [ 904.673] (II) This device may have been added with another device file.
    [ 904.673] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event17)
    [ 904.673] (II) No input driver specified, ignoring this device.
    [ 904.673] (II) This device may have been added with another device file.
    [ 904.673] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event16)
    [ 904.673] (II) No input driver specified, ignoring this device.
    [ 904.673] (II) This device may have been added with another device file.
    [ 904.673] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event6)
    [ 904.673] (II) No input driver specified, ignoring this device.
    [ 904.673] (II) This device may have been added with another device file.
    [ 904.673] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event5)
    [ 904.673] (II) No input driver specified, ignoring this device.
    [ 904.673] (II) This device may have been added with another device file.
    [ 904.673] (II) config/udev: Adding input device HDA Intel PCH Line Out Side (/dev/input/event4)
    [ 904.673] (II) No input driver specified, ignoring this device.
    [ 904.673] (II) This device may have been added with another device file.
    [ 904.673] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event3)
    [ 904.673] (II) No input driver specified, ignoring this device.
    [ 904.673] (II) This device may have been added with another device file.
    [ 904.673] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event10)
    [ 904.673] (II) No input driver specified, ignoring this device.
    [ 904.673] (II) This device may have been added with another device file.
    [ 904.673] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event9)
    [ 904.673] (II) No input driver specified, ignoring this device.
    [ 904.673] (II) This device may have been added with another device file.
    [ 904.674] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event8)
    [ 904.674] (II) No input driver specified, ignoring this device.
    [ 904.674] (II) This device may have been added with another device file.
    [ 904.674] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event7)
    [ 904.674] (II) No input driver specified, ignoring this device.
    [ 904.674] (II) This device may have been added with another device file.
    [ 904.674] (II) config/udev: Adding input device Logitech Logitech G930 Headset (/dev/input/event11)
    [ 904.674] (**) Logitech Logitech G930 Headset: Applying InputClass "evdev keyboard catchall"
    [ 904.674] (**) Logitech Logitech G930 Headset: Applying InputClass "Keyboard Defaults"
    [ 904.674] (II) Using input driver 'evdev' for 'Logitech Logitech G930 Headset'
    [ 904.674] (**) Logitech Logitech G930 Headset: always reports core events
    [ 904.674] (**) evdev: Logitech Logitech G930 Headset: Device: "/dev/input/event11"
    [ 904.674] (--) evdev: Logitech Logitech G930 Headset: Vendor 0x46d Product 0xa1f
    [ 904.674] (--) evdev: Logitech Logitech G930 Headset: Found 14 mouse buttons
    [ 904.674] (--) evdev: Logitech Logitech G930 Headset: Found keys
    [ 904.674] (II) evdev: Logitech Logitech G930 Headset: Forcing relative x/y axes to exist.
    [ 904.674] (II) evdev: Logitech Logitech G930 Headset: Configuring as mouse
    [ 904.674] (II) evdev: Logitech Logitech G930 Headset: Configuring as keyboard
    [ 904.674] (**) evdev: Logitech Logitech G930 Headset: YAxisMapping: buttons 4 and 5
    [ 904.674] (**) evdev: Logitech Logitech G930 Headset: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 904.674] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.5/0000:06:00.0/usb2/2-1/2-1:1.3/input/input14/event11"
    [ 904.674] (II) XINPUT: Adding extended input device "Logitech Logitech G930 Headset" (type: KEYBOARD, id 8)
    [ 904.674] (**) Option "xkb_rules" "evdev"
    [ 904.674] (**) Option "xkb_model" "pc104"
    [ 904.674] (**) Option "xkb_layout" "us"
    [ 904.674] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 904.674] (II) config/udev: Adding input device Microsoft Microsoft® SiderWinderTM X4 Keyboard (/dev/input/event12)
    [ 904.674] (**) Microsoft Microsoft® SiderWinderTM X4 Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 904.674] (**) Microsoft Microsoft® SiderWinderTM X4 Keyboard: Applying InputClass "Keyboard Defaults"
    [ 904.674] (II) Using input driver 'evdev' for 'Microsoft Microsoft® SiderWinderTM X4 Keyboard'
    [ 904.674] (**) Microsoft Microsoft® SiderWinderTM X4 Keyboard: always reports core events
    [ 904.674] (**) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Device: "/dev/input/event12"
    [ 904.674] (--) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Vendor 0x45e Product 0x768
    [ 904.674] (--) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Found keys
    [ 904.674] (II) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Configuring as keyboard
    [ 904.674] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.5/4-1.5:1.0/input/input15/event12"
    [ 904.674] (II) XINPUT: Adding extended input device "Microsoft Microsoft® SiderWinderTM X4 Keyboard" (type: KEYBOARD, id 9)
    [ 904.674] (**) Option "xkb_rules" "evdev"
    [ 904.674] (**) Option "xkb_model" "pc104"
    [ 904.674] (**) Option "xkb_layout" "us"
    [ 904.674] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 904.675] (II) config/udev: Adding input device Saitek Cyborg R.A.T.3 Mouse (/dev/input/event14)
    [ 904.675] (**) Saitek Cyborg R.A.T.3 Mouse: Applying InputClass "evdev pointer catchall"
    [ 904.675] (**) Saitek Cyborg R.A.T.3 Mouse: Applying InputClass "Mouse Remap"
    [ 904.675] (II) Using input driver 'evdev' for 'Saitek Cyborg R.A.T.3 Mouse'
    [ 904.675] (**) Saitek Cyborg R.A.T.3 Mouse: always reports core events
    [ 904.675] (**) evdev: Saitek Cyborg R.A.T.3 Mouse: Device: "/dev/input/event14"
    [ 904.675] (**) evdev: Saitek Cyborg R.A.T.3 Mouse: ButtonMapping '1 2 3 4 5 0 0 8 9 0 0 0 13 14'
    [ 904.675] (--) evdev: Saitek Cyborg R.A.T.3 Mouse: Vendor 0x6a3 Product 0xccc
    [ 904.675] (--) evdev: Saitek Cyborg R.A.T.3 Mouse: Found 14 mouse buttons
    [ 904.675] (--) evdev: Saitek Cyborg R.A.T.3 Mouse: Found scroll wheel(s)
    [ 904.675] (--) evdev: Saitek Cyborg R.A.T.3 Mouse: Found relative axes
    [ 904.675] (--) evdev: Saitek Cyborg R.A.T.3 Mouse: Found x and y relative axes
    [ 904.675] (II) evdev: Saitek Cyborg R.A.T.3 Mouse: Configuring as mouse
    [ 904.675] (II) evdev: Saitek Cyborg R.A.T.3 Mouse: Adding scrollwheel support
    [ 904.675] (**) evdev: Saitek Cyborg R.A.T.3 Mouse: YAxisMapping: buttons 4 and 5
    [ 904.675] (**) evdev: Saitek Cyborg R.A.T.3 Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 904.675] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.6/4-1.6:1.0/input/input17/event14"
    [ 904.675] (II) XINPUT: Adding extended input device "Saitek Cyborg R.A.T.3 Mouse" (type: MOUSE, id 10)
    [ 904.675] (II) evdev: Saitek Cyborg R.A.T.3 Mouse: initialized for relative axes.
    [ 904.675] (**) Saitek Cyborg R.A.T.3 Mouse: (accel) keeping acceleration scheme 1
    [ 904.675] (**) Saitek Cyborg R.A.T.3 Mouse: (accel) acceleration profile 0
    [ 904.675] (**) Saitek Cyborg R.A.T.3 Mouse: (accel) acceleration factor: 2.000
    [ 904.675] (**) Saitek Cyborg R.A.T.3 Mouse: (accel) acceleration threshold: 4
    [ 904.675] (II) config/udev: Adding input device Saitek Cyborg R.A.T.3 Mouse (/dev/input/mouse0)
    [ 904.675] (II) No input driver specified, ignoring this device.
    [ 904.675] (II) This device may have been added with another device file.
    [ 904.675] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event15)
    [ 904.675] (**) Eee PC WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 904.675] (**) Eee PC WMI hotkeys: Applying InputClass "Keyboard Defaults"
    [ 904.675] (II) Using input driver 'evdev' for 'Eee PC WMI hotkeys'
    [ 904.675] (**) Eee PC WMI hotkeys: always reports core events
    [ 904.675] (**) evdev: Eee PC WMI hotkeys: Device: "/dev/input/event15"
    [ 904.675] (--) evdev: Eee PC WMI hotkeys: Vendor 0 Product 0
    [ 904.675] (--) evdev: Eee PC WMI hotkeys: Found keys
    [ 904.675] (II) evdev: Eee PC WMI hotkeys: Configuring as keyboard
    [ 904.675] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input18/event15"
    [ 904.675] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 11)
    [ 904.675] (**) Option "xkb_rules" "evdev"
    [ 904.675] (**) Option "xkb_model" "pc104"
    [ 904.675] (**) Option "xkb_layout" "us"
    [ 904.675] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 904.675] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 904.675] (II) No input driver specified, ignoring this device.
    [ 904.675] (II) This device may have been added with another device file.
    [ 904.676] (II) config/udev: Adding input device x4daemon (/dev/input/event20)
    [ 904.676] (**) x4daemon: Applying InputClass "evdev keyboard catchall"
    [ 904.676] (**) x4daemon: Applying InputClass "Keyboard Defaults"
    [ 904.676] (II) Using input driver 'evdev' for 'x4daemon'
    [ 904.676] (**) x4daemon: always reports core events
    [ 904.676] (**) evdev: x4daemon: Device: "/dev/input/event20"
    [ 904.676] (--) evdev: x4daemon: Vendor 0x1 Product 0x1
    [ 904.676] (--) evdev: x4daemon: Found keys
    [ 904.676] (II) evdev: x4daemon: Configuring as keyboard
    [ 904.676] (**) Option "config_info" "udev:/sys/devices/virtual/input/input23/event20"
    [ 904.676] (II) XINPUT: Adding extended input device "x4daemon" (type: KEYBOARD, id 12)
    [ 904.676] (**) Option "xkb_rules" "evdev"
    [ 904.676] (**) Option "xkb_model" "pc104"
    [ 904.676] (**) Option "xkb_layout" "us"
    [ 904.676] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 1046.391] (II) config/udev: removing device x4daemon
    [ 1046.391] (II) evdev: x4daemon: Close
    [ 1046.391] (II) UnloadModule: "evdev"
    [ 1046.432] (II) config/udev: Adding input device Microsoft Microsoft® SiderWinderTM X4 Keyboard (/dev/input/event13)
    [ 1046.432] (**) Microsoft Microsoft® SiderWinderTM X4 Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 1046.432] (**) Microsoft Microsoft® SiderWinderTM X4 Keyboard: Applying InputClass "Keyboard Defaults"
    [ 1046.432] (II) Using input driver 'evdev' for 'Microsoft Microsoft® SiderWinderTM X4 Keyboard'
    [ 1046.432] (**) Microsoft Microsoft® SiderWinderTM X4 Keyboard: always reports core events
    [ 1046.432] (**) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Device: "/dev/input/event13"
    [ 1046.432] (--) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Vendor 0x45e Product 0x768
    [ 1046.432] (--) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Found 1 mouse buttons
    [ 1046.432] (--) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Found scroll wheel(s)
    [ 1046.432] (--) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Found relative axes
    [ 1046.432] (II) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Forcing relative x/y axes to exist.
    [ 1046.432] (--) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Found absolute axes
    [ 1046.432] (II) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Forcing absolute x/y axes to exist.
    [ 1046.432] (--) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Found keys
    [ 1046.432] (II) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Configuring as mouse
    [ 1046.432] (II) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Configuring as keyboard
    [ 1046.432] (II) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Adding scrollwheel support
    [ 1046.432] (**) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: YAxisMapping: buttons 4 and 5
    [ 1046.432] (**) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 1046.432] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.5/4-1.5:1.1/input/input24/event13"
    [ 1046.432] (II) XINPUT: Adding extended input device "Microsoft Microsoft® SiderWinderTM X4 Keyboard" (type: KEYBOARD, id 12)
    [ 1046.432] (**) Option "xkb_rules" "evdev"
    [ 1046.432] (**) Option "xkb_model" "pc104"
    [ 1046.432] (**) Option "xkb_layout" "us"
    [ 1046.432] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 1046.432] (II) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: initialized for relative axes.
    [ 1046.432] (WW) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: ignoring absolute axes.
    [ 1046.432] (**) Microsoft Microsoft® SiderWinderTM X4 Keyboard: (accel) keeping acceleration scheme 1
    [ 1046.432] (**) Microsoft Microsoft® SiderWinderTM X4 Keyboard: (accel) acceleration profile 0
    [ 1046.432] (**) Microsoft Microsoft® SiderWinderTM X4 Keyboard: (accel) acceleration factor: 2.000
    [ 1046.432] (**) Microsoft Microsoft® SiderWinderTM X4 Keyboard: (accel) acceleration threshold: 4
    [ 1046.983] (II) evdev: Eee PC WMI hotkeys: Close
    [ 1047.075] (II) UnloadModule: "evdev"
    [ 1047.075] (II) evdev: Saitek Cyborg R.A.T.3 Mouse: Close
    [ 1047.075] (II) UnloadModule: "evdev"
    [ 1047.075] (II) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Close
    [ 1047.075] (II) UnloadModule: "evdev"
    [ 1047.075] (II) evdev: Logitech Logitech G930 Headset: Close
    [ 1047.075] (II) UnloadModule: "evdev"
    [ 1047.075] (II) evdev: Power Button: Close
    [ 1047.075] (II) UnloadModule: "evdev"
    [ 1047.075] (II) evdev: Power Button: Close
    [ 1047.075] (II) UnloadModule: "evdev"
    [ 1047.075] (II) evdev: Microsoft Microsoft® SiderWinderTM X4 Keyboard: Close
    [ 1047.109] (II) UnloadModule: "evdev"
    [ 1047.125] (II) NVIDIA(GPU-0): Deleting GPU-0
    [ 1047.126] (WW) xf86CloseConsole: KDSETMODE failed: Input/output error
    [ 1047.126] (WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
    [ 1047.126] (EE)
    Fatal server error:
    [ 1047.126] (EE) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
    [ 1047.126] (EE)
    [ 1047.126] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 1047.126] (EE) Please also check the log file at "/var/log/Xorg.1.log" for additional information.
    [ 1047.126] (EE)
    [ 1047.126] (EE)
    [ 1047.126] (EE) Backtrace:
    [ 1047.126] (EE) 0: /usr/bin/X (xorg_backtrace+0x48) [0x584ae8]
    [ 1047.126] (EE) 1: /usr/bin/X (0x400000+0x1887c9) [0x5887c9]
    [ 1047.126] (EE) 2: /usr/lib/libpthread.so.0 (0x7fb0a723e000+0xf870) [0x7fb0a724d870]
    [ 1047.126] (EE)
    [ 1047.126] (EE) Segmentation fault at address 0x0
    [ 1047.126] (EE)
    FatalError re-entered, aborting
    [ 1047.126] (EE) Caught signal 11 (Segmentation fault). Server aborting
    [ 1047.126] (EE)
    I am really stuck here.. Suppose I will try disabling the monitor for now and see if that makes any difference..
    EDIT :: I have attempted to use the nouveau driver but apart from loading the desktop interface nothing particually displayed properly and / or crashed.
    Last edited by Kartious (2014-02-01 17:04:05)

  • Trying to learn zsh completion. Help me achieve it?

    Hi,
    I'm trying to learn to write completion functions for zsh, and started by writing one for unison, which looks in the profiles directory to tab-complete profiles. So far, I've got a _unison file containing the following:
    #compdef unison
    #typeset -A opt_args
    local profiles
    profiles=~/.unison
    _files -W ${profiles} -g '*.prf' && return 0
    return 1
    Which works relatively well:
    % unison <tab>
    default.prf documents.prf photographs.prf
    Just for the fun of it really, I'd like to remove the .prf bit and just have it complete the basename. Any idea how I can achieve this?
    Thanks :-)

    I don't think 'basename' is the right word.
    This works for bash:
    for i in *.txt; do echo ${i%%.*}; done
    Now you have to somehow add it to your workflow.

  • Replacing bash with dash or zsh as default shell

    Now that initscripts are no longer default init system for Arch, it should be possible (if initscripts removed from system) to remove bash and replace it with other shell, right? On my system I have this:
    :: autoconf: requires bash
    :: automake: requires bash
    :: ca-certificates: requires bash
    :: cpupower: requires bash
    :: dcron: requires bash
    :: enca: requires bash
    :: fftw: requires bash
    :: filesystem: requires bash
    :: gpm: requires bash
    :: gsl: requires bash
    :: gzip: requires bash
    :: iptables: requires bash
    :: libksba: requires bash
    :: m4: requires bash
    :: man-db: requires bash
    :: mkinitcpio: requires bash
    :: p7zip-light: requires bash
    :: pacman: requires bash
    :: pkgstats: requires bash
    :: pm-utils: requires bash
    :: shadow: requires bash
    :: smartmontools: requires bash
    :: systemd: requires bash
    :: unzip: requires bash
    (Note: I've removed packets requiring sh.)
    Here's a complete list of packets depending on bash (110):
    abcde
    abs
    acpid
    antiword
    arch-backup
    archboot
    arch-install-scripts
    arch-wiki-lite
    audio-convert
    aurphan
    autoconf
    autojump
    automake
    bashburn
    bash-completion
    bashdb
    bashrun
    bwidget
    ca-certificates
    cl
    cpupower
    cronie
    dcron
    dhclient
    dkms
    drbd
    dvdrtools
    ecl
    enca
    fftw
    filesystem
    foomatic-db-engine
    fssos-nsvs
    geos
    gimp-gap
    gpm
    groovy
    gsl
    gzip
    hdparm (optional)
    ifplugd
    incron
    initscripts
    inputattach
    iptables
    jython
    kim4
    laptop-mode-tools
    libksba
    lksctp-tools
    lrzip
    lvm2
    lvm2 (testing)
    lxc
    m4
    man-db
    mathomatic (optional)
    mfs-chunkserver
    mfs-client
    minicom
    mkinitcpio
    multipath-tools
    nanoblogger
    noip
    ode
    oidentd
    opencv-samples
    openlierox (optional)
    openslp
    ozerocdoff
    p7zip
    pacman
    pacmatic
    pax-utils
    pkgstats
    pkgtools
    pmount
    pm-utils
    polipo
    ponysay
    preload
    quilt
    ratpoison
    rblcheck
    redis
    rkhunter
    rpcbind
    rpmextract
    sane
    sdcc
    shadow
    smartmontools
    source-highlight
    speedtouch
    systemd
    tablelist
    taglib-rcc
    ted
    tor
    translate-toolkit
    txt2man
    unzip
    uptimed
    vde2
    vnstat
    wdm
    wings3d
    wireshark-cli
    xbase
    xdm-archlinux
    Do these packages (except initscripts) really need bash? Debian uses dash as its default shell, I think Arch at least need to offer a possibility for using shells other than bash as default.
    Any thoughts?

    Demon wrote:Why not? I'm just exploring the possibilities.
    zsh is not completely backwards-compatible with bash (not that bash is "backwards" in any real way).  There's always a chance that, without the bash interpreter installed, some utilities written in bash won't work properly.  Also, sh in Arch is distributed in the bash package, so uninstalling it will pull those packages with it.
    Demon wrote:But then packages not needing bash (autoconf, automake, gzip, unzip) should list only sh as dependency, not bash. Right?
    Some of them already do:
    Arch Linux :: GLaDOS » pacman -Rp bash
    error: failed to prepare transaction (could not satisfy dependencies)
    :: autoconf: requires bash
    :: automake: requires bash
    :: bison: requires sh
    :: ca-certificates: requires bash
    :: cairo: requires sh
    :: cpupower: requires bash
    :: cronie: requires bash
    :: db: requires sh
    :: dhcpcd: requires sh
    :: dictd: requires sh
    :: diffutils: requires sh
    :: dmenu: requires sh
    :: e2fsprogs: requires sh
    :: fakeroot: requires sh
    :: filesystem: requires bash
    :: findutils: requires sh
    :: flex: requires sh
    :: freetype2: requires sh
    :: gawk: requires sh
    :: gdbm: requires sh
    :: gettext: requires sh
    :: gmp: requires sh
    :: gpm: requires bash
    :: grep: requires sh
    :: gzip: requires bash
    :: icu: requires sh
    :: iptables: requires bash
    :: keyutils: requires sh
    :: laptop-mode-tools: requires bash
    :: libgpg-error: requires sh
    :: libksba: requires bash
    :: libpng: requires sh
    :: libtool: requires sh
    :: libusb-compat: requires sh
    :: m4: requires bash
    :: make: requires sh
    :: man-db: requires bash
    :: mkinitcpio: requires bash
    :: nss: requires sh
    :: pacman: requires bash
    :: perl: requires sh
    :: sane: requires bash
    :: sed: requires sh
    :: shadow: requires bash
    :: systemd: requires bash
    :: taglib: requires sh
    :: tar: requires sh
    :: unzip: requires bash
    :: which: requires sh
    :: xorg-mkfontdir: requires sh
    :: xz: requires sh

  • Windows 7 x64 Syncing Never Completes. iTunes Crashes At The End

    I have had my ipod touch 3g for half a year now. First I used to use it on 32bit Windows 7, but recently I upgraded my machine and run 64bit Windows 7. It has been running well for the past few months but all of a sudden I have been getting a lot of error messages as well as iTunes not being able to complete syncing.
    Everything starts normally, but iTunes crashes right near the END, after all the files have been copied. You can almost smell the "Sync complete, ok to disconnect" text. Please check image.
    http://i44.tinypic.com/25jupli.png
    If I let it be, then Windows eventually gives you a iTunes has crashed dialog box.
    I have tried EVERYTHING. Have restored my ipod dozens of times. Have tried 9.1, 9.03 and 9.02 both in 32bit and 64bit variants. Nothing seems to work.
    Funny thing is, if I go back to my old machine with the 32bit Windows 7, the ipod syncs just fine.
    So I am guessings it's either a problem with my machine, or some problem with iTunes and 64bit Windows 7.
    Please help!

    I've had the exact same problem since the last update. It just keeps saying "Sync in Progress" and nothing changes until I stop it. I've tried resetting, reinstalling, etc.
    I have noticed three things:
    It is sync'ing at least partially...
    I unchecked some photo files and it took those photo files off. But now I've added them back and it won't put any photo files onto my iPhone.
    If I check/uncheck iTunes U then hit apply it will actually say "Sync Complete" but it still hasn't put my pictures back on the phone.
    Also...just something that I don't like...apparently the ability to mark a podcast as "played" or "watched" is no longer available as an option at the podcast level and they have to be cleared at the individual episode level...that's totally annoying cause now I have to go through and "mark as played" for each podcast.
    Any ideas?

  • Completely lost - Crash ALL the time

    Hi
    I am completely lost and really need Dreamweaver to run
    without crashing all
    the time...
    I have websites, some newer some made with Dreamweaver MX.
    Some pages can be
    opened and some cannot without crashes???
    I run on Windows Vista Ultimate, and also have Office 2007
    installed. Have
    now uninstalled Groove, tried to run Dreamweaver in XP mode,
    but the crashes
    are stille there.
    Has it to do with some pages are made in older version of
    Dreamweaver? I
    never "imported" the sites on the new Vista PC, I simply
    copied all
    directories to the new PC...
    What do I do???
    Help REALLY needed urgently
    Helle

    Hej helle,
    It sounds like it could be an extension problem since it's
    /page
    related/ issue. try to disable all extension to see if that
    helps.
    You could also try to close DW, delete the configurations
    folder and
    restart DW to see if that helps. (on my XP system the folder
    is located
    here C:\Documents and Settings\user\Application
    Data\Adobe\Dreamweaver 9 )
    HTH
    Kim
    Helle skrev:
    > Hi
    >
    > I am completely lost and really need Dreamweaver to run
    without crashing
    > all the time...
    >
    > I have websites, some newer some made with Dreamweaver
    MX. Some pages
    > can be opened and some cannot without crashes???
    > I run on Windows Vista Ultimate, and also have Office
    2007 installed.
    > Have now uninstalled Groove, tried to run Dreamweaver in
    XP mode, but
    > the crashes are stille there.
    > Has it to do with some pages are made in older version
    of Dreamweaver? I
    > never "imported" the sites on the new Vista PC, I simply
    copied all
    > directories to the new PC...
    >
    > What do I do???
    >
    > Help REALLY needed urgently
    >
    > Helle
    >
    Kim
    http://www.geekministry.com

  • Safari prefs show zsh in default web browser

    I have uninstalled firefox and trashed all preferences and the application support folder. Now for some reason, in Safari preferences in the default web browser drop-down there is an item labeled with a folder named 'zsh'. This shows up along with Safari. When I install Firefox it goes away and changes back to Firefox. Not a big deal but I would like to get rid of the zsh since Firefox has been uninstalled. Anyone else see this?

    Well, no responses and couldn't find a **** thing on how to fix this. My obsessive compulsive behavior prevailed and I reinstalled the OS.

  • VS 2013 Extension - Text Completion sample crashes

    Hello,
    I am trying to make the completion test sample work ( sample https://msdn.microsoft.com/en-us/library/vstudio/ee372314.aspx :  Walkthrough: Displaying Statement Completion )
    I installed VS2013 sdk, am running vs 2013.
    The sample compiles and launches, but when I open a text file and press a key, I trgger an exception:
    In TestCompletionCommandHandler.TriggerCompletion(), a completion session is created:
    m_session = m_provider.CompletionBroker.CreateCompletionSession....
    then a callback is attached to the session's Dismissed event. When m_session.Start() is called, the session is automatically dismissed ( in a SDK function called ..ensureValid()) , which sets the session pointer  to null, and makes the code crash afterwards.
    I dutifully followed the instructions to create the sample, the rest seems ok...
    Does someone know what could be going wrong ? Any help will be greatly appreciated !
    BTW , I disabled most of the extensions I have.

    Hi fred,
    I've reproduced this problem, I'm not sure what's the root cause of the problem either. But I'm going to escalate this case to some other engineers for further investigation. This will take some time, we'll come back if there're any updates.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Zsh completion for pacman??

    I've been looking for that all day long, I even tried to do my own but I'm not good using zstyle. I found something in a mailing list, and it was suposed to have attached the files to do it (for testing), but the mailing list didn't even show me the atachement, so... anyone knows how to achieve it?

    Lone_Wolf wrote:
    try
    pacman -S bash-completion
    It extends the completion abiliites for bash a lot.
    1 of the benefits of it is that <tab> works for package names.
    What does that have to do with zsh?

  • FCP HD Filling up G-Raid completely and crashing on capture

    Help! I'm losing my rag with this!!
    I am running the first version of FCP HD on a Dual 2gb G5, capturing Analogue video through an ADVC110 Firewire unit.
    Every time I try to capture the G-Raid fills up completely and the the FCP itself crashes. The only way to fix the machine is to reboot it and delete the massive Scratch Cache created on the external drive.
    I have tried:
    correct easy setup
    limiting the total time of captured clips
    limiting the total size of captured clips
    Can anyone help?? Thanks in advance
    Alex

    Could be a FW device conflict. How are you setup for capture... drive into one port ADVC into another?
    What happens if you disconnect the FW drive and try to capture directly to the system drive. If that works you may have to go that way and then transfer the footage to the FW drive for editing.
    rh

  • Can no longer log in with ZSH as default shell

    After the last few updates, I'm unable to log in with zsh in ANY terminal. Nothing in my configuration has changed since the problem started occuring. In fact, even removing my zsh configuration files has no effect and still won't log in properly. Any ideas?
    Edit: solved this by removing a certain file called "history.LOCK" in my .zsh folder.
    Last edited by Gigamo (2014-04-03 20:01:27)

    Mark post as solved by editing the title please.

Maybe you are looking for