Xfce pager

The pager for Xfce panel (that shows all of your workspaces) shows the currently selected/used workspace as blue. Is there any way to change this?
Many thanks.

oliwer wrote:Doesn't the color depends of the Gtk theme ?
Thanks!
*hangs head in shame*

Similar Messages

  • XFCE pager/window list only follow first spawned widnow, Xmonad

    I'm using XFCE 4.8, with xmonad and xmonad-contrib 0.9.2-1.2
    I'm currently trying to get Xmonad to use the window list and pager from XFCE at the same time, while outputting to dzen2.  When I spawn a window, it only tracks the first window's size in the pager, and still thinks I'm on the workspace it originally spawned on (see blue square in the bottom left of the screenshot).
    My current xmonad.hs:
    import XMonad
    import XMonad.Hooks.DynamicLog
    import XMonad.Hooks.ManageDocks
    import XMonad.Util.Run(spawnPipe)
    import XMonad.Util.EZConfig(additionalKeys)
    import System.IO
    import XMonad.Actions.DwmPromote
    import XMonad.Hooks.SetWMName
    import XMonad.Hooks.EwmhDesktops
    import XMonad.Config.Xfce
    myManageHook = composeAll
    [ className =? "milkytracker" --> doShift "etc"
    , className =? "net-minecraft-MinecraftLauncher" --> doShift "etc"
    , className =? "prboom-plus" --> doShift "etc"
    , className =? "Chromium" --> doShift "web"
    , className =? "Deadbeef" --> doFloat <+> doShift "media"
    main = do
    xmproc <- spawnPipe "/usr/bin/dzen2 -bg '#303030' -fg '#a1a1a1' -h '16' -w 480 -x '0' -y '0' -ta 'l' -fn '-*-terminus-*-*-*-*-*-*-*-*-*-*-*-*'"
    xmonad $ ewmh xfceConfig {
    manageHook = manageDocks <+> manageHook defaultConfig <+> myManageHook
    , layoutHook = avoidStruts $ layoutHook defaultConfig
    , startupHook = setWMName "LG3D"
    , logHook = dynamicLogWithPP $ dzenPP {
    ppOutput = hPutStrLn xmproc
    , ppCurrent = dzenColor "#c0c0c0" "#303030"
    , ppHidden = dzenColor "#a1a1f1" "#303030"
    , ppTitle = dzenColor "#c0c0c0" "#303030"
    , ppHiddenNoWindows = dzenColor "#7f7f7f" "#303030"
    , ppSep = " | "
    , ppWsSep = " "
    , ppLayout = \x -> case x of
    "Tall" -> "[|-]"
    "Mirror Tall" -> "[--]"
    "Full" -> "[ ]"
    , modMask = mod4Mask
    , terminal = "urxvtc"
    , workspaces = ["term", "web", "media", "etc"]
    , normalBorderColor = "#303030"
    , focusedBorderColor = "#a1a1a1"
    } `additionalKeys`
    [ ((mod4Mask, xK_b), sendMessage ToggleStruts)
    , ((mod4Mask, xK_p), spawn "dmenu_run -nb '#303030' -nf '#a1a1a1' -sb '#a1a1a1' -sf '#303030' -fn '-*-terminus-*-*-*-*-*-*-*-*-*-*-*-*'")
    , ((mod4Mask, xK_Return), spawn "urxvtc")
    , ((mod4Mask .|. shiftMask, xK_Return), dwmpromote)
    , ((0, 0x1008ff13), spawn "amixer set Master 1+")
    , ((0, 0x1008ff11), spawn "amixer set Master 1-")
    , ((0, 0x1008ff12), spawn "amixer set Master toggle")
    , ((mod4Mask, xK_w), spawn "xfdesktop --menu" )
    I'm rather confused about this, as I'm not sure if I'm supposed to use ewmhDesktopsLogHook, or use a startupHook for this, or an eventHandler for this sort of thing.  I tried following this guide from Haskell's wiki, but it didn't work as expected, so I struck out on my own.
    EDIT:  I tested in my Debian Wheezy install, it works fine with XFCE 4.6.  I have a hunch it might have something to do with xmonad-contrib not supporting newer versions of XFCE/LXDE  properly.
    Last edited by arinlares (2011-04-17 00:23:59)

    I'm using XFCE 4.8, with xmonad and xmonad-contrib 0.9.2-1.2
    I'm currently trying to get Xmonad to use the window list and pager from XFCE at the same time, while outputting to dzen2.  When I spawn a window, it only tracks the first window's size in the pager, and still thinks I'm on the workspace it originally spawned on (see blue square in the bottom left of the screenshot).
    My current xmonad.hs:
    import XMonad
    import XMonad.Hooks.DynamicLog
    import XMonad.Hooks.ManageDocks
    import XMonad.Util.Run(spawnPipe)
    import XMonad.Util.EZConfig(additionalKeys)
    import System.IO
    import XMonad.Actions.DwmPromote
    import XMonad.Hooks.SetWMName
    import XMonad.Hooks.EwmhDesktops
    import XMonad.Config.Xfce
    myManageHook = composeAll
    [ className =? "milkytracker" --> doShift "etc"
    , className =? "net-minecraft-MinecraftLauncher" --> doShift "etc"
    , className =? "prboom-plus" --> doShift "etc"
    , className =? "Chromium" --> doShift "web"
    , className =? "Deadbeef" --> doFloat <+> doShift "media"
    main = do
    xmproc <- spawnPipe "/usr/bin/dzen2 -bg '#303030' -fg '#a1a1a1' -h '16' -w 480 -x '0' -y '0' -ta 'l' -fn '-*-terminus-*-*-*-*-*-*-*-*-*-*-*-*'"
    xmonad $ ewmh xfceConfig {
    manageHook = manageDocks <+> manageHook defaultConfig <+> myManageHook
    , layoutHook = avoidStruts $ layoutHook defaultConfig
    , startupHook = setWMName "LG3D"
    , logHook = dynamicLogWithPP $ dzenPP {
    ppOutput = hPutStrLn xmproc
    , ppCurrent = dzenColor "#c0c0c0" "#303030"
    , ppHidden = dzenColor "#a1a1f1" "#303030"
    , ppTitle = dzenColor "#c0c0c0" "#303030"
    , ppHiddenNoWindows = dzenColor "#7f7f7f" "#303030"
    , ppSep = " | "
    , ppWsSep = " "
    , ppLayout = \x -> case x of
    "Tall" -> "[|-]"
    "Mirror Tall" -> "[--]"
    "Full" -> "[ ]"
    , modMask = mod4Mask
    , terminal = "urxvtc"
    , workspaces = ["term", "web", "media", "etc"]
    , normalBorderColor = "#303030"
    , focusedBorderColor = "#a1a1a1"
    } `additionalKeys`
    [ ((mod4Mask, xK_b), sendMessage ToggleStruts)
    , ((mod4Mask, xK_p), spawn "dmenu_run -nb '#303030' -nf '#a1a1a1' -sb '#a1a1a1' -sf '#303030' -fn '-*-terminus-*-*-*-*-*-*-*-*-*-*-*-*'")
    , ((mod4Mask, xK_Return), spawn "urxvtc")
    , ((mod4Mask .|. shiftMask, xK_Return), dwmpromote)
    , ((0, 0x1008ff13), spawn "amixer set Master 1+")
    , ((0, 0x1008ff11), spawn "amixer set Master 1-")
    , ((0, 0x1008ff12), spawn "amixer set Master toggle")
    , ((mod4Mask, xK_w), spawn "xfdesktop --menu" )
    I'm rather confused about this, as I'm not sure if I'm supposed to use ewmhDesktopsLogHook, or use a startupHook for this, or an eventHandler for this sort of thing.  I tried following this guide from Haskell's wiki, but it didn't work as expected, so I struck out on my own.
    EDIT:  I tested in my Debian Wheezy install, it works fine with XFCE 4.6.  I have a hunch it might have something to do with xmonad-contrib not supporting newer versions of XFCE/LXDE  properly.
    Last edited by arinlares (2011-04-17 00:23:59)

  • XFCE: Pager broken after using compiz-fusion[SOLVED]

    Hi, I had problems with my pager when using compiz and after using...
    1. When using compiz the pager boxes(4) does not show but you can click on it..
    2. After disabling compiz, my pager won't let me choose number of virtual desktops anymore...:(
    Thanks in advance...this is my 1st time using compiz on xfce...
    update:
    I solved the issue, thanks anyway...:D
    On the compizconfig settings ---> General Options ---> Desktop Size
    I had set this values on the ff:
    Horizontal Virtual Size = 4
    Vertical Virtual Size = 2
    Number of Desktops = 4
    Thats it!
    Now I have a 2 column 4 workspace pager...
    Last edited by kaola_linux (2009-01-06 08:45:37)

    Wow this was really bugging me. Thanks so much!

  • [Solved] Xfce 4.4.3-1 battery monitor problem

    Today I did a "pacman -Syu" as I regularly do and there were a few updates, including a Xfce one so I decided to let it install the updates.
    The problem is that the Battery Monitor plugin no longer works (it's very handy if you use a laptop like I do).
    There is an error message if I d:
    $ dmesg | tail
    usb 3-1: new low speed USB device using ohci_hcd and address 2
    usb 3-1: configuration #1 chosen from 1 choice
    usbcore: registered new interface driver hiddev
    input: Logitech Optical USB Mouse as /class/input/input10
    input,hidraw0: USB HID v1.10 Mouse [Logitech Optical USB Mouse] on usb-0000:00:03.1-1
    usbcore: registered new interface driver usbhid
    usbhid: v2.6:USB HID core driver
    eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
    ACPI: EC: GPE storm detected, disabling EC GPE
    xfce4-battery-p[8258]: segfault at 46 ip b76abb7d sp bfb7e878 error 4 in libc-2.8.so[b7650000+13c000]
    and also another on the output of X (I guess thats it), I have done startx &> x.log and there is this:
    (xfce4-panel:7376): Gtk-CRITICAL **: gtk_socket_get_id: assertion `GTK_WIDGET_ANCHORED (socket)' failed
    ** (xfce4-panel:7376): CRITICAL **: An item was unexpectedly removed: "Battery Monitor".
    Is it just a problem on my machine or is it a general problem? If it is just a problem on my machine any suggestions on how can I fix it?
    Thanks in advance.
    Last edited by R00KIE (2008-11-01 12:56:24)

    Ok, the version on the Xfce page seemed to be the same I had on my system but I decided to download and compile it anyway and then I did a diff on the file I had on the system and the compiled one and they were different.
    Then I went to AUR and searched for some makepkg script and I found one for an older (??) version of the plugin and I modified it.
    The I decided to give it a try and I have the battery plugin working again
    Here's what you need
    File: PKGBUILD
    pkgname=xfce4-battery-plugin
    pkgver=0.5.1
    pkgrel=1
    pkgdesc="A battery applet for the Xfce4"
    arch=(i686 x86_64)
    license=('GPL2')
    url="http://sourceforge.net/projects/battery-4-xfce4/"
    groups=('xfce4-goodies')
    depends=('libxfce4util' 'libxfcegui4' 'gtk2' 'xfce4-panel' 'dbus' 'libnotify')
    makedepends=('pkgconfig')
    options=('!libtool')
    install=${pkgname}.install
    source=(http://goodies.xfce.org/releases/xfce4-battery-plugin/${pkgname}-${pkgver}.tar.bz2)
    md5sums=('d8a666d85bb3c1dd007b547de4dd7037')
    build() {
    cd ${startdir}/src/${pkgname}-${pkgver}
    ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
    --localstatedir=/var --disable-static
    make || return 1
    make DESTDIR=${startdir}/pkg install
    File: xfce4-battery-plugin.install
    post_install() {
    gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
    post_upgrade() {
    post_install $1
    post_remove() {
    gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
    op=$1
    shift
    $op $*
    After you have both files issue a makepkg (in the directory where you have both files of course). If all goes well then just issue
    sudo pacman -U xfce4-battery-plugin-0.5.1-1-i686.pkg.tar
    then logout and login again, the plugin should work again.
    If it fails before compiling check what it complains about, in my case I had to install perl-xml-xpath (use sudo pacman -S perl-xml-xpath).

  • GTK wiki - A way to set themes for GTK2 and GTK3 in XFCE

    Hi,
    I think I have something to add to the GTK page of the Arch wiki but I wanted to confirm if this works for others or if I just found an exception to the rule.  Anways, I was trying to figure out why some of my apps on XFCE were looking different than others and I came too the GTK page to find the section explaining that XFCE tries to use the same theme for both GTK 2 & 3 which causes errors if the theme you use isn't for both.
    Since I could not find a theme that I liked a lot that worked for both, I tried to manually fix the issue.  The way I did so was by simply making a new directory in the themes folder and copying all the files from the GTK 3 theme I liked and then replacing the gtk-2.0 folder with the folder of the theme for GTK2 that I liked.  This seems to be working flawlessly so I was wondering if I should add it to the wiki in the section that mentions the few themes that work for both GTK 2 & 3.
    I wasn't sure if the GTK wiki should have more XFCE specific information added or if this would be more appropriate in the XFCE wiki but I was thinking that since there is already mention of the problem and a potential solution on the GTK page, it might make sense to add it there.
    Can anyone confirm that this works for them as well or does anyone have objections to the addition to the GTK wiki?
    Last edited by boswbr25 (2012-05-28 21:47:14)

    I am not that familiar with this bug because I do not use xfce. But I would say adding it as a tip or similar on the xfce page would be the better place to put it as opposed to the gtk wiki.

  • Backspace is ignored in Mutt pager in Xfce terminal

    This is strange.
    I found out today that the BackSpace key which I'd been used to for moving backward (bottom to top) through a message by line was being ignored.   Mutt helpfully informs me "Key is not bound.  Press '?' for help." on the input line.  As this had been working previously when running Debian/Linux Mint, I checked those RC files but find no mention of binding the BackSpace to the "previous-line" function.  I added "bind pager <backspace> previous-line" to my .muttrc to no avail.  Pressing ? in the pager and looking over the key bindings I see that it appears to be bound "<BackSpace>  previous-line            scroll up one line" but I still get the error.
    I've verified that BackSpace works as expected in Midnight Commander, Vim, and at the shell command line.  I am running mustt in an Xfce terminal session.  I have also verified that BackSpace has the expected behavior in a virtual terminal.  I have also verified that the $TERM variable is set to xterm in Xfce terminal.
    Looking at the output of xev all looks as expected:
    KeyPress event, serial 35, synthetic NO, window 0x3e00002,
    root 0x274, subw 0x0, time 46127167, (-451,280), root:(100,695),
    state 0x0, keycode 22 (keysym 0xff08, BackSpace), same_screen YES,
    XLookupString gives 1 bytes: (08) "
    XmbLookupString gives 1 bytes: (08) "
    XFilterEvent returns: False
    KeyRelease event, serial 35, synthetic NO, window 0x3e00002,
    root 0x274, subw 0x0, time 46127261, (-451,280), root:(100,695),
    state 0x0, keycode 22 (keysym 0xff08, BackSpace), same_screen YES,
    XLookupString gives 1 bytes: (08) "
    XFilterEvent returns: False
    At the virtual console I get:
    keycode 14 press
    keycode 14 release
    when pressing BackSpace.
    Using the "what-key" function in Mutt in the Xfce terminal shows:
    Char = ^?, Octal = 177, Decimal = 127
    while at the virtual console it shows:
    Char = <BackSpace>, Octal = 420, Decimal = 272
    when pressing BackSpace.  The code in the Xfce terminal is that of ASCII Delete, so things are a bit awry.  Meanwhile Mutt sees the Delete key as:
    Char = <Delete>, Octal = 423, Decimal = 275
    in Xfce terminal and in the virtual console. 
    Interestingly, typing Ctl+Shft+/ (for Ctl-?) Mutt shows BackSpace in virtual console but ^? Xfce terminal.
    I also have the same behavior when using SSH to remotely access the desktop as I get from Xfce terminal.  In fact, this is how I first noticed this.
    So far this is the only real glitch I've encountered since trying Arch.

    Looks as though I may have fixed it in Xfce terminal by going to Edit=>Preferences=>Advanced and set "Backspace key generates:" to "Control-H".  So far it has not broken Midnight Commander or Vim and the key is now recognized in Mutt's pager and also works as the BackSpace (deleting the character to the left of the cursor and then moving the cursor to that place) in Mutt's editing fields.
    Last edited by Nate_KS (2011-01-08 14:04:40)

  • Xfce takes long to start

    Hi!
    Since the day before yesterday, xfce is taking longer than normal to start. It is taking 15-20 seconds to boot to the desktop after the password is input on SLiM. At first I thought it was a matter of slim, since I switched to it recently from lightdm. But switching back to lightdm renders no improvement, So I doubt it is related to that.
    A week ago it took only a couple of seconds from the password to the full xfce desktop.
    I don't know which log files to look at, or where the problem may lie, so any help is appreciated.
    Here is the output of dmesg:
    ~❱ dmesg ✔
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.16.3-1-ARCH (nobody@var-lib-archbuild-testing-i686-tobias) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Sep 17 22:00:02 CEST 2014
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009bbff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009bc00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007fca7fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000007fca8000-0x000000007fccffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fcd0000-0x000000007fce0fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fce1000-0x000000007fce1fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fce2000-0x000000007fd09fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fd0a000-0x000000007fd0afff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fd0b000-0x000000007fd0bfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fd0c000-0x000000007fd16fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000007fd17000-0x000000007fd1cfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fd1d000-0x000000007fd38fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fd39000-0x000000007fdfffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffbfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
    [ 0.000000] Malformed early option 'acpi'
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] SMBIOS 2.4 present.
    [ 0.000000] DMI: Sony Corporation VGN-NS12M_W/VAIO, BIOS R0190Y3 07/09/2008
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] e820: last_pfn = 0x7fe00 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-D3FFF write-protect
    [ 0.000000] D4000-E7FFF write-through
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 07FE00000 mask FFFE00000 uncachable
    [ 0.000000] 2 disabled
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000fd690-0x000fd69f] mapped at [c00fd690]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
    [ 0.000000] Base memory trampoline at [c0097000] 97000 size 16384
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x37000000-0x373fffff]
    [ 0.000000] [mem 0x37000000-0x373fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x30000000-0x36ffffff]
    [ 0.000000] [mem 0x30000000-0x36ffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x2fffffff]
    [ 0.000000] [mem 0x00100000-0x003fffff] page 4k
    [ 0.000000] [mem 0x00400000-0x2fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x37400000-0x377fdfff]
    [ 0.000000] [mem 0x37400000-0x377fdfff] page 4k
    [ 0.000000] BRK [0x01798000, 0x01798fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x37900000-0x37c77fff]
    [ 0.000000] Allocated new RAMDISK: [mem 0x37486000-0x377fdddb]
    [ 0.000000] Move RAMDISK from [mem 0x37900000-0x37c77ddb] to [mem 0x37486000-0x377fdddb]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x000F03B0 000024 (v02 Sony )
    [ 0.000000] ACPI: XSDT 0x7FD15F10 00005C (v01 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI: FACP 0x7FD0AA90 0000F4 (v04 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI BIOS Warning (bug): 32/64X FACS address mismatch in FADT: 0x7FD1CE40/0x000000007FD1CD40, using 32-bit address (20140424/tbfadt-283)
    [ 0.000000] ACPI: DSDT 0x7FD0C010 007AFE (v01 Sony VAIO 20080709 INTL 20051117)
    [ 0.000000] ACPI: FACS 0x7FD1CE40 000040
    [ 0.000000] ACPI: APIC 0x7FD14F10 00006C (v02 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI: MCFG 0x7FD1BC90 00003C (v01 Sony VAIO 20080709 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x7FD1BC10 000038 (v01 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI: SLIC 0x7FD17C10 000176 (v01 Sony VAIO 20080709 Sony 01000000)
    [ 0.000000] ACPI: SSDT 0x7FCE1590 000505 (v01 Sony VAIO 20080709 INTL 20051117)
    [ 0.000000] ACPI: SSDT 0x7FCCCC10 0002E4 (v01 Sony VAIO 20080709 INTL 20051117)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 1158MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] BRK [0x01799000, 0x01799fff] PGTABLE
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] Normal [mem 0x01000000-0x377fdfff]
    [ 0.000000] HighMem [mem 0x377fe000-0x7fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009afff]
    [ 0.000000] node 0: [mem 0x00100000-0x7fca7fff]
    [ 0.000000] node 0: [mem 0x7fd39000-0x7fdfffff]
    [ 0.000000] On node 0 totalpages: 523529
    [ 0.000000] free_area_init_node: node 0, pgdat c161c180, node_mem_map f6486020
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3994 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 223230 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 2317 pages used for memmap
    [ 0.000000] HighMem zone: 296305 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009b000-0x0009bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009c000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] e820: [mem 0x7fe00000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 14 pages/cpu @f6442000 s33344 r0 d24000 u57344
    [ 0.000000] pcpu-alloc: s33344 r0 d24000 u57344 alloc=14*4096
    [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 521753
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=1a4fcdfd-1e9f-47e4-97f5-1ebf0a0a629e rw acpi=nonvs quiet
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 4190200 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:0007fe00)
    [ 0.000000] Initializing Movable for node 0 (00000000:00000000)
    [ 0.000000] Memory: 2061160K/2094116K available (4513K kernel code, 483K rwdata, 1328K rodata, 568K init, 824K bss, 32956K reserved, 1185220K highmem)
    [ 0.000000] virtual kernel memory layout:
    fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc1630000 - 0xc16be000 ( 568 kB)
    .data : 0xc146887a - 0xc162ec80 (1817 kB)
    .text : 0xc1000000 - 0xc146887a (4514 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [ 0.000000] NR_IRQS:2304 nr_irqs:712 16
    [ 0.000000] CPU 0 irqstacks, hard=f5808000 soft=f580a000
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 1994.620 MHz processor
    [ 0.003346] Calibrating delay loop (skipped), value calculated using timer frequency.. 3990.45 BogoMIPS (lpj=6648733)
    [ 0.003349] pid_max: default: 32768 minimum: 301
    [ 0.003357] ACPI: Core revision 20140424
    [ 0.012971] ACPI: All ACPI Tables successfully acquired
    [ 0.013373] Security Framework initialized
    [ 0.016688] Yama: becoming mindful.
    [ 0.016705] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.016708] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.017017] Initializing cgroup subsys memory
    [ 0.017044] Initializing cgroup subsys devices
    [ 0.017054] Initializing cgroup subsys freezer
    [ 0.017059] Initializing cgroup subsys net_cls
    [ 0.017066] Initializing cgroup subsys blkio
    [ 0.017095] CPU: Physical Processor ID: 0
    [ 0.017097] CPU: Processor Core ID: 0
    [ 0.017103] mce: CPU supports 6 MCE banks
    [ 0.017111] CPU0: Thermal monitoring enabled (TM2)
    [ 0.017121] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
    tlb_flushall_shift: -1
    [ 0.017238] Freeing SMP alternatives memory: 16K (c16be000 - c16c2000)
    [ 0.017990] ftrace: allocating 19359 entries in 38 pages
    [ 0.023444] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.023818] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    [ 0.058393] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU T5800 @ 2.00GHz (fam: 06, model: 0f, stepping: 0d)
    [ 0.059999] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.059999] perf_event_intel: PEBS disabled due to CPU errata
    [ 0.059999] ... version: 2
    [ 0.059999] ... bit width: 40
    [ 0.059999] ... generic registers: 2
    [ 0.059999] ... value mask: 000000ffffffffff
    [ 0.059999] ... max period: 000000007fffffff
    [ 0.059999] ... fixed-purpose events: 3
    [ 0.059999] ... event mask: 0000000700000003
    [ 0.076780] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.083412] CPU 1 irqstacks, hard=f5962000 soft=f5964000
    [ 0.083414] x86: Booting SMP configuration:
    [ 0.083417] .... node #0, CPUs: #1
    [ 0.006666] Initializing CPU#1
    [ 0.096575] x86: Booted up 1 node, 2 CPUs
    [ 0.096580] smpboot: Total of 2 processors activated (7981.91 BogoMIPS)
    [ 0.096780] devtmpfs: initialized
    [ 0.097002] PM: Registering ACPI NVS region [mem 0x7fca8000-0x7fccffff] (163840 bytes)
    [ 0.097008] PM: Registering ACPI NVS region [mem 0x7fce1000-0x7fce1fff] (4096 bytes)
    [ 0.097011] PM: Registering ACPI NVS region [mem 0x7fd0a000-0x7fd0afff] (4096 bytes)
    [ 0.097013] PM: Registering ACPI NVS region [mem 0x7fd17000-0x7fd1cfff] (24576 bytes)
    [ 0.098411] pinctrl core: initialized pinctrl subsystem
    [ 0.098470] RTC time: 10:19:33, date: 10/07/14
    [ 0.098470] NET: Registered protocol family 16
    [ 0.098470] cpuidle: using governor ladder
    [ 0.098470] cpuidle: using governor menu
    [ 0.098470] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.098470] ACPI: bus type PCI registered
    [ 0.098470] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.098470] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.098470] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.098470] PCI: Using MMCONFIG for extended config space
    [ 0.098470] PCI: Using configuration type 1 for base access
    [ 0.098470] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.098470] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.098470] mtrr: corrected configuration.
    [ 0.113396] ACPI: Added _OSI(Module Device)
    [ 0.113399] ACPI: Added _OSI(Processor Device)
    [ 0.113402] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.113404] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.117050] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.126692] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.139873] ACPI: Dynamic OEM Table Load:
    [ 0.139882] ACPI: SSDT 0xF5A38800 000265 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.140517] ACPI: Dynamic OEM Table Load:
    [ 0.140526] ACPI: SSDT 0xF5873000 0007A2 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.160370] ACPI: Dynamic OEM Table Load:
    [ 0.160377] ACPI: SSDT 0xF5861300 0000FD (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.170086] ACPI: Dynamic OEM Table Load:
    [ 0.170093] ACPI: SSDT 0xF583CDE0 000047 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.386736] ACPI: Interpreter enabled
    [ 0.386754] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
    [ 0.386760] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
    [ 0.386779] ACPI: (supports S0 S3 S4 S5)
    [ 0.386781] ACPI: Using IOAPIC for interrupt routing
    [ 0.386819] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.440953] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.440960] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.441013] \_SB_.PCI0:_OSC invalid UUID
    [ 0.441015] _OSC request data:1 1f 0
    [ 0.441020] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
    [ 0.441925] PCI host bridge to bus 0000:00
    [ 0.441930] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.441933] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.441935] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.441938] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.441941] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.441943] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.441945] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.441948] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.441950] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.441953] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.441955] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
    [ 0.441969] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    [ 0.441996] DMAR: Forcing write-buffer flush capability
    [ 0.441998] DMAR: Disabling IOMMU for graphics on this chipset
    [ 0.442164] pci 0000:00:01.0: [8086:2a41] type 01 class 0x060400
    [ 0.442223] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.442433] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1a.0: reg 0x20: [io 0xe0e0-0xe0ff]
    [ 0.442498] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1a.1: reg 0x20: [io 0xe0c0-0xe0df]
    [ 0.442498] pci 0000:00:1a.1: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1a.2: reg 0x20: [io 0xe0a0-0xe0bf]
    [ 0.442498] pci 0000:00:1a.2: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    [ 0.442498] pci 0000:00:1a.7: reg 0x10: [mem 0xd3e04c00-0xd3e04fff]
    [ 0.442498] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1a.7: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    [ 0.442498] pci 0000:00:1b.0: reg 0x10: [mem 0xd3e00000-0xd3e03fff 64bit]
    [ 0.442498] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    [ 0.442498] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
    [ 0.442498] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.1: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1c.2: [8086:2944] type 01 class 0x060400
    [ 0.442498] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1d.0: reg 0x20: [io 0xe080-0xe09f]
    [ 0.442614] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.442685] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    [ 0.442749] pci 0000:00:1d.1: reg 0x20: [io 0xe060-0xe07f]
    [ 0.442923] pci 0000:00:1d.1: System wakeup disabled by ACPI
    [ 0.442994] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    [ 0.443059] pci 0000:00:1d.2: reg 0x20: [io 0xe040-0xe05f]
    [ 0.443233] pci 0000:00:1d.2: System wakeup disabled by ACPI
    [ 0.443316] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    [ 0.443352] pci 0000:00:1d.7: reg 0x10: [mem 0xd3e04800-0xd3e04bff]
    [ 0.443477] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.443591] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.443662] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.443898] pci 0000:00:1f.0: [8086:2919] type 00 class 0x060100
    [ 0.444221] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
    [ 0.444253] pci 0000:00:1f.2: reg 0x10: [io 0xe130-0xe137]
    [ 0.444266] pci 0000:00:1f.2: reg 0x14: [io 0xe120-0xe123]
    [ 0.444279] pci 0000:00:1f.2: reg 0x18: [io 0xe110-0xe117]
    [ 0.444292] pci 0000:00:1f.2: reg 0x1c: [io 0xe100-0xe103]
    [ 0.444305] pci 0000:00:1f.2: reg 0x20: [io 0xe020-0xe03f]
    [ 0.444319] pci 0000:00:1f.2: reg 0x24: [mem 0xd3e04000-0xd3e047ff]
    [ 0.444398] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.444574] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    [ 0.444599] pci 0000:00:1f.3: reg 0x10: [mem 0xd3e05000-0xd3e050ff 64bit]
    [ 0.444633] pci 0000:00:1f.3: reg 0x20: [io 0xe000-0xe01f]
    [ 0.444902] pci 0000:01:00.0: [1002:95c2] type 00 class 0x030000
    [ 0.444923] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff pref]
    [ 0.444936] pci 0000:01:00.0: reg 0x14: [io 0xd000-0xd0ff]
    [ 0.444949] pci 0000:01:00.0: reg 0x18: [mem 0xd0020000-0xd002ffff]
    [ 0.444992] pci 0000:01:00.0: reg 0x30: [mem 0xd0000000-0xd001ffff pref]
    [ 0.445051] pci 0000:01:00.0: supports D1 D2
    [ 0.453349] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.453354] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.453358] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd00fffff]
    [ 0.453656] pci 0000:02:00.0: [11ab:4363] type 00 class 0x020000
    [ 0.453859] pci 0000:02:00.0: reg 0x10: [mem 0xd2920000-0xd2923fff 64bit]
    [ 0.453958] pci 0000:02:00.0: reg 0x18: [io 0xc000-0xc0ff]
    [ 0.454320] pci 0000:02:00.0: reg 0x30: [mem 0xd2900000-0xd291ffff pref]
    [ 0.454922] pci 0000:02:00.0: supports D1 D2
    [ 0.454925] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.455034] pci 0000:02:00.0: System wakeup disabled by ACPI
    [ 0.463412] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.463418] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.463424] pci 0000:00:1c.0: bridge window [mem 0xd2900000-0xd3cfffff]
    [ 0.463555] acpiphp: Slot [1] registered
    [ 0.463563] pci 0000:00:1c.1: PCI bridge to [bus 03-04]
    [ 0.463569] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 0.463575] pci 0000:00:1c.1: bridge window [mem 0xd1500000-0xd28fffff]
    [ 0.463800] pci 0000:05:00.0: [8086:4232] type 00 class 0x028000
    [ 0.463942] pci 0000:05:00.0: reg 0x10: [mem 0xd0100000-0xd0101fff 64bit]
    [ 0.464488] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
    [ 0.464612] pci 0000:05:00.0: System wakeup disabled by ACPI
    [ 0.464780] pci 0000:00:1c.2: PCI bridge to [bus 05]
    [ 0.464786] pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    [ 0.464792] pci 0000:00:1c.2: bridge window [mem 0xd0100000-0xd14fffff]
    [ 0.464875] pci 0000:06:03.0: [1180:0832] type 00 class 0x0c0010
    [ 0.464901] pci 0000:06:03.0: reg 0x10: [mem 0xd3d00000-0xd3d007ff]
    [ 0.465007] pci 0000:06:03.0: PME# supported from D0 D3hot D3cold
    [ 0.465089] pci 0000:06:03.1: [1180:0822] type 00 class 0x080500
    [ 0.465113] pci 0000:06:03.1: reg 0x10: [mem 0xd3d00900-0xd3d009ff]
    [ 0.465220] pci 0000:06:03.1: supports D1 D2
    [ 0.465222] pci 0000:06:03.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.465304] pci 0000:06:03.2: [1180:0592] type 00 class 0x088000
    [ 0.465329] pci 0000:06:03.2: reg 0x10: [mem 0xd3d00800-0xd3d008ff]
    [ 0.465437] pci 0000:06:03.2: supports D1 D2
    [ 0.465439] pci 0000:06:03.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.465571] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
    [ 0.465580] pci 0000:00:1e.0: bridge window [mem 0xd3d00000-0xd3dfffff]
    [ 0.465589] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.465592] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.465595] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.465598] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 0.465600] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.465603] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.465606] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.465608] pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 0.465611] pci 0000:00:1e.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    [ 0.465614] pci 0000:00:1e.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
    [ 0.465695] pci_bus 0000:00: on NUMA node 0
    [ 0.466115] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.466191] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 *4 5 6 7 11 12 14 15)
    [ 0.466265] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.466338] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 11 12 14 15)
    [ 0.466411] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.466486] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.466562] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 7 10 12 14 15)
    [ 0.466633] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.490264] ACPI: Enabled 2 GPEs in block 00 to 3F
    [ 0.490336] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.490408] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.490408] vgaarb: loaded
    [ 0.490408] vgaarb: bridge control possible 0000:01:00.0
    [ 0.490408] PCI: Using ACPI for IRQ routing
    [ 0.502523] PCI: pci_cache_line_size set to 64 bytes
    [ 0.502694] e820: reserve RAM buffer [mem 0x0009bc00-0x0009ffff]
    [ 0.502697] e820: reserve RAM buffer [mem 0x7fca8000-0x7fffffff]
    [ 0.502700] e820: reserve RAM buffer [mem 0x7fe00000-0x7fffffff]
    [ 0.502859] NetLabel: Initializing
    [ 0.502861] NetLabel: domain hash size = 128
    [ 0.502862] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.502879] NetLabel: unlabeled traffic allowed by default
    [ 0.502923] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.502930] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.502936] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.504352] Switched to clocksource hpet
    [ 0.511715] pnp: PnP ACPI init
    [ 0.511744] ACPI: bus type PNP registered
    [ 0.511964] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.511969] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.512056] system 00:01: [io 0x0680-0x069f] has been reserved
    [ 0.512060] system 00:01: [io 0x1000-0x100f] has been reserved
    [ 0.512063] system 00:01: [io 0x0800-0x0803] has been reserved
    [ 0.512066] system 00:01: [io 0x0400-0x047f] could not be reserved
    [ 0.512069] system 00:01: [io 0x0500-0x053f] has been reserved
    [ 0.512072] system 00:01: [io 0x164e-0x164f] has been reserved
    [ 0.512076] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.512132] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.512179] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.512228] pnp 00:04: Plug and Play ACPI device, IDs SNY9008 PNP0f13 (active)
    [ 0.512505] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.512509] system 00:05: [mem 0xfed14000-0xfed17fff] has been reserved
    [ 0.512512] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.512515] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.512519] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.512522] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.512525] system 00:05: [mem 0xfeb00000-0xfeb03fff] has been reserved
    [ 0.512528] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.512532] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.530948] pnp: PnP ACPI: found 6 devices
    [ 0.530951] ACPI: bus type PNP unregistered
    [ 0.568799] pci 0000:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    [ 0.568813] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.568826] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03-04] add_size 200000
    [ 0.568839] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 05] add_size 200000
    [ 0.568856] pci 0000:00:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568860] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568863] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568866] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568876] pci 0000:00:01.0: BAR 15: assigned [mem 0x80000000-0x801fffff 64bit pref]
    [ 0.568883] pci 0000:00:1c.0: BAR 15: assigned [mem 0x80200000-0x803fffff 64bit pref]
    [ 0.568888] pci 0000:00:1c.1: BAR 15: assigned [mem 0x80400000-0x805fffff 64bit pref]
    [ 0.568894] pci 0000:00:1c.2: BAR 15: assigned [mem 0x80600000-0x807fffff 64bit pref]
    [ 0.568897] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.568901] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.568906] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd00fffff]
    [ 0.568910] pci 0000:00:01.0: bridge window [mem 0x80000000-0x801fffff 64bit pref]
    [ 0.568916] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.568920] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.568927] pci 0000:00:1c.0: bridge window [mem 0xd2900000-0xd3cfffff]
    [ 0.568932] pci 0000:00:1c.0: bridge window [mem 0x80200000-0x803fffff 64bit pref]
    [ 0.568941] pci 0000:00:1c.1: PCI bridge to [bus 03-04]
    [ 0.568945] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 0.568952] pci 0000:00:1c.1: bridge window [mem 0xd1500000-0xd28fffff]
    [ 0.568958] pci 0000:00:1c.1: bridge window [mem 0x80400000-0x805fffff 64bit pref]
    [ 0.568966] pci 0000:00:1c.2: PCI bridge to [bus 05]
    [ 0.568970] pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    [ 0.568977] pci 0000:00:1c.2: bridge window [mem 0xd0100000-0xd14fffff]
    [ 0.568983] pci 0000:00:1c.2: bridge window [mem 0x80600000-0x807fffff 64bit pref]
    [ 0.568991] pci 0000:00:1e.0: PCI bridge to [bus 06]
    [ 0.568998] pci 0000:00:1e.0: bridge window [mem 0xd3d00000-0xd3dfffff]
    [ 0.569010] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.569013] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.569016] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.569018] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.569021] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.569024] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.569026] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.569029] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.569031] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.569034] pci_bus 0000:00: resource 13 [mem 0x80000000-0xfebfffff]
    [ 0.569037] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 0.569040] pci_bus 0000:01: resource 1 [mem 0xc0000000-0xd00fffff]
    [ 0.569043] pci_bus 0000:01: resource 2 [mem 0x80000000-0x801fffff 64bit pref]
    [ 0.569046] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    [ 0.569048] pci_bus 0000:02: resource 1 [mem 0xd2900000-0xd3cfffff]
    [ 0.569051] pci_bus 0000:02: resource 2 [mem 0x80200000-0x803fffff 64bit pref]
    [ 0.569054] pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    [ 0.569056] pci_bus 0000:03: resource 1 [mem 0xd1500000-0xd28fffff]
    [ 0.569059] pci_bus 0000:03: resource 2 [mem 0x80400000-0x805fffff 64bit pref]
    [ 0.569062] pci_bus 0000:05: resource 0 [io 0xa000-0xafff]
    [ 0.569064] pci_bus 0000:05: resource 1 [mem 0xd0100000-0xd14fffff]
    [ 0.569067] pci_bus 0000:05: resource 2 [mem 0x80600000-0x807fffff 64bit pref]
    [ 0.569070] pci_bus 0000:06: resource 1 [mem 0xd3d00000-0xd3dfffff]
    [ 0.569072] pci_bus 0000:06: resource 4 [io 0x0000-0x0cf7]
    [ 0.569075] pci_bus 0000:06: resource 5 [io 0x0d00-0xffff]
    [ 0.569077] pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.569080] pci_bus 0000:06: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.569082] pci_bus 0000:06: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.569085] pci_bus 0000:06: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.569087] pci_bus 0000:06: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.569090] pci_bus 0000:06: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.569093] pci_bus 0000:06: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.569095] pci_bus 0000:06: resource 13 [mem 0x80000000-0xfebfffff]
    [ 0.569130] NET: Registered protocol family 2
    [ 0.569375] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [ 0.569394] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.569434] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.569472] TCP: reno registered
    [ 0.569475] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.569485] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.569542] NET: Registered protocol family 1
    [ 0.571079] pci 0000:01:00.0: Boot video device
    [ 0.571140] PCI: CLS 64 bytes, default 64
    [ 0.571197] Unpacking initramfs...
    [ 0.659599] Freeing initrd memory: 3552K (f7486000 - f77fe000)
    [ 0.659867] apm: BIOS not found.
    [ 0.659927] Scanning for low memory corruption every 60 seconds
    [ 0.660498] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [ 0.660923] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.663431] zbud: loaded
    [ 0.663572] VFS: Disk quotas dquot_6.5.2
    [ 0.663631] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.663843] msgmni has been set to 1717
    [ 0.663926] Key type big_key registered
    [ 0.664103] bounce: pool size: 64 pages
    [ 0.664153] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.664217] io scheduler noop registered
    [ 0.664221] io scheduler deadline registered
    [ 0.664299] io scheduler cfq registered (default)
    [ 0.664550] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.664713] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    [ 0.664908] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X
    [ 0.665104] pcieport 0000:00:1c.2: irq 43 for MSI/MSI-X
    [ 0.665248] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.665273] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.665324] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.665326] vesafb: scrolling: redraw
    [ 0.665329] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 0.665346] vesafb: framebuffer at 0xc0000000, mapped to 0xf8080000, using 3072k, total 3072k
    [ 0.713194] Console: switching to colour frame buffer device 128x48
    [ 0.760857] fb0: VESA VGA frame buffer device
    [ 0.760884] intel_idle: does not run on family 6 model 15
    [ 0.760924] GHES: HEST is not enabled!
    [ 0.760944] isapnp: Scanning for PnP cards...
    [ 1.074009] isapnp: No Plug & Play device found
    [ 1.074072] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.074824] rtc_cmos 00:02: RTC can wake from S4
    [ 1.075009] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 1.075046] rtc_cmos 00:02: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    [ 1.075093] ledtrig-cpu: registered to indicate activity on CPUs
    [ 1.075248] TCP: cubic registered
    [ 1.075444] NET: Registered protocol family 10
    [ 1.075715] NET: Registered protocol family 17
    [ 1.075928] Using IPI No-Shortcut mode
    [ 1.076096] registered taskstats version 1
    [ 1.076841] Magic number: 2:879:324
    [ 1.076851] tty tty49: hash matches
    [ 1.076876] acpi PNP0B00:00: hash matches
    [ 1.076924] rtc_cmos 00:02: setting system clock to 2014-10-07 10:19:34 UTC (1412677174)
    [ 1.077033] PM: Hibernation image not present or could not be loaded.
    [ 1.077295] Freeing unused kernel memory: 568K (c1630000 - c16be000)
    [ 1.077316] Write protecting the kernel text: 4516k
    [ 1.077349] Write protecting the kernel read-only data: 1332k
    [ 1.085296] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 1.086959] systemd-udevd[47]: starting version 216
    [ 1.108059] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.114280] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.114515] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.115994] ACPI: bus type USB registered
    [ 1.116032] usbcore: registered new interface driver usbfs
    [ 1.116049] usbcore: registered new interface driver hub
    [ 1.116110] usbcore: registered new device driver usb
    [ 1.116598] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.117084] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.117254] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.117262] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 1.117272] uhci_hcd 0000:00:1a.0: detected 2 ports
    [ 1.117317] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e0e0
    [ 1.117584] hub 1-0:1.0: USB hub found
    [ 1.117594] hub 1-0:1.0: 2 ports detected
    [ 1.117865] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 1.117874] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    [ 1.117883] uhci_hcd 0000:00:1a.1: detected 2 ports
    [ 1.117886] ehci-pci: EHCI PCI platform driver
    [ 1.117918] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e0c0
    [ 1.118335] hub 2-0:1.0: USB hub found
    [ 1.118349] hub 2-0:1.0: 2 ports detected
    [ 1.118777] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 1.118785] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
    [ 1.118796] uhci_hcd 0000:00:1a.2: detected 2 ports
    [ 1.118833] uhci_hcd 0000:00:1a.2: irq 19, io base 0x0000e0a0
    [ 1.123486] hub 3-0:1.0: USB hub found
    [ 1.123497] hub 3-0:1.0: 2 ports detected
    [ 1.123747] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.123755] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 1.123763] uhci_hcd 0000:00:1d.0: detected 2 ports
    [ 1.123799] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e080
    [ 1.124033] hub 4-0:1.0: USB hub found
    [ 1.124044] hub 4-0:1.0: 2 ports detected
    [ 1.125585] ehci-pci 0000:00:1a.7: EHCI Host Controller
    [ 1.125596] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 5
    [ 1.125614] ehci-pci 0000:00:1a.7: debug port 1
    [ 1.128364] sdhci: Secure Digital Host Controller Interface driver
    [ 1.128368] sdhci: Copyright(c) Pierre Ossman
    [ 1.128740] sdhci-pci 0000:06:03.1: SDHCI controller found [1180:0822] (rev 22)
    [ 1.128843] sdhci-pci 0000:06:03.1: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 1.128849] mmc0: no vqmmc regulator found
    [ 1.128851] mmc0: no vmmc regulator found
    [ 1.129538] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.129548] ehci-pci 0000:00:1a.7: irq 19, io mem 0xd3e04c00
    [ 1.130351] SCSI subsystem initialized
    [ 1.132291] mmc0: SDHCI controller on PCI [0000:06:03.1] using DMA
    [ 1.137889] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.138952] hub 5-0:1.0: USB hub found
    [ 1.139482] hub 5-0:1.0: 6 ports detected
    [ 1.140074] libata version 3.00 loaded.
    [ 1.163434] hub 1-0:1.0: USB hub found
    [ 1.163447] hub 1-0:1.0: 2 ports detected
    [ 1.174049] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.186753] hub 2-0:1.0: USB hub found
    [ 1.186763] hub 2-0:1.0: 2 ports detected
    [ 1.190058] firewire_ohci 0000:06:03.0: added OHCI v1.0 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
    [ 1.210100] hub 3-0:1.0: USB hub found
    [ 1.210114] hub 3-0:1.0: 2 ports detected
    [ 1.210519] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 1.210528] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 6
    [ 1.210546] ehci-pci 0000:00:1d.7: debug port 1
    [ 1.214465] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.214474] ehci-pci 0000:00:1d.7: irq 23, io mem 0xd3e04800
    [ 1.223360] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.223643] hub 6-0:1.0: USB hub found
    [ 1.223653] hub 6-0:1.0: 6 ports detected
    [ 1.246749] hub 4-0:1.0: USB hub found
    [ 1.246759] hub 4-0:1.0: 2 ports detected
    [ 1.246964] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.246972] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 1.246980] uhci_hcd 0000:00:1d.1: detected 2 ports
    [ 1.247004] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e060
    [ 1.247338] hub 7-0:1.0: USB hub found
    [ 1.247349] hub 7-0:1.0: 2 ports detected
    [ 1.247602] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.247609] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 1.247620] uhci_hcd 0000:00:1d.2: detected 2 ports
    [ 1.247658] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e040
    [ 1.247886] hub 8-0:1.0: USB hub found
    [ 1.247895] hub 8-0:1.0: 2 ports detected
    [ 1.248064] ahci 0000:00:1f.2: version 3.0
    [ 1.248219] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
    [ 1.248296] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    [ 1.248301] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems
    [ 1.254099] scsi0 : ahci
    [ 1.254260] scsi1 : ahci
    [ 1.254394] scsi2 : ahci
    [ 1.254531] scsi3 : ahci
    [ 1.254620] ata1: SATA max UDMA/133 abar m2048@0xd3e04000 port 0xd3e04100 irq 44
    [ 1.254624] ata2: SATA max UDMA/133 abar m2048@0xd3e04000 port 0xd3e04180 irq 44
    [ 1.254626] ata3: DUMMY
    [ 1.254628] ata4: DUMMY
    [ 1.446701] usb 5-2: new high-speed USB device number 2 using ehci-pci
    [ 1.573373] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.573417] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.574295] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.586094] ata2.00: ATAPI: Optiarc DVD RW AD-7560S, SS02, max UDMA/100
    [ 1.599810] ata2.00: configured for UDMA/100
    [ 1.624700] ata1.00: ATA-8: ST9500325AS, 0001SDM1, max UDMA/133
    [ 1.624703] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.626521] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.626525] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.626792] ata1.00: configured for UDMA/133
    [ 1.626924] scsi 0:0:0:0: Direct-Access ATA ST9500325AS SDM1 PQ: 0 ANSI: 5
    [ 1.628271] scsi 1:0:0:0: CD-ROM Optiarc DVD RW AD-7560S SS02 PQ: 0 ANSI: 5
    [ 1.642555] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.642657] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.642661] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.642702] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.653151] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.653155] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.653396] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.660023] tsc: Refined TSC clocksource calibration: 1994.515 MHz
    [ 1.690129] firewire_core 0000:06:03.0: created device fw0: GUID 0800460302c7fa38, S400
    [ 1.736464] sda: sda1 sda2 sda3 < sda5 sda6 sda7 >
    [ 1.737116] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.853371] usb 4-2: new low-speed USB device number 2 using uhci_hcd
    [ 2.013017] hidraw: raw HID events driver (C) Jiri Kosina
    [ 2.026218] usbcore: registered new interface driver usbhid
    [ 2.026221] usbhid: USB HID core driver
    [ 2.027252] input: OM as /devices/pci0000:00/0000:00:1d.0/usb4/4-2/4-2:1.0/0003:04F3:0232.0001/input/input2
    [ 2.027320] hid-generic 0003:04F3:0232.0001: input,hidraw0: USB HID v1.11 Mouse [OM] on usb-0000:00:1d.0-2/input0
    [ 2.660076] Switched to clocksource tsc
    [ 3.022076] random: nonblocking pool is initialized
    [ 3.080690] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.708375] EXT4-fs (sda7): re-mounted. Opts: data=ordered
    [ 6.402158] systemd-udevd[145]: starting version 216
    [ 7.329180] Monitor-Mwait will be used to enter C-1 state
    [ 7.329190] Monitor-Mwait will be used to enter C-2 state
    [ 7.329196] Monitor-Mwait will be used to enter C-3 state
    [ 7.329201] tsc: Marking TSC unstable due to TSC halts in idle
    [ 7.329221] ACPI: acpi_idle registered with cpuidle
    [ 7.329257] Switched to clocksource hpet
    [ 7.388619] [Firmware Bug]: ACPI(VGA) defines _DOD but not _DOS
    [ 7.388649] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    [ 7.391965] acpi device:19: registered as cooling_device2
    [ 7.392046] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/LNXVIDEO:01/input/input3
    [ 7.447312] ACPI: Battery Slot [BAT0] (battery present)
    [ 7.447434] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
    [ 7.448158] ACPI: Lid Switch [LID0]
    [ 7.448633] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5
    [ 7.448638] ACPI: Power Button [PWRB]
    [ 7.453434] ACPI: AC Adapter [ADP1] (on-line)
    [ 7.499637] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 7.552327] Linux agpgart interface v0.103
    [ 7.579473] thermal LNXTHERM:00: registered as thermal_zone0
    [ 7.579478] ACPI: Thermal Zone [TZ00] (57 C)
    [ 7.580996] ACPI: Invalid active0 threshold
    [ 7.582951] thermal LNXTHERM:01: registered as thermal_zone1
    [ 7.582954] ACPI: Thermal Zone [TZ01] (57 C)
    [ 7.667982] input: Sony Vaio Keys as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input6
    [ 7.668049] input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input7
    [ 7.678388] sony_laptop: brightness ignored, must be controlled by ACPI video driver
    [ 7.678401] sony_laptop: SNC setup done.
    [ 7.782985] input: PC Speaker as /devices/platform/pcspkr/input/input8
    [ 7.787513] ACPI Warning: SystemIO range 0x00000428-0x0000042f conflicts with OpRegion 0x00000400-0x0000047f (\PMIO) (20140424/utaddress-258)
    [ 7.787522] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.787526] ACPI Warning: SystemIO range 0x00000530-0x0000053f conflicts with OpRegion 0x00000500-0x0000053b (\GPIO) (20140424/utaddress-258)
    [ 7.787531] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.787533] ACPI Warning: SystemIO range 0x00000500-0x0000052f conflicts with OpRegion 0x00000500-0x0000053b (\GPIO) (20140424/utaddress-258)
    [ 7.787538] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.787540] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 7.907516] microcode: CPU0 sig=0x6fd, pf=0x80, revision=0xa3
    [ 7.917945] i801_smbus 0000:00:1f.3: enabling device (0001 -> 0003)
    [ 7.918056] ACPI Warning: SystemIO range 0x0000e000-0x0000e01f conflicts with OpRegion 0x00000800-0xffff0803 (\SMI1) (20140424/utaddress-258)
    [ 7.918063] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.960046] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    [ 7.962063] microcode: CPU1 sig=0x6fd, pf=0x80, revision=0xa3
    [ 7.962152] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 7.993425] iTCO_vendor_support: vendor-support=0
    [ 7.997746] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 7.997800] iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
    [ 7.997942] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 7.997991] [drm] Initialized drm 1.1.0 20060810
    [ 8.047610] r592: driver successfully loaded
    [ 8.084641] [drm] radeon kernel modesetting enabled.
    [ 8.084720] checking generic (c0000000 300000) vs hw (c0000000 10000000)
    [ 8.084723] fb: switching to radeondrmfb from VESA VGA
    [ 8.084747] Console: switching to colour dummy device 80x25
    [ 8.085113] [drm] initializing kernel modesetting (RV620 0x1002:0x95C2 0x104D:0x9045).
    [ 8.085131] [drm] register mmio base: 0xD0020000
    [ 8.085133] [drm] register mmio size: 65536
    [ 8.085255] ATOM BIOS: SonyM790
    [ 8.085290] radeon 0000:01:00.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (256M used)
    [ 8.085294] radeon 0000:01:00.0: GTT: 512M 0x0000000010000000 - 0x000000002FFFFFFF
    [ 8.085296] [drm] Detected VRAM RAM=256M, BAR=256M
    [ 8.085298] [drm] RAM width 64bits DDR
    [ 8.085369] [TTM] Zone kernel: Available graphics memory: 440038 kiB
    [ 8.085371] [TTM] Zone highmem: Available graphics memory: 1032648 kiB
    [ 8.085373] [TTM] Initializing pool allocator
    [ 8.085380] [TTM] Initializing DMA pool allocator
    [ 8.085408] [drm] radeon: 256M of VRAM memory ready
    [ 8.085410] [drm] radeon: 512M of GTT memory ready.
    [ 8.085423] [drm] Loading RV620 Microcode
    [ 8.095176] cfg80211: Calling CRDA to update world regulatory domain
    [ 8.095711] sound hdaudioC0D0: ALC262: SKU not ready 0x411111f0
    [ 8.095917] sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    [ 8.095921] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 8.095924] sound hdaudioC0D0: hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
    [ 8.095927] sound hdaudioC0D0: mono: mono_out=0x0
    [ 8.095929] sound hdaudioC0D0: inputs:
    [ 8.095932] sound hdaudioC0D0: Mic=0x18
    [ 8.095935] sound hdaudioC0D0: Internal Mic=0x12
    [ 8.100437] sound hdaudioC0D1: autoconfig: line_outs=0 (0x0/0x0/0x0/0x0/0x0) type:line
    [ 8.100442] sound hdaudioC0D1: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 8.100446] sound hdaudioC0D1: hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 8.100448] sound hdaudioC0D1: mono: mono_out=0x0
    [ 8.100451] sound hdaudioC0D1: inputs:
    [ 8.106995] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input10
    [ 8.107610] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 8.107720] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 8.127655] sky2: driver version 1.30
    [ 8.127955] sky2 0000:02:00.0: Yukon-2 EC Ultra chip revision 3
    [ 8.128246] sky2 0000:02:00.0: irq 46 for MSI/MSI-X
    [ 8.128956] sky2 0000:02:00.0 eth0: addr 00:1d:ba:22:41:93
    [ 8.138358] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 8.138362] Copyright(c) 2003- 2014 Intel Corporation
    [ 8.138697] iwlwifi 0000:05:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 8.138854] iwlwifi 0000:05:00.0: irq 47 for MSI/MSI-X
    [ 8.166978] mousedev: PS/2 mouse device common for all mice
    [ 8.359543] iwlwifi 0000:05:00.0: loaded firmware version 8.83.5.1 build 33692 op_mode iwldvm
    [ 8.450028] [drm] radeon: power management initialized
    [ 8.450038] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 8.459438] systemd-udevd[151]: renamed network interface eth0 to enp2s0
    [ 8.480984] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 8.481031] radeon 0000:01:00.0: WB enabled
    [ 8.481036] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000010000c00 and cpu addr 0xff862c00
    [ 8.481039] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 8.481041] [drm] Driver supports precise vblank timestamp query.
    [ 8.481068] radeon 0000:01:00.0: irq 48 for MSI/MSI-X
    [ 8.481085] radeon 0000:01:00.0: radeon: using MSI.
    [ 8.481117] [drm] radeon: irq initialized.
    [ 8.512790] [drm] ring test on 0 succeeded in 0 usecs
    [ 8.512924] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 8.513633] Raw EDID:
    [ 8.513639] 36 7f 40 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513644] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513648] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513652] ff ff ff ff 3f 00 00 00 ff ff ff ff 3f 00 00 00
    [ 8.513656] ff ff ff ff 3f 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513660] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513664] 40 43 5d c1 80 43 5d c1 c0 ae 5d c1 ec 50 05 f5
    [ 8.513668] 10 2f 07 c1 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513773] [drm] radeon atom DIG backlight initialized
    [ 8.513775] [drm] Radeon Display Connectors
    [ 8.513777] [drm] Connector 0:
    [ 8.513779] [drm] VGA-1
    [ 8.513781] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
    [ 8.513783] [drm] Encoders:
    [ 8.513785] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [ 8.513786] [drm] Connector 1:
    [ 8.513788] [drm] LVDS-1
    [ 8.513789] [drm] Encoders:
    [ 8.513791] [drm] LCD1: INTERNAL_KLDSCP_LVTMA
    [ 8.612347] iwlwifi 0000:05:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 8.612352] iwlwifi 0000:05:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 8.612354] iwlwifi 0000:05:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 8.612358] iwlwifi 0000:05:00.0: Detected Intel(R) WiFi Link 5100 AGN, REV=0x54
    [ 8.612403] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.0, id: 0x1c0b1, caps: 0xd04711/0xa00000/0x20000, board id: 3655, fw id: 474059
    [ 8.612460] iwlwifi 0000:05:00.0: L1 Enabled; Disabling L0S
    [ 8.663147] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9
    [ 8.680967] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 8.736839] systemd-udevd[152]: renamed network interface wlan0 to wlp5s0
    [ 8.828178] media: Linux media interface: v0.10
    [ 8.842407] Linux video capture interface: v2.00
    [ 8.965340] uvcvideo: Found UVC 1.00 device <unnamed> (05ca:18b3)
    [ 8.966809] input: UVC Camera (05ca:18b3) as /devices/pci0000:00/0000:00:1a.7/usb5/5-2/5-2:1.0/input/input13
    [ 8.966907] usbcore: registered new interface driver uvcvideo
    [ 8.966910] USB Video Class driver (1.1.1)
    [ 9.438912] [drm] fb mappable at 0xC0141000
    [ 9.438915] [drm] vram apper at 0xC0000000
    [ 9.438917] [drm] size 4096000
    [ 9.438919] [drm] fb depth is 24
    [ 9.438921] [drm] pitch is 5120
    [ 9.439044] fbcon: radeondrmfb (fb0) is primary device
    [ 9.493414] Console: switching to colour frame buffer device 160x50
    [ 9.498518] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
    [ 9.498521] radeon 0000:01:00.0: registered panic notifier
    [ 9.523878] [drm] Initialized radeon 2.39.0 20080528 for 0000:01:00.0 on minor 0
    [ 9.596873] Adding 6291452k swap on /dev/sda2. Priority:-1 extents:1 across:6291452k FS
    [ 10.682619] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    [ 10.777545] systemd-journald[126]: Received request to flush runtime journal from PID 1
    [ 15.392287] sky2 0000:02:00.0 enp2s0: enabling interface
    [ 15.392779] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
    [ 15.398848] iwlwifi 0000:05:00.0: L1 Enabled; Disabling L0S
    [ 15.403170] iwlwifi 0000:05:00.0: Radio type=0x1-0x2-0x0
    [ 15.498641] iwlwifi 0000:05:00.0: L1 Enabled; Disabling L0S
    [ 15.501625] iwlwifi 0000:05:00.0: Radio type=0x1-0x2-0x0
    [ 15.528195] IPv6: ADDRCONF(NETDEV_UP): wlp5s0: link is not ready
    [ 16.614242] cfg80211: Calling CRDA to update world regulatory domain
    [ 16.672892] cfg80211: Calling CRDA to update world regulatory domain
    [ 16.823470] cfg80211: Calling CRDA to update world regulatory domain
    [ 19.214957] wlp5s0: authenticate with 34:a8:4e:ba:ad:e1
    [ 19.221013] wlp5s0: send auth to 34:a8:4e:ba:ad:e1 (try 1/3)
    [ 19.227206] wlp5s0: authenticated
    [ 19.230045] wlp5s0: associate with 34:a8:4e:ba:ad:e1 (try 1/3)
    [ 19.248588] wlp5s0: RX AssocResp from 34:a8:4e:ba:ad:e1 (capab=0x431 status=0 aid=23)
    [ 19.257832] wlp5s0: associated
    [ 19.257908] IPv6: ADDRCONF(NETDEV_CHANGE): wlp5s0: link becomes ready
    [ 19.257975] cfg80211: Calling CRDA to update world regulatory domain
    [ 30.859993] fuse init (API version 7.23)
    [ 61.490049] Corrupted low memory at c000be3c (be3c phys) = b0360004
    [ 61.490058] ------------[ cut here ]------------
    [ 61.490067] WARNING: CPU: 1 PID: 15 at arch/x86/kernel/check.c:140 check_for_bios_corruption+0x8d/0xd0()
    [ 61.490068] Memory corruption detected in low memory
    [ 61.490070] Modules linked in: fuse ctr ccm uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core v4l2_common videodev media joydev arc4 iwldvm mac80211 mousedev iwlwifi sky2 snd_hda_codec_realtek cfg80211 snd_hda_codec_generic radeon r592 ttm coretemp drm_kms_helper iTCO_wdt drm iTCO_vendor_support hwmon snd_hda_intel i2c_i801 microcode i2c_algo_bit snd_hda_controller memstick snd_hda_codec evdev mac_hid snd_hwdep snd_pcm psmouse lpc_ich pcspkr i2c_core serio_raw snd_timer sony_laptop snd rfkill thermal intel_agp intel_gtt agpgart soundcore shpchp ac button battery video acpi_cpufreq processor ext4 crc16 mbcache jbd2 hid_generic usbhid hid sd_mod sr_mod crc_t10dif cdrom crct10dif_common atkbd libps2 ahci libahci libata firewire_ohci scsi_mod sdhci_pci sdhci led_class mmc_core firewire_core
    [ 61.490135] crc_itu_t ehci_pci uhci_hcd ehci_hcd usbcore usb_common i8042 serio
    [ 61.490144] CPU: 1 PID: 15 Comm: kworker/1:0 Not tainted 3.16.3-1-ARCH #1
    [ 61.490146] Hardware name: Sony Corporation VGN-NS12M_W/VAIO, BIOS R0190Y3 07/09/2008
    [ 61.490150] Workqueue: events check_corruption
    [ 61.490153] 00000000 5313ea34 00000000 f5957e7c c1461b35 f5957ec0 f5957eb0 c104f322
    [ 61.490159] c152e99c f5957ee0 0000000f c1526b8d 0000008c c103f67d 0000008c c103f67d
    [ 61.490165] c0010000 00000000 c16d2b10 f5957ecc c104f37e 00000009 f5957ec0 c152e99c
    [ 61.490171] Call Trace:
    [ 61.490177] [<c1461b35>] dump_stack+0x48/0x69
    [ 61.490182] [<c104f322>] warn_slowpath_common+0x82/0xa0
    [ 61.490185] [<c103f67d>] ? check_for_bios_corruption+0x8d/0xd0
    [ 61.490189] [<c103f67d>] ? check_for_bios_corruption+0x8d/0xd0
    [ 61.490192] [<c104f37e>] warn_slowpath_fmt+0x3e/0x60
    [ 61.490196] [<c103f67d>] check_for_bios_corruption+0x8d/0xd0
    [ 61.490200] [<c103f6d0>] check_corruption+0x10/0x40
    [ 61.490204] [<c106807c>] process_one_work+0x10c/0x3b0
    [ 61.490208] [<c10685d1>] worker_thread+0x41/0x4c0
    [ 61.490211] [<c1068590>] ? init_pwq.part.25+0x10/0x10
    [ 61.490214] [<c106dbe3>] kthread+0xb3/0xd0
    [ 61.490219] [<c1466a41>] ret_from_kernel_thread+0x21/0x30
    [ 61.490222] [<c106db30>] ? kthread_create_on_node+0x130/0x130
    [ 61.490225] ---[ end trace 6a662771a9f66f05 ]---
    [ 829.749973] perf interrupt took too long (2511 > 2495), lowering kernel.perf_event_max_sample_rate to 50100

    Hi,
    I've been trying several of the things suggested, with the following results
    - Clearing the session cache did nothing (I never saved a session, so it was no surprise)
    - Starting xfce4 without slim (startxfce4) yielded different results, the first time after booting up it takes the same long time to load xfce, and the console messages leads to a log called xorg.log in .local/share:
    [ 113.303]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 113.304] X Protocol Version 11, Revision 0
    [ 113.304] Build Operating System: Linux 3.16.1-1-ARCH i686
    [ 113.304] Current Operating System: Linux tetto-arch 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 22:00:02 CEST 2014 i686
    [ 113.304] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=1a4fcdfd-1e9f-47e4-97f5-1ebf0a0a629e rw acpi=nonvs quiet
    [ 113.304] Build Date: 21 September 2014 10:55:38AM
    [ 113.304]
    [ 113.304] Current version of pixman: 0.32.6
    [ 113.304] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 113.304] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 113.305] (==) Log file: "/home/chikitulfo/.local/share/xorg/Xorg.0.log", Time: Wed Oct 8 13:58:55 2014
    [ 113.400] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 113.400] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 113.457] (==) No Layout section. Using the first Screen section.
    [ 113.457] (==) No screen section available. Using defaults.
    [ 113.457] (**) |-->Screen "Default Screen Section" (0)
    [ 113.457] (**) | |-->Monitor "<default monitor>"
    [ 113.473] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 113.473] (**) | |-->Device "Radeon"
    [ 113.473] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 113.473] (==) Automatically adding devices
    [ 113.473] (==) Automatically enabling devices
    [ 113.473] (==) Automatically adding GPU devices
    [ 113.609] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 113.609] Entry deleted from font path.
    [ 113.609] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 113.610] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 113.610] Entry deleted from font path.
    [ 113.610] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 113.610] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 113.610] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 113.610] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 113.631] (II) Loader magic: 0x82a0700
    [ 113.631] (II) Module ABI versions:
    [ 113.631] X.Org ANSI C Emulation: 0.4
    [ 113.631] X.Org Video Driver: 18.0
    [ 113.631] X.Org XInput driver : 21.0
    [ 113.631] X.Org Server Extension : 8.0
    [ 113.634] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 113.634] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 113.634] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 113.637] (--) PCI:*(0:1:0:0) 1002:95c2:104d:9045 rev 0, Mem @ 0xc0000000/268435456, 0xd0020000/65536, I/O @ 0x0000d000/256, BIOS @ 0x????????/131072
    [ 113.637] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 113.638] (II) LoadModule: "glx"
    [ 113.653] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 113.999] (II) Module glx: vendor="X.Org Foundation"
    [ 113.999] compiled for 1.16.1, module version = 1.0.0
    [ 113.999] ABI class: X.Org Server Extension, version 8.0
    [ 113.999] (==) AIGLX enabled
    [ 113.999] (II) LoadModule: "radeon"
    [ 113.999] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 114.031] (II) Module radeon: vendor="X.Org Foundation"
    [ 114.031] compiled for 1.16.1, module version = 7.5.0
    [ 114.031] Module class: X.Org Video Driver
    [ 114.031] ABI class: X.Org Video Driver, version 18.0
    [ 114.031] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 114.037] (++) using VT number 1
    [ 114.037] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 114.046] (II) [KMS] Kernel modesetting enabled.
    [ 114.046] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 114.046] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 114.046] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 114.046] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 114.046] (==) RADEON(0): Default visual is TrueColor
    [ 114.046] (**) RADEON(0): Option "EnablePageFlip"
    [ 114.046] (**) RADEON(0): Option "ColorTiling"
    [ 114.046] (**) RADEON(0): Option "RenderAccel"
    [ 114.046] (WW) RADEON(0): Option "AccelMethod" requires a string value
    [ 114.046] (**) RADEON(0): Option "EXAVSync"
    [ 114.046] (**) RADEON(0): Option "EXAPixmaps"
    [ 114.046] (==) RADEON(0): RGB weight 888
    [ 114.046] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 114.046] (--) RADEON(0): Chipset: "ATI Mobility Radeon HD 3430" (ChipID = 0x95c2)
    [ 114.046] (II) Loading sub module "dri2"
    [ 114.046] (II) LoadModule: "dri2"
    [ 114.046] (II) Module "dri2" already built-in
    [ 114.046] (II) Loading sub module "exa"
    [ 114.046] (II) LoadModule: "exa"
    [ 114.046] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 114.061] (II) Module exa: vendor="X.Org Foundation"
    [ 114.061] compiled for 1.16.1, module version = 2.6.0
    [ 114.061] ABI class: X.Org Video Driver, version 18.0
    [ 114.061] (II) RADEON(0): KMS Color Tiling: enabled
    [ 114.061] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 114.062] (II) RADEON(0): KMS Pageflipping: enabled
    [ 114.062] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 114.080] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 114.080] (II) RADEON(0): Output LVDS has no monitor section
    [ 114.100] (II) RADEON(0): EDID for output VGA-0
    [ 114.100] (II) RADEON(0): EDID for output LVDS
    [ 114.100] (II) RADEON(0): Printing probed modes for output LVDS
    [ 114.100] (II) RADEON(0): Modeline "1280x800"x59.8 68.00 1280 1312 1376 1408 800 802 804 808 -hsync -vsync (48.3 kHz eP)
    [ 114.100] (II) RADEON(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 114.100] (II) RADEON(0): Modeline "1152x768"x59.8 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 114.100] (II) RADEON(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 114.100] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 114.100] (II) RADEON(0): Modeline "848x480"x59.7 31.50 848 872 952 1056 480 483 493 500 -hsync +vsync (29.8 kHz)
    [ 114.100] (II) RADEON(0): Modeline "720x480"x59.7 26.75 720 744 808 896 480 483 493 500 -hsync +vsync (29.9 kHz)
    [ 114.100] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 114.101] (II) RADEON(0): Output VGA-0 disconnected
    [ 114.101] (II) RADEON(0): Output LVDS connected
    [ 114.101] (II) RADEON(0): Using exact sizes for initial modes
    [ 114.101] (II) RADEON(0): Output LVDS using initial mode 1280x800
    [ 114.101] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 114.101] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:fbd8000
    [ 114.101] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 114.101] (==) RADEON(0): DPI set to (96, 96)
    [ 114.101] (II) Loading sub module "fb"
    [ 114.101] (II) LoadModule: "fb"
    [ 114.101] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 114.114] (II) Module fb: vendor="X.Org Foundation"
    [ 114.114] compiled for 1.16.1, module version = 1.0.0
    [ 114.114] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 114.114] (II) Loading sub module "ramdac"
    [ 114.114] (II) LoadModule: "ramdac"
    [ 114.114] (II) Module "ramdac" already built-in
    [ 114.114] (--) Depth 24 pixmap format is 32 bpp
    [ 114.115] (II) RADEON(0): [DRI2] Setup complete
    [ 114.115] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 114.115] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 114.115] (II) RADEON(0): Front buffer size: 4000K
    [ 114.115] (II) RADEON(0): VRAM usage limit set to 228470K
    [ 114.127] (==) RADEON(0): Backing store enabled
    [ 114.127] (II) RADEON(0): Direct rendering enabled
    [ 114.127] (II) RADEON(0): EXA VSync enabled
    [ 114.127] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 114.127] (II) EXA(0): Driver registered support for the following operations:
    [ 114.127] (II) Solid
    [ 114.127] (II) Copy
    [ 114.127] (II) Composite (RENDER acceleration)
    [ 114.127] (II) UploadToScreen
    [ 114.127] (II) DownloadFromScreen
    [ 114.127] (II) RADEON(0): Acceleration enabled
    [ 114.127] (==) RADEON(0): DPMS enabled
    [ 114.127] (==) RADEON(0): Silken mouse enabled
    [ 114.128] (II) RADEON(0): Set up textured video
    [ 114.128] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 114.128] (II) RADEON(0): [XvMC] Extension initialized.
    [ 114.128] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 114.129] (WW) RADEON(0): Option "AccelDFS" is not used
    [ 114.129] (--) RandR disabled
    [ 114.964] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 114.964] (II) AIGLX: enabled GLX_ARB_create_context
    [ 114.964] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 114.964] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 114.964] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 114.964] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 114.964] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 114.964] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 114.964] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 114.965] (II) AIGLX: Loaded and initialized r600
    [ 114.965] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 114.966] (II) RADEON(0): Setting screen physical size to 338 x 211
    [ 115.291] (II) config/udev: Adding input device Sony Vaio Keys (/dev/input/event6)
    [ 115.291] (**) Sony Vaio Keys: Applying InputClass "evdev keyboard catchall"
    [ 115.291] (II) LoadModule: "evdev"
    [ 115.292] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 115.331] (II) Module evdev: vendor="X.Org Foundation"
    [ 115.331] compiled for 1.16.0, module version = 2.9.0
    [ 115.331] Module class: X.Org XInput Driver
    [ 115.331] ABI class: X.Org XInput driver, version 21.0
    [ 115.331] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 11 paused 0
    [ 115.331] (II) Using input driver 'evdev' for 'Sony Vaio Keys'
    [ 115.331] (**) Sony Vaio Keys: always reports core events
    [ 115.332] (**) evdev: Sony Vaio Keys: Device: "/dev/input/event6"
    [ 115.332] (--) evdev: Sony Vaio Keys: Vendor 0x104d Product 0
    [ 115.332] (--) evdev: Sony Vaio Keys: Found keys
    [ 115.332] (II) evdev: Sony Vaio Keys: Configuring as keyboard
    [ 115.332] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input8/event6"
    [ 115.332] (II) XINPUT: Adding extended input device "Sony Vaio Keys" (type: KEYBOARD, id 6)
    [ 115.332] (**) Option "xkb_rules" "evdev"
    [ 115.332] (**) Option "xkb_model" "pc104"
    [ 115.332] (**) Option "xkb_layout" "us"
    [ 115.365] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/event7)
    [ 115.365] (II) No input driver specified, ignoring this device.
    [ 115.365] (II) This device may have been added with another device file.
    [ 115.366] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/mouse1)
    [ 115.366] (II) No input driver specified, ignoring this device.
    [ 115.366] (II) This device may have been added with another device file.
    [ 115.366] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
    [ 115.366] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 115.367] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 12 paused 0
    [ 115.367] (II) Using input driver 'evdev' for 'Video Bus'
    [ 115.367] (**) Video Bus: always reports core events
    [ 115.367] (**) evdev: Video Bus: Device: "/dev/input/event2"
    [ 115.367] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 115.367] (--) evdev: Video Bus: Found keys
    [ 115.367] (II) evdev: Video Bus: Configuring as keyboard
    [ 115.367] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/LNXVIDEO:01/input/input3/event2"
    [ 115.367] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 115.367] (**) Option "xkb_rules" "evdev"
    [ 115.367] (**) Option "xkb_model" "pc104"
    [ 115.367] (**) Option "xkb_layout" "us"
    [ 115.368] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 115.368] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 115.368] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 13 paused 0
    [ 115.368] (II) Using input driver 'evdev' for 'Power Button'
    [ 115.368] (**) Power Button: always reports core events
    [ 115.368] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 115.368] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 115.368] (--) evdev: Power Button: Found keys
    [ 115.368] (II) evdev: Power Button: Configuring as keyboard
    [ 115.368] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5/event4"
    [ 115.368] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 115.368] (**) Option "xkb_rules" "evdev"
    [ 115.368] (**) Option "xkb_model" "pc104"
    [ 115.368] (**) Option "xkb_layout" "us"
    [ 115.369] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 115.369] (II) No input driver specified, ignoring this device.
    [ 115.369] (II) This device may have been added with another device file.
    [ 115.370] (II) config/udev: Adding input device UVC Camera (05ca:18b3) (/dev/input/event12)
    [ 115.370] (**) UVC Camera (05ca:18b3): Applying InputClass "evdev keyboard catchall"
    [ 115.370] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 14 paused 0
    [ 115.370] (II) Using input driver 'evdev' for 'UVC Camera (05ca:18b3)'
    [ 115.370] (**) UVC Camera (05ca:18b3): always reports core events
    [ 115.370] (**) evdev: UVC Camera (05ca:18b3): Device: "/dev/input/event12"
    [ 115.370] (--) evdev: UVC Camera (05ca:18b3): Vendor 0x5ca Product 0x18b3
    [ 115.370] (--) evdev: UVC Camera (05ca:18b3): Found keys
    [ 115.370] (II) evdev: UVC Camera (05ca:18b3): Configuring as keyboard
    [ 115.370] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input13/event12"
    [ 115.370] (II) XINPUT: Adding extended input device "UVC Camera (05ca:18b3)" (type: KEYBOARD, id 9)
    [ 115.370] (**) Option "xkb_rules" "evdev"
    [ 115.370] (**) Option "xkb_model" "pc104"
    [ 115.370] (**) Option "xkb_layout" "us"
    [ 115.371] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
    [ 115.371] (II) No input driver specified, ignoring this device.
    [ 115.371] (II) This device may have been added with another device file.
    [ 115.371] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event9)
    [ 115.371] (II) No input driver specified, ignoring this device.
    [ 115.371] (II) This device may have been added with another device file.
    [ 115.372] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
    [ 115.372] (II) No input driver specified, ignoring this device.
    [ 115.372] (II) This device may have been added with another device file.
    [ 115.372] (II) config/udev: Adding input device OM (/dev/input/event1)
    [ 115.372] (**) OM: Applying InputClass "evdev pointer catchall"
    [ 115.373] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 15 paused 0
    [ 115.373] (II) Using input driver 'evdev' for 'OM'
    [ 115.373] (**) OM: always reports core events
    [ 115.373] (**) evdev: OM: Device: "/dev/input/event1"
    [ 115.373] (--) evdev: OM: Vendor 0x4f3 Product 0x232
    [ 115.373] (--) evdev: OM: Found 3 mouse buttons
    [ 115.373] (--) evdev: OM: Found scroll wheel(s)
    [ 115.373] (--) evdev: OM: Found relative axes
    [ 115.373] (--) evdev: OM: Found x and y relative axes
    [ 115.373] (II) evdev: OM: Configuring as mouse
    [ 115.373] (II) evdev: OM: Adding scrollwheel support
    [ 115.373] (**) evdev: OM: YAxisMapping: buttons 4 and 5
    [ 115.373] (**) evdev: OM: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 115.373] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.0/0003:04F3:0232.0001/input/input2/event1"
    [ 115.373] (II) XINPUT: Adding extended input device "OM" (type: MOUSE, id 10)
    [ 115.373] (II) evdev: OM: initialized for relative axes.
    [ 115.373] (**) OM: (accel) keeping acceleration scheme 1
    [ 115.373] (**) OM: (accel) acceleration profile 0
    [ 115.373] (**) OM: (accel) acceleration factor: 2.000
    [ 115.373] (**) OM: (accel) acceleration threshold: 4
    [ 115.374] (II) config/udev: Adding input device OM (/dev/input/mouse0)
    [ 115.374] (II) No input driver specified, ignoring this device.
    [ 115.374] (II) This device may have been added with another device file.
    [ 115.374] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 115.374] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 115.375] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 16 paused 0
    [ 115.375] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 115.375] (**) AT Translated Set 2 keyboard: always reports core events
    [ 115.375] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 115.375] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 115.375] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 115.375] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 115.375] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 115.375] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 115.375] (**) Option "xkb_rules" "evdev"
    [ 115.375] (**) Option "xkb_model" "pc104"
    [ 115.375] (**) Option "xkb_layout" "us"
    [ 115.376] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
    [ 115.376] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 115.376] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 115.376] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 115.376] (II) LoadModule: "synaptics"
    [ 115.376] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 115.391] (II) Module synaptics: vendor="X.Org Foundation"
    [ 115.392] compiled for 1.16.0, module version = 1.8.1
    [ 115.392] Module class: X.Org XInput Driver
    [ 115.392] ABI class: X.Org XInput driver, version 21.0
    [ 115.392] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 17 paused 0
    [ 115.392] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 115.392] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 115.392] (**) Option "Device" "/dev/input/event11"
    [ 115.426] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5696 (res 64)
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 5232 (res 106)
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 115.427] (**) Option "TapButton1" "1"
    [ 115.427] (**) Option "TapButton2" "2"
    [ 115.427] (**) Option "TapButton3" "3"
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 115.427] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 115.427] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event11"
    [ 115.427] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 115.427] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 115.427] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 115.427] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 115.428] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 115.429] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse2)
    [ 115.429] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 115.430] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 115.430] (II) No input driver specified, ignoring this device.
    [ 115.430] (II) This device may have been added with another device file.
    [ 140.030] (II) UnloadModule: "synaptics"
    [ 140.030] (II) systemd-logind: releasing fd for 13:75
    [ 140.063] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 140.063] (II) UnloadModule: "evdev"
    [ 140.063] (II) systemd-logind: releasing fd for 13:64
    [ 140.113] (II) evdev: OM: Close
    [ 140.113] (II) UnloadModule: "evdev"
    [ 140.113] (II) systemd-logind: releasing fd for 13:65
    [ 140.166] (II) evdev: UVC Camera (05ca:18b3): Close
    [ 140.166] (II) UnloadModule: "evdev"
    [ 140.166] (II) systemd-logind: releasing fd for 13:76
    [ 140.230] (II) evdev: Power Button: Close
    [ 140.230] (II) UnloadModule: "evdev"
    [ 140.230] (II) systemd-logind: releasing fd for 13:68
    [ 140.254] (II) evdev: Video Bus: Close
    [ 140.255] (II) UnloadModule: "evdev"
    [ 140.255] (II) systemd-logind: releasing fd for 13:66
    [ 140.283] (II) evdev: Sony Vaio Keys: Close
    [ 140.283] (II) UnloadModule: "evdev"
    [ 140.283] (II) systemd-logind: releasing fd for 13:70
    [ 140.498] (EE) Server terminated successfully (0). Closing log file.
    If I log out to the console and run startxfce4 again then it does load faster.
    The messages that show on the console I didn't know how to copy them, is there any easy way?
    Last edited by Chikitulfo (2014-10-08 12:24:02)

  • After pacman -Syu upgrade xfce boots black screen cursor

    Hello,
    I've recently upgraded the system with pacman -Syu and it seem something has gone wrong with new xfce 4.12. I have changed DM from slim to lxdm and can only boot to openbox but not xfce. I also switch to tty2 and try a startx with ~/.xinitrc file with exec startxfce4 but it does not launch properly. What I mean is both the display manager and a startx boots me into a black screen with a cursor when i try to launch xfce. Again I can boot to openbox just fine. I've searched for similar topics but cant seem to find any solution. Can anyone help?
    [ 18.673]
    X.Org X Server 1.17.1
    Release Date: 2015-02-10
    [ 18.673] X Protocol Version 11, Revision 0
    [ 18.673] Build Operating System: Linux 3.18.6-1-ARCH x86_64
    [ 18.673] Current Operating System: Linux arch-server 3.14.35-1-lts #1 SMP Sat Mar 7 19:24:12 CET 2015 x86_64
    [ 18.674] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=d6352b14-5ca7-476a-9f43-2bc25278effd rw quiet
    [ 18.674] Build Date: 14 March 2015 06:45:50PM
    [ 18.674]
    [ 18.674] Current version of pixman: 0.32.6
    [ 18.674] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [ 18.674] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 18.674] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Mar 17 03:38:39 2015
    [ 18.937] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 19.047] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 19.553] (==) No Layout section. Using the first Screen section.
    [ 19.553] (**) |-->Screen "Default Screen" (0)
    [ 19.553] (**) | |-->Monitor "<default monitor>"
    [ 19.586] (==) No monitor specified for screen "Default Screen".
    Using a default monitor configuration.
    [ 19.586] (==) Automatically adding devices
    [ 19.586] (==) Automatically enabling devices
    [ 19.586] (==) Automatically adding GPU devices
    [ 20.294] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 20.294] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 20.294] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 20.354] (II) Loader magic: 0x815d80
    [ 20.354] (II) Module ABI versions:
    [ 20.354] X.Org ANSI C Emulation: 0.4
    [ 20.354] X.Org Video Driver: 19.0
    [ 20.354] X.Org XInput driver : 21.0
    [ 20.354] X.Org Server Extension : 9.0
    [ 20.356] (EE) systemd-logind: failed to get session: PID 940 does not belong to any known session
    [ 20.357] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 20.359] (--) PCI:*(0:1:5:0) 1002:9616:1462:7641 rev 0, Mem @ 0xd0000000/268435456, 0xfebe0000/65536, 0xfea00000/1048576, I/O @ 0x0000d000/256
    [ 20.359] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 20.422] (II) "glx" will be loaded by default.
    [ 20.423] (II) LoadModule: "vnc"
    [ 20.568] (II) Loading /usr/lib/xorg/modules/extensions/libvnc.so
    [ 22.029] (II) Module vnc: vendor="Constantin Kaplinsky"
    [ 22.029] compiled for 1.17.1, module version = 1.0.0
    [ 22.029] Module class: X.Org Server Extension
    [ 22.029] ABI class: X.Org Server Extension, version 9.0
    [ 22.029] (II) LoadModule: "glx"
    [ 22.030] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 24.054] (II) Module glx: vendor="X.Org Foundation"
    [ 24.208] compiled for 1.17.1, module version = 1.0.0
    [ 24.208] ABI class: X.Org Server Extension, version 9.0
    [ 24.208] (==) AIGLX enabled
    [ 24.208] (==) Matched ati as autoconfigured driver 0
    [ 24.208] (==) Matched ati as autoconfigured driver 1
    [ 24.208] (==) Matched modesetting as autoconfigured driver 2
    [ 24.208] (==) Matched fbdev as autoconfigured driver 3
    [ 24.208] (==) Matched vesa as autoconfigured driver 4
    [ 24.208] (==) Assigned the driver to the xf86ConfigLayout
    [ 24.208] (II) LoadModule: "ati"
    [ 24.261] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 24.332] (II) Module ati: vendor="X.Org Foundation"
    [ 24.332] compiled for 1.17.0, module version = 7.5.0
    [ 24.332] Module class: X.Org Video Driver
    [ 24.332] ABI class: X.Org Video Driver, version 19.0
    [ 24.332] (II) LoadModule: "radeon"
    [ 24.333] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 24.765] (II) Module radeon: vendor="X.Org Foundation"
    [ 24.765] compiled for 1.17.0, module version = 7.5.0
    [ 24.765] Module class: X.Org Video Driver
    [ 24.765] ABI class: X.Org Video Driver, version 19.0
    [ 24.765] (II) LoadModule: "modesetting"
    [ 24.765] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [ 24.878] (II) Module modesetting: vendor="X.Org Foundation"
    [ 24.878] compiled for 1.17.1, module version = 1.17.1
    [ 24.878] Module class: X.Org Video Driver
    [ 24.878] ABI class: X.Org Video Driver, version 19.0
    [ 24.878] (II) LoadModule: "fbdev"
    [ 24.878] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 25.005] (II) Module fbdev: vendor="X.Org Foundation"
    [ 25.005] compiled for 1.17.0, module version = 0.4.4
    [ 25.005] Module class: X.Org Video Driver
    [ 25.005] ABI class: X.Org Video Driver, version 19.0
    [ 25.005] (II) LoadModule: "vesa"
    [ 25.006] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 25.099] (II) Module vesa: vendor="X.Org Foundation"
    [ 25.099] compiled for 1.17.0, module version = 2.3.2
    [ 25.099] Module class: X.Org Video Driver
    [ 25.099] ABI class: X.Org Video Driver, version 19.0
    [ 25.099] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 25.111] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [ 25.111] (II) FBDEV: driver for framebuffer: fbdev
    [ 25.111] (II) VESA: driver for VESA chipsets: vesa
    [ 25.111] (++) using VT number 7
    [ 25.184] (II) [KMS] Kernel modesetting enabled.
    [ 25.184] (WW) Falling back to old probe method for modesetting
    [ 25.184] (WW) Falling back to old probe method for fbdev
    [ 25.184] (II) Loading sub module "fbdevhw"
    [ 25.184] (II) LoadModule: "fbdevhw"
    [ 25.184] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 25.280] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 25.280] compiled for 1.17.1, module version = 0.0.2
    [ 25.280] ABI class: X.Org Video Driver, version 19.0
    [ 25.280] (WW) Falling back to old probe method for vesa
    [ 25.280] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen" for depth/fbbpp 24/32
    [ 25.280] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 25.280] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 25.280] (==) RADEON(0): Default visual is TrueColor
    [ 25.280] (==) RADEON(0): RGB weight 888
    [ 25.280] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 25.280] (--) RADEON(0): Chipset: "ATI Radeon 3000 Graphics" (ChipID = 0x9616)
    [ 25.280] (II) Loading sub module "dri2"
    [ 25.280] (II) LoadModule: "dri2"
    [ 25.280] (II) Module "dri2" already built-in
    [ 25.280] (II) Loading sub module "exa"
    [ 25.280] (II) LoadModule: "exa"
    [ 25.281] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 25.406] (II) Module exa: vendor="X.Org Foundation"
    [ 25.406] compiled for 1.17.1, module version = 2.6.0
    [ 25.406] ABI class: X.Org Video Driver, version 19.0
    [ 25.406] (II) RADEON(0): KMS Color Tiling: enabled
    [ 25.406] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 25.406] (II) RADEON(0): KMS Pageflipping: enabled
    [ 25.406] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 25.440] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 25.471] (II) RADEON(0): Output HDMI-0 has no monitor section
    [ 25.510] (II) RADEON(0): EDID for output VGA-0
    [ 25.541] (II) RADEON(0): EDID for output HDMI-0
    [ 25.541] (II) RADEON(0): Manufacturer: BBY Model: bb20 Serial#: 16843009
    [ 25.541] (II) RADEON(0): Year: 2012 Week: 0
    [ 25.541] (II) RADEON(0): EDID Version: 1.3
    [ 25.541] (II) RADEON(0): Digital Display Input
    [ 25.541] (II) RADEON(0): DFP 1.x compatible TMDS
    [ 25.541] (II) RADEON(0): Max Image Size [cm]: horiz.: 44 vert.: 25
    [ 25.541] (II) RADEON(0): Gamma: 2.20
    [ 25.541] (II) RADEON(0): DPMS capabilities: Off
    [ 25.541] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 25.541] (II) RADEON(0): First detailed timing is preferred mode
    [ 25.541] (II) RADEON(0): redX: 0.645 redY: 0.331 greenX: 0.335 greenY: 0.621
    [ 25.541] (II) RADEON(0): blueX: 0.152 blueY: 0.053 whiteX: 0.313 whiteY: 0.329
    [ 25.541] (II) RADEON(0): Supported established timings:
    [ 25.541] (II) RADEON(0): 720x400@70Hz
    [ 25.541] (II) RADEON(0): 640x480@60Hz
    [ 25.541] (II) RADEON(0): 640x480@67Hz
    [ 25.541] (II) RADEON(0): 640x480@72Hz
    [ 25.541] (II) RADEON(0): 640x480@75Hz
    [ 25.541] (II) RADEON(0): 800x600@56Hz
    [ 25.541] (II) RADEON(0): 800x600@60Hz
    [ 25.541] (II) RADEON(0): 800x600@72Hz
    [ 25.541] (II) RADEON(0): 800x600@75Hz
    [ 25.541] (II) RADEON(0): 832x624@75Hz
    [ 25.542] (II) RADEON(0): 1024x768@60Hz
    [ 25.542] (II) RADEON(0): 1024x768@70Hz
    [ 25.542] (II) RADEON(0): 1024x768@75Hz
    [ 25.542] (II) RADEON(0): 1280x1024@75Hz
    [ 25.542] (II) RADEON(0): 1152x864@75Hz
    [ 25.542] (II) RADEON(0): Manufacturer's mask: 0
    [ 25.542] (II) RADEON(0): Supported standard timings:
    [ 25.542] (II) RADEON(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 25.542] (II) RADEON(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 25.542] (II) RADEON(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 25.542] (II) RADEON(0): #3: hsize: 1440 vsize 900 refresh: 75 vid: 3989
    [ 25.542] (II) RADEON(0): #4: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 25.542] (II) RADEON(0): #5: hsize: 1280 vsize 720 refresh: 60 vid: 49281
    [ 25.542] (II) RADEON(0): Supported detailed timing:
    [ 25.542] (II) RADEON(0): clock: 97.8 MHz Image Size: 442 x 249 mm
    [ 25.542] (II) RADEON(0): h_active: 1600 h_sync: 1648 h_sync_end 1680 h_blank_end 1760 h_border: 0
    [ 25.542] (II) RADEON(0): v_active: 900 v_sync: 903 v_sync_end 908 v_blanking: 926 v_border: 0
    [ 25.542] (II) RADEON(0): Supported detailed timing:
    [ 25.542] (II) RADEON(0): clock: 85.5 MHz Image Size: 442 x 249 mm
    [ 25.542] (II) RADEON(0): h_active: 1360 h_sync: 1424 h_sync_end 1536 h_blank_end 1792 h_border: 0
    [ 25.542] (II) RADEON(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 795 v_border: 0
    [ 25.542] (II) RADEON(0): Ranges: V min: 55 V max: 76 Hz, H min: 30 H max: 82 kHz, PixClock max 155 MHz
    [ 25.542] (II) RADEON(0): Monitor name: NS-20EM50A13
    [ 25.542] (II) RADEON(0): EDID (in hex):
    [ 25.542] (II) RADEON(0): 00ffffffffffff00085920bb01010101
    [ 25.542] (II) RADEON(0): 00160103812c19782a3c25a554559f27
    [ 25.542] (II) RADEON(0): 0d5054bfef808180714f8140950f9500
    [ 25.542] (II) RADEON(0): 81c0010101012f2640a060841a303020
    [ 25.542] (II) RADEON(0): 3500baf91000001a662150b051001b30
    [ 25.542] (II) RADEON(0): 40703600baf91000001e000000fd0037
    [ 25.542] (II) RADEON(0): 4c1e520f000a202020202020000000fc
    [ 25.542] (II) RADEON(0): 004e532d3230454d35304131330a00a6
    [ 25.542] (II) RADEON(0): Printing probed modes for output HDMI-0
    [ 25.542] (II) RADEON(0): Modeline "1600x900"x60.0 97.75 1600 1648 1680 1760 900 903 908 926 +hsync -vsync (55.5 kHz eP)
    [ 25.542] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1440x900"x59.9 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1360x768"x60.0 85.50 1360 1424 1536 1792 768 771 777 795 +hsync +vsync (47.7 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1280x720"x60.0 74.44 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.7 kHz)
    [ 25.542] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 25.542] (II) RADEON(0): Output VGA-0 disconnected
    [ 25.542] (II) RADEON(0): Output HDMI-0 connected
    [ 25.542] (II) RADEON(0): Using exact sizes for initial modes
    [ 25.542] (II) RADEON(0): Output HDMI-0 using initial mode 1600x900
    [ 25.542] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 25.542] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:fa3b000
    [ 25.542] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 25.542] (==) RADEON(0): DPI set to (96, 96)
    [ 25.542] (II) Loading sub module "fb"
    [ 25.542] (II) LoadModule: "fb"
    [ 25.542] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 25.769] (II) Module fb: vendor="X.Org Foundation"
    [ 25.769] compiled for 1.17.1, module version = 1.0.0
    [ 25.769] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 25.769] (II) Loading sub module "ramdac"
    [ 25.769] (II) LoadModule: "ramdac"
    [ 25.769] (II) Module "ramdac" already built-in
    [ 25.769] (II) UnloadModule: "modesetting"
    [ 25.769] (II) Unloading modesetting
    [ 25.769] (II) UnloadModule: "fbdev"
    [ 25.769] (II) Unloading fbdev
    [ 25.769] (II) UnloadSubModule: "fbdevhw"
    [ 25.769] (II) Unloading fbdevhw
    [ 25.769] (II) UnloadModule: "vesa"
    [ 25.769] (II) Unloading vesa
    [ 25.769] (--) Depth 24 pixmap format is 32 bpp
    [ 25.818] (II) RADEON(0): [DRI2] Setup complete
    [ 25.818] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 25.818] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 25.818] (II) RADEON(0): Front buffer size: 5652K
    [ 25.818] (II) RADEON(0): VRAM usage limit set to 225496K
    [ 25.853] (==) RADEON(0): Backing store enabled
    [ 25.853] (II) RADEON(0): Direct rendering enabled
    [ 25.853] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 25.853] (II) EXA(0): Driver registered support for the following operations:
    [ 25.853] (II) Solid
    [ 25.853] (II) Copy
    [ 25.853] (II) Composite (RENDER acceleration)
    [ 25.853] (II) UploadToScreen
    [ 25.853] (II) DownloadFromScreen
    [ 25.853] (II) RADEON(0): Acceleration enabled
    [ 25.853] (==) RADEON(0): DPMS enabled
    [ 25.853] (==) RADEON(0): Silken mouse enabled
    [ 25.920] (II) RADEON(0): Set up textured video
    [ 25.920] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 25.920] (II) RADEON(0): [XvMC] Extension initialized.
    [ 25.920] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 26.100] (WW) RADEON(0): Option "PasswordFile" is not used
    [ 26.100] (--) RandR disabled
    [ 32.355] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 32.355] (II) AIGLX: enabled GLX_ARB_create_context
    [ 32.355] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 32.355] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 32.355] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 32.355] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 32.355] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 32.355] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 32.355] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 32.357] (II) AIGLX: Loaded and initialized r600
    [ 32.357] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 32.358] (II) RADEON(0): Setting screen physical size to 423 x 238
    [ 35.161] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 35.161] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 35.161] (**) Power Button: Applying InputClass "keyboard-layout"
    [ 35.161] (II) LoadModule: "evdev"
    [ 35.206] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 35.498] (II) Module evdev: vendor="X.Org Foundation"
    [ 35.498] compiled for 1.16.2, module version = 2.9.1
    [ 35.499] Module class: X.Org XInput Driver
    [ 35.499] ABI class: X.Org XInput driver, version 21.0
    [ 35.499] (II) Using input driver 'evdev' for 'Power Button'
    [ 35.499] (**) Power Button: always reports core events
    [ 35.499] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 35.499] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 35.499] (--) evdev: Power Button: Found keys
    [ 35.499] (II) evdev: Power Button: Configuring as keyboard
    [ 35.499] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event1"
    [ 35.499] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 35.499] (**) Option "xkb_rules" "evdev"
    [ 35.499] (**) Option "xkb_model" "pc104"
    [ 35.499] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 35.975] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 35.975] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 35.975] (**) Power Button: Applying InputClass "keyboard-layout"
    [ 35.975] (II) Using input driver 'evdev' for 'Power Button'
    [ 35.975] (**) Power Button: always reports core events
    [ 35.975] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 35.975] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 35.975] (--) evdev: Power Button: Found keys
    [ 35.975] (II) evdev: Power Button: Configuring as keyboard
    [ 35.975] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event0"
    [ 35.975] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 35.975] (**) Option "xkb_rules" "evdev"
    [ 35.975] (**) Option "xkb_model" "pc104"
    [ 35.976] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 35.977] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:1028 (/dev/input/event9)
    [ 35.977] (**) Logitech Unifying Device. Wireless PID:1028: Applying InputClass "evdev pointer catchall"
    [ 35.977] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:1028'
    [ 35.978] (**) Logitech Unifying Device. Wireless PID:1028: always reports core events
    [ 35.978] (**) evdev: Logitech Unifying Device. Wireless PID:1028: Device: "/dev/input/event9"
    [ 35.978] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Vendor 0x46d Product 0xc52b
    [ 35.978] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found 20 mouse buttons
    [ 35.978] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found scroll wheel(s)
    [ 35.978] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found relative axes
    [ 35.978] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found x and y relative axes
    [ 35.978] (II) evdev: Logitech Unifying Device. Wireless PID:1028: Configuring as mouse
    [ 35.978] (II) evdev: Logitech Unifying Device. Wireless PID:1028: Adding scrollwheel support
    [ 35.978] (**) evdev: Logitech Unifying Device. Wireless PID:1028: YAxisMapping: buttons 4 and 5
    [ 35.978] (**) evdev: Logitech Unifying Device. Wireless PID:1028: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 35.978] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0006/input/input12/event9"
    [ 35.978] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:1028" (type: MOUSE, id 8)
    [ 35.978] (II) evdev: Logitech Unifying Device. Wireless PID:1028: initialized for relative axes.
    [ 35.978] (**) Logitech Unifying Device. Wireless PID:1028: (accel) keeping acceleration scheme 1
    [ 35.978] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration profile 0
    [ 35.978] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration factor: 2.000
    [ 35.979] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration threshold: 4
    [ 35.979] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:1028 (/dev/input/mouse1)
    [ 35.979] (II) No input driver specified, ignoring this device.
    [ 35.979] (II) This device may have been added with another device file.
    [ 35.980] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/event7)
    [ 35.980] (**) Generic USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 35.980] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 35.980] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 35.980] (**) Generic USB Keyboard: always reports core events
    [ 35.980] (**) evdev: Generic USB Keyboard: Device: "/dev/input/event7"
    [ 35.980] (--) evdev: Generic USB Keyboard: Vendor 0x40b Product 0x2000
    [ 35.980] (--) evdev: Generic USB Keyboard: Found keys
    [ 35.980] (II) evdev: Generic USB Keyboard: Configuring as keyboard
    [ 35.980] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-3/3-3:1.0/0003:040B:2000.0004/input/input10/event7"
    [ 35.980] (II) XINPUT: Adding extended input device "Generic USB Keyboard" (type: KEYBOARD, id 9)
    [ 35.980] (**) Option "xkb_rules" "evdev"
    [ 35.980] (**) Option "xkb_model" "pc104"
    [ 35.980] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 35.981] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/event8)
    [ 35.981] (**) Generic USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 35.981] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 35.981] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 35.981] (**) Generic USB Keyboard: always reports core events
    [ 35.981] (**) evdev: Generic USB Keyboard: Device: "/dev/input/event8"
    [ 35.981] (--) evdev: Generic USB Keyboard: Vendor 0x40b Product 0x2000
    [ 35.981] (--) evdev: Generic USB Keyboard: Found scroll wheel(s)
    [ 35.981] (II) evdev: Generic USB Keyboard: Forcing buttons for scroll wheel(s)
    [ 35.981] (--) evdev: Generic USB Keyboard: Found relative axes
    [ 35.981] (--) evdev: Generic USB Keyboard: Found x and y relative axes
    [ 35.981] (--) evdev: Generic USB Keyboard: Found keys
    [ 35.981] (II) evdev: Generic USB Keyboard: Configuring as mouse
    [ 35.981] (II) evdev: Generic USB Keyboard: Configuring as keyboard
    [ 35.981] (II) evdev: Generic USB Keyboard: Adding scrollwheel support
    [ 35.981] (**) evdev: Generic USB Keyboard: YAxisMapping: buttons 4 and 5
    [ 35.981] (**) evdev: Generic USB Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 35.981] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-3/3-3:1.1/0003:040B:2000.0005/input/input11/event8"
    [ 35.981] (II) XINPUT: Adding extended input device "Generic USB Keyboard" (type: KEYBOARD, id 10)
    [ 35.981] (**) Option "xkb_rules" "evdev"
    [ 35.981] (**) Option "xkb_model" "pc104"
    [ 35.981] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 35.981] (II) evdev: Generic USB Keyboard: initialized for relative axes.
    [ 35.981] (**) Generic USB Keyboard: (accel) keeping acceleration scheme 1
    [ 35.982] (**) Generic USB Keyboard: (accel) acceleration profile 0
    [ 35.982] (**) Generic USB Keyboard: (accel) acceleration factor: 2.000
    [ 35.982] (**) Generic USB Keyboard: (accel) acceleration threshold: 4
    [ 35.982] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/mouse0)
    [ 35.982] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 35.982] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 35.982] (**) Generic USB Keyboard: always reports core events
    [ 35.982] (**) evdev: Generic USB Keyboard: Device: "/dev/input/mouse0"
    [ 35.982] (EE) evdev: Generic USB Keyboard: Unable to query fd: Inappropriate ioctl for device
    [ 36.060] (EE) PreInit returned 2 for "Generic USB Keyboard"
    [ 36.060] (II) UnloadModule: "evdev"
    [ 36.060] (II) config/udev: Adding input device HP Webcam HD-2200 (/dev/input/event10)
    [ 36.060] (**) HP Webcam HD-2200: Applying InputClass "evdev keyboard catchall"
    [ 36.060] (**) HP Webcam HD-2200: Applying InputClass "keyboard-layout"
    [ 36.060] (II) Using input driver 'evdev' for 'HP Webcam HD-2200'
    [ 36.060] (**) HP Webcam HD-2200: always reports core events
    [ 36.061] (**) evdev: HP Webcam HD-2200: Device: "/dev/input/event10"
    [ 36.061] (--) evdev: HP Webcam HD-2200: Vendor 0x3f0 Product 0xa707
    [ 36.061] (--) evdev: HP Webcam HD-2200: Found keys
    [ 36.061] (II) evdev: HP Webcam HD-2200: Configuring as keyboard
    [ 36.061] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.2/usb1/1-5/1-5:1.0/input/input13/event10"
    [ 36.061] (II) XINPUT: Adding extended input device "HP Webcam HD-2200" (type: KEYBOARD, id 11)
    [ 36.061] (**) Option "xkb_rules" "evdev"
    [ 36.061] (**) Option "xkb_model" "pc104"
    [ 36.061] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 36.062] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event6)
    [ 36.062] (II) No input driver specified, ignoring this device.
    [ 36.062] (II) This device may have been added with another device file.
    [ 36.063] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event5)
    [ 36.063] (II) No input driver specified, ignoring this device.
    [ 36.063] (II) This device may have been added with another device file.
    [ 36.063] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event4)
    [ 36.063] (II) No input driver specified, ignoring this device.
    [ 36.063] (II) This device may have been added with another device file.
    [ 36.064] (II) config/udev: Adding input device HDA ATI SB Line Out (/dev/input/event3)
    [ 36.064] (II) No input driver specified, ignoring this device.
    [ 36.064] (II) This device may have been added with another device file.
    [ 36.064] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event2)
    [ 36.064] (II) No input driver specified, ignoring this device.
    [ 36.064] (II) This device may have been added with another device file.
    [ 53.210] (II) RADEON(0): EDID vendor "BBY", prod id 47904
    [ 53.210] (II) RADEON(0): Using EDID range info for horizontal sync
    [ 53.210] (II) RADEON(0): Using EDID range info for vertical refresh
    [ 53.210] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 53.210] (II) RADEON(0): Modeline "1600x900"x0.0 97.75 1600 1648 1680 1760 900 903 908 926 +hsync -vsync (55.5 kHz eP)
    [ 53.210] (II) RADEON(0): Modeline "1360x768"x0.0 85.50 1360 1424 1536 1792 768 771 777 795 +hsync +vsync (47.7 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.8 kHz e)
    [ 62.870] (II) AIGLX: Suspending AIGLX clients for VT switch
    Last edited by mavo (2015-03-17 13:08:53)

    alphaniner wrote:The preferred way to test a 'default session' is with a clean non-root user. Logging in as root can hide other issues.
    Ok i get that. Here is xorg log and journalctl -b log. I rebooted tried to login through lxdm and got the cursor and blank screen. I then tty3 and startx and launched into openbox to post these results. Still cannot get into xfce as normal user. Thoughts???
    ~.local/share/xorg/Xorg.1.log
    [ 84.848]
    X.Org X Server 1.17.1
    Release Date: 2015-02-10
    [ 84.848] X Protocol Version 11, Revision 0
    [ 84.848] Build Operating System: Linux 3.18.6-1-ARCH x86_64
    [ 84.848] Current Operating System: Linux arch-server 3.14.35-1-lts #1 SMP Sat Mar 7 19:24:12 CET 2015 x86_64
    [ 84.848] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=d6352b14-5ca7-476a-9f43-2bc25278effd rw quiet
    [ 84.848] Build Date: 14 March 2015 06:45:50PM
    [ 84.849]
    [ 84.849] Current version of pixman: 0.32.6
    [ 84.849] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 84.849] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 84.850] (==) Log file: "/home/molmedo1/.local/share/xorg/Xorg.1.log", Time: Wed Mar 18 10:06:18 2015
    [ 84.850] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 84.850] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 84.851] (==) No Layout section. Using the first Screen section.
    [ 84.851] (**) |-->Screen "Default Screen" (0)
    [ 84.851] (**) | |-->Monitor "<default monitor>"
    [ 84.851] (==) No monitor specified for screen "Default Screen".
    Using a default monitor configuration.
    [ 84.851] (==) Automatically adding devices
    [ 84.851] (==) Automatically enabling devices
    [ 84.851] (==) Automatically adding GPU devices
    [ 84.851] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 84.851] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 84.851] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 84.851] (II) Loader magic: 0x815d80
    [ 84.851] (II) Module ABI versions:
    [ 84.851] X.Org ANSI C Emulation: 0.4
    [ 84.851] X.Org Video Driver: 19.0
    [ 84.851] X.Org XInput driver : 21.0
    [ 84.851] X.Org Server Extension : 9.0
    [ 84.856] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2
    [ 84.856] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 84.857] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 84.859] (--) PCI:*(0:1:5:0) 1002:9616:1462:7641 rev 0, Mem @ 0xd0000000/268435456, 0xfebe0000/65536, 0xfea00000/1048576, I/O @ 0x0000d000/256
    [ 84.859] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 84.859] (II) "glx" will be loaded by default.
    [ 84.859] (II) LoadModule: "vnc"
    [ 84.860] (II) Loading /usr/lib/xorg/modules/extensions/libvnc.so
    [ 84.868] (II) Module vnc: vendor="Constantin Kaplinsky"
    [ 84.868] compiled for 1.17.1, module version = 1.0.0
    [ 84.868] Module class: X.Org Server Extension
    [ 84.868] ABI class: X.Org Server Extension, version 9.0
    [ 84.868] (II) LoadModule: "glx"
    [ 84.868] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 84.870] (II) Module glx: vendor="X.Org Foundation"
    [ 84.870] compiled for 1.17.1, module version = 1.0.0
    [ 84.870] ABI class: X.Org Server Extension, version 9.0
    [ 84.870] (==) AIGLX enabled
    [ 84.870] (==) Matched ati as autoconfigured driver 0
    [ 84.870] (==) Matched ati as autoconfigured driver 1
    [ 84.870] (==) Matched modesetting as autoconfigured driver 2
    [ 84.870] (==) Matched fbdev as autoconfigured driver 3
    [ 84.870] (==) Matched vesa as autoconfigured driver 4
    [ 84.870] (==) Assigned the driver to the xf86ConfigLayout
    [ 84.870] (II) LoadModule: "ati"
    [ 84.871] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 84.871] (II) Module ati: vendor="X.Org Foundation"
    [ 84.871] compiled for 1.17.0, module version = 7.5.0
    [ 84.871] Module class: X.Org Video Driver
    [ 84.871] ABI class: X.Org Video Driver, version 19.0
    [ 84.871] (II) LoadModule: "radeon"
    [ 84.871] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 84.871] (II) Module radeon: vendor="X.Org Foundation"
    [ 84.871] compiled for 1.17.0, module version = 7.5.0
    [ 84.871] Module class: X.Org Video Driver
    [ 84.871] ABI class: X.Org Video Driver, version 19.0
    [ 84.871] (II) LoadModule: "modesetting"
    [ 84.871] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [ 84.871] (II) Module modesetting: vendor="X.Org Foundation"
    [ 84.871] compiled for 1.17.1, module version = 1.17.1
    [ 84.871] Module class: X.Org Video Driver
    [ 84.871] ABI class: X.Org Video Driver, version 19.0
    [ 84.871] (II) LoadModule: "fbdev"
    [ 84.871] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 84.871] (II) Module fbdev: vendor="X.Org Foundation"
    [ 84.871] compiled for 1.17.0, module version = 0.4.4
    [ 84.871] Module class: X.Org Video Driver
    [ 84.871] ABI class: X.Org Video Driver, version 19.0
    [ 84.871] (II) LoadModule: "vesa"
    [ 84.871] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 84.871] (II) Module vesa: vendor="X.Org Foundation"
    [ 84.871] compiled for 1.17.0, module version = 2.3.2
    [ 84.871] Module class: X.Org Video Driver
    [ 84.871] ABI class: X.Org Video Driver, version 19.0
    [ 84.871] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 84.876] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [ 84.876] (II) FBDEV: driver for framebuffer: fbdev
    [ 84.876] (II) VESA: driver for VESA chipsets: vesa
    [ 84.876] (++) using VT number 3
    [ 84.876] (--) controlling tty is VT number 3, auto-enabling KeepTty
    [ 84.876] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
    [ 84.876] (II) [KMS] Kernel modesetting enabled.
    [ 84.876] (WW) Falling back to old probe method for modesetting
    [ 84.876] (WW) Falling back to old probe method for fbdev
    [ 84.876] (II) Loading sub module "fbdevhw"
    [ 84.876] (II) LoadModule: "fbdevhw"
    [ 84.876] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 84.876] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 84.876] compiled for 1.17.1, module version = 0.0.2
    [ 84.876] ABI class: X.Org Video Driver, version 19.0
    [ 84.876] (WW) Falling back to old probe method for vesa
    [ 84.876] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 84.876] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen" for depth/fbbpp 24/32
    [ 84.876] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 84.876] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 84.876] (==) RADEON(0): Default visual is TrueColor
    [ 84.876] (==) RADEON(0): RGB weight 888
    [ 84.876] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 84.876] (--) RADEON(0): Chipset: "ATI Radeon 3000 Graphics" (ChipID = 0x9616)
    [ 84.876] (II) Loading sub module "dri2"
    [ 84.876] (II) LoadModule: "dri2"
    [ 84.876] (II) Module "dri2" already built-in
    [ 84.876] (II) Loading sub module "exa"
    [ 84.876] (II) LoadModule: "exa"
    [ 84.877] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 84.877] (II) Module exa: vendor="X.Org Foundation"
    [ 84.877] compiled for 1.17.1, module version = 2.6.0
    [ 84.877] ABI class: X.Org Video Driver, version 19.0
    [ 84.877] (II) RADEON(0): KMS Color Tiling: enabled
    [ 84.877] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 84.877] (II) RADEON(0): KMS Pageflipping: enabled
    [ 84.877] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 84.920] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 84.951] (II) RADEON(0): Output HDMI-0 has no monitor section
    [ 84.990] (II) RADEON(0): EDID for output VGA-0
    [ 85.021] (II) RADEON(0): EDID for output HDMI-0
    [ 85.021] (II) RADEON(0): Manufacturer: BBY Model: bb20 Serial#: 16843009
    [ 85.021] (II) RADEON(0): Year: 2012 Week: 0
    [ 85.021] (II) RADEON(0): EDID Version: 1.3
    [ 85.021] (II) RADEON(0): Digital Display Input
    [ 85.021] (II) RADEON(0): DFP 1.x compatible TMDS
    [ 85.021] (II) RADEON(0): Max Image Size [cm]: horiz.: 44 vert.: 25
    [ 85.021] (II) RADEON(0): Gamma: 2.20
    [ 85.021] (II) RADEON(0): DPMS capabilities: Off
    [ 85.021] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 85.021] (II) RADEON(0): First detailed timing is preferred mode
    [ 85.021] (II) RADEON(0): redX: 0.645 redY: 0.331 greenX: 0.335 greenY: 0.621
    [ 85.021] (II) RADEON(0): blueX: 0.152 blueY: 0.053 whiteX: 0.313 whiteY: 0.329
    [ 85.021] (II) RADEON(0): Supported established timings:
    [ 85.021] (II) RADEON(0): 720x400@70Hz
    [ 85.021] (II) RADEON(0): 640x480@60Hz
    [ 85.021] (II) RADEON(0): 640x480@67Hz
    [ 85.021] (II) RADEON(0): 640x480@72Hz
    [ 85.021] (II) RADEON(0): 640x480@75Hz
    [ 85.021] (II) RADEON(0): 800x600@56Hz
    [ 85.021] (II) RADEON(0): 800x600@60Hz
    [ 85.021] (II) RADEON(0): 800x600@72Hz
    [ 85.021] (II) RADEON(0): 800x600@75Hz
    [ 85.021] (II) RADEON(0): 832x624@75Hz
    [ 85.021] (II) RADEON(0): 1024x768@60Hz
    [ 85.021] (II) RADEON(0): 1024x768@70Hz
    [ 85.021] (II) RADEON(0): 1024x768@75Hz
    [ 85.021] (II) RADEON(0): 1280x1024@75Hz
    [ 85.021] (II) RADEON(0): 1152x864@75Hz
    [ 85.021] (II) RADEON(0): Manufacturer's mask: 0
    [ 85.021] (II) RADEON(0): Supported standard timings:
    [ 85.021] (II) RADEON(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 85.021] (II) RADEON(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 85.021] (II) RADEON(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 85.021] (II) RADEON(0): #3: hsize: 1440 vsize 900 refresh: 75 vid: 3989
    [ 85.021] (II) RADEON(0): #4: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 85.021] (II) RADEON(0): #5: hsize: 1280 vsize 720 refresh: 60 vid: 49281
    [ 85.021] (II) RADEON(0): Supported detailed timing:
    [ 85.021] (II) RADEON(0): clock: 97.8 MHz Image Size: 442 x 249 mm
    [ 85.021] (II) RADEON(0): h_active: 1600 h_sync: 1648 h_sync_end 1680 h_blank_end 1760 h_border: 0
    [ 85.021] (II) RADEON(0): v_active: 900 v_sync: 903 v_sync_end 908 v_blanking: 926 v_border: 0
    [ 85.021] (II) RADEON(0): Supported detailed timing:
    [ 85.021] (II) RADEON(0): clock: 85.5 MHz Image Size: 442 x 249 mm
    [ 85.021] (II) RADEON(0): h_active: 1360 h_sync: 1424 h_sync_end 1536 h_blank_end 1792 h_border: 0
    [ 85.021] (II) RADEON(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 795 v_border: 0
    [ 85.021] (II) RADEON(0): Ranges: V min: 55 V max: 76 Hz, H min: 30 H max: 82 kHz, PixClock max 155 MHz
    [ 85.021] (II) RADEON(0): Monitor name: NS-20EM50A13
    [ 85.021] (II) RADEON(0): EDID (in hex):
    [ 85.021] (II) RADEON(0): 00ffffffffffff00085920bb01010101
    [ 85.021] (II) RADEON(0): 00160103812c19782a3c25a554559f27
    [ 85.021] (II) RADEON(0): 0d5054bfef808180714f8140950f9500
    [ 85.021] (II) RADEON(0): 81c0010101012f2640a060841a303020
    [ 85.021] (II) RADEON(0): 3500baf91000001a662150b051001b30
    [ 85.021] (II) RADEON(0): 40703600baf91000001e000000fd0037
    [ 85.022] (II) RADEON(0): 4c1e520f000a202020202020000000fc
    [ 85.022] (II) RADEON(0): 004e532d3230454d35304131330a00a6
    [ 85.022] (II) RADEON(0): Printing probed modes for output HDMI-0
    [ 85.022] (II) RADEON(0): Modeline "1600x900"x60.0 97.75 1600 1648 1680 1760 900 903 908 926 +hsync -vsync (55.5 kHz eP)
    [ 85.022] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1440x900"x59.9 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1360x768"x60.0 85.50 1360 1424 1536 1792 768 771 777 795 +hsync +vsync (47.7 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1280x720"x60.0 74.44 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.7 kHz)
    [ 85.022] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 85.022] (II) RADEON(0): Output VGA-0 disconnected
    [ 85.022] (II) RADEON(0): Output HDMI-0 connected
    [ 85.022] (II) RADEON(0): Using exact sizes for initial modes
    [ 85.022] (II) RADEON(0): Output HDMI-0 using initial mode 1600x900
    [ 85.022] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 85.022] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:fa3b000
    [ 85.022] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 85.022] (==) RADEON(0): DPI set to (96, 96)
    [ 85.022] (II) Loading sub module "fb"
    [ 85.022] (II) LoadModule: "fb"
    [ 85.022] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 85.022] (II) Module fb: vendor="X.Org Foundation"
    [ 85.022] compiled for 1.17.1, module version = 1.0.0
    [ 85.022] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 85.022] (II) Loading sub module "ramdac"
    [ 85.022] (II) LoadModule: "ramdac"
    [ 85.022] (II) Module "ramdac" already built-in
    [ 85.022] (II) UnloadModule: "modesetting"
    [ 85.022] (II) Unloading modesetting
    [ 85.022] (II) UnloadModule: "fbdev"
    [ 85.022] (II) Unloading fbdev
    [ 85.022] (II) UnloadSubModule: "fbdevhw"
    [ 85.022] (II) Unloading fbdevhw
    [ 85.022] (II) UnloadModule: "vesa"
    [ 85.022] (II) Unloading vesa
    [ 85.022] (--) Depth 24 pixmap format is 32 bpp
    [ 85.023] (II) RADEON(0): [DRI2] Setup complete
    [ 85.023] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 85.023] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 85.023] (II) RADEON(0): Front buffer size: 5652K
    [ 85.023] (II) RADEON(0): VRAM usage limit set to 225496K
    [ 85.023] (==) RADEON(0): Backing store enabled
    [ 85.023] (II) RADEON(0): Direct rendering enabled
    [ 85.023] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 85.023] (II) EXA(0): Driver registered support for the following operations:
    [ 85.023] (II) Solid
    [ 85.023] (II) Copy
    [ 85.023] (II) Composite (RENDER acceleration)
    [ 85.023] (II) UploadToScreen
    [ 85.023] (II) DownloadFromScreen
    [ 85.023] (II) RADEON(0): Acceleration enabled
    [ 85.023] (==) RADEON(0): DPMS enabled
    [ 85.023] (==) RADEON(0): Silken mouse enabled
    [ 85.023] (II) RADEON(0): Set up textured video
    [ 85.023] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 85.023] (II) RADEON(0): [XvMC] Extension initialized.
    [ 85.023] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 85.023] (WW) RADEON(0): Option "PasswordFile" is not used
    [ 85.023] (--) RandR disabled
    [ 85.047] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 85.047] (II) AIGLX: enabled GLX_ARB_create_context
    [ 85.047] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 85.047] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 85.047] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 85.047] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 85.047] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 85.047] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 85.047] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 85.048] (II) AIGLX: Loaded and initialized r600
    [ 85.048] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 85.048] (II) RADEON(0): Setting screen physical size to 423 x 238
    [ 85.088] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 85.088] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 85.088] (**) Power Button: Applying InputClass "keyboard-layout"
    [ 85.088] (II) LoadModule: "evdev"
    [ 85.088] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 85.089] (II) Module evdev: vendor="X.Org Foundation"
    [ 85.089] compiled for 1.16.2, module version = 2.9.1
    [ 85.089] Module class: X.Org XInput Driver
    [ 85.089] ABI class: X.Org XInput driver, version 21.0
    [ 85.089] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 13 paused 0
    [ 85.090] (II) Using input driver 'evdev' for 'Power Button'
    [ 85.090] (**) Power Button: always reports core events
    [ 85.090] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 85.090] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 85.090] (--) evdev: Power Button: Found keys
    [ 85.090] (II) evdev: Power Button: Configuring as keyboard
    [ 85.090] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event1"
    [ 85.090] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 85.090] (**) Option "xkb_rules" "evdev"
    [ 85.090] (**) Option "xkb_model" "pc104"
    [ 85.090] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 85.123] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 85.123] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 85.123] (**) Power Button: Applying InputClass "keyboard-layout"
    [ 85.124] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 14 paused 0
    [ 85.124] (II) Using input driver 'evdev' for 'Power Button'
    [ 85.124] (**) Power Button: always reports core events
    [ 85.124] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 85.124] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 85.124] (--) evdev: Power Button: Found keys
    [ 85.124] (II) evdev: Power Button: Configuring as keyboard
    [ 85.124] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event0"
    [ 85.124] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 85.124] (**) Option "xkb_rules" "evdev"
    [ 85.124] (**) Option "xkb_model" "pc104"
    [ 85.124] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 85.125] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:1028 (/dev/input/event9)
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: Applying InputClass "evdev pointer catchall"
    [ 85.125] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 15 paused 0
    [ 85.125] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:1028'
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: always reports core events
    [ 85.125] (**) evdev: Logitech Unifying Device. Wireless PID:1028: Device: "/dev/input/event9"
    [ 85.125] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Vendor 0x46d Product 0xc52b
    [ 85.125] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found 20 mouse buttons
    [ 85.125] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found scroll wheel(s)
    [ 85.125] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found relative axes
    [ 85.125] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found x and y relative axes
    [ 85.125] (II) evdev: Logitech Unifying Device. Wireless PID:1028: Configuring as mouse
    [ 85.125] (II) evdev: Logitech Unifying Device. Wireless PID:1028: Adding scrollwheel support
    [ 85.125] (**) evdev: Logitech Unifying Device. Wireless PID:1028: YAxisMapping: buttons 4 and 5
    [ 85.125] (**) evdev: Logitech Unifying Device. Wireless PID:1028: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 85.125] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb1/1-2/1-2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0006/input/input12/event9"
    [ 85.125] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:1028" (type: MOUSE, id 8)
    [ 85.125] (II) evdev: Logitech Unifying Device. Wireless PID:1028: initialized for relative axes.
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: (accel) keeping acceleration scheme 1
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration profile 0
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration factor: 2.000
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration threshold: 4
    [ 85.126] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:1028 (/dev/input/mouse1)
    [ 85.126] (II) No input driver specified, ignoring this device.
    [ 85.126] (II) This device may have been added with another device file.
    [ 85.126] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/event7)
    [ 85.126] (**) Generic USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 85.126] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 85.126] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 16 paused 0
    [ 85.126] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 85.126] (**) Generic USB Keyboard: always reports core events
    [ 85.126] (**) evdev: Generic USB Keyboard: Device: "/dev/input/event7"
    [ 85.126] (--) evdev: Generic USB Keyboard: Vendor 0x40b Product 0x2000
    [ 85.126] (--) evdev: Generic USB Keyboard: Found keys
    [ 85.126] (II) evdev: Generic USB Keyboard: Configuring as keyboard
    [ 85.126] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb1/1-3/1-3:1.0/0003:040B:2000.0004/input/input10/event7"
    [ 85.126] (II) XINPUT: Adding extended input device "Generic USB Keyboard" (type: KEYBOARD, id 9)
    [ 85.126] (**) Option "xkb_rules" "evdev"
    [ 85.126] (**) Option "xkb_model" "pc104"
    [ 85.126] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 85.127] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/event8)
    [ 85.127] (**) Generic USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 85.127] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 85.127] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 17 paused 0
    [ 85.127] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 85.127] (**) Generic USB Keyboard: always reports core events
    [ 85.127] (**) evdev: Generic USB Keyboard: Device: "/dev/input/event8"
    [ 85.127] (--) evdev: Generic USB Keyboard: Vendor 0x40b Product 0x2000
    [ 85.127] (--) evdev: Generic USB Keyboard: Found scroll wheel(s)
    [ 85.127] (II) evdev: Generic USB Keyboard: Forcing buttons for scroll wheel(s)
    [ 85.127] (--) evdev: Generic USB Keyboard: Found relative axes
    [ 85.127] (--) evdev: Generic USB Keyboard: Found x and y relative axes
    [ 85.127] (--) evdev: Generic USB Keyboard: Found keys
    [ 85.127] (II) evdev: Generic USB Keyboard: Configuring as mouse
    [ 85.127] (II) evdev: Generic USB Keyboard: Configuring as keyboard
    [ 85.127] (II) evdev: Generic USB Keyboard: Adding scrollwheel support
    [ 85.127] (**) evdev: Generic USB Keyboard: YAxisMapping: buttons 4 and 5
    [ 85.127] (**) evdev: Generic USB Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 85.127] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb1/1-3/1-3:1.1/0003:040B:2000.0005/input/input11/event8"
    [ 85.127] (II) XINPUT: Adding extended input device "Generic USB Keyboard" (type: KEYBOARD, id 10)
    [ 85.127] (**) Option "xkb_rules" "evdev"
    [ 85.127] (**) Option "xkb_model" "pc104"
    [ 85.127] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 85.128] (II) evdev: Generic USB Keyboard: initialized for relative axes.
    [ 85.128] (**) Generic USB Keyboard: (accel) keeping acceleration scheme 1
    [ 85.128] (**) Generic USB Keyboard: (accel) acceleration profile 0
    [ 85.128] (**) Generic USB Keyboard: (accel) acceleration factor: 2.000
    [ 85.128] (**) Generic USB Keyboard: (accel) acceleration threshold: 4
    [ 85.128] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/mouse0)
    [ 85.128] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 85.128] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 85.128] (**) Generic USB Keyboard: always reports core events
    [ 85.128] (**) evdev: Generic USB Keyboard: Device: "/dev/input/mouse0"
    [ 85.128] (EE) evdev: Generic USB Keyboard: Unable to query fd: Inappropriate ioctl for device
    [ 85.220] (EE) PreInit returned 2 for "Generic USB Keyboard"
    [ 85.220] (II) UnloadModule: "evdev"
    [ 85.220] (II) config/udev: Adding input device HP Webcam HD-2200 (/dev/input/event10)
    [ 85.220] (**) HP Webcam HD-2200: Applying InputClass "evdev keyboard catchall"
    [ 85.220] (**) HP Webcam HD-2200: Applying InputClass "keyboard-layout"
    [ 85.221] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 18 paused 0
    [ 85.221] (II) Using input driver 'evdev' for 'HP Webcam HD-2200'
    [ 85.221] (**) HP Webcam HD-2200: always reports core events
    [ 85.221] (**) evdev: HP Webcam HD-2200: Device: "/dev/input/event10"
    [ 85.221] (--) evdev: HP Webcam HD-2200: Vendor 0x3f0 Product 0xa707
    [ 85.221] (--) evdev: HP Webcam HD-2200: Found keys
    [ 85.221] (II) evdev: HP Webcam HD-2200: Configuring as keyboard
    [ 85.221] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.2/usb6/6-5/6-5:1.0/input/input13/event10"
    [ 85.222] (II) XINPUT: Adding extended input device "HP Webcam HD-2200" (type: KEYBOARD, id 11)
    [ 85.222] (**) Option "xkb_rules" "evdev"
    [ 85.222] (**) Option "xkb_model" "pc104"
    [ 85.222] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 85.223] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event6)
    [ 85.223] (II) No input driver specified, ignoring this device.
    [ 85.223] (II) This device may have been added with another device file.
    [ 85.223] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event5)
    [ 85.223] (II) No input driver specified, ignoring this device.
    [ 85.223] (II) This device may have been added with another device file.
    [ 85.224] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event4)
    [ 85.224] (II) No input driver specified, ignoring this device.
    [ 85.224] (II) This device may have been added with another device file.
    [ 85.224] (II) config/udev: Adding input device HDA ATI SB Line Out (/dev/input/event3)
    [ 85.225] (II) No input driver specified, ignoring this device.
    [ 85.225] (II) This device may have been added with another device file.
    [ 85.225] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event2)
    [ 85.225] (II) No input driver specified, ignoring this device.
    [ 85.225] (II) This device may have been added with another device file.
    journalctl -b
    Mar 18 10:05:02 arch-server kernel: 00000-9FFFF write-back
    Mar 18 10:05:02 arch-server kernel: A0000-EFFFF uncachable
    Mar 18 10:05:02 arch-server kernel: F0000-FFFFF write-protect
    Mar 18 10:05:02 arch-server kernel: MTRR variable ranges enabled:
    Mar 18 10:05:02 arch-server kernel: 0 base 000000000000 mask FFFF80000000 write-back
    Mar 18 10:05:02 arch-server kernel: 1 base 000080000000 mask FFFFC0000000 write-back
    Mar 18 10:05:02 arch-server kernel: 2 base 0000C0000000 mask FFFFF0000000 write-back
    Mar 18 10:05:02 arch-server kernel: 3 disabled
    Mar 18 10:05:02 arch-server kernel: 4 disabled
    Mar 18 10:05:02 arch-server kernel: 5 disabled
    Mar 18 10:05:02 arch-server kernel: 6 disabled
    Mar 18 10:05:02 arch-server kernel: 7 disabled
    Mar 18 10:05:02 arch-server kernel: TOM2: 0000000430000000 aka 17152M
    Mar 18 10:05:03 arch-server kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Mar 18 10:05:03 arch-server kernel: e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
    Mar 18 10:05:03 arch-server kernel: e820: last_pfn = 0xcff90 max_arch_pfn = 0x400000000
    Mar 18 10:05:03 arch-server kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
    Mar 18 10:05:03 arch-server kernel: Scanning 1 areas for low memory corruption
    Mar 18 10:05:03 arch-server kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Mar 18 10:05:03 arch-server kernel: Using GB pages for direct mapping
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x00000000-0x000fffff] page 4k
    Mar 18 10:05:03 arch-server kernel: BRK [0x01b3e000, 0x01b3efff] PGTABLE
    Mar 18 10:05:03 arch-server kernel: BRK [0x01b3f000, 0x01b3ffff] PGTABLE
    Mar 18 10:05:03 arch-server kernel: BRK [0x01b40000, 0x01b40fff] PGTABLE
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x41fe00000-0x41fffffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x41fe00000-0x41fffffff] page 2M
    Mar 18 10:05:03 arch-server kernel: BRK [0x01b41000, 0x01b41fff] PGTABLE
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x41c000000-0x41fdfffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x41c000000-0x41fdfffff] page 2M
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x400000000-0x41bffffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x400000000-0x41bffffff] page 2M
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x00100000-0xcff8ffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x00100000-0x001fffff] page 4k
    Mar 18 10:05:03 arch-server kernel: [mem 0x00200000-0x3fffffff] page 2M
    Mar 18 10:05:03 arch-server kernel: [mem 0x40000000-0xbfffffff] page 1G
    Mar 18 10:05:03 arch-server kernel: [mem 0xc0000000-0xcfdfffff] page 2M
    Mar 18 10:05:03 arch-server kernel: [mem 0xcfe00000-0xcff8ffff] page 4k
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x100000000-0x3ffffffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x100000000-0x3ffffffff] page 1G
    Mar 18 10:05:03 arch-server kernel: RAMDISK: [mem 0x3784e000-0x37c1efff]
    Mar 18 10:05:03 arch-server kernel: ACPI: RSDP 00000000000f8d00 000014 (v00 ACPIAM)
    Mar 18 10:05:03 arch-server kernel: ACPI: RSDT 00000000cff90000 00003C (v01 7641MS A7641100 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI: FACP 00000000cff90200 000084 (v01 7641MS A7641100 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20131218/
    Mar 18 10:05:03 arch-server kernel: ACPI: DSDT 00000000cff90660 009DF0 (v01 A7641 A7641100 00000100 INTL 20051117)
    Mar 18 10:05:03 arch-server kernel: ACPI: FACS 00000000cff9e000 000040
    Mar 18 10:05:03 arch-server kernel: ACPI: APIC 00000000cff90390 00010C (v01 7641MS A7641100 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI: MCFG 00000000cff904a0 00003C (v01 7641MS OEMMCFG 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI: OEMB 00000000cff9e040 000072 (v01 7641MS A7641100 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI: HPET 00000000cff9a660 000038 (v01 7641MS OEMHPET 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI: SSDT 00000000cff9a6a0 000D40 (v01 A M I POWERNOW 00000001 AMD 00000001)
    Mar 18 10:05:03 arch-server kernel: ACPI: Local APIC address 0xfee00000
    Mar 18 10:05:03 arch-server kernel: No NUMA configuration found
    Mar 18 10:05:03 arch-server kernel: Faking a node at [mem 0x0000000000000000-0x000000041fffffff]
    Mar 18 10:05:03 arch-server kernel: Initmem setup node 0 [mem 0x00000000-0x41fffffff]
    Mar 18 10:05:03 arch-server kernel: NODE_DATA [mem 0x41fff9000-0x41fffdfff]
    Mar 18 10:05:03 arch-server kernel: [ffffea0000000000-ffffea00107fffff] PMD -> [ffff88040fa00000-ffff88041f5fffff] on node 0
    Mar 18 10:05:03 arch-server kernel: Zone ranges:
    Mar 18 10:05:03 arch-server kernel: DMA [mem 0x00001000-0x00ffffff]
    Mar 18 10:05:03 arch-server kernel: DMA32 [mem 0x01000000-0xffffffff]
    Mar 18 10:05:03 arch-server kernel: Normal [mem 0x100000000-0x41fffffff]
    Mar 18 10:05:03 arch-server kernel: Movable zone start for each node
    Mar 18 10:05:03 arch-server kernel: Early memory node ranges
    Mar 18 10:05:03 arch-server kernel: node 0: [mem 0x00001000-0x0009efff]
    Mar 18 10:05:03 arch-server kernel: node 0: [mem 0x00100000-0xcff8ffff]
    Mar 18 10:05:03 arch-server kernel: node 0: [mem 0x100000000-0x41fffffff]
    Mar 18 10:05:03 arch-server kernel: On node 0 totalpages: 4128558
    Mar 18 10:05:03 arch-server kernel: DMA zone: 64 pages used for memmap
    Mar 18 10:05:03 arch-server kernel: DMA zone: 21 pages reserved
    Mar 18 10:05:03 arch-server kernel: DMA zone: 3998 pages, LIFO batch:0
    Mar 18 10:05:03 arch-server kernel: DMA32 zone: 13247 pages used for memmap
    Mar 18 10:05:03 arch-server kernel: DMA32 zone: 847760 pages, LIFO batch:31
    Mar 18 10:05:03 arch-server kernel: Normal zone: 51200 pages used for memmap
    Mar 18 10:05:03 arch-server kernel: Normal zone: 3276800 pages, LIFO batch:31
    Mar 18 10:05:03 arch-server kernel: ACPI: PM-Timer IO Port: 0x808
    Mar 18 10:05:03 arch-server kernel: ACPI: Local APIC address 0xfee00000
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x11] enabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x13] enabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x86] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x87] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x09] lapic_id[0x88] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x89] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x8a] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x8b] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x8c] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x8d] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x8e] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x10] lapic_id[0x8f] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x11] lapic_id[0x90] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x12] lapic_id[0x91] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x13] lapic_id[0x92] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x14] lapic_id[0x93] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x15] lapic_id[0x94] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x16] lapic_id[0x95] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x17] lapic_id[0x96] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x18] lapic_id[0x97] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: IOAPIC (id[0x14] address[0xfec00000] gsi_base[0])
    Mar 18 10:05:03 arch-server kernel: IOAPIC[0]: apic_id 20, version 33, address 0xfec00000, GSI 0-23
    Mar 18 10:05:03 arch-server kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Mar 18 10:05:03 arch-server kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Mar 18 10:05:03 arch-server kernel: ACPI: IRQ0 used by override.
    Mar 18 10:05:03 arch-server kernel: ACPI: IRQ2 used by override.
    Mar 18 10:05:03 arch-server kernel: ACPI: IRQ9 used by override.
    Mar 18 10:05:03 arch-server kernel: Using ACPI (MADT) for SMP configuration information
    Mar 18 10:05:03 arch-server kernel: ACPI: HPET id: 0x8300 base: 0xfed00000
    Mar 18 10:05:03 arch-server kernel: smpboot: Allowing 24 CPUs, 20 hotplug CPUs
    Mar 18 10:05:03 arch-server kernel: nr_irqs_gsi: 40
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000e3fff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0x000e4000-0x000fffff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xcff90000-0xcff9dfff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xcff9e000-0xcffdffff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xcffe0000-0xcfffffff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xd0000000-0xffdfffff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
    Mar 18 10:05:03 arch-server kernel: e820: [mem 0xd0000000-0xffdfffff] available for PCI devices
    Mar 18 10:05:03 arch-server kernel: Booting paravirtualized kernel on bare hardware
    Mar 18 10:05:03 arch-server kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:24 nr_node_ids:1
    Mar 18 10:05:03 arch-server kernel: PERCPU: Embedded 27 pages/cpu @ffff88040f600000 s81664 r8192 d20736 u131072
    Mar 18 10:05:03 arch-server kernel: pcpu-alloc: s81664 r8192 d20736 u131072 alloc=1*2097152
    Mar 18 10:05:03 arch-server kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
    Mar 18 10:05:03 arch-server kernel: pcpu-alloc: [0] 16 17 18 19 20 21 22 23 -- -- -- -- -- -- -- --
    Mar 18 10:05:03 arch-server kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4064026
    Mar 18 10:05:03 arch-server kernel: Policy zone: Normal
    Mar 18 10:05:03 arch-server kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=d6352b14-5ca7-476a-9f43-2bc25278effd rw quiet
    Mar 18 10:05:03 arch-server kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Mar 18 10:05:03 arch-server kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
    Mar 18 10:05:03 arch-server kernel: Checking aperture...
    Mar 18 10:05:03 arch-server kernel: No AGP bridge found
    Mar 18 10:05:03 arch-server kernel: Node 0: aperture @ 0 size 32 MB
    Mar 18 10:05:03 arch-server kernel: Your BIOS doesn't leave a aperture memory hole
    Mar 18 10:05:03 arch-server kernel: Please enable the IOMMU option in the BIOS setup
    Mar 18 10:05:03 arch-server kernel: This costs you 64 MB of RAM
    Mar 18 10:05:03 arch-server kernel: Mapping aperture over 65536 KB of RAM @ c4000000
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xc4000000-0xc7ffffff]
    Mar 18 10:05:03 arch-server kernel: Memory: 16106196K/16514232K available (5183K kernel code, 859K rwdata, 1640K rodata, 1128K init, 1300K bss, 408036K reserv
    Mar 18 10:05:03 arch-server kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=1
    Mar 18 10:05:03 arch-server kernel: Hierarchical RCU implementation.
    Mar 18 10:05:03 arch-server kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=24.
    Mar 18 10:05:03 arch-server kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24
    Mar 18 10:05:03 arch-server kernel: NR_IRQS:8448 nr_irqs:872 16
    Mar 18 10:05:03 arch-server kernel: spurious 8259A interrupt: IRQ7.
    Mar 18 10:05:03 arch-server kernel: Console: colour dummy device 80x25
    Mar 18 10:05:03 arch-server kernel: console [tty0] enabled
    Mar 18 10:05:03 arch-server kernel: allocated 66060288 bytes of page_cgroup
    Mar 18 10:05:03 arch-server kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Mar 18 10:05:03 arch-server kernel: hpet clockevent registered
    Mar 18 10:05:03 arch-server kernel: tsc: Fast TSC calibration using PIT
    Mar 18 10:05:03 arch-server kernel: tsc: Detected 4199.946 MHz processor
    Mar 18 10:05:03 arch-server kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 8399.89 BogoMIPS (lpj=41999460)
    Mar 18 10:05:03 arch-server kernel: pid_max: default: 32768 minimum: 301
    Mar 18 10:05:03 arch-server kernel: ACPI: Core revision 20131218
    Mar 18 10:05:03 arch-server kernel: ACPI: All ACPI Tables successfully acquired
    Mar 18 10:05:03 arch-server kernel: Security Framework initialized
    Mar 18 10:05:03 arch-server kernel: Yama: becoming mindful.
    Mar 18 10:05:03 arch-server kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    Mar 18 10:05:03 arch-server kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Mar 18 10:05:03 arch-server kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
    Mar 18 10:05:03 arch-server kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
    Mar 18 10:05:03 arch-server kernel: Initializing cgroup subsys memory
    Mar 18 10:05:03 arch-server kernel: Initializing cgroup subsys devices
    Mar 18 10:05:03 arch-server kernel: Initializing cgroup subsys freezer
    Mar 18 10:05:03 arch-server kernel: Initializing cgroup subsys net_cls
    Mar 18 10:05:03 arch-server kernel: Initializing cgroup subsys blkio
    Mar 18 10:05:03 arch-server kernel: tseg: 0000000000
    Mar 18 10:05:03 arch-server kernel: CPU: Physical Processor ID: 0
    Mar 18 10:05:03 arch-server kernel: CPU: Processor Core ID: 0
    Mar 18 10:05:03 arch-server kernel: mce: CPU supports 7 MCE banks
    Mar 18 10:05:03 arch-server kernel: LVT offset 1 assigned for vector 0xf9
    Mar 18 10:05:03 arch-server kernel: Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
    tlb_flushall_shift: 6
    Mar 18 10:05:03 arch-server kernel: Freeing SMP alternatives memory: 20K (ffffffff819f2000 - ffffffff819f7000)
    Mar 18 10:05:03 arch-server kernel: ftrace: allocating 20141 entries in 79 pages
    Mar 18 10:05:03 arch-server kernel: Switched APIC routing to physical flat.
    Mar 18 10:05:03 arch-server kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Mar 18 10:05:03 arch-server kernel: smpboot: CPU0: AMD FX(tm)-4170 Quad-Core Processor (fam: 15, model: 01, stepping: 02)
    Mar 18 10:05:03 arch-server kernel: Performance Events: Fam15h core perfctr, AMD PMU driver.
    Mar 18 10:05:03 arch-server kernel: ... version: 0
    Mar 18 10:05:03 arch-server kernel: ... bit width: 48
    Mar 18 10:05:03 arch-server kernel: ... generic registers: 6
    Mar 18 10:05:03 arch-server kernel: ... value mask: 0000ffffffffffff
    Mar 18 10:05:03 arch-server kernel: ... max period: 00007fffffffffff
    Mar 18 10:05:03 arch-server kernel: ... fixed-purpose events: 0
    Mar 18 10:05:03 arch-server kernel: ... event mask: 000000000000003f
    Mar 18 10:05:03 arch-server kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Mar 18 10:05:03 arch-server kernel: x86: Booting SMP configuration:
    Mar 18 10:05:03 arch-server kernel: .... node #0, CPUs: #1 #2 #3
    Mar 18 10:05:03 arch-server kernel: x86: Booted up 1 node, 4 CPUs
    Mar 18 10:05:03 arch-server kernel: smpboot: Total of 4 processors activated (33599.56 BogoMIPS)
    Mar 18 10:05:03 arch-server kernel: devtmpfs: initialized
    Mar 18 10:05:03 arch-server kernel: PM: Registering ACPI NVS region [mem 0xcff9e000-0xcffdffff] (270336 bytes)
    Mar 18 10:05:03 arch-server kernel: pinctrl core: initialized pinctrl subsystem
    Mar 18 10:05:03 arch-server kernel: RTC time: 15:04:53, date: 03/18/15
    Mar 18 10:05:03 arch-server kernel: NET: Registered protocol family 16
    Mar 18 10:05:03 arch-server kernel: cpuidle: using governor ladder
    Mar 18 10:05:03 arch-server kernel: cpuidle: using governor menu
    Mar 18 10:05:03 arch-server kernel: ACPI: bus type PCI registered
    Mar 18 10:05:03 arch-server kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Mar 18 10:05:03 arch-server kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Mar 18 10:05:03 arch-server kernel: PCI: not using MMCONFIG
    Mar 18 10:05:03 arch-server kernel: PCI: Using configuration type 1 for base access
    Mar 18 10:05:03 arch-server kernel: PCI: Using configuration type 1 for extended access
    Mar 18 10:05:03 arch-server kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    Mar 18 10:05:03 arch-server kernel: mtrr: probably your BIOS does not setup all CPUs.
    Mar 18 10:05:03 arch-server kernel: mtrr: corrected configuration.
    Mar 18 10:05:03 arch-server kernel: bio: create slab <bio-0> at 0
    Mar 18 10:05:03 arch-server kernel: ACPI: Added _OSI(Module Device)
    Mar 18 10:05:03 arch-server kernel: ACPI: Added _OSI(Processor Device)
    Mar 18 10:05:03 arch-server kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Mar 18 10:05:03 arch-server kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Mar 18 10:05:03 arch-server kernel: ACPI: Executed 4 blocks of module-level executable AML code
    Mar 18 10:05:03 arch-server kernel: ACPI: Interpreter enabled
    Mar 18 10:05:03 arch-server kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131218/hwxface-580)
    Mar 18 10:05:03 arch-server kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20131218/hwxface-580)
    Mar 18 10:05:03 arch-server kernel: ACPI: (supports S0 S1 S4 S5)
    Mar 18 10:05:03 arch-server kernel: ACPI: Using IOAPIC for interrupt routing
    Mar 18 10:05:03 arch-server kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Mar 18 10:05:03 arch-server kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Mar 18 10:05:03 arch-server kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Mar 18 10:05:03 arch-server kernel: ACPI: No dock devices found.
    Mar 18 10:05:03 arch-server kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Mar 18 10:05:03 arch-server kernel: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Mar 18 10:05:03 arch-server kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    Mar 18 10:05:03 arch-server kernel: PCI host bridge to bus 0000:00
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [mem 0xd0000000-0xdfffffff]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:00.0: [1022:9600] type 00 class 0x060000
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:01.0: [1022:9602] type 01 class 0x060400
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:05.0: [1022:9605] type 01 class 0x060400
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:05.0: System wakeup disabled by ACPI
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: [1002:4390] type 00 class 0x01018f
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x10: [io 0xc000-0xc007]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x14: [io 0xb000-0xb003]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x18: [io 0xa000-0xa007]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x1c: [io 0x9000-0x9003]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x20: [io 0x8000-0x800f]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x24: [mem 0xfe9ffc00-0xfe9fffff]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: set SATA to AHCI mode
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.0: reg 0x10: [mem 0xfe9fe000-0xfe9fefff]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.0: System wakeup disabled by ACPI
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.1: reg 0x10: [mem 0xfe9fd000-0xfe9fdfff]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.1: System wakeup disabled by ACPI
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.2: reg 0x10: [mem 0xfe9ff800-0xfe9ff8ff]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.2: supports D1 D2
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.2: System wakeup disabled by ACPI
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:13.0: reg 0x10: [mem 0xfe9fc000-0xfe9fcfff]
    Mar 18 10:05:04 arch-server kernel: pci 0000:00:13.0: System wakeup disabled by ACPI
    Mar 18 10:05:04 arch-server kernel: pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
    Mar 18 10:05:04 arch-server kernel: pci 0000:00:13.1: reg 0x10: [mem 0xfe9fb000-0xfe9fbfff]
    Mar 18 10:05:04 arch-server kernel: pci 0000:00:13.1: System wakeup disabled by ACP

  • Can I create a Desktop page on the wiki ?

    Hi there,
    I was using Arch since 1 or 2 weeks now, and I am still in the 'tune the system to get a working desktop' phase.
    On the way, I took extensive notes about everything I installed and set-up.
    So I was thinking about creating a wiki page (that could be named something like : "Desktop Arch : Zero2Heaven") that list every step to get a working desktop configuration.
    The idea is to provide a guide to set up a workstation easily for a non-guru arch new user like me.
    Before doing anything, I just wanted to be sure creating this kind of page isn't against some wiki protocol (I don't think so but better safe than sorry ).
    See you around
    Tereva

    karol wrote:
    axel668 wrote:Which desktop ? There is no such thing as THE desktop in Arch or even in Linux in general, so the only useful content of a desktop page might be a couple of links to other Wiki pages, maybe about Xorg and the most popular DEs (Gnome, KDE, XFCE, LXDE, Openbox, Enlightenment, ...)
    That's why OP's personal preferences should go to his user page and not as a regular article.
    I've seen wiki user pages that listed some configs that their authors found useful, nothing wrong with that.
    I think there is something missing in the documentation / wiki : How to mount 'quickly' a usable desktop configuration.
    The idea was to hook false beginner / 'young' intermediate Linux user, that want to give Arch a try, but don't have the knowledge/experience to sort all the info available in the wiki to install a desktop config.
    IMO this could help expand the user base.
    Tereva
    PS :  I was going for LXDE + java + audio/video codex + usb auto-mounting + some fonts...
    Of course I don't pretend this is THE ultimate desktop experience (everyone has his own preferences).
    But at least by following the guide I was thinking about, someone can have a -fast- usable desktop in 10 / 15 min.

  • Looking for a pager with advanced functionalities

    Hello everyone,
    I am looking for a pager with which I could put custom icons for the different workspaces.
    I have an HTPC that is mainly used for three things: watching movies, playing music and browsing the internet. Therefore, I would like to have four workspaces, one for each of these and another one for administration. Since this is an HTPC, I'd like it to look good and I think it would be neat to have images instead of numbers/squares for the workspaces: a movie reel for the "movies" workspace, a note for "music", etc... I have been looking at pagers on the wiki, but most of the links are broken. I am currently running XFCE, but would install another WM for this. The idea came to me because I could do this on awesome 3, which is installed on my laptop, but my roommates are firmly opposed to a tiling WM on the HTPC.
    If anybody can provide suggestions, they will be very welcome.
    Cheers,
    François

    Howdy-ha- flamirande.  I don't want to be a total prick, as it's not my place; it's yours.  Xfwm or Awesome will get the job done, won't it?  You might be able to wow them if you get a universal remote and set up a proper lirc connection, letting them sit on the couch and have the power at the press of a finger.  I have some friends with XBMC (the real thing--a dedicated, old-school Xbox hacked with BSD for all their media),  and they're more satisfied with the results it provides than how it looks.  Yeah, their Win and Mac PCs (both my friends' and your roomates') give them Facebook and YouTube, but yours gives them music, movies and tv and internet on demand, at a smaller resource cost and with a more versatile core and interface.  If they're so touchy about polish, let them figure it out.  I'm not just saying this as the sorry excuse for a computer geek that I am, but also as a person who's been dealing with many roommates for roughly a decade. I mean I don't know your situation but what do they think, the setup you give 'em is supposed to get them attention?
    If these folks can't be satisfied by the fact that your system can provide them with a reliable, versatile, centralized, kick-ass setup that theirs can't, well...
    More constructively: If they just won't have it...maybe openbox and tint2?  You've got a low ram and cpu demand there, keeping music from skipping and video from tearing, if you work it out properly.  Openbox has always been my choice for the right balance between polish and minimalism.

  • XFCE bug or just me ?

    I can't reboot or logout using the panel buttons neither to start firefox trough xfce menu.
    Starting mozzila from XFCE Menu:
    Menu > Internet > Firefox - > i get nothing on the screen, no errors
    Menu  > Web Browser - > i get an eror: Failed to execute default web browser Input/output error.
    Trying to reboot/logout and i get this: Failed to run action "Log Out"  Session Manager must be in idle state when requesting a shut down.
    Right now im running  firefox as root from CLI.
    root@pyndrive]# firefox
    GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
    dmesg output:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.4.8-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Aug 9 19:24:46 UTC 2012
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
    [ 0.000000] BIOS-e820: 000000003fff0000 - 0000000040000000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] DMI 2.5 present.
    [ 0.000000] DMI: innotek GmbH VirtualBox, BIOS VirtualBox 12/01/2006
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] last_pfn = 0x3fff0 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR variable ranges disabled:
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] CPU MTRRs all blank - virtualized system.
    [ 0.000000] initial memory mapped : 0 - 01c00000
    [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [ 0.000000] 0000000000 - 0000400000 page 4k
    [ 0.000000] 0000400000 - 0037400000 page 2M
    [ 0.000000] 0037400000 - 00377fe000 page 4k
    [ 0.000000] kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
    [ 0.000000] RAMDISK: 37a58000 - 37d24000
    [ 0.000000] Allocated new RAMDISK: 37532000 - 377fdc44
    [ 0.000000] Move RAMDISK from 0000000037a58000 - 0000000037d23c43 to 37532000 - 377fdc43
    [ 0.000000] ACPI: RSDP 000e0000 00024 (v02 VBOX )
    [ 0.000000] ACPI: XSDT 3fff0030 00034 (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
    [ 0.000000] ACPI: FACP 3fff00f0 000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
    [ 0.000000] ACPI: DSDT 3fff0410 01B96 (v01 VBOX VBOXBIOS 00000002 INTL 20100528)
    [ 0.000000] ACPI: FACS 3fff0200 00040
    [ 0.000000] ACPI: SSDT 3fff0240 001CC (v01 VBOX VBOXCPUT 00000002 INTL 20100528)
    [ 0.000000] 135MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] Normal 0x00001000 -> 0x000377fe
    [ 0.000000] HighMem 0x000377fe -> 0x0003fff0
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x0003fff0
    [ 0.000000] On node 0 totalpages: 262015
    [ 0.000000] free_area_init_node: node 0, pgdat c151ec80, node_mem_map f6d31200
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 272 pages used for memmap
    [ 0.000000] HighMem zone: 34530 pages, LIFO batch:7
    [ 0.000000] Using APIC driver default
    [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    [ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
    [ 0.000000] Found and enabled local APIC!
    [ 0.000000] nr_irqs_gsi: 16
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bffc0000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 13 pages/cpu @f6d1d000 s31424 r0 d21824 u53248
    [ 0.000000] pcpu-alloc: s31424 r0 d21824 u53248 alloc=13*4096
    [ 0.000000] pcpu-alloc: [0] 0
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 259967
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=c15dc78e-e70d-4eb5-a0b2-c25b79bc6b34 ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 2096896 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:0003fff0)
    [ 0.000000] Memory: 1027300k/1048512k available (3810k kernel code, 20760k reserved, 1472k data, 524k init, 139208k highmem)
    [ 0.000000] virtual kernel memory layout:
    [ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    [ 0.000000] .init : 0xc1529000 - 0xc15ac000 ( 524 kB)
    [ 0.000000] .data : 0xc13b8837 - 0xc1528840 (1472 kB)
    [ 0.000000] .text : 0xc1000000 - 0xc13b8837 (3810 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:2304 nr_irqs:256 16
    [ 0.000000] CPU 0 irqstacks, hard=f6408000 soft=f640a000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 3062.475 MHz processor.
    [ 0.003336] Calibrating delay loop (skipped), value calculated using timer frequency.. 6127.15 BogoMIPS (lpj=10208250)
    [ 0.003340] pid_max: default: 32768 minimum: 301
    [ 0.003357] Security Framework initialized
    [ 0.003361] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003373] Mount-cache hash table entries: 512
    [ 0.003498] Initializing cgroup subsys cpuacct
    [ 0.003502] Initializing cgroup subsys memory
    [ 0.003508] Initializing cgroup subsys devices
    [ 0.003511] Initializing cgroup subsys freezer
    [ 0.003515] Initializing cgroup subsys net_cls
    [ 0.003518] Initializing cgroup subsys blkio
    [ 0.003667] mce: CPU supports 0 MCE banks
    [ 0.003726] using mwait in idle threads.
    [ 0.004052] SMP alternatives: switching to UP code
    [ 0.016665] Freeing SMP alternatives: 16k freed
    [ 0.016665] ACPI: Core revision 20120320
    [ 0.017157] ACPI: setting ELCR to 0200 (from 0e20)
    [ 0.017305] ftrace: allocating 16939 entries in 34 pages
    [ 0.026695] weird, boot CPU (#0) not listed by the BIOS.
    [ 0.026702] SMP motherboard not detected.
    [ 0.026704] Enabling APIC mode: Flat. Using 0 I/O APICs
    [ 0.029998] SMP disabled
    [ 0.029998] Performance Events: unsupported p6 CPU model 42 no PMU driver, software events only.
    [ 0.046700] NMI watchdog: disabled (cpu0): hardware events not enabled
    [ 0.046716] Brought up 1 CPUs
    [ 0.046717] Total of 1 processors activated (6127.15 BogoMIPS).
    [ 0.046797] devtmpfs: initialized
    [ 0.047527] NET: Registered protocol family 16
    [ 0.047616] ACPI: bus type pci registered
    [ 0.120467] PCI: PCI BIOS revision 2.10 entry at 0xfc040, last bus=0
    [ 0.120470] PCI: Using configuration type 1 for base access
    [ 0.120823] bio: create slab <bio-0> at 0
    [ 0.120861] ACPI: Added _OSI(Module Device)
    [ 0.120863] ACPI: Added _OSI(Processor Device)
    [ 0.120864] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.120865] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.121097] ACPI: EC: Look up EC in DSDT
    [ 0.121296] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.123127] ACPI: Interpreter enabled
    [ 0.123132] ACPI: (supports S0 S5)
    [ 0.123139] ACPI: Using PIC for interrupt routing
    [ 0.124453] ACPI: No dock devices found.
    [ 0.124457] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.124499] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.124559] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    [ 0.124561] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    [ 0.124563] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.124565] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xffdfffff] (ignored)
    [ 0.124566] PCI: root bus 00: using default resources
    [ 0.124587] PCI host bridge to bus 0000:00
    [ 0.124589] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.124590] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
    [ 0.124631] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
    [ 0.124979] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
    [ 0.125505] pci 0000:00:01.1: [8086:7111] type 00 class 0x01018a
    [ 0.125890] pci 0000:00:01.1: reg 20: [io 0xd000-0xd00f]
    [ 0.126170] pci 0000:00:02.0: [80ee:beef] type 00 class 0x030000
    [ 0.126989] pci 0000:00:02.0: reg 10: [mem 0xe0000000-0xe0ffffff pref]
    [ 0.132279] pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
    [ 0.132960] pci 0000:00:03.0: reg 10: [mem 0xf0000000-0xf001ffff]
    [ 0.134025] pci 0000:00:03.0: reg 18: [io 0xd010-0xd017]
    [ 0.137088] pci 0000:00:04.0: [80ee:cafe] type 00 class 0x088000
    [ 0.137730] pci 0000:00:04.0: reg 10: [io 0xd020-0xd03f]
    [ 0.138343] pci 0000:00:04.0: reg 14: [mem 0xf0400000-0xf07fffff]
    [ 0.138952] pci 0000:00:04.0: reg 18: [mem 0xf0800000-0xf0803fff pref]
    [ 0.142047] pci 0000:00:05.0: [8086:2415] type 00 class 0x040100
    [ 0.142145] pci 0000:00:05.0: reg 10: [io 0xd100-0xd1ff]
    [ 0.142219] pci 0000:00:05.0: reg 14: [io 0xd200-0xd23f]
    [ 0.142677] pci 0000:00:06.0: [106b:003f] type 00 class 0x0c0310
    [ 0.143395] pci 0000:00:06.0: reg 10: [mem 0xf0804000-0xf0804fff]
    [ 0.146872] pci 0000:00:07.0: [8086:7113] type 00 class 0x068000
    [ 0.147490] pci 0000:00:0d.0: [8086:2829] type 00 class 0x010601
    [ 0.148158] pci 0000:00:0d.0: reg 10: [io 0xd240-0xd247]
    [ 0.149357] pci 0000:00:0d.0: reg 18: [io 0xd250-0xd257]
    [ 0.150594] pci 0000:00:0d.0: reg 20: [io 0xd260-0xd26f]
    [ 0.151197] pci 0000:00:0d.0: reg 24: [mem 0xf0806000-0xf0807fff]
    [ 0.152141] pci_bus 0000:00: on NUMA node 0
    [ 0.152150] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.152779] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
    [ 0.155212] ACPI: PCI Interrupt Link [LNKA] (IRQs *5 9 10 11)
    [ 0.155372] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11)
    [ 0.155426] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11)
    [ 0.155485] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11)
    [ 0.155574] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.155577] vgaarb: loaded
    [ 0.155578] vgaarb: bridge control possible 0000:00:02.0
    [ 0.155606] PCI: Using ACPI for IRQ routing
    [ 0.155607] PCI: pci_cache_line_size set to 64 bytes
    [ 0.155769] reserve RAM buffer: 000000000009fc00 - 000000000009ffff
    [ 0.155771] reserve RAM buffer: 000000003fff0000 - 000000003fffffff
    [ 0.155836] NetLabel: Initializing
    [ 0.155837] NetLabel: domain hash size = 128
    [ 0.155838] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.155846] NetLabel: unlabeled traffic allowed by default
    [ 0.158830] pnp: PnP ACPI init
    [ 0.158842] ACPI: bus type pnp registered
    [ 0.158896] pnp 00:00: [bus 00-ff]
    [ 0.158899] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.158900] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.158902] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.158903] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.158905] pnp 00:00: [mem 0x40000000-0xffdfffff window]
    [ 0.158924] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.158941] pnp 00:01: [io 0x0060]
    [ 0.158942] pnp 00:01: [io 0x0064]
    [ 0.158944] pnp 00:01: [irq 1]
    [ 0.158957] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.158963] pnp 00:02: [io 0x0000-0x000f]
    [ 0.158965] pnp 00:02: [io 0x0080-0x008f]
    [ 0.158966] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.158967] pnp 00:02: [dma 4]
    [ 0.158980] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.159007] pnp 00:03: [irq 12]
    [ 0.159020] pnp 00:03: Plug and Play ACPI device, IDs PNP0f03 (active)
    [ 0.159028] pnp 00:04: [io 0x0378-0x037f]
    [ 0.159030] pnp 00:04: [io 0x0778-0x077f]
    [ 0.159031] pnp 00:04: [irq 7]
    [ 0.159043] pnp 00:04: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.159396] pnp: PnP ACPI: found 5 devices
    [ 0.159397] ACPI: ACPI bus type pnp unregistered
    [ 0.195989] Switching to clocksource acpi_pm
    [ 0.196010] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.196012] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.196040] NET: Registered protocol family 2
    [ 0.196075] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [ 0.196148] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.196307] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.196380] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.196381] TCP: reno registered
    [ 0.196383] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.196386] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.196422] NET: Registered protocol family 1
    [ 0.196429] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
    [ 0.196453] pci 0000:00:01.0: Activating ISA DMA hang workarounds
    [ 0.196479] pci 0000:00:02.0: Boot video device
    [ 0.196479] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
    [ 0.196479] PCI: setting IRQ 11 as level-triggered
    [ 0.250191] PCI: CLS 0 bytes, default 64
    [ 0.250221] Unpacking initramfs...
    [ 0.293939] Freeing initrd memory: 2864k freed
    [ 0.294414] platform rtc_cmos: registered platform RTC device (no PNP device found)
    [ 0.294524] apm: BIOS not found.
    [ 0.294683] audit: initializing netlink socket (disabled)
    [ 0.294698] type=2000 audit(1344869699.293:1): initialized
    [ 0.294934] highmem bounce pool size: 64 pages
    [ 0.294940] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.296000] VFS: Disk quotas dquot_6.5.2
    [ 0.296033] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.296090] msgmni has been set to 1740
    [ 0.296202] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.296217] io scheduler noop registered
    [ 0.296219] io scheduler deadline registered
    [ 0.296222] io scheduler cfq registered (default)
    [ 0.296298] vesafb: mode is 640x480x32, linelength=2560, pages=0
    [ 0.296299] vesafb: scrolling: redraw
    [ 0.296300] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.296352] vesafb: framebuffer at 0xe0000000, mapped to 0xf8080000, using 1216k, total 1216k
    [ 0.297093] Console: switching to colour frame buffer device 80x30
    [ 0.297818] fb0: VESA VGA frame buffer device
    [ 0.297881] GHES: HEST is not enabled!
    [ 0.297889] isapnp: Scanning for PnP cards...
    [ 0.619715] isapnp: No Plug & Play device found
    [ 0.619771] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.620131] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    [ 0.620518] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.620538] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.620588] mousedev: PS/2 mouse device common for all mice
    [ 0.620838] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.621270] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
    [ 0.621300] rtc0: alarms up to one day, 114 bytes nvram
    [ 0.621311] cpuidle: using governor ladder
    [ 0.621312] cpuidle: using governor menu
    [ 0.621437] TCP: cubic registered
    [ 0.621502] NET: Registered protocol family 10
    [ 0.621642] NET: Registered protocol family 17
    [ 0.621645] Registering the dns_resolver key type
    [ 0.621672] Using IPI No-Shortcut mode
    [ 0.621723] PM: Hibernation image not present or could not be loaded.
    [ 0.621728] registered taskstats version 1
    [ 0.622117] rtc_cmos rtc_cmos: setting system clock to 2012-08-13 14:55:00 UTC (1344869700)
    [ 0.622138] Initializing network drop monitor service
    [ 0.622170] Freeing unused kernel memory: 524k freed
    [ 0.622287] Write protecting the kernel text: 3812k
    [ 0.622302] Write protecting the kernel read-only data: 1124k
    [ 0.629298] systemd-udevd[34]: starting version 187
    [ 0.652855] SCSI subsystem initialized
    [ 0.656712] usbcore: registered new interface driver usbfs
    [ 0.656712] usbcore: registered new interface driver hub
    [ 0.657996] libata version 3.00 loaded.
    [ 0.658210] ata_piix 0000:00:01.1: version 2.13
    [ 0.660267] usbcore: registered new device driver usb
    [ 0.660540] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.660549] scsi0 : ata_piix
    [ 0.663678] scsi1 : ata_piix
    [ 0.663712] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
    [ 0.663714] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
    [ 0.663989] ahci 0000:00:0d.0: version 3.0
    [ 0.664466] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 5
    [ 0.664469] PCI: setting IRQ 5 as level-triggered
    [ 0.664569] ahci: SSS flag set, parallel bus scan disabled
    [ 0.664708] ahci 0000:00:0d.0: AHCI 0001.0100 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    [ 0.664711] ahci 0000:00:0d.0: flags: 64bit ncq stag only ccc
    [ 0.666961] scsi2 : ahci
    [ 0.667004] ata3: SATA max UDMA/133 abar m8192@0xf0806000 port 0xf0806100 irq 5
    [ 0.667068] ohci_hcd 0000:00:06.0: OHCI Host Controller
    [ 0.667084] ohci_hcd 0000:00:06.0: new USB bus registered, assigned bus number 1
    [ 0.667110] ohci_hcd 0000:00:06.0: irq 11, io mem 0xf0804000
    [ 0.720357] hub 1-0:1.0: USB hub found
    [ 0.720368] hub 1-0:1.0: 8 ports detected
    [ 0.820420] ata2.00: ATAPI: VBOX CD-ROM, 1.0, max UDMA/133
    [ 0.820777] ata2.00: configured for UDMA/33
    [ 0.821241] scsi 1:0:0:0: CD-ROM VBOX CD-ROM 1.0 PQ: 0 ANSI: 5
    [ 0.986822] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 0.986891] ata3.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133
    [ 0.986893] ata3.00: 16777216 sectors, multi 128: LBA48 NCQ (depth 31/32)
    [ 0.986975] ata3.00: configured for UDMA/133
    [ 0.987185] scsi 2:0:0:0: Direct-Access ATA VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
    [ 0.992040] sr0: scsi3-mmc drive: 32x/32x xa/form2 tray
    [ 0.992042] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 0.992220] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 0.992309] sd 2:0:0:0: [sda] 16777216 512-byte logical blocks: (8.58 GB/8.00 GiB)
    [ 0.992335] sd 2:0:0:0: [sda] Write Protect is off
    [ 0.992337] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.992348] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.000483] sda: sda1 sda2
    [ 1.000643] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 1.106793] usb 1-1: new full-speed USB device number 2 using ohci_hcd
    [ 1.300886] Refined TSC clocksource calibration: 3062.629 MHz.
    [ 1.300892] Switching to clocksource tsc
    [ 1.343527] input: VirtualBox USB Tablet as /devices/pci0000:00/0000:00:06.0/usb1/1-1/1-1:1.0/input/input1
    [ 1.343621] generic-usb 0003:80EE:0021.0001: input,hidraw0: USB HID v1.10 Mouse [VirtualBox USB Tablet] on usb-0000:00:06.0-1/input0
    [ 1.343732] usbcore: registered new interface driver usbhid
    [ 1.343734] usbhid: USB HID core driver
    [ 1.442375] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.403131] systemd-udevd[136]: starting version 188
    [ 2.812740] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 9
    [ 2.812743] PCI: setting IRQ 9 as level-triggered
    [ 2.813203] input: Unspecified device as /devices/virtual/input/input2
    [ 2.813300] vboxguest: major 0, IRQ 9, I/O port d020, MMIO at 00000000f0400000 (size 0x400000)
    [ 2.813302] vboxguest: Successfully loaded version 4.1.18_OSE (interface 0x00010004)
    [ 2.836261] vboxsf: Successfully loaded version 4.1.18_OSE (interface 0x00010004)
    [ 2.948069] Linux agpgart interface v0.103
    [ 2.956064] [drm] Initialized drm 1.1.0 20060810
    [ 2.956575] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.956576] [drm] No driver support for vblank timestamp query.
    [ 2.956578] [drm] Initialized vboxvideo 1.0.0 20090303 for 0000:00:02.0 on minor 0
    [ 3.030274] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 3.030280] ACPI: Power Button [PWRF]
    [ 3.030471] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input4
    [ 3.030474] ACPI: Sleep Button [SLPF]
    [ 3.046817] ACPI: AC Adapter [AC] (on-line)
    [ 3.094543] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
    [ 3.094545] e1000: Copyright (c) 1999-2006 Intel Corporation.
    [ 3.094837] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
    [ 3.094840] PCI: setting IRQ 10 as level-triggered
    [ 3.214262] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 3.316722] psmouse serio1: hgpk: ID: 10 00 64
    [ 3.318607] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input6
    [ 3.321611] parport_pc 00:04: reported by Plug and Play ACPI
    [ 3.393294] ppdev: user-space parallel port driver
    [ 3.428764] microcode: CPU0 sig=0x206a7, pf=0x1, revision=0x0
    [ 3.439417] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 3.541306] e1000 0000:00:03.0: eth0: (PCI:33MHz:32-bit) 08:00:27:4f:73:56
    [ 3.541314] e1000 0000:00:03.0: eth0: Intel(R) PRO/1000 Network Connection
    [ 3.541340] piix4_smbus 0000:00:07.0: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
    [ 3.871259] intel8x0_measure_ac97_clock: measured 52595 usecs (6240 samples)
    [ 3.871261] intel8x0: measured clock 118642 rejected
    [ 4.226780] intel8x0_measure_ac97_clock: measured 53281 usecs (7200 samples)
    [ 4.226783] intel8x0: measured clock 135132 rejected
    [ 4.583408] intel8x0_measure_ac97_clock: measured 53223 usecs (7200 samples)
    [ 4.583411] intel8x0: measured clock 135279 rejected
    [ 4.583412] intel8x0: clocking to 48000
    [ 5.046848] EXT4-fs (sda2): re-mounted. Opts: data=ordered
    [ 5.046980] EXT4-fs (sda2): re-mounted. Opts: data=ordered
    [ 5.506731] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 5.507267] e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
    [ 5.507655] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 15.897707] eth0: no IPv6 routers present
    [ 33.270665] EXT4-fs (sda2): re-mounted. Opts: data=ordered,commit=0
    I've just reinstalled XFCE but nothing has changed.:( I think has something to do with https://bugs.launchpad.net/ubuntu/+sour … comments/3
    Sorry for my bad english. Thank You.
    Last edited by xfce (2012-08-14 05:48:24)

    xfce wrote:
    I can't reboot or logout using the panel buttons neither to start firefox trough xfce menu.
    Starting mozzila from XFCE Menu:
    Menu > Internet > Firefox - > i get nothing on the screen, no errors
    Menu  > Web Browser - > i get an eror: Failed to execute default web browser Input/output error.
    Trying to reboot/logout and i get this: Failed to run action "Log Out"  Session Manager must be in idle state when requesting a shut down.
    Right now im running  firefox as root from CLI.
    root@pyndrive]# firefox
    GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
    dmesg output:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.4.8-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Aug 9 19:24:46 UTC 2012
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
    [ 0.000000] BIOS-e820: 000000003fff0000 - 0000000040000000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] DMI 2.5 present.
    [ 0.000000] DMI: innotek GmbH VirtualBox, BIOS VirtualBox 12/01/2006
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] last_pfn = 0x3fff0 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR variable ranges disabled:
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] CPU MTRRs all blank - virtualized system.
    [ 0.000000] initial memory mapped : 0 - 01c00000
    [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [ 0.000000] 0000000000 - 0000400000 page 4k
    [ 0.000000] 0000400000 - 0037400000 page 2M
    [ 0.000000] 0037400000 - 00377fe000 page 4k
    [ 0.000000] kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
    [ 0.000000] RAMDISK: 37a58000 - 37d24000
    [ 0.000000] Allocated new RAMDISK: 37532000 - 377fdc44
    [ 0.000000] Move RAMDISK from 0000000037a58000 - 0000000037d23c43 to 37532000 - 377fdc43
    [ 0.000000] ACPI: RSDP 000e0000 00024 (v02 VBOX )
    [ 0.000000] ACPI: XSDT 3fff0030 00034 (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
    [ 0.000000] ACPI: FACP 3fff00f0 000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
    [ 0.000000] ACPI: DSDT 3fff0410 01B96 (v01 VBOX VBOXBIOS 00000002 INTL 20100528)
    [ 0.000000] ACPI: FACS 3fff0200 00040
    [ 0.000000] ACPI: SSDT 3fff0240 001CC (v01 VBOX VBOXCPUT 00000002 INTL 20100528)
    [ 0.000000] 135MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] Normal 0x00001000 -> 0x000377fe
    [ 0.000000] HighMem 0x000377fe -> 0x0003fff0
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x0003fff0
    [ 0.000000] On node 0 totalpages: 262015
    [ 0.000000] free_area_init_node: node 0, pgdat c151ec80, node_mem_map f6d31200
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 272 pages used for memmap
    [ 0.000000] HighMem zone: 34530 pages, LIFO batch:7
    [ 0.000000] Using APIC driver default
    [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    [ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
    [ 0.000000] Found and enabled local APIC!
    [ 0.000000] nr_irqs_gsi: 16
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bffc0000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 13 pages/cpu @f6d1d000 s31424 r0 d21824 u53248
    [ 0.000000] pcpu-alloc: s31424 r0 d21824 u53248 alloc=13*4096
    [ 0.000000] pcpu-alloc: [0] 0
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 259967
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=c15dc78e-e70d-4eb5-a0b2-c25b79bc6b34 ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 2096896 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:0003fff0)
    [ 0.000000] Memory: 1027300k/1048512k available (3810k kernel code, 20760k reserved, 1472k data, 524k init, 139208k highmem)
    [ 0.000000] virtual kernel memory layout:
    [ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    [ 0.000000] .init : 0xc1529000 - 0xc15ac000 ( 524 kB)
    [ 0.000000] .data : 0xc13b8837 - 0xc1528840 (1472 kB)
    [ 0.000000] .text : 0xc1000000 - 0xc13b8837 (3810 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:2304 nr_irqs:256 16
    [ 0.000000] CPU 0 irqstacks, hard=f6408000 soft=f640a000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 3062.475 MHz processor.
    [ 0.003336] Calibrating delay loop (skipped), value calculated using timer frequency.. 6127.15 BogoMIPS (lpj=10208250)
    [ 0.003340] pid_max: default: 32768 minimum: 301
    [ 0.003357] Security Framework initialized
    [ 0.003361] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003373] Mount-cache hash table entries: 512
    [ 0.003498] Initializing cgroup subsys cpuacct
    [ 0.003502] Initializing cgroup subsys memory
    [ 0.003508] Initializing cgroup subsys devices
    [ 0.003511] Initializing cgroup subsys freezer
    [ 0.003515] Initializing cgroup subsys net_cls
    [ 0.003518] Initializing cgroup subsys blkio
    [ 0.003667] mce: CPU supports 0 MCE banks
    [ 0.003726] using mwait in idle threads.
    [ 0.004052] SMP alternatives: switching to UP code
    [ 0.016665] Freeing SMP alternatives: 16k freed
    [ 0.016665] ACPI: Core revision 20120320
    [ 0.017157] ACPI: setting ELCR to 0200 (from 0e20)
    [ 0.017305] ftrace: allocating 16939 entries in 34 pages
    [ 0.026695] weird, boot CPU (#0) not listed by the BIOS.
    [ 0.026702] SMP motherboard not detected.
    [ 0.026704] Enabling APIC mode: Flat. Using 0 I/O APICs
    [ 0.029998] SMP disabled
    [ 0.029998] Performance Events: unsupported p6 CPU model 42 no PMU driver, software events only.
    [ 0.046700] NMI watchdog: disabled (cpu0): hardware events not enabled
    [ 0.046716] Brought up 1 CPUs
    [ 0.046717] Total of 1 processors activated (6127.15 BogoMIPS).
    [ 0.046797] devtmpfs: initialized
    [ 0.047527] NET: Registered protocol family 16
    [ 0.047616] ACPI: bus type pci registered
    [ 0.120467] PCI: PCI BIOS revision 2.10 entry at 0xfc040, last bus=0
    [ 0.120470] PCI: Using configuration type 1 for base access
    [ 0.120823] bio: create slab <bio-0> at 0
    [ 0.120861] ACPI: Added _OSI(Module Device)
    [ 0.120863] ACPI: Added _OSI(Processor Device)
    [ 0.120864] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.120865] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.121097] ACPI: EC: Look up EC in DSDT
    [ 0.121296] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.123127] ACPI: Interpreter enabled
    [ 0.123132] ACPI: (supports S0 S5)
    [ 0.123139] ACPI: Using PIC for interrupt routing
    [ 0.124453] ACPI: No dock devices found.
    [ 0.124457] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.124499] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.124559] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    [ 0.124561] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    [ 0.124563] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.124565] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xffdfffff] (ignored)
    [ 0.124566] PCI: root bus 00: using default resources
    [ 0.124587] PCI host bridge to bus 0000:00
    [ 0.124589] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.124590] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
    [ 0.124631] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
    [ 0.124979] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
    [ 0.125505] pci 0000:00:01.1: [8086:7111] type 00 class 0x01018a
    [ 0.125890] pci 0000:00:01.1: reg 20: [io 0xd000-0xd00f]
    [ 0.126170] pci 0000:00:02.0: [80ee:beef] type 00 class 0x030000
    [ 0.126989] pci 0000:00:02.0: reg 10: [mem 0xe0000000-0xe0ffffff pref]
    [ 0.132279] pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
    [ 0.132960] pci 0000:00:03.0: reg 10: [mem 0xf0000000-0xf001ffff]
    [ 0.134025] pci 0000:00:03.0: reg 18: [io 0xd010-0xd017]
    [ 0.137088] pci 0000:00:04.0: [80ee:cafe] type 00 class 0x088000
    [ 0.137730] pci 0000:00:04.0: reg 10: [io 0xd020-0xd03f]
    [ 0.138343] pci 0000:00:04.0: reg 14: [mem 0xf0400000-0xf07fffff]
    [ 0.138952] pci 0000:00:04.0: reg 18: [mem 0xf0800000-0xf0803fff pref]
    [ 0.142047] pci 0000:00:05.0: [8086:2415] type 00 class 0x040100
    [ 0.142145] pci 0000:00:05.0: reg 10: [io 0xd100-0xd1ff]
    [ 0.142219] pci 0000:00:05.0: reg 14: [io 0xd200-0xd23f]
    [ 0.142677] pci 0000:00:06.0: [106b:003f] type 00 class 0x0c0310
    [ 0.143395] pci 0000:00:06.0: reg 10: [mem 0xf0804000-0xf0804fff]
    [ 0.146872] pci 0000:00:07.0: [8086:7113] type 00 class 0x068000
    [ 0.147490] pci 0000:00:0d.0: [8086:2829] type 00 class 0x010601
    [ 0.148158] pci 0000:00:0d.0: reg 10: [io 0xd240-0xd247]
    [ 0.149357] pci 0000:00:0d.0: reg 18: [io 0xd250-0xd257]
    [ 0.150594] pci 0000:00:0d.0: reg 20: [io 0xd260-0xd26f]
    [ 0.151197] pci 0000:00:0d.0: reg 24: [mem 0xf0806000-0xf0807fff]
    [ 0.152141] pci_bus 0000:00: on NUMA node 0
    [ 0.152150] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.152779] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
    [ 0.155212] ACPI: PCI Interrupt Link [LNKA] (IRQs *5 9 10 11)
    [ 0.155372] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11)
    [ 0.155426] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11)
    [ 0.155485] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11)
    [ 0.155574] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.155577] vgaarb: loaded
    [ 0.155578] vgaarb: bridge control possible 0000:00:02.0
    [ 0.155606] PCI: Using ACPI for IRQ routing
    [ 0.155607] PCI: pci_cache_line_size set to 64 bytes
    [ 0.155769] reserve RAM buffer: 000000000009fc00 - 000000000009ffff
    [ 0.155771] reserve RAM buffer: 000000003fff0000 - 000000003fffffff
    [ 0.155836] NetLabel: Initializing
    [ 0.155837] NetLabel: domain hash size = 128
    [ 0.155838] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.155846] NetLabel: unlabeled traffic allowed by default
    [ 0.158830] pnp: PnP ACPI init
    [ 0.158842] ACPI: bus type pnp registered
    [ 0.158896] pnp 00:00: [bus 00-ff]
    [ 0.158899] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.158900] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.158902] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.158903] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.158905] pnp 00:00: [mem 0x40000000-0xffdfffff window]
    [ 0.158924] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.158941] pnp 00:01: [io 0x0060]
    [ 0.158942] pnp 00:01: [io 0x0064]
    [ 0.158944] pnp 00:01: [irq 1]
    [ 0.158957] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.158963] pnp 00:02: [io 0x0000-0x000f]
    [ 0.158965] pnp 00:02: [io 0x0080-0x008f]
    [ 0.158966] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.158967] pnp 00:02: [dma 4]
    [ 0.158980] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.159007] pnp 00:03: [irq 12]
    [ 0.159020] pnp 00:03: Plug and Play ACPI device, IDs PNP0f03 (active)
    [ 0.159028] pnp 00:04: [io 0x0378-0x037f]
    [ 0.159030] pnp 00:04: [io 0x0778-0x077f]
    [ 0.159031] pnp 00:04: [irq 7]
    [ 0.159043] pnp 00:04: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.159396] pnp: PnP ACPI: found 5 devices
    [ 0.159397] ACPI: ACPI bus type pnp unregistered
    [ 0.195989] Switching to clocksource acpi_pm
    [ 0.196010] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.196012] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.196040] NET: Registered protocol family 2
    [ 0.196075] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [ 0.196148] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.196307] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.196380] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.196381] TCP: reno registered
    [ 0.196383] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.196386] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.196422] NET: Registered protocol family 1
    [ 0.196429] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
    [ 0.196453] pci 0000:00:01.0: Activating ISA DMA hang workarounds
    [ 0.196479] pci 0000:00:02.0: Boot video device
    [ 0.196479] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
    [ 0.196479] PCI: setting IRQ 11 as level-triggered
    [ 0.250191] PCI: CLS 0 bytes, default 64
    [ 0.250221] Unpacking initramfs...
    [ 0.293939] Freeing initrd memory: 2864k freed
    [ 0.294414] platform rtc_cmos: registered platform RTC device (no PNP device found)
    [ 0.294524] apm: BIOS not found.
    [ 0.294683] audit: initializing netlink socket (disabled)
    [ 0.294698] type=2000 audit(1344869699.293:1): initialized
    [ 0.294934] highmem bounce pool size: 64 pages
    [ 0.294940] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.296000] VFS: Disk quotas dquot_6.5.2
    [ 0.296033] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.296090] msgmni has been set to 1740
    [ 0.296202] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.296217] io scheduler noop registered
    [ 0.296219] io scheduler deadline registered
    [ 0.296222] io scheduler cfq registered (default)
    [ 0.296298] vesafb: mode is 640x480x32, linelength=2560, pages=0
    [ 0.296299] vesafb: scrolling: redraw
    [ 0.296300] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.296352] vesafb: framebuffer at 0xe0000000, mapped to 0xf8080000, using 1216k, total 1216k
    [ 0.297093] Console: switching to colour frame buffer device 80x30
    [ 0.297818] fb0: VESA VGA frame buffer device
    [ 0.297881] GHES: HEST is not enabled!
    [ 0.297889] isapnp: Scanning for PnP cards...
    [ 0.619715] isapnp: No Plug & Play device found
    [ 0.619771] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.620131] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    [ 0.620518] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.620538] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.620588] mousedev: PS/2 mouse device common for all mice
    [ 0.620838] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.621270] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
    [ 0.621300] rtc0: alarms up to one day, 114 bytes nvram
    [ 0.621311] cpuidle: using governor ladder
    [ 0.621312] cpuidle: using governor menu
    [ 0.621437] TCP: cubic registered
    [ 0.621502] NET: Registered protocol family 10
    [ 0.621642] NET: Registered protocol family 17
    [ 0.621645] Registering the dns_resolver key type
    [ 0.621672] Using IPI No-Shortcut mode
    [ 0.621723] PM: Hibernation image not present or could not be loaded.
    [ 0.621728] registered taskstats version 1
    [ 0.622117] rtc_cmos rtc_cmos: setting system clock to 2012-08-13 14:55:00 UTC (1344869700)
    [ 0.622138] Initializing network drop monitor service
    [ 0.622170] Freeing unused kernel memory: 524k freed
    [ 0.622287] Write protecting the kernel text: 3812k
    [ 0.622302] Write protecting the kernel read-only data: 1124k
    [ 0.629298] systemd-udevd[34]: starting version 187
    [ 0.652855] SCSI subsystem initialized
    [ 0.656712] usbcore: registered new interface driver usbfs
    [ 0.656712] usbcore: registered new interface driver hub
    [ 0.657996] libata version 3.00 loaded.
    [ 0.658210] ata_piix 0000:00:01.1: version 2.13
    [ 0.660267] usbcore: registered new device driver usb
    [ 0.660540] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.660549] scsi0 : ata_piix
    [ 0.663678] scsi1 : ata_piix
    [ 0.663712] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
    [ 0.663714] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
    [ 0.663989] ahci 0000:00:0d.0: version 3.0
    [ 0.664466] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 5
    [ 0.664469] PCI: setting IRQ 5 as level-triggered
    [ 0.664569] ahci: SSS flag set, parallel bus scan disabled
    [ 0.664708] ahci 0000:00:0d.0: AHCI 0001.0100 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    [ 0.664711] ahci 0000:00:0d.0: flags: 64bit ncq stag only ccc
    [ 0.666961] scsi2 : ahci
    [ 0.667004] ata3: SATA max UDMA/133 abar m8192@0xf0806000 port 0xf0806100 irq 5
    [ 0.667068] ohci_hcd 0000:00:06.0: OHCI Host Controller
    [ 0.667084] ohci_hcd 0000:00:06.0: new USB bus registered, assigned bus number 1
    [ 0.667110] ohci_hcd 0000:00:06.0: irq 11, io mem 0xf0804000
    [ 0.720357] hub 1-0:1.0: USB hub found
    [ 0.720368] hub 1-0:1.0: 8 ports detected
    [ 0.820420] ata2.00: ATAPI: VBOX CD-ROM, 1.0, max UDMA/133
    [ 0.820777] ata2.00: configured for UDMA/33
    [ 0.821241] scsi 1:0:0:0: CD-ROM VBOX CD-ROM 1.0 PQ: 0 ANSI: 5
    [ 0.986822] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 0.986891] ata3.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133
    [ 0.986893] ata3.00: 16777216 sectors, multi 128: LBA48 NCQ (depth 31/32)
    [ 0.986975] ata3.00: configured for UDMA/133
    [ 0.987185] scsi 2:0:0:0: Direct-Access ATA VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
    [ 0.992040] sr0: scsi3-mmc drive: 32x/32x xa/form2 tray
    [ 0.992042] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 0.992220] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 0.992309] sd 2:0:0:0: [sda] 16777216 512-byte logical blocks: (8.58 GB/8.00 GiB)
    [ 0.992335] sd 2:0:0:0: [sda] Write Protect is off
    [ 0.992337] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.992348] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.000483] sda: sda1 sda2
    [ 1.000643] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 1.106793] usb 1-1: new full-speed USB device number 2 using ohci_hcd
    [ 1.300886] Refined TSC clocksource calibration: 3062.629 MHz.
    [ 1.300892] Switching to clocksource tsc
    [ 1.343527] input: VirtualBox USB Tablet as /devices/pci0000:00/0000:00:06.0/usb1/1-1/1-1:1.0/input/input1
    [ 1.343621] generic-usb 0003:80EE:0021.0001: input,hidraw0: USB HID v1.10 Mouse [VirtualBox USB Tablet] on usb-0000:00:06.0-1/input0
    [ 1.343732] usbcore: registered new interface driver usbhid
    [ 1.343734] usbhid: USB HID core driver
    [ 1.442375] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.403131] systemd-udevd[136]: starting version 188
    [ 2.812740] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 9
    [ 2.812743] PCI: setting IRQ 9 as level-triggered
    [ 2.813203] input: Unspecified device as /devices/virtual/input/input2
    [ 2.813300] vboxguest: major 0, IRQ 9, I/O port d020, MMIO at 00000000f0400000 (size 0x400000)
    [ 2.813302] vboxguest: Successfully loaded version 4.1.18_OSE (interface 0x00010004)
    [ 2.836261] vboxsf: Successfully loaded version 4.1.18_OSE (interface 0x00010004)
    [ 2.948069] Linux agpgart interface v0.103
    [ 2.956064] [drm] Initialized drm 1.1.0 20060810
    [ 2.956575] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.956576] [drm] No driver support for vblank timestamp query.
    [ 2.956578] [drm] Initialized vboxvideo 1.0.0 20090303 for 0000:00:02.0 on minor 0
    [ 3.030274] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 3.030280] ACPI: Power Button [PWRF]
    [ 3.030471] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input4
    [ 3.030474] ACPI: Sleep Button [SLPF]
    [ 3.046817] ACPI: AC Adapter [AC] (on-line)
    [ 3.094543] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
    [ 3.094545] e1000: Copyright (c) 1999-2006 Intel Corporation.
    [ 3.094837] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
    [ 3.094840] PCI: setting IRQ 10 as level-triggered
    [ 3.214262] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 3.316722] psmouse serio1: hgpk: ID: 10 00 64
    [ 3.318607] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input6
    [ 3.321611] parport_pc 00:04: reported by Plug and Play ACPI
    [ 3.393294] ppdev: user-space parallel port driver
    [ 3.428764] microcode: CPU0 sig=0x206a7, pf=0x1, revision=0x0
    [ 3.439417] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 3.541306] e1000 0000:00:03.0: eth0: (PCI:33MHz:32-bit) 08:00:27:4f:73:56
    [ 3.541314] e1000 0000:00:03.0: eth0: Intel(R) PRO/1000 Network Connection
    [ 3.541340] piix4_smbus 0000:00:07.0: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
    [ 3.871259] intel8x0_measure_ac97_clock: measured 52595 usecs (6240 samples)
    [ 3.871261] intel8x0: measured clock 118642 rejected
    [ 4.226780] intel8x0_measure_ac97_clock: measured 53281 usecs (7200 samples)
    [ 4.226783] intel8x0: measured clock 135132 rejected
    [ 4.583408] intel8x0_measure_ac97_clock: measured 53223 usecs (7200 samples)
    [ 4.583411] intel8x0: measured clock 135279 rejected
    [ 4.583412] intel8x0: clocking to 48000
    [ 5.046848] EXT4-fs (sda2): re-mounted. Opts: data=ordered
    [ 5.046980] EXT4-fs (sda2): re-mounted. Opts: data=ordered
    [ 5.506731] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 5.507267] e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
    [ 5.507655] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 15.897707] eth0: no IPv6 routers present
    [ 33.270665] EXT4-fs (sda2): re-mounted. Opts: data=ordered,commit=0
    I've just reinstalled XFCE but nothing has changed.:( I think has something to do with this https://bugs.launchpad.net/ubuntu/+sour … comments/3
    Sorry for my bad english. Thank You.
    Please post your daemons from rc.conf. Also, how are you starting Xfce? Reinstalling things usually doesn't accomplish much. I've found it's much better and more efficient to fix the problems when they crop up. Besides, you learn much more that way.

  • [SOLVED] xfce+slim, suspend to RAM causes black and white strips

    I recently installed a fresh copy of Arch. When I click the "suspend to RAM" xfce button the screen turns off as it should, but when I try to resume I see 5 columns of black and white stripes (like a flattened checkerboard ). Alternatively when I click the "suspend to disk" (hibernate) button the screen turns black but the backlight is still on, the only way to get out of this state is to do a force shutdown with the button.
    I don't know if this is just an xfce problem, or if slim is also part of the problem, but it doesn't hurt to let you guys know about that as well.
    Reading about this problem somewhere else as a probably graphics driver issue, here's my graphics card:
    NVIDIA Corporation G72M [Quadro NVS 110M/GeForce Go 7300] (rev a1)
    and I installed the Nvidia nouveau driver from here. I didn't see anything on that page about this kind of issue.
    I also tried to add "ck-launch-session dbus-launch" to my .xinitrc file, I knew it probably wasn't the solution but I wanted to try anyways. didn't work.
    I also have 2 gigs of RAM and 3 gigs in swap partition.
    What do you guys think?
    Last edited by Zonqt (2013-01-12 02:37:59)

    I have a slight newbie question that's related to my problem: after installing pm-utils am I supposed to have a file /etc/pm/config.d/modules? I reread the docs on suspend and standby here and the instructions are implying I should already have such a file, (since they say to modify it rather than create it), but I've installed and reinstalled the pm-utils and don't have any file there.
    It's kind of important too, since i'm thinking I should put my graphics driver as one of those suspended modules...
    Edit: one more interesting tid bit, when I use "pm-suspend" in the tty command line (by disabling the slim service and never going to xfce) I suspend fine. I need to have root privileges but I can just use sudo. (this is another reason why it could be a graphics card issue or I guess a privileges issue, hmm)
    Edit2: I just tried to login as root from slim and hitting the suspend button, but got the same issue. So it's likely not a privileges issue. Strange.
    Last edited by Zonqt (2013-01-11 17:10:49)

  • Problem in login with slim to xfce

    I successfully installed xfce and it well works by starting with command "startxfce4".
    I installed slim for graphical login (according to the instruction given in the wiki), but it does not work.
    When uncommenting "exec startxfce4" in .xinitrc, after login it returns to the login page again.
    If not commenting "exec startxfce4" in .xinitrc, it login and stay with slim wallpaper. I mean login is successful, the problem is at "exec startxfce4" command, which lead to the login page instead of loading xfce.
    With the same settings, I was able to successfully use LXDM. Of course, for LXDM, I set it globally in /etc/lxdm/lxdm.conf
    Last edited by etrader (2012-09-23 20:08:29)

    Show your .xinitrc and slim.log.

  • Font rendering differences between Xfce and KDE

    Hi,
    I am using both KDE and Xfce (mostly Xfce with KDE apps) and I observed that there is a font rendering difference between Gtk (Xfce) and QT (KDE) apps.
    In both desktop environments I use dejavu sans font, size 9 and I have set RGB subpixel rendering and hinting to full.
    I created some screenshots of dolphin and thunar to illustrate the differences (right click and select view image to see the screenshots in full resolution)
    Can somebody help me to make gtk app fonts to look the same as qt ones? Or at least tell me why there is this difference.
    Thank you.

    I cant tell you why there is a difference, but this page may help you. https://wiki.archlinux.org/index.php/Font_Configuration
    I ended up installing the Ubuntu patched packages in the AUR, but there are different options.

  • Font problem in xfce

    Hi All, I'm having a problem with fonts in certain applications in XFCE (doesn't happen when I use openbox).   For example, here's what chrome looks like:
    I'm sure it's something simple like a missing font, but I'm not entirely sure how to fix it.
    Halp!

    I just installed Chrome for fun and to see if I could help you more.  I didn't run into the problem you've screenshotted above, also using XFCE.  Maybe Chome doesn't like the font you've got configured as default in XFCE (I'm using Times New Roman).  The splash page when I opened it did say that font support still isn't 100%.
    Or, this is a long shot, but maybe it's an XFCE configuration migration problem.  I ended up wiping my XFCE config after the upgrade to version 4.6 due to other problems.  Maybe create a new user, launch XFCE with it, and see what happens with Chome there.

Maybe you are looking for

  • Kernel panics despite all fixes

    First, the specs of my system: OSX 10.3.9 G4 Dual 450 with 1gb ram Apple 17" Studio Monitor (clear one) 40 gb Maxtor drive and 120 gb Seagate drive with a 30 gb "Scratch" partition CS2, Office X, Firefox, Apple Mail, Fetch, Dreamweaver, Lotus Notes (

  • File sharing reports too many users connected

    SPECS: Mac Mini Core 2 Duo 2 GHz, 2G RAM, Mac OS X 10.6.4. Other users in office also running similar hardware and Mac OS X 10.6.4. CLARIFICATION: This Mini is used as a file server in a small law office (4 other workstations). It is running Mac OS X

  • Iphoto greyed out when trying to upload photos to Facebook - Help!

    As my title indicates, my iphoto is not accesible for uploading.  Its not just Facebook, I tried uploading pictures to Shutterfly and the same thing happens.  If I try to upload directly from iphotos none of the pictures are selectable.  If I try to

  • OVI SUITE 3.0.9.284 won't connect to internet

    I had Nokia PC Suite before, no problem - now with my new N8 I have to use Ovi Suite. It's version 3.0.0.284. Although I have a Nokia Account, there is a standing functioning broadband connection to the internet, my Windows Firewall has Ovi Suite reg

  • Unable to create database on windows7 using Oracle 10g XE

    please provide me the steps to create database on windows7 64bit using 10g XE