RandR a la Xinerama separate X screens

Trying to get with the modern world by moving from deprecated Xinerama to RandR.
I'm able to strip down my xorg.conf to the minimum (i.e. monitor sections) and get randr setup working, but one roadblock I'm hitting is that unlike Xinerama, where you can stich together separate X screens across a single display (i.e. available monitor real estate), randr creates a single X screen.
This is an issue for me since I use the xcalib package to calibrate my monitors and, crucially, invert screen color on a per X screen basis. It's quite jarring on the eyes to invert from preferred black background to white across all screens. In a Xinerma setup if I have Firefox open on my primary monitor and want to see how a site I'm working on "really" looks, I can invert that screen alone in isolation (vs. all 3 monitors with randr).
Anyone know how to pull off the pseudo separate X screens that Xinerma provides, but in randr??
Barring that, any suggestions for an xcalib replacement that can invert screen colors by identifying the physical monitors? Unfortunately xcalib seems to be screen/display based and randr works off screen 0/display :0 by default.
Thanks

If you adjust only brightness and gamma correction, you should be able to do that with the xrandr binary.
To invert the colors of a single screen, you might be interested in this: https://github.com/zoltanp/xrandr-invert-colors

Similar Messages

  • Separate X screen. Can't access original screen.

    Okay, I'm using a laptop and have an external monitor plugged into it. I've set it to run separate X screens (I want it to run like separate entities).
    I've created a bash script to start openbox in the second window.
    $HOME/.config/openbox/screen2.sh
    In my /usr/bin/openbox-session
    Anyway, so it starts off great. Both screen pull up and every thing's happy.
    However the problem comes when I switch monitors. When I move my mouse over I can't move it back.
    I can't seem to figure out how to get back to the other screen.
    Below is my xorg.conf
    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings: version 1.0 (buildmeister@builder63) Fri Aug 14 17:55:55 PDT 2009
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "0"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "DELL 1704FPV"
    HorizSync 30.0 - 81.0
    VertRefresh 56.0 - 76.0
    Option "DPMS"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "Monitor1"
    VendorName "Unknown"
    ModelName "Seiko"
    HorizSync 30.0 - 75.0
    VertRefresh 60.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 8600M GS"
    BusID "PCI:1:0:0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "Device1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 8600M GS"
    BusID "PCI:1:0:0"
    Screen 1
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "TwinViewXineramaInfoOrder" "CRT-0"
    Option "metamodes" "CRT: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "TwinViewXineramaInfoOrder" "DFP-0"
    Option "metamodes" "DFP: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection

    My bad.
    New development though.
    I was recently at a LAN party and I was using one of my friends monitors with my laptop.
    After setting up everything (it was pretty much the same Xorg minus the Screen Res) I was able to switch back and forth...
    I'm not sure but I have a hunch that this might be caused by the fact that my screen's resolution is so much smaller than my laptops resolution.

  • [SOLVED] Have flash fullscreen not exit on separate x screen?

    Is there a way I can have flash running fullscreen on my second monitor (running a separate x screen) and be able to click/use my other x screen?
    edit: found this and it works http://www.ubunturoot.com/2011/07/fulls … -dual.html
    Last edited by boast (2012-08-14 23:13:47)

    work well but not with pepper flash

  • Moving windows between separate X screens

    I've just switched over to using separate X screens for various different reasons and the only thing I can't get sorted is to find a way to move a window from one screen to another. I've tried 'xmove' and 'wmctrl' so far but had no joy. I don't want to go back to using twinview and searching around the usual supects is turning up nothing besides what i've already mentioned.
    From what i've read it's (quite easily) do-able on other platforms but does anyone know if this is possible on Linux?

    I believe this can be done, at least from GTK level. Here is a short example of how this can be achieved:
    #include <gtk/gtk.h>
    #include <gdk/gdk.h>
    GtkWindow * mainWindow;
    GdkDisplay *second_display;
    GdkScreen *second_screen;
    static void print_hello (GtkWidget *widget, gpointer data)
    g_print ("Hello World\n");
    GdkScreen* screen = gtk_window_get_screen(mainWindow);
    gint number = gdk_screen_get_number(screen);
    g_print ("Opened in screen %d \n",number);
    gtk_window_set_screen (mainWindow, second_screen);
    screen = gtk_window_get_screen(mainWindow);
    number = gdk_screen_get_number(screen);
    g_print ("Now in screen %d \n",number);
    int main (int argc, char *argv[])
    GtkWidget *window;
    GtkWidget *button;
    gtk_init (&argc, &argv);
    second_display = gdk_display_open (":0.1");
    second_screen = gdk_display_get_default_screen (second_display);
    window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
    mainWindow = GTK_WINDOW(window);
    gtk_window_set_title (GTK_WINDOW (window), "Hello");
    g_signal_connect (window, "destroy", G_CALLBACK (gtk_main_quit), NULL);
    gtk_container_set_border_width (GTK_CONTAINER (window), 10);
    button = gtk_button_new_with_label ("Hello World");
    g_signal_connect (button, "clicked", G_CALLBACK (print_hello), NULL);
    gtk_container_add (GTK_CONTAINER (window), button);
    gtk_widget_show (button);
    gtk_widget_show (window);
    gtk_main ();
    return 0;
    This is modified from hello world example of gtk. Save the code to simple.c, then it should be compiled with:
    gcc -o simple simple.c `pkg-config --libs --cflags gtk+-2.0`
    The program will be started with a button inside, on where you start it. When button is clicked, the window will be move to the screen with display name ":0.1", you can change that value in source code to have it move to other screen.
    As far as I known, Gimp and emacs utilized this ability so that you can move their windows to other screen.
    I am not comfirmed but I think there is a similiar way to do so in QT. So if a program use either GTK or QT, its windows is capable to move to other screens.
    I do not know whether this can be done in Xlib or Xcb, and how this is done in GTK. Maybe they re-created a new X window and re-map everything to that container. So maybe it is hard to control in Window Managers. Its upon the developer of applications to make this ability available.

  • Gnome 3 crashes with Separate X Screens

    Hi
    I've recently upgraded to Gnome 3 but I'm having trouble to get Separate X Screens to work with the proprietary nVidia driver. GDM starts fine but gnome crashes when I'm logging in and giving me the "Oops" message.
    Anyone else who have encountered this issue or have some idea how to solve it?
    Thanks
    // Lazze

    I never found any real solution to this problem, I have a single screen setup since a while ago and havenät looked further into it since then.

  • Video output separate from screen

    This may be more complicated than I suspect. We have had a string of thiefts from my office lately. The thieves are only taking things they can fit in their pockets, loose change, digital cameras, digital video cameras, stuff like that. My iMac is always on and running in screen saver mode. I'd like to have the imac camera signal being fed to my Security DVR device, while the screen saver is still running. I can get the signal to my DVR via the video output, but of course it only show what I see on the primary display. Can I separate those two video signals and capture what the camera see's while the screen saver is on?
    Thank you,
    Todd

    Have you tried using *extended desktop mode* and setting the external display (ie your DVR) as the primary display? That would make your iMac display the secondary display and provided you don't drag any windows onto it, it should only show a blank screen.
    You will need to have a separate display connected to your DVR so you can see things to set it up once you switch the iMac into extended desktop mode & set the external display as your primary display
    You do this in +System Prefs > Displays+ but the controls for the external display only appear when you have an external display connected. You start extended desktop mode by UNchecking the mirror displays item. Once you are sure everything is working correctly, you could turn off the external display while your DVR continues to record.

  • Gnome - Separate X Screens and and application launching

    After the update to gnome 2.26.0, i've got a problem with my screen configuration. I use two screens with separate X sessions, but every time i try to launch an application from the second screen, it appears into the first.
    If i launch from the first screen a command like:
    firefox --display :0,1
    I can see firefox on the second monitor, but if i launch firefox from the menu of the second monitor, firefox appear into the first one.
    Anyone has an idea ?

    marcs wrote:
    After the update to gnome 2.26.0, i've got a problem with my screen configuration. I use two screens with separate X sessions, but every time i try to launch an application from the second screen, it appears into the first.
    If i launch from the first screen a command like:
    firefox --display :0,1
    I can see firefox on the second monitor, but if i launch firefox from the menu of the second monitor, firefox appear into the first one.
    Anyone has an idea ?
    It would be easier to help you if you didn't distract everyone trying to read your post with a stupid dancing bear gif.

  • 2 separate desktop screens on 1 macbook.

    I understand it is possible to have seperate desktops, but is it possible to remove some items one one screen without affecting the other. I would like to set up one desktop screen for business and the other for personal. So that would involve seperate folders on one compared to the other.
    Please help.

    Just the fact that you have all these questions about different user accounts in OS X leads me to believe this would not be a good solution for what you are trying to do.
    Fast user switching would be ideal if you have confidential info that you don't want to get mixed up with your personal data, like work passwords, work documents, different internet favorites, etc. It is designed to keep information between user accounts separate, and not available to other users by default.
    Different user accounts can share some data and certain folders, but it's not seamless and not instantaneous to switch like a Space. If you are trying to share things like web pages, app data, & emails then doing that between multiple accounts will be a pain.
    My advice is to just create different folders in the Finder for different purposes. It will be a lot easier to manage if you were just wanting to sort things.

  • How to separate logon screens

    Dear Sir,
    We implement EP6.0 SP2 , we need to separtae logon screen as we are the group companies . Each company need to logon with its logon screen. However, those logon screen will access to the same EP6.0.
    Please kindly adivse .
    Thanks and best regarads,

    Hi,
    The only ways I could see are the following:
    You can choose to give them different urls or to verify their access point before displaying the screen.
    Regards, Ludovic

  • Move window between Separate X screens

    Hello
    If I would like to run an application on my secondary monitor I just run:
    env DISPLAY=:0.1 xclock
    Is there something similar to send an already open window to my secondary monitor?
    Thanks
    // Lasse

    I spent a lot of time looking for something like that. Not possible for X apps currently, there were really old programs to do that which can't be used anymore with newer versions of things like xorg-server.

  • Virtual Console on Separate Screen

    As in the title, I would like to know how (if at all possible) to run a virtual console on my second screen, and still have X, Openbox, all my graphical stuff on my main screen.

    I had considered this, but if I set it to TwinView, it stretches by desktop background, and my SLiM logon background.
    In the nVidia config utility, I saw an option for a separate X screen, would I be able to set this up to have a terminal full screen on my second screen?

  • NVIDIA Optimus on MSI GE70 2OE: No screens, then server fails to start

    Hello,
    I have recently acquired an MSI GE70 2OE-071 laptop with the following configuration, intending to run Arch Linux (dual boot with Windows 7) on it:
    CPU: Intel Core i7-4700 MQ
    GPU: Nvidia GeForce GTX 765M (2 GB DDR5 memory)
    LCD: 17.3" FHD 1920x1080
    Memory: 12 GB DDR3
    HDD: 1 TB 7200 RPM
    I originally installed Arch Linux the same way as described in the beginner's guide. I could get the basic twm setup to work, but the moment I installed the proprietary drivers (using pacman -S nvidia, followed by nvidia-xconfig, followed by a reboot), X Windows crashed, i.e. I started getting the No screens found error. So after some days of digging, I found the NVIDIA Optimus wiki page. Following the advice here, I could get rid of this error, but I still cannot get into the GUI, because the server terminates. There is no hardware problem that I can think of because Manjaro Linux works fine, and being a perpetual Arch novice eager to learn, I just wanted to get this thing to work from the ground up.
    So I'd really appreciate some help.
    Here are the relevant files and command outputs.
    uname -a. url = http://bpaste.net/show/166840/
    Linux gluon 3.12.6-1-ARCH #1 SMP PREEMPT Fri Dec 20 19:39:00 CET 2013 x86_64 GNU/Linux
    .xinitrc. url = http://bpaste.net/show/166837/
    xrandr --setprovideroutputsource modesetting NVIDIA-0
    xrandr --auto
    /etc/X11/xorg.conf. url = http://bpaste.net/show/166838/
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 331.20 (buildmeister@swio-display-x86-rhel47-05) Wed Oct 30 18:20:53 PDT 2013
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BusID "PCI:1:0:0" # manually added
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    /var/log/Xorg.0.log. url = http://bpaste.net/show/166839/
    [ 1684.463]
    X.Org X Server 1.14.5
    Release Date: 2013-12-12
    [ 1684.465] X Protocol Version 11, Revision 0
    [ 1684.465] Build Operating System: Linux 3.12.5-1-ARCH x86_64
    [ 1684.466] Current Operating System: Linux gluon 3.12.6-1-ARCH #1 SMP PREEMPT Fri Dec 20 19:39:00 CET 2013 x86_64
    [ 1684.466] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=d2a5754c-c679-48b4-9b12-02ae94b83604 rw quiet
    [ 1684.467] Build Date: 06 January 2014 10:25:32PM
    [ 1684.467]
    [ 1684.468] Current version of pixman: 0.32.4
    [ 1684.469] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 1684.469] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 1684.472] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jan 11 07:17:09 2014
    [ 1684.472] (==) Using config file: "/etc/X11/xorg.conf"
    [ 1684.473] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 1684.473] (==) ServerLayout "Layout0"
    [ 1684.473] (**) |-->Screen "Screen0" (0)
    [ 1684.473] (**) | |-->Monitor "Monitor0"
    [ 1684.473] (**) | |-->Device "Device0"
    [ 1684.473] (**) |-->Input Device "Keyboard0"
    [ 1684.473] (**) |-->Input Device "Mouse0"
    [ 1684.473] (==) Automatically adding devices
    [ 1684.473] (==) Automatically enabling devices
    [ 1684.473] (==) Automatically adding GPU devices
    [ 1684.473] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 1684.473] Entry deleted from font path.
    [ 1684.473] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 1684.473] Entry deleted from font path.
    [ 1684.473] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 1684.473] Entry deleted from font path.
    [ 1684.473] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 1684.473] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 1684.473] Entry deleted from font path.
    [ 1684.473] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 1684.473] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 1684.473] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 1684.473] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 1684.473] (WW) Disabling Keyboard0
    [ 1684.473] (WW) Disabling Mouse0
    [ 1684.473] (II) Loader magic: 0x7fac20
    [ 1684.473] (II) Module ABI versions:
    [ 1684.473] X.Org ANSI C Emulation: 0.4
    [ 1684.473] X.Org Video Driver: 14.1
    [ 1684.473] X.Org XInput driver : 19.1
    [ 1684.473] X.Org Server Extension : 7.0
    [ 1684.473] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 1684.473] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 1684.474] (--) PCI:*(0:0:2:0) 8086:0416:1462:10e1 rev 6, Mem @ 0xf7400000/4194304, 0xb0000000/268435456, I/O @ 0x0000f000/64
    [ 1684.474] (--) PCI: (0:1:0:0) 10de:11e2:1462:10e1 rev 161, Mem @ 0xf6000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 1684.475] Initializing built-in extension Generic Event Extension
    [ 1684.476] Initializing built-in extension SHAPE
    [ 1684.476] Initializing built-in extension MIT-SHM
    [ 1684.477] Initializing built-in extension XInputExtension
    [ 1684.478] Initializing built-in extension XTEST
    [ 1684.478] Initializing built-in extension BIG-REQUESTS
    [ 1684.479] Initializing built-in extension SYNC
    [ 1684.479] Initializing built-in extension XKEYBOARD
    [ 1684.480] Initializing built-in extension XC-MISC
    [ 1684.481] Initializing built-in extension SECURITY
    [ 1684.481] Initializing built-in extension XINERAMA
    [ 1684.482] Initializing built-in extension XFIXES
    [ 1684.482] Initializing built-in extension RENDER
    [ 1684.483] Initializing built-in extension RANDR
    [ 1684.484] Initializing built-in extension COMPOSITE
    [ 1684.484] Initializing built-in extension DAMAGE
    [ 1684.485] Initializing built-in extension MIT-SCREEN-SAVER
    [ 1684.485] Initializing built-in extension DOUBLE-BUFFER
    [ 1684.486] Initializing built-in extension RECORD
    [ 1684.487] Initializing built-in extension DPMS
    [ 1684.487] Initializing built-in extension X-Resource
    [ 1684.488] Initializing built-in extension XVideo
    [ 1684.488] Initializing built-in extension XVideo-MotionCompensation
    [ 1684.489] Initializing built-in extension XFree86-VidModeExtension
    [ 1684.489] Initializing built-in extension XFree86-DGA
    [ 1684.490] Initializing built-in extension XFree86-DRI
    [ 1684.490] Initializing built-in extension DRI2
    [ 1684.490] (II) LoadModule: "glx"
    [ 1684.490] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 1684.490] (II) Module glx: vendor="X.Org Foundation"
    [ 1684.490] compiled for 1.14.5, module version = 1.0.0
    [ 1684.490] ABI class: X.Org Server Extension, version 7.0
    [ 1684.490] (==) AIGLX enabled
    [ 1684.491] Loading extension GLX
    [ 1684.491] (II) LoadModule: "nvidia"
    [ 1684.491] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 1684.491] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 1684.491] compiled for 4.0.2, module version = 1.0.0
    [ 1684.491] Module class: X.Org Video Driver
    [ 1684.491] (II) NVIDIA dlloader X Driver 331.20 Wed Oct 30 17:16:53 PDT 2013
    [ 1684.491] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 1684.491] (++) using VT number 1
    [ 1684.491] (II) Loading sub module "fb"
    [ 1684.491] (II) LoadModule: "fb"
    [ 1684.491] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1684.491] (II) Module fb: vendor="X.Org Foundation"
    [ 1684.491] compiled for 1.14.5, module version = 1.0.0
    [ 1684.491] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1684.491] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 1684.491] (II) Loading sub module "wfb"
    [ 1684.491] (II) LoadModule: "wfb"
    [ 1684.491] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 1684.491] (II) Module wfb: vendor="X.Org Foundation"
    [ 1684.491] compiled for 1.14.5, module version = 1.0.0
    [ 1684.491] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1684.491] (II) Loading sub module "ramdac"
    [ 1684.491] (II) LoadModule: "ramdac"
    [ 1684.491] (II) Module "ramdac" already built-in
    [ 1684.491] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [ 1684.491] (==) NVIDIA(0): RGB weight 888
    [ 1684.492] (==) NVIDIA(0): Default visual is TrueColor
    [ 1684.492] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 1684.492] (**) NVIDIA(0): Enabling 2D acceleration
    [ 1684.492] (EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X
    [ 1684.492] (EE) NVIDIA(0): log file that the GLX module has been loaded in your X
    [ 1684.492] (EE) NVIDIA(0): server, and that the module is the NVIDIA GLX module. If
    [ 1684.492] (EE) NVIDIA(0): you continue to encounter problems, Please try
    [ 1684.492] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
    [ 1684.654] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 1684.655] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 765M (GK106) at PCI:1:0:0 (GPU-0)
    [ 1684.655] (--) NVIDIA(0): Memory: 2097152 kBytes
    [ 1684.655] (--) NVIDIA(0): VideoBIOS: 80.06.5d.00.09
    [ 1684.655] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 1684.655] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 765M at PCI:1:0:0
    [ 1684.655] (--) NVIDIA(0): none
    [ 1684.655] (II) NVIDIA(0): Validated MetaModes:
    [ 1684.655] (II) NVIDIA(0): "NULL"
    [ 1684.655] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
    [ 1684.655] (WW) NVIDIA(0): Unable to get display device for DPI computation.
    [ 1684.655] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
    [ 1684.655] (--) Depth 24 pixmap format is 32 bpp
    [ 1684.655] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
    [ 1684.655] (II) NVIDIA: access.
    [ 1684.661] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 1684.661] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 1684.661] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 1684.661] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 1684.661] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 1684.661] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 1684.661] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 1684.661] (II) NVIDIA(0): Config Options in the README.
    [ 1684.661] (II) NVIDIA(0): Setting mode "NULL"
    [ 1684.661] (EE) NVIDIA(0): Failed to initiate mode change.
    [ 1684.661] (EE) NVIDIA(0): Failed to complete mode change
    [ 1684.668] (II) NVIDIA(0): Built-in logo is bigger than the screen.
    [ 1684.668] Loading extension NV-GLX
    [ 1684.670] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 1684.670] (==) NVIDIA(0): Backing store disabled
    [ 1684.670] (==) NVIDIA(0): Silken mouse enabled
    [ 1684.670] (**) NVIDIA(0): DPMS enabled
    [ 1684.670] Loading extension NV-CONTROL
    [ 1684.670] (II) Loading sub module "dri2"
    [ 1684.670] (II) LoadModule: "dri2"
    [ 1684.670] (II) Module "dri2" already built-in
    [ 1684.670] (II) NVIDIA(0): [DRI2] Setup complete
    [ 1684.670] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 1684.670] (--) RandR disabled
    [ 1684.673] (II) AIGLX: Screen 0 is not DRI2 capable
    [ 1684.673] (II) AIGLX: Screen 0 is not DRI capable
    [ 1684.680] (II) AIGLX: Loaded and initialized swrast
    [ 1684.680] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 1684.697] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 1684.697] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 1684.697] (II) LoadModule: "evdev"
    [ 1684.697] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 1684.697] (II) Module evdev: vendor="X.Org Foundation"
    [ 1684.697] compiled for 1.14.3, module version = 2.8.2
    [ 1684.697] Module class: X.Org XInput Driver
    [ 1684.697] ABI class: X.Org XInput driver, version 19.1
    [ 1684.697] (II) Using input driver 'evdev' for 'Power Button'
    [ 1684.697] (**) Power Button: always reports core events
    [ 1684.697] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 1684.697] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 1684.697] (--) evdev: Power Button: Found keys
    [ 1684.697] (II) evdev: Power Button: Configuring as keyboard
    [ 1684.697] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
    [ 1684.697] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 1684.697] (**) Option "xkb_rules" "evdev"
    [ 1684.697] (**) Option "xkb_model" "pc104"
    [ 1684.697] (**) Option "xkb_layout" "us"
    [ 1684.709] (II) config/udev: Adding input device Video Bus (/dev/input/event12)
    [ 1684.709] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 1684.709] (II) Using input driver 'evdev' for 'Video Bus'
    [ 1684.709] (**) Video Bus: always reports core events
    [ 1684.709] (**) evdev: Video Bus: Device: "/dev/input/event12"
    [ 1684.709] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 1684.709] (--) evdev: Video Bus: Found keys
    [ 1684.709] (II) evdev: Video Bus: Configuring as keyboard
    [ 1684.709] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input13/event12"
    [ 1684.709] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 1684.709] (**) Option "xkb_rules" "evdev"
    [ 1684.709] (**) Option "xkb_model" "pc104"
    [ 1684.709] (**) Option "xkb_layout" "us"
    [ 1684.709] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 1684.709] (II) No input driver specified, ignoring this device.
    [ 1684.709] (II) This device may have been added with another device file.
    [ 1684.709] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
    [ 1684.709] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 1684.709] (II) Using input driver 'evdev' for 'Video Bus'
    [ 1684.709] (**) Video Bus: always reports core events
    [ 1684.709] (**) evdev: Video Bus: Device: "/dev/input/event11"
    [ 1684.709] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 1684.709] (--) evdev: Video Bus: Found keys
    [ 1684.709] (II) evdev: Video Bus: Configuring as keyboard
    [ 1684.709] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:48/LNXVIDEO:00/input/input12/event11"
    [ 1684.709] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 1684.709] (**) Option "xkb_rules" "evdev"
    [ 1684.709] (**) Option "xkb_model" "pc104"
    [ 1684.709] (**) Option "xkb_layout" "us"
    [ 1684.710] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 1684.710] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 1684.710] (II) Using input driver 'evdev' for 'Power Button'
    [ 1684.710] (**) Power Button: always reports core events
    [ 1684.710] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 1684.710] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 1684.710] (--) evdev: Power Button: Found keys
    [ 1684.710] (II) evdev: Power Button: Configuring as keyboard
    [ 1684.710] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3/event2"
    [ 1684.710] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
    [ 1684.710] (**) Option "xkb_rules" "evdev"
    [ 1684.710] (**) Option "xkb_model" "pc104"
    [ 1684.710] (**) Option "xkb_layout" "us"
    [ 1684.710] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 1684.710] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 1684.710] (II) config/udev: Adding input device HDA Intel MID HDMI/DP,pcm=3 (/dev/input/event15)
    [ 1684.710] (II) No input driver specified, ignoring this device.
    [ 1684.710] (II) This device may have been added with another device file.
    [ 1684.710] (II) config/udev: Adding input device HDA Intel MID HDMI/DP,pcm=7 (/dev/input/event14)
    [ 1684.710] (II) No input driver specified, ignoring this device.
    [ 1684.710] (II) This device may have been added with another device file.
    [ 1684.710] (II) config/udev: Adding input device HDA Intel MID HDMI/DP,pcm=8 (/dev/input/event13)
    [ 1684.710] (II) No input driver specified, ignoring this device.
    [ 1684.710] (II) This device may have been added with another device file.
    [ 1684.710] (II) config/udev: Adding input device BisonCam, NB Pro (/dev/input/event9)
    [ 1684.710] (**) BisonCam, NB Pro: Applying InputClass "evdev keyboard catchall"
    [ 1684.710] (II) Using input driver 'evdev' for 'BisonCam, NB Pro'
    [ 1684.710] (**) BisonCam, NB Pro: always reports core events
    [ 1684.710] (**) evdev: BisonCam, NB Pro: Device: "/dev/input/event9"
    [ 1684.710] (--) evdev: BisonCam, NB Pro: Vendor 0x5986 Product 0x14c
    [ 1684.710] (--) evdev: BisonCam, NB Pro: Found keys
    [ 1684.710] (II) evdev: BisonCam, NB Pro: Configuring as keyboard
    [ 1684.710] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input11/event9"
    [ 1684.710] (II) XINPUT: Adding extended input device "BisonCam, NB Pro" (type: KEYBOARD, id 10)
    [ 1684.710] (**) Option "xkb_rules" "evdev"
    [ 1684.710] (**) Option "xkb_model" "pc104"
    [ 1684.710] (**) Option "xkb_layout" "us"
    [ 1684.711] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
    [ 1684.711] (II) No input driver specified, ignoring this device.
    [ 1684.711] (II) This device may have been added with another device file.
    [ 1684.711] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event7)
    [ 1684.711] (II) No input driver specified, ignoring this device.
    [ 1684.711] (II) This device may have been added with another device file.
    [ 1684.711] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event8)
    [ 1684.711] (II) No input driver specified, ignoring this device.
    [ 1684.711] (II) This device may have been added with another device file.
    [ 1684.711] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 1684.711] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 1684.711] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 1684.711] (**) AT Translated Set 2 keyboard: always reports core events
    [ 1684.711] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 1684.711] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 1684.711] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 1684.711] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 1684.711] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 1684.711] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 1684.711] (**) Option "xkb_rules" "evdev"
    [ 1684.711] (**) Option "xkb_model" "pc104"
    [ 1684.711] (**) Option "xkb_layout" "us"
    [ 1684.711] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event10)
    [ 1684.711] (**) ETPS/2 Elantech Touchpad: Applying InputClass "evdev touchpad catchall"
    [ 1684.711] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
    [ 1684.711] (**) ETPS/2 Elantech Touchpad: Applying InputClass "Default clickpad buttons"
    [ 1684.711] (II) LoadModule: "synaptics"
    [ 1684.711] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 1684.711] (II) Module synaptics: vendor="X.Org Foundation"
    [ 1684.711] compiled for 1.14.4, module version = 1.7.2
    [ 1684.711] Module class: X.Org XInput Driver
    [ 1684.711] ABI class: X.Org XInput driver, version 19.1
    [ 1684.711] (II) Using input driver 'synaptics' for 'ETPS/2 Elantech Touchpad'
    [ 1684.711] (**) ETPS/2 Elantech Touchpad: always reports core events
    [ 1684.711] (**) Option "Device" "/dev/input/event10"
    [ 1684.783] (II) synaptics: ETPS/2 Elantech Touchpad: found clickpad property
    [ 1684.783] (--) synaptics: ETPS/2 Elantech Touchpad: x-axis range 0 - 3260 (res 33)
    [ 1684.783] (--) synaptics: ETPS/2 Elantech Touchpad: y-axis range 0 - 2119 (res 33)
    [ 1684.783] (--) synaptics: ETPS/2 Elantech Touchpad: pressure range 0 - 255
    [ 1684.783] (--) synaptics: ETPS/2 Elantech Touchpad: finger width range 0 - 15
    [ 1684.783] (--) synaptics: ETPS/2 Elantech Touchpad: buttons: left double triple
    [ 1684.783] (--) synaptics: ETPS/2 Elantech Touchpad: Vendor 0x2 Product 0xe
    [ 1684.783] (**) Option "TapButton1" "1"
    [ 1684.783] (**) Option "TapButton2" "2"
    [ 1684.783] (**) Option "TapButton3" "3"
    [ 1684.783] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
    [ 1684.783] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [ 1684.783] (**) ETPS/2 Elantech Touchpad: always reports core events
    [ 1684.809] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event10"
    [ 1684.809] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD, id 12)
    [ 1684.810] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MinSpeed is now constant deceleration 2.5
    [ 1684.810] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MaxSpeed is now 1.75
    [ 1684.810] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) AccelFactor is now 0.051
    [ 1684.810] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
    [ 1684.810] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 1
    [ 1684.810] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
    [ 1684.810] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
    [ 1684.810] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [ 1684.810] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
    [ 1684.810] (**) ETPS/2 Elantech Touchpad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 1684.810] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 1684.810] (II) No input driver specified, ignoring this device.
    [ 1684.810] (II) This device may have been added with another device file.
    [ 1684.810] (II) config/udev: Adding input device MSI WMI hotkeys (/dev/input/event5)
    [ 1684.810] (**) MSI WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 1684.810] (II) Using input driver 'evdev' for 'MSI WMI hotkeys'
    [ 1684.810] (**) MSI WMI hotkeys: always reports core events
    [ 1684.810] (**) evdev: MSI WMI hotkeys: Device: "/dev/input/event5"
    [ 1684.810] (--) evdev: MSI WMI hotkeys: Vendor 0 Product 0
    [ 1684.810] (--) evdev: MSI WMI hotkeys: Found keys
    [ 1684.810] (II) evdev: MSI WMI hotkeys: Configuring as keyboard
    [ 1684.810] (**) Option "config_info" "udev:/sys/devices/virtual/input/input7/event5"
    [ 1684.810] (II) XINPUT: Adding extended input device "MSI WMI hotkeys" (type: KEYBOARD, id 13)
    [ 1684.810] (**) Option "xkb_rules" "evdev"
    [ 1684.810] (**) Option "xkb_model" "pc104"
    [ 1684.810] (**) Option "xkb_layout" "us"
    [ 1685.097] (II) evdev: MSI WMI hotkeys: Close
    [ 1685.097] (II) UnloadModule: "evdev"
    [ 1685.097] (II) UnloadModule: "synaptics"
    [ 1685.097] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 1685.097] (II) UnloadModule: "evdev"
    [ 1685.097] (II) evdev: BisonCam, NB Pro: Close
    [ 1685.097] (II) UnloadModule: "evdev"
    [ 1685.097] (II) evdev: Power Button: Close
    [ 1685.097] (II) UnloadModule: "evdev"
    [ 1685.097] (II) evdev: Video Bus: Close
    [ 1685.097] (II) UnloadModule: "evdev"
    [ 1685.097] (II) evdev: Video Bus: Close
    [ 1685.097] (II) UnloadModule: "evdev"
    [ 1685.097] (II) evdev: Power Button: Close
    [ 1685.097] (II) UnloadModule: "evdev"
    [ 1685.116] (II) NVIDIA(GPU-0): Deleting GPU-0
    [b][ 1685.120] (EE) Server terminated successfully (0). Closing log file.[/b]
    lspci. url = http://bpaste.net/show/166842/
    00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller (rev 06)
    00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller (rev 06)
    00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
    00:03.0 Audio device: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller (rev 06)
    00:14.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI (rev 05)
    00:16.0 Communication controller: Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #1 (rev 04)
    00:1a.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #2 (rev 05)
    00:1b.0 Audio device: Intel Corporation 8 Series/C220 Series Chipset High Definition Audio Controller (rev 05)
    00:1c.0 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #1 (rev d5)
    00:1c.2 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #3 (rev d5)
    00:1c.3 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #4 (rev d5)
    00:1c.5 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #6 (rev d5)
    00:1d.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1 (rev 05)
    00:1f.0 ISA bridge: Intel Corporation HM87 Express LPC Controller (rev 05)
    00:1f.2 SATA controller: Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] (rev 05)
    00:1f.3 SMBus: Intel Corporation 8 Series/C220 Series Chipset Family SMBus Controller (rev 05)
    01:00.0 3D controller: NVIDIA Corporation GK106M [GeForce GTX 765M] (rev a1)
    03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device 5227 (rev 01)
    04:00.0 Ethernet controller: Qualcomm Atheros Killer E2200 Gigabit Ethernet Controller (rev 13)
    05:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8723AE PCIe Wireless Network Adapter
    dmesg. url: http://bpaste.net/show/166841/
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.12.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SMP PREEMPT Fri Dec 20 19:39:00 CET 2013
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=d2a5754c-c679-48b4-9b12-02ae94b83604 rw quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009b171fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b172000-0x000000009b178fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009b179000-0x000000009b8e8fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b8e9000-0x000000009bb55fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009bb56000-0x00000000ab48ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ab490000-0x00000000ab697fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ab698000-0x00000000ab78bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ab78c000-0x00000000abb73fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000abb74000-0x00000000abffefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000abfff000-0x00000000abffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ad000000-0x00000000af1fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000034fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Micro-Star International Co., Ltd. GE70 2OC\2OE/MS-1757, BIOS E1757IMS.10E 07/15/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x34fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7E00000000 write-back
    [ 0.000000] 1 base 0200000000 mask 7F00000000 write-back
    [ 0.000000] 2 base 0300000000 mask 7F80000000 write-back
    [ 0.000000] 3 base 00C0000000 mask 7FC0000000 uncachable
    [ 0.000000] 4 base 00B0000000 mask 7FF0000000 uncachable
    [ 0.000000] 5 base 00AE000000 mask 7FFE000000 uncachable
    [ 0.000000] 6 base 00AD000000 mask 7FFF000000 uncachable
    [ 0.000000] 7 base 0360000000 mask 7FE0000000 uncachable
    [ 0.000000] 8 base 0350000000 mask 7FF0000000 uncachable
    [ 0.000000] 9 base 034FE00000 mask 7FFFE00000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xad000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xac000 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fd770-0x000fd77f] mapped at [ffff8800000fd770]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    [ 0.000000] BRK [0x01b34000, 0x01b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x34fc00000-0x34fdfffff]
    [ 0.000000] [mem 0x34fc00000-0x34fdfffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x34c000000-0x34fbfffff]
    [ 0.000000] [mem 0x34c000000-0x34fbfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x300000000-0x34bffffff]
    [ 0.000000] [mem 0x300000000-0x33fffffff] page 1G
    [ 0.000000] [mem 0x340000000-0x34bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x9b171fff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0x9affffff] page 2M
    [ 0.000000] [mem 0x9b000000-0x9b171fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x9b179000-0x9b8e8fff]
    [ 0.000000] [mem 0x9b179000-0x9b1fffff] page 4k
    [ 0.000000] [mem 0x9b200000-0x9b7fffff] page 2M
    [ 0.000000] [mem 0x9b800000-0x9b8e8fff] page 4k
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x9bb56000-0xab48ffff]
    [ 0.000000] [mem 0x9bb56000-0x9bbfffff] page 4k
    [ 0.000000] [mem 0x9bc00000-0xab3fffff] page 2M
    [ 0.000000] [mem 0xab400000-0xab48ffff] page 4k
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xab698000-0xab78bfff]
    [ 0.000000] [mem 0xab698000-0xab78bfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xabfff000-0xabffffff]
    [ 0.000000] [mem 0xabfff000-0xabffffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x2ffffffff]
    [ 0.000000] [mem 0x100000000-0x2ffffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x379fc000-0x37cf5fff]
    [ 0.000000] ACPI: RSDP 00000000000f0490 00024 (v02 MSI_NB)
    [ 0.000000] ACPI: XSDT 00000000ab814098 000AC (v01 MSI_NB MEGABOOK 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000ab8206b0 0010C (v05 MSI_NB MEGABOOK 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 00000000ab8141d8 0C4D4 (v02 MSI_NB MEGABOOK 00000022 INTL 20091112)
    [ 0.000000] ACPI: FACS 00000000abb72080 00040
    [ 0.000000] ACPI: APIC 00000000ab8207c0 00092 (v03 MSI_NB MEGABOOK 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 00000000ab820858 00044 (v01 MSI_NB MEGABOOK 01072009 AMI 00010013)
    [ 0.000000] ACPI: ASF! 00000000ab8208a0 000A5 (v32 INTEL HCG 00000001 TFSM 000F4240)
    [ 0.000000] ACPI: SSDT 00000000ab820948 00200 (v01 INTEL sensrhub 00000000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 00000000ab820b48 0019D (v01 Intel zpodd 00001000 INTL 20091112)
    [ 0.000000] ACPI: SLIC 00000000ab820ce8 00176 (v01 MSI_NB MEGABOOK 01072009 AMI 00010013)
    [ 0.000000] ACPI: SSDT 00000000ab820e60 00575 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000ab8213d8 00AD8 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: MCFG 00000000ab821eb0 0003C (v01 MSI_NB MEGABOOK 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000ab821ef0 00038 (v01 MSI_NB MEGABOOK 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 00000000ab821f28 00315 (v01 SataRe SataTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000ab822240 0355D (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000ab8257a0 011FD (v01 SgRef SgPeg 00001000 INTL 20091112)
    [ 0.000000] ACPI: MSFF 00000000ab8269a0 00029 (v01 MSI_NB MEGABOOK 00000010 AMI 00010013)
    [ 0.000000] ACPI: DMAR 00000000ab8269d0 00090 (v01 INTEL HSW 00000001 INTL 00000001)
    [ 0.000000] ACPI: SSDT 00000000ab826a60 01464 (v01 OptRef OptTabl 00001000 INTL 20120711)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000034fdfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x34fdfffff]
    [ 0.000000] NODE_DATA [mem 0x34fdf6000-0x34fdfafff]
    [ 0.000000] [ffffea0000000000-ffffea000d3fffff] PMD -> [ffff880343400000-ffff88034f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x34fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x9b171fff]
    [ 0.000000] node 0: [mem 0x9b179000-0x9b8e8fff]
    [ 0.000000] node 0: [mem 0x9bb56000-0xab48ffff]
    [ 0.000000] node 0: [mem 0xab698000-0xab78bfff]
    [ 0.000000] node 0: [mem 0xabfff000-0xabffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x34fdfffff]
    [ 0.000000] On node 0 totalpages: 3125421
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 10893 pages used for memmap
    [ 0.000000] DMA32 zone: 697105 pages, LIFO batch:31
    [ 0.000000] Normal zone: 37880 pages used for memmap
    [ 0.000000] Normal zone: 2424320 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 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: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b172000-0x9b178fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b8e9000-0x9bb55fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xab490000-0xab697fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xab78c000-0xabb73fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xabb74000-0xabffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xac000000-0xacffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xad000000-0xaf1fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xaf200000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xaf200000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88034fa00000 s86464 r8192 d24128 u262144
    [ 0.000000] pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 3076563
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=d2a5754c-c679-48b4-9b12-02ae94b83604 rw quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] ------------[ cut here ]------------
    [ 0.000000] WARNING: CPU: 0 PID: 0 at drivers/iommu/dmar.c:488 warn_invalid_dmar+0x7e/0x90()
    [ 0.000000] Your BIOS is broken; DMAR reported at address 0!
    BIOS vendor: American Megatrends Inc.; Ver: E1757IMS.10E; Product Version: REV:1.0
    [ 0.000000] Modules linked in:
    [ 0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 3.12.6-1-ARCH #1
    [ 0.000000] Hardware name: Micro-Star International Co., Ltd. GE70 2OC\2OE/MS-1757, BIOS E1757IMS.10E 07/15/2013
    [ 0.000000] 000000000000000b ffffffff81801de8 ffffffff814ee4fb ffffffff81801e30
    [ 0.000000] ffffffff81801e20 ffffffff81062bcd ffffffff81b3101c ffffffff81b3106c
    [ 0.000000] 0000000000000000 ffff88034fdaad00 ffffffff819f4000 ffffffff81801e80
    [ 0.000000] Call Trace:
    [ 0.000000] [<ffffffff814ee4fb>] dump_stack+0x54/0x8d
    [ 0.000000] [<ffffffff81062bcd>] warn_slowpath_common+0x7d/0xa0
    [ 0.000000] [<ffffffff81062c84>] warn_slowpath_fmt_taint+0x44/0x50
    [ 0.000000] [<ffffffff818fb9d9>] ? early_ioremap+0x13/0x15
    [ 0.000000] [<ffffffff818f1b3f>] ? __acpi_map_table+0x13/0x18
    [ 0.000000] [<ffffffff813d98be>] warn_invalid_dmar+0x7e/0x90
    [ 0.000000] [<ffffffff81927a65>] check_zero_address+0x68/0xf4
    [ 0.000000] [<ffffffff81927b06>] detect_intel_iommu+0x15/0xae
    [ 0.000000] [<ffffffff818ebd5a>] pci_iommu_alloc+0x4a/0x6c
    [ 0.000000] [<ffffffff818fb3af>] mem_init+0x17/0x9c
    [ 0.000000] [<ffffffff818e1ccb>] start_kernel+0x1de/0x420
    [ 0.000000] [<ffffffff818e18f6>] ? repair_env_string+0x5c/0x5c
    [ 0.000000] [<ffffffff818e1120>] ? early_idt_handlers+0x120/0x120
    [ 0.000000] [<ffffffff818e15de>] x86_64_start_reservations+0x2a/0x2c
    [ 0.000000] [<ffffffff818e16e8>] x86_64_start_kernel+0x108/0x117
    [ 0.000000] ---[ end trace ed55042d28ea2d46 ]---
    [ 0.000000] Memory: 12223184K/12501684K available (5124K kernel code, 807K rwdata, 1628K rodata, 1144K init, 1288K bss, 278500K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 50331648 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2394.605 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4791.76 BogoMIPS (lpj=7982016)
    [ 0.000004] pid_max: default: 32768 minimum: 301
    [ 0.000023] Security Framework initialized
    [ 0.000028] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000029] Yama: becoming mindful.
    [ 0.000723] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.002956] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.003897] Mount-cache hash table entries: 256
    [ 0.004021] Initializing cgroup subsys memory
    [ 0.004028] Initializing cgroup subsys devices
    [ 0.004029] Initializing cgroup subsys freezer
    [ 0.004030] Initializing cgroup subsys net_cls
    [ 0.004031] Initializing cgroup subsys blkio
    [ 0.004047] CPU: Physical Processor ID: 0
    [ 0.004047] CPU: Processor Core ID: 0
    [ 0.004050] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.004809] mce: CPU supports 9 MCE banks
    [ 0.004819] CPU0: Thermal monitoring enabled (TM1)
    [ 0.004828] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
    tlb_flushall_shift: 6
    [ 0.004901] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    [ 0.005496] ACPI: Core revision 20130725
    [ 0.012467] ACPI: All ACPI Tables successfully acquired
    [ 0.014025] ftrace: allocating 20318 entries in 80 pages
    [ 0.020098] dmar: Host address width 39
    [ 0.020099] dmar: DRHD base: 0x00000000000000 flags: 0x1
    [ 0.020100] dmar: parse DMAR table failure.
    [ 0.020489] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.053520] smpboot: CPU0: Intel(R) Core(TM) i7-4700MQ CPU @ 2.40GHz (fam: 06, model: 3c, stepping: 03)
    [ 0.053525] TSC deadline timer enabled
    [ 0.053531] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.053535] ... version: 3
    [ 0.053536] ... bit width: 48
    [ 0.053537] ... generic registers: 4
    [ 0.053537] ... value mask: 0000ffffffffffff
    [ 0.053538] ... max period: 0000ffffffffffff
    [ 0.053539] ... fixed-purpose events: 3
    [ 0.053539] ... event mask: 000000070000000f
    [ 0.094311] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.080318] smpboot: Booting Node 0, Processors # 1 # 2 # 3 # 4 # 5 # 6 # 7 OK
    [ 0.218665] Brought up 8 CPUs
    [ 0.218667] smpboot: Total of 8 processors activated (38329.08 BogoMIPS)
    [ 0.224614] devtmpfs: initialized
    [ 0.226265] PM: Registering ACPI NVS region [mem 0x9b172000-0x9b178fff] (28672 bytes)
    [ 0.226266] PM: Registering ACPI NVS region [mem 0xab78c000-0xabb73fff] (4096000 bytes)
    [ 0.226792] RTC time: 6:49:04, date: 01/11/14
    [ 0.226816] NET: Registered protocol family 16
    [ 0.226875] cpuidle: using governor ladder
    [ 0.226876] cpuidle: using governor menu
    [ 0.226893] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.226894] ACPI: bus type PCI registered
    [ 0.226896] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.226930] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.226931] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.231360] PCI: Using configuration type 1 for base access
    [ 0.231828] bio: create slab <bio-0> at 0
    [ 0.231908] ACPI: Added _OSI(Module Device)
    [ 0.231909] ACPI: Added _OSI(Processor Device)
    [ 0.231910] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.231911] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.233324] ACPI: EC: Detected MSI hardware, enabling workarounds.
    [ 0.233326] ACPI: EC: Look up EC in DSDT
    [ 0.233774] ACPI Error: No handler for Region [EC__] (ffff88033e484c18) [EmbeddedControl] (20130725/evregion-162)
    [ 0.233777] ACPI Error: Region EmbeddedControl (ID=3) has no handler (20130725/exfldio-305)
    [ 0.233779] ACPI Error: Method parse/execution failed [\_SB_.PCI0.LPCB.EC__._REG] (Node ffff88033e4852f8), AE_NOT_EXIST (20130725/psparse-536)
    [ 0.234482] ACPI: Executed 2 blocks of module-level executable AML code
    [ 0.268613] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.284659] ACPI: SSDT 00000000ab68dc18 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.285133] ACPI: Dynamic OEM Table Load:
    [ 0.285135] ACPI: SSDT (null) 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.298133] ACPI: SSDT 00000000ab68d618 005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.298671] ACPI: Dynamic OEM Table Load:
    [ 0.298673] ACPI: SSDT (null) 005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.314712] ACPI: SSDT 00000000ab68cd98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.315188] ACPI: Dynamic OEM Table Load:
    [ 0.315190] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.339941] ACPI: Interpreter enabled
    [ 0.339948] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130725/hwxface-571)
    [ 0.339953] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    [ 0.339965] ACPI: (supports S0 S3 S4 S5)
    [ 0.339967] ACPI: Using IOAPIC for interrupt routing
    [ 0.339990] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.340148] ACPI: No dock devices found.
    [ 0.366372] ACPI: Power Resource [FN00] (off)
    [ 0.366419] ACPI: Power Resource [FN01] (off)
    [ 0.366465] ACPI: Power Resource [FN02] (off)
    [ 0.366511] ACPI: Power Resource [FN03] (off)
    [ 0.366555] ACPI: Power Resource [FN04] (off)
    [ 0.367075] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.367173] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.367293] acpi PNP0A08:00: ACPI _OSC control (0x18) granted
    [ 0.367577] ACPI: \_SB_.PCI0.TPMX: can't evaluate _ADR (0x5)
    [ 0.367642] ACPI: \_SB_.PCI0.PDRC: can't evaluate _ADR (0x5)
    [ 0.367643] ACPI: \_SB_.PCI0.DOCK: can't evaluate _ADR (0x5)
    [ 0.367659] ACPI: \_SB_.PCI0.WMI1: can't evaluate _ADR (0x5)
    [ 0.367660] PCI host bridge to bus 0000:00
    [ 0.367662] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.367663] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.367664] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.367665] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.367666] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.367667] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.367668] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.367669] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.367670] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.367671] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.367672] pci_bus 0000:00: root bus resource [mem 0xaf200000-0xfeafffff]
    [ 0.367677] pci 0000:00:00.0: [8086:0c04] type 00 class 0x060000
    [ 0.367735] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    [ 0.367760] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.367794] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 0.367819] pci 0000:00:02.0: [8086:0416] type 00 class 0x030000
    [ 0.367827] pci 0000:00:02.0: reg 0x10: [mem 0xf7400000-0xf77fffff 64bit]
    [ 0.367832] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
    [ 0.367835] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    [ 0.367887] pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
    [ 0.367893] pci 0000:00:03.0: reg 0x10: [mem 0xf7b14000-0xf7b17fff 64bit]
    [ 0.367970] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
    [ 0.367986] pci 0000:00:14.0: reg 0x10: [mem 0xf7b00000-0xf7b0ffff 64bit]
    [ 0.368043] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.368071] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.368097] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
    [ 0.368113] pci 0000:00:16.0: reg 0x10: [mem 0xf7b1e000-0xf7b1e00f 64bit]
    [ 0.368169] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.368229] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
    [ 0.368247] pci 0000:00:1a.0: reg 0x10: [mem 0xf7b1c000-0xf7b1c3ff]
    [ 0.368328] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.368366] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.368391] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
    [ 0.368403] pci 0000:00:1b.0: reg 0x10: [mem 0xf7b10000-0xf7b13fff 64bit]
    [ 0.368460] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.368490] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.368512] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
    [ 0.368569] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.368599] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.368621] pci 0000:00:1c.2: [8086:8c14] type 01 class 0x060400
    [ 0.368678] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.368709] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.368731] pci 0000:00:1c.3: [8086:8c16] type 01 class 0x060400
    [ 0.368787] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.368817] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.368839] pci 0000:00:1c.5: [8086:8c1a] type 01 class 0x060400
    [ 0.368896] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.368926] pci 0000:00:1c.5: System wakeup disabled by ACPI
    [ 0.368953] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
    [ 0.368972] pci 0000:00:1d.0: reg 0x10: [mem 0xf7b1b000-0xf7b1b3ff]
    [ 0.369051] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.369089] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.369114] pci 0000:00:1f.0: [8086:8c4b] type 00 class 0x060100
    [ 0.369249] pci 0000:00:1f.2: [8086:8c03] type 00 class 0x010601
    [ 0.369263] pci 0000:00:1f.2: reg 0x10: [io 0xf0b0-0xf0b7]
    [ 0.369269] pci 0000:00:1f.2: reg 0x14: [io 0xf0a0-0xf0a3]
    [ 0.369276] pci 0000:00:1f.2: reg 0x18: [io 0xf090-0xf097]
    [ 0.369283] pci 0000:00:1f.2: reg 0x1c: [io 0xf080-0xf083]
    [ 0.369289] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
    [ 0.369296] pci 0000:00:1f.2: reg 0x24: [mem 0xf7b1a000-0xf7b1a7ff]
    [ 0.369328] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.369373] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
    [ 0.369385] pci 0000:00:1f.3: reg 0x10: [mem 0xf7b19000-0xf7b190ff 64bit]
    [ 0.369403] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
    [ 0.369506] pci 0000:01:00.0: [10de:11e2] type 00 class 0x030200
    [ 0.369520] pci 0000:01:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
    [ 0.369537] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.369552] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.369563] pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f]
    [ 0.369574] pci 0000:01:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
    [ 0.369649] pci 0000:01:00.0: System wakeup disabled by ACPI
    [ 0.374726] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.374728] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.374730] pci 0000:00:01.0: bridge window [mem 0xf6000000-0xf70fffff]
    [ 0.374733] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.374803] acpiphp: Slot [1] registered
    [ 0.374809] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.374970] pci 0000:03:00.0: [10ec:5227] type 00 class 0xff0000
    [ 0.375028] pci 0000:03:00.0: reg 0x10: [mem 0xf7a00000-0xf7a00fff]
    [ 0.375359] pci 0000:03:00.0: supports D1 D2
    [ 0.375360] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.375443] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.381443] pci 0000:00:1c.2: PCI bridge to [bus 03]
    [ 0.381448] pci 0000:00:1c.2: bridge window [mem 0xf7a00000-0xf7afffff]
    [ 0.381581] pci 0000:04:00.0: [1969:e091] type 00 class 0x020000
    [ 0.381627] pci 0000:04:00.0: reg 0x10: [mem 0xf7900000-0xf793ffff 64bit]
    [ 0.381672] pci 0000:04:00.0: reg 0x18: [io 0xd000-0xd07f]
    [ 0.381900] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.381990] pci 0000:04:00.0: System wakeup disabled by ACPI
    [ 0.388100] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.388104] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [ 0.388108] pci 0000:00:1c.3: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.388207] pci 0000:05:00.0: [10ec:8723] type 00 class 0x028000
    [ 0.388235] pci 0000:05:00.0: reg 0x10: [io 0xc000-0xc0ff]
    [ 0.388284] pci 0000:05:00.0: reg 0x18: [mem 0xf7800000-0xf7803fff 64bit]
    [ 0.388429] pci 0000:05:00.0: supports D1 D2
    [ 0.388430] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.388469] pci 0000:05:00.0: System wakeup disabled by ACPI
    [ 0.394758] pci 0000:00:1c.5: PCI bridge to [bus 05]
    [ 0.394762] pci 0000:00:1c.5: bridge window [io 0xc000-0xcfff]
    [ 0.394766] pci 0000:00:1c.5: bridge window [mem 0xf7800000-0xf78fffff]
    [ 0.394830] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.402198] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.402232] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 *4 5 6 10 11 12 14 15)
    [ 0.402263] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.402295] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.402326] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.402357] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.402388] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.402419] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.402688] ACPI: Enabled 5 GPEs in block 00 to 3F
    [ 0.402692] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.402741] Found 1 acpi root devices
    [ 0.402767] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.402823] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.402826] vgaarb: loaded
    [ 0.402826] vgaarb: bridge control possible 0000:00:02.0
    [ 0.402849] PCI: Using ACPI for IRQ routing
    [ 0.404045] PCI: pci_cache_line_size set to 64 bytes
    [ 0.404093] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.404094] e820: reserve RAM buffer [mem 0x9b172000-0x9bffffff]
    [ 0.404095] e820: reserve RAM buffer [mem 0x9b8e9000-0x9bffffff]
    [ 0.404096] e820: reserve RAM buffer [mem 0xab490000-0xabffffff]
    [ 0.404097] e820: reserve RAM buffer [mem 0xab78c000-0xabffffff]
    [ 0.404098] e820: reserve RAM buffer [mem 0x34fe00000-0x34fffffff]
    [ 0.404149] NetLabel: Initializing
    [ 0.404150] NetLabel: domain hash size = 128
    [ 0.404150] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.404157] NetLabel: unlabeled traffic allowed by default
    [ 0.404169] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.404172] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.406193] Switched to clocksource hpet
    [ 0.408777] pnp: PnP ACPI init
    [ 0.408783] ACPI: bus type PNP registered
    [ 0.408822] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.408824] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.408831] pnp 00:01: [dma 4]
    [ 0.408839] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.408852] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.408908] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.408937] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.409005] system 00:05: [io 0x0680-0x069f] has been reserved
    [ 0.409006] system 00:05: [io 0xffff] has been reserved
    [ 0.409007] system 00:05: [io 0xffff] has been reserved
    [ 0.409008] system 00:05: [io 0xffff] has been reserved
    [ 0.409010] system 00:05: [io 0x1c00-0x1cfe] has been reserved
    [ 0.409011] system 00:05: [io 0x1d00-0x1dfe] has been reserved
    [ 0.409012] system 00:05: [io 0x1e00-0x1efe] has been reserved
    [ 0.409013] system 00:05: [io 0x1f00-0x1ffe] has been reserved
    [ 0.409015] system 00:05: [io 0x1800-0x18fe] could not be reserved
    [ 0.409016] system 00:05: [io 0x164e-0x164f] has been reserved
    [ 0.409017] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.409033] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.409058] system 00:07: [io 0x1854-0x1857] has been reserved
    [ 0.409060] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.409121] system 00:08: [io 0x0680-0x068f] has been reserved
    [ 0.409122] system 00:08: [io 0x0c10-0x0c1f] has been reserved
    [ 0.409123] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.409150] system 00:09: [io 0x04d0-0x04d1] has been reserved
    [ 0.409152] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.409182] pnp 00:0a: Plug and Play ACPI device, IDs ETD0301 PNP0f13 SYN1500 SYN0002 (active)
    [ 0.409206] pnp 00:0b: Plug and Play ACPI device, IDs MSI0001 PNP030b (active)
    [ 0.412551] pnp 00:0c: Plug and Play ACPI device, IDs ENE0110 (active)
    [ 0.416130] system 00:0d: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.416131] system 00:0d: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.416132] system 00:0d: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.416133] system 00:0d: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.416135] system 00:0d: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.416136] system 00:0d: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.416137] system 00:0d: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.416138] system 00:0d: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.416139] system 00:0d: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.416140] system 00:0d: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.416142] system 00:0d: [mem 0xf7fef000-0xf7feffff] has been reserved
    [ 0.416143] system 00:0d: [mem 0xf7ff0000-0xf7ff0fff] has been reserved
    [ 0.416144] system 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.416328] pnp: PnP ACPI: found 14 devices
    [ 0.416329] ACPI: bus type PNP unregistered
    [ 0.422174] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    [ 0.422176] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.422177] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000
    [ 0.422195] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.422196] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.422197] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.422200] pci 0000:00:1c.0: BAR 14: assigned [mem 0xaf200000-0xaf3fffff]
    [ 0.422202] pci 0000:00:1c.0: BAR 15: assigned [mem 0xaf400000-0xaf5fffff 64bit pref]
    [ 0.422203] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
    [ 0.422205] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.422206] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.422208] pci 0000:00:01.0: bridge window [mem 0xf6000000-0xf70fffff]
    [ 0.422210] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.422213] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.422215] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 0.422219] pci 0000:00:1c.0: bridge window [mem 0xaf200000-0xaf3fffff]
    [ 0.422222] pci 0000:00:1c.0: bridge window [mem 0xaf400000-0xaf5fffff 64bit pref]
    [ 0.422227] pci 0000:00:1c.2: PCI bridge to [bus 03]
    [ 0.422231] pci 0000:00:1c.2: bridge window [mem 0xf7a00000-0xf7afffff]
    [ 0.422238] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.422240] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [ 0.422244] pci 0000:00:1c.3: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.422251] pci 0000:00:1c.5: PCI bridge to [bus 05]
    [ 0.422253] pci 0000:00:1c.5: bridge window [io 0xc000-0xcfff]
    [ 0.422257] pci 0000:00:1c.5: bridge window [mem 0xf7800000-0xf78fffff]
    [ 0.422264] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.422265] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.422266] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.422267] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.422268] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.422269] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.422270] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.422271] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.422272] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.422273] pci_bus 0000:00: resource 13 [mem 0xaf200000-0xfeafffff]
    [ 0.422274] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.422275] pci_bus 0000:01: resource 1 [mem 0xf6000000-0xf70fffff]
    [ 0.422276] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.422277] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    [ 0.422278] pci_bus 0000:02: resource 1 [mem 0

    If I understand this correctly, then you have an Optimus graphics card (couldn't find anything online, but your lspci looks like it). I too have such a setup on my laptop. The thing to keep in mind here, is that your main graphics card is the Intel integrated card. So instead of installing your system like with an nvidia card, you install it like an intel card. Specifically, you would want to follow the instructions on Bumblebee. Once you followed them, the whole graphics part runs on the Intel card. Once you want to play a game or do some other heavy graphics card work you call your application like this:
    optirun wine /path/to/game.exe
    Notice how optirun tells the system to use the nvidia card. It will take a second or two to start it (specifically, enable the card, start another X screen and launch the application on it transparently). Follow the instructions in the Wiki if you have any problems.
    If you don't have an Optimus card (just NVIDIA, no Intel), then don't follow any Optimus instructions, just usual NVIDIA stuff from the Wiki.

  • [Solved] Catalyst and RandR not detecting monitors

    SOLUTION
    The xorg.conf that CCC configures, even when xinerama is disabled, does not work with RandR. I gutted everything so only my primary monitor was in xorg.conf, then added the line 'Virtual' where appropriate with the correct square size of my total monitor space. xrandr then detects everything fine, and was able to use xrandr to get the screens working. Openbox only needs one session. Life is good.
    Working xorg.conf with RandR:
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Module"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Monitor"
    Identifier "0-DFP5"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "Primary" "true"
    Option "TargetRefresh" "60"
    Option "Position" "0 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "2560x1440"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    Option "Monitor-DFP5" "0-DFP5"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Virtual 5920 1440
    Depth 24
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    Option "RENDER" "Enable"
    EndSection
    Original Problem
    Hi,
    I'm moving from Xinerama (Which worked well for most things) to RandR. To get randr loading first thing I did was disable Xinerama in Catalyst Control Centre, restarted X.
    My xorg.conf (Generated by CCC) has all monitors and modes listed correctly, and my middle (Primary) monitor (DFP5) works fine. My two sides, DFP9 and DFP10, are blank. I can move the cursor over to them, but that's about it.
    xrandr does not appear to detect DFP9 and DFP10 as being connected.
    I am using catalyst-total from AUR.
    I've included all info I think may be helpful.
    EDIT:
    Seems my main issue was that Openbox needs a session on each X screen. So I can now use each X screen, but I can't alt tab across every window because the sessions don't talk to each other. randr still does not work though.
    cat /var/log/Xorg.0.log | grep RandR
    [ 6906.988] (II) fglrx(0): RandR 1.2 support is enabled!
    [ 6906.988] (II) fglrx(0): RandR 1.2 rotation support is enabled!
    [ 6907.124] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 6907.241] (--) RandR disabled
    [ 6907.260] (II) fglrx(1): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 6907.322] (--) RandR disabled
    [ 6907.340] (II) fglrx(2): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 6907.388] (--) RandR disabled
    /etc/X11/xorg.conf:
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 1680 0
    Screen "amdcccle-Screen[1]-1" 4240 0
    Screen "amdcccle-Screen[1]-2" 0 0
    EndSection
    Section "Module"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "off"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Monitor"
    Identifier "0-DFP5"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "Primary" "true"
    Option "TargetRefresh" "60"
    Option "Position" "0 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "2560x1440"
    EndSection
    Section "Monitor"
    Identifier "0-DFP10"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "TargetRefresh" "60"
    Option "Position" "0 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "1680x1050"
    EndSection
    Section "Monitor"
    Identifier "0-DFP9"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "TargetRefresh" "60"
    Option "Position" "0 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "1680x1050"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    Option "Monitor-DFP5" "0-DFP5"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    Identifier "amdcccle-Device[1]-1"
    Driver "fglrx"
    Option "Monitor-DFP10" "0-DFP10"
    BusID "PCI:1:0:0"
    Screen 1
    EndSection
    Section "Device"
    Identifier "amdcccle-Device[1]-2"
    Driver "fglrx"
    Option "Monitor-DFP9" "0-DFP9"
    BusID "PCI:1:0:0"
    Screen 2
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "amdcccle-Screen[1]-1"
    Device "amdcccle-Device[1]-1"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "amdcccle-Screen[1]-2"
    Device "amdcccle-Device[1]-2"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    Option "RENDER" "Enable"
    EndSection
    xrandr
    Screen 0: minimum 320 x 200, current 2560 x 1440, maximum 2560 x 2560
    DFP5 connected 2560x1440+0+0 (normal left inverted right x axis y axis) 597mm x 336mm
    2560x1440 60.0*+
    1800x1440 60.0
    1856x1392 60.0
    1792x1344 60.0
    1920x1200 59.9
    1920x1080 60.0 50.0 59.9 30.0 25.0 24.0 30.0 24.0
    1600x1200 60.0
    1776x1000 50.0 59.9 25.0 24.0 30.0
    1680x1050 60.0
    1400x1050 60.0
    1600x900 60.0
    1280x1024 75.0 60.0
    1440x900 60.0
    1280x960 75.0 60.0
    1280x800 59.8
    1152x864 60.0 75.0
    1280x768 59.8
    1280x720 60.0 50.0 59.9
    1024x768 75.0 60.0
    1152x648 50.0 59.9
    800x600 75.0 60.3
    720x480 60.0 59.9
    640x480 75.0 59.9
    DFP1 disconnected (normal left inverted right x axis y axis)
    DFP2 disconnected (normal left inverted right x axis y axis)
    DFP3 disconnected (normal left inverted right x axis y axis)
    DFP4 disconnected (normal left inverted right x axis y axis)
    DFP6 disconnected (normal left inverted right x axis y axis)
    DFP7 disconnected (normal left inverted right x axis y axis)
    DFP8 disconnected (normal left inverted right x axis y axis)
    DFP9 disconnected (normal left inverted right x axis y axis)
    DFP10 disconnected (normal left inverted right x axis y axis)
    CRT1 disconnected (normal left inverted right x axis y axis)
    Last edited by deags (2013-02-16 11:16:34)

    SOLUTION
    The xorg.conf that CCC configures, even when xinerama is disabled, does not work with RandR. I gutted everything so only my primary monitor was in xorg.conf, then added the line 'Virtual' where appropriate with the correct square size of my total monitor space. xrandr then detects everything fine, and was able to use xrandr to get the screens working. Openbox only needs one session. Life is good.
    Working xorg.conf with RandR:
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Module"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Monitor"
    Identifier "0-DFP5"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "Primary" "true"
    Option "TargetRefresh" "60"
    Option "Position" "0 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "2560x1440"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    Option "Monitor-DFP5" "0-DFP5"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Virtual 5920 1440
    Depth 24
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    Option "RENDER" "Enable"
    EndSection
    Original Problem
    Hi,
    I'm moving from Xinerama (Which worked well for most things) to RandR. To get randr loading first thing I did was disable Xinerama in Catalyst Control Centre, restarted X.
    My xorg.conf (Generated by CCC) has all monitors and modes listed correctly, and my middle (Primary) monitor (DFP5) works fine. My two sides, DFP9 and DFP10, are blank. I can move the cursor over to them, but that's about it.
    xrandr does not appear to detect DFP9 and DFP10 as being connected.
    I am using catalyst-total from AUR.
    I've included all info I think may be helpful.
    EDIT:
    Seems my main issue was that Openbox needs a session on each X screen. So I can now use each X screen, but I can't alt tab across every window because the sessions don't talk to each other. randr still does not work though.
    cat /var/log/Xorg.0.log | grep RandR
    [ 6906.988] (II) fglrx(0): RandR 1.2 support is enabled!
    [ 6906.988] (II) fglrx(0): RandR 1.2 rotation support is enabled!
    [ 6907.124] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 6907.241] (--) RandR disabled
    [ 6907.260] (II) fglrx(1): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 6907.322] (--) RandR disabled
    [ 6907.340] (II) fglrx(2): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 6907.388] (--) RandR disabled
    /etc/X11/xorg.conf:
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 1680 0
    Screen "amdcccle-Screen[1]-1" 4240 0
    Screen "amdcccle-Screen[1]-2" 0 0
    EndSection
    Section "Module"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "off"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Monitor"
    Identifier "0-DFP5"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "Primary" "true"
    Option "TargetRefresh" "60"
    Option "Position" "0 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "2560x1440"
    EndSection
    Section "Monitor"
    Identifier "0-DFP10"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "TargetRefresh" "60"
    Option "Position" "0 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "1680x1050"
    EndSection
    Section "Monitor"
    Identifier "0-DFP9"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "TargetRefresh" "60"
    Option "Position" "0 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "1680x1050"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    Option "Monitor-DFP5" "0-DFP5"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    Identifier "amdcccle-Device[1]-1"
    Driver "fglrx"
    Option "Monitor-DFP10" "0-DFP10"
    BusID "PCI:1:0:0"
    Screen 1
    EndSection
    Section "Device"
    Identifier "amdcccle-Device[1]-2"
    Driver "fglrx"
    Option "Monitor-DFP9" "0-DFP9"
    BusID "PCI:1:0:0"
    Screen 2
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "amdcccle-Screen[1]-1"
    Device "amdcccle-Device[1]-1"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "amdcccle-Screen[1]-2"
    Device "amdcccle-Device[1]-2"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    Option "RENDER" "Enable"
    EndSection
    xrandr
    Screen 0: minimum 320 x 200, current 2560 x 1440, maximum 2560 x 2560
    DFP5 connected 2560x1440+0+0 (normal left inverted right x axis y axis) 597mm x 336mm
    2560x1440 60.0*+
    1800x1440 60.0
    1856x1392 60.0
    1792x1344 60.0
    1920x1200 59.9
    1920x1080 60.0 50.0 59.9 30.0 25.0 24.0 30.0 24.0
    1600x1200 60.0
    1776x1000 50.0 59.9 25.0 24.0 30.0
    1680x1050 60.0
    1400x1050 60.0
    1600x900 60.0
    1280x1024 75.0 60.0
    1440x900 60.0
    1280x960 75.0 60.0
    1280x800 59.8
    1152x864 60.0 75.0
    1280x768 59.8
    1280x720 60.0 50.0 59.9
    1024x768 75.0 60.0
    1152x648 50.0 59.9
    800x600 75.0 60.3
    720x480 60.0 59.9
    640x480 75.0 59.9
    DFP1 disconnected (normal left inverted right x axis y axis)
    DFP2 disconnected (normal left inverted right x axis y axis)
    DFP3 disconnected (normal left inverted right x axis y axis)
    DFP4 disconnected (normal left inverted right x axis y axis)
    DFP6 disconnected (normal left inverted right x axis y axis)
    DFP7 disconnected (normal left inverted right x axis y axis)
    DFP8 disconnected (normal left inverted right x axis y axis)
    DFP9 disconnected (normal left inverted right x axis y axis)
    DFP10 disconnected (normal left inverted right x axis y axis)
    CRT1 disconnected (normal left inverted right x axis y axis)
    Last edited by deags (2013-02-16 11:16:34)

  • GDM displays only a black screen and a cursor, before login screen

    I'm using the xf86-video-ati driver for an R9 270, and GDM (v3.16.1.1) only shows a black screen with cursor. I can run TWM fine with startx, and I've got 2 displays attached via DVI.
    Here's my Xorg.0.log:
    [ 2.743]
    X.Org X Server 1.17.1
    Release Date: 2015-02-10
    [ 2.743] X Protocol Version 11, Revision 0
    [ 2.743] Build Operating System: Linux 3.19.2-1-ARCH x86_64
    [ 2.743] Current Operating System: Linux spitfire 3.19.3-3-ARCH #1 SMP PREEMPT Wed Apr 8 14:10:00 CEST 2015 x86_64
    [ 2.743] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda2 rw nomodeset
    [ 2.743] Build Date: 14 April 2015 10:34:18AM
    [ 2.743]
    [ 2.743] Current version of pixman: 0.32.6
    [ 2.743] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2.743] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2.743] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Apr 29 02:52:10 2015
    [ 2.744] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 2.744] (==) No Layout section. Using the first Screen section.
    [ 2.745] (==) No screen section available. Using defaults.
    [ 2.745] (**) |-->Screen "Default Screen Section" (0)
    [ 2.745] (**) | |-->Monitor "<default monitor>"
    [ 2.745] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 2.745] (==) Automatically adding devices
    [ 2.745] (==) Automatically enabling devices
    [ 2.745] (==) Automatically adding GPU devices
    [ 2.748] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF/".
    [ 2.748] Entry deleted from font path.
    [ 2.748] (Run 'mkfontdir' on "/usr/share/fonts/OTF/").
    [ 2.748] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 2.748] Entry deleted from font path.
    [ 2.752] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 2.752] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2.752] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2.753] (II) Loader magic: 0x815d80
    [ 2.753] (II) Module ABI versions:
    [ 2.753] X.Org ANSI C Emulation: 0.4
    [ 2.753] X.Org Video Driver: 19.0
    [ 2.753] X.Org XInput driver : 21.0
    [ 2.753] X.Org Server Extension : 9.0
    [ 2.754] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2
    [ 2.754] (--) PCI:*(0:1:0:0) 1002:6811:1458:226c rev 0, Mem @ 0xd0000000/268435456, 0xefe00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
    [ 2.754] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 2.755] (II) LoadModule: "glx"
    [ 2.755] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2.758] (II) Module glx: vendor="X.Org Foundation"
    [ 2.758] compiled for 1.17.1, module version = 1.0.0
    [ 2.758] ABI class: X.Org Server Extension, version 9.0
    [ 2.758] (==) AIGLX enabled
    [ 2.758] (==) Matched ati as autoconfigured driver 0
    [ 2.758] (==) Matched modesetting as autoconfigured driver 1
    [ 2.758] (==) Matched fbdev as autoconfigured driver 2
    [ 2.758] (==) Matched vesa as autoconfigured driver 3
    [ 2.758] (==) Assigned the driver to the xf86ConfigLayout
    [ 2.758] (II) LoadModule: "ati"
    [ 2.758] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 2.758] (II) Module ati: vendor="X.Org Foundation"
    [ 2.758] compiled for 1.17.0, module version = 7.5.0
    [ 2.758] Module class: X.Org Video Driver
    [ 2.758] ABI class: X.Org Video Driver, version 19.0
    [ 2.758] (II) LoadModule: "radeon"
    [ 2.758] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 2.761] (II) Module radeon: vendor="X.Org Foundation"
    [ 2.761] compiled for 1.17.0, module version = 7.5.0
    [ 2.761] Module class: X.Org Video Driver
    [ 2.761] ABI class: X.Org Video Driver, version 19.0
    [ 2.761] (II) LoadModule: "modesetting"
    [ 2.761] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [ 2.761] (II) Module modesetting: vendor="X.Org Foundation"
    [ 2.761] compiled for 1.17.1, module version = 1.17.1
    [ 2.761] Module class: X.Org Video Driver
    [ 2.761] ABI class: X.Org Video Driver, version 19.0
    [ 2.761] (II) LoadModule: "fbdev"
    [ 2.761] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 2.762] (II) Module fbdev: vendor="X.Org Foundation"
    [ 2.762] compiled for 1.17.0, module version = 0.4.4
    [ 2.762] Module class: X.Org Video Driver
    [ 2.762] ABI class: X.Org Video Driver, version 19.0
    [ 2.762] (II) LoadModule: "vesa"
    [ 2.762] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 2.762] (II) Module vesa: vendor="X.Org Foundation"
    [ 2.762] compiled for 1.17.0, module version = 2.3.2
    [ 2.762] Module class: X.Org Video Driver
    [ 2.762] ABI class: X.Org Video Driver, version 19.0
    [ 2.762] (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
    [ 2.776] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [ 2.776] (II) FBDEV: driver for framebuffer: fbdev
    [ 2.776] (II) VESA: driver for VESA chipsets: vesa
    [ 2.776] (++) using VT number 1
    [ 2.776] (II) [KMS] drm report modesetting isn't supported.
    [ 2.776] (EE) open /dev/dri/card0: No such file or directory
    [ 2.776] (WW) Falling back to old probe method for modesetting
    [ 2.776] (EE) open /dev/dri/card0: No such file or directory
    [ 2.776] (II) Loading sub module "fbdevhw"
    [ 2.776] (II) LoadModule: "fbdevhw"
    [ 2.776] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 2.777] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 2.777] compiled for 1.17.1, module version = 0.0.2
    [ 2.777] ABI class: X.Org Video Driver, version 19.0
    [ 2.777] (**) FBDEV(2): claimed PCI slot 1@0:0:0
    [ 2.777] (II) FBDEV(2): using default device
    [ 2.777] (WW) Falling back to old probe method for vesa
    [ 2.777] (EE) Screen 0 deleted because of no matching config section.
    [ 2.777] (II) UnloadModule: "radeon"
    [ 2.777] (EE) Screen 0 deleted because of no matching config section.
    [ 2.777] (II) UnloadModule: "modesetting"
    [ 2.777] (II) FBDEV(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 2.777] (==) FBDEV(0): Depth 24, (==) framebuffer bpp 32
    [ 2.777] (==) FBDEV(0): RGB weight 888
    [ 2.777] (==) FBDEV(0): Default visual is TrueColor
    [ 2.777] (==) FBDEV(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 2.777] (II) FBDEV(0): hardware: EFI VGA (video memory: 3072kB)
    [ 2.777] (II) FBDEV(0): checking modes against framebuffer device...
    [ 2.777] (II) FBDEV(0): checking modes against monitor...
    [ 2.777] (--) FBDEV(0): Virtual size is 1024x768 (pitch 1024)
    [ 2.777] (**) FBDEV(0): Built-in mode "current": 78.7 MHz, 59.9 kHz, 75.7 Hz
    [ 2.777] (II) FBDEV(0): Modeline "current"x0.0 78.65 1024 1056 1184 1312 768 772 776 792 -hsync -vsync -csync (59.9 kHz b)
    [ 2.777] (==) FBDEV(0): DPI set to (96, 96)
    [ 2.777] (II) Loading sub module "fb"
    [ 2.777] (II) LoadModule: "fb"
    [ 2.777] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 2.778] (II) Module fb: vendor="X.Org Foundation"
    [ 2.778] compiled for 1.17.1, module version = 1.0.0
    [ 2.778] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2.778] (**) FBDEV(0): using shadow framebuffer
    [ 2.778] (II) Loading sub module "shadow"
    [ 2.778] (II) LoadModule: "shadow"
    [ 2.778] (II) Loading /usr/lib/xorg/modules/libshadow.so
    [ 2.779] (II) Module shadow: vendor="X.Org Foundation"
    [ 2.779] compiled for 1.17.1, module version = 1.1.0
    [ 2.779] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2.779] (II) UnloadModule: "vesa"
    [ 2.779] (II) Unloading vesa
    [ 2.779] (==) Depth 24 pixmap format is 32 bpp
    [ 2.779] (EE) FBDEV(0): FBIOBLANK: Invalid argument
    [ 2.781] (==) FBDEV(0): Backing store enabled
    [ 2.782] (==) FBDEV(0): DPMS enabled
    [ 2.782] (==) RandR enabled
    [ 2.786] (II) AIGLX: Screen 0 is not DRI2 capable
    [ 2.786] (EE) AIGLX: reverting to software rendering
    [ 2.874] (II) AIGLX: Loaded and initialized swrast
    [ 2.874] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 2.932] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 2.932] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2.932] (**) Power Button: Applying InputClass "libinput keyboard catchall"
    [ 2.932] (II) LoadModule: "libinput"
    [ 2.932] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
    [ 2.933] (II) Module libinput: vendor="X.Org Foundation"
    [ 2.933] compiled for 1.17.1, module version = 0.9.0
    [ 2.933] Module class: X.Org XInput Driver
    [ 2.933] ABI class: X.Org XInput driver, version 21.0
    [ 2.933] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 14 paused 0
    [ 2.933] (II) Using input driver 'libinput' for 'Power Button'
    [ 2.933] (**) Power Button: always reports core events
    [ 2.933] (**) Option "Device" "/dev/input/event2"
    [ 2.934] (II) input device 'Power Button', /dev/input/event2 is tagged by udev as: Keyboard
    [ 2.934] (II) input device 'Power Button', /dev/input/event2 is a keyboard
    [ 2.934] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event2"
    [ 2.934] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 2.934] (II) input device 'Power Button', /dev/input/event2 is tagged by udev as: Keyboard
    [ 2.934] (II) input device 'Power Button', /dev/input/event2 is a keyboard
    [ 2.934] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 2.934] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2.934] (**) Power Button: Applying InputClass "libinput keyboard catchall"
    [ 2.934] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 17 paused 0
    [ 2.934] (II) Using input driver 'libinput' for 'Power Button'
    [ 2.934] (**) Power Button: always reports core events
    [ 2.934] (**) Option "Device" "/dev/input/event0"
    [ 2.934] (II) input device 'Power Button', /dev/input/event0 is tagged by udev as: Keyboard
    [ 2.934] (II) input device 'Power Button', /dev/input/event0 is a keyboard
    [ 2.934] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event0"
    [ 2.934] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 2.935] (II) input device 'Power Button', /dev/input/event0 is tagged by udev as: Keyboard
    [ 2.935] (II) input device 'Power Button', /dev/input/event0 is a keyboard
    [ 2.935] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
    [ 2.935] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 2.935] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
    [ 2.935] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 18 paused 0
    [ 2.935] (II) Using input driver 'libinput' for 'Sleep Button'
    [ 2.935] (**) Sleep Button: always reports core events
    [ 2.935] (**) Option "Device" "/dev/input/event1"
    [ 2.935] (II) input device 'Sleep Button', /dev/input/event1 is tagged by udev as: Keyboard
    [ 2.935] (II) input device 'Sleep Button', /dev/input/event1 is a keyboard
    [ 2.935] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3/event1"
    [ 2.935] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 2.935] (II) input device 'Sleep Button', /dev/input/event1 is tagged by udev as: Keyboard
    [ 2.935] (II) input device 'Sleep Button', /dev/input/event1 is a keyboard
    [ 2.935] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event7)
    [ 2.935] (II) No input driver specified, ignoring this device.
    [ 2.935] (II) This device may have been added with another device file.
    [ 2.936] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event8)
    [ 2.936] (II) No input driver specified, ignoring this device.
    [ 2.936] (II) This device may have been added with another device file.
    [ 2.936] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event9)
    [ 2.936] (II) No input driver specified, ignoring this device.
    [ 2.936] (II) This device may have been added with another device file.
    [ 2.936] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=11 (/dev/input/event12)
    [ 2.936] (II) No input driver specified, ignoring this device.
    [ 2.936] (II) This device may have been added with another device file.
    [ 2.936] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event5)
    [ 2.936] (II) No input driver specified, ignoring this device.
    [ 2.936] (II) This device may have been added with another device file.
    [ 2.936] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event6)
    [ 2.936] (II) No input driver specified, ignoring this device.
    [ 2.936] (II) This device may have been added with another device file.
    [ 2.936] (II) config/udev: Adding input device LOGITECH G110 G-keys (/dev/input/event4)
    [ 2.936] (**) LOGITECH G110 G-keys: Applying InputClass "evdev keyboard catchall"
    [ 2.936] (**) LOGITECH G110 G-keys: Applying InputClass "libinput keyboard catchall"
    [ 2.936] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 19 paused 0
    [ 2.936] (II) Using input driver 'libinput' for 'LOGITECH G110 G-keys'
    [ 2.936] (**) LOGITECH G110 G-keys: always reports core events
    [ 2.936] (**) Option "Device" "/dev/input/event4"
    [ 2.937] (II) input device 'LOGITECH G110 G-keys', /dev/input/event4 is tagged by udev as: Keyboard
    [ 2.937] (II) input device 'LOGITECH G110 G-keys', /dev/input/event4 is a keyboard
    [ 2.937] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-11/3-11.1/3-11.1:1.0/0003:046D:C22B.0001/input/input7/event4"
    [ 2.937] (II) XINPUT: Adding extended input device "LOGITECH G110 G-keys" (type: KEYBOARD, id 9)
    [ 2.937] (II) input device 'LOGITECH G110 G-keys', /dev/input/event4 is tagged by udev as: Keyboard
    [ 2.937] (II) input device 'LOGITECH G110 G-keys', /dev/input/event4 is a keyboard
    [ 2.937] (II) config/udev: Adding input device Gaming Keyboard G110 (/dev/input/event10)
    [ 2.937] (**) Gaming Keyboard G110: Applying InputClass "evdev keyboard catchall"
    [ 2.937] (**) Gaming Keyboard G110: Applying InputClass "libinput keyboard catchall"
    [ 2.937] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 20 paused 0
    [ 2.937] (II) Using input driver 'libinput' for 'Gaming Keyboard G110'
    [ 2.937] (**) Gaming Keyboard G110: always reports core events
    [ 2.937] (**) Option "Device" "/dev/input/event10"
    [ 2.937] (II) input device 'Gaming Keyboard G110', /dev/input/event10 is tagged by udev as: Keyboard
    [ 2.937] (II) input device 'Gaming Keyboard G110', /dev/input/event10 is a keyboard
    [ 2.937] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-11/3-11.3/3-11.3:1.0/0003:046D:C22A.0002/input/input22/event10"
    [ 2.937] (II) XINPUT: Adding extended input device "Gaming Keyboard G110" (type: KEYBOARD, id 10)
    [ 2.938] (II) input device 'Gaming Keyboard G110', /dev/input/event10 is tagged by udev as: Keyboard
    [ 2.938] (II) input device 'Gaming Keyboard G110', /dev/input/event10 is a keyboard
    [ 2.938] (II) config/udev: Adding input device Gaming Keyboard G110 (/dev/input/event20)
    [ 2.938] (**) Gaming Keyboard G110: Applying InputClass "evdev keyboard catchall"
    [ 2.938] (**) Gaming Keyboard G110: Applying InputClass "libinput keyboard catchall"
    [ 2.938] (II) systemd-logind: got fd for /dev/input/event20 13:84 fd 21 paused 0
    [ 2.938] (II) Using input driver 'libinput' for 'Gaming Keyboard G110'
    [ 2.938] (**) Gaming Keyboard G110: always reports core events
    [ 2.938] (**) Option "Device" "/dev/input/event20"
    [ 2.938] (II) input device 'Gaming Keyboard G110', /dev/input/event20 is tagged by udev as: Keyboard
    [ 2.938] (II) input device 'Gaming Keyboard G110', /dev/input/event20 is a keyboard
    [ 2.938] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-11/3-11.3/3-11.3:1.1/0003:046D:C22A.0003/input/input23/event20"
    [ 2.938] (II) XINPUT: Adding extended input device "Gaming Keyboard G110" (type: KEYBOARD, id 11)
    [ 2.938] (II) input device 'Gaming Keyboard G110', /dev/input/event20 is tagged by udev as: Keyboard
    [ 2.938] (II) input device 'Gaming Keyboard G110', /dev/input/event20 is a keyboard
    [ 2.939] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event21)
    [ 2.939] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 2.939] (**) Logitech USB Receiver: Applying InputClass "libinput pointer catchall"
    [ 2.990] (II) systemd-logind: got fd for /dev/input/event21 13:85 fd 22 paused 0
    [ 2.990] (II) Using input driver 'libinput' for 'Logitech USB Receiver'
    [ 2.990] (**) Logitech USB Receiver: always reports core events
    [ 2.990] (**) Option "Device" "/dev/input/event21"
    [ 2.990] (II) input device 'Logitech USB Receiver', /dev/input/event21 is tagged by udev as: Mouse
    [ 2.990] (II) input device 'Logitech USB Receiver', /dev/input/event21 is a pointer caps
    [ 2.990] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-11/3-11.4/3-11.4:1.0/0003:046D:C52F.0004/input/input24/event21"
    [ 2.990] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE, id 12)
    [ 2.990] (**) Option "AccelerationScheme" "none"
    [ 2.990] (**) Logitech USB Receiver: (accel) selected scheme none/0
    [ 2.990] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 2.990] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 2.990] (II) input device 'Logitech USB Receiver', /dev/input/event21 is tagged by udev as: Mouse
    [ 2.990] (II) input device 'Logitech USB Receiver', /dev/input/event21 is a pointer caps
    [ 2.990] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 2.990] (II) No input driver specified, ignoring this device.
    [ 2.990] (II) This device may have been added with another device file.
    [ 2.990] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event22)
    [ 2.990] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 2.990] (**) Logitech USB Receiver: Applying InputClass "libinput keyboard catchall"
    [ 2.991] (II) systemd-logind: got fd for /dev/input/event22 13:86 fd 23 paused 0
    [ 2.991] (II) Using input driver 'libinput' for 'Logitech USB Receiver'
    [ 2.991] (**) Logitech USB Receiver: always reports core events
    [ 2.991] (**) Option "Device" "/dev/input/event22"
    [ 2.991] (II) input device 'Logitech USB Receiver', /dev/input/event22 is tagged by udev as: Keyboard
    [ 2.991] (II) input device 'Logitech USB Receiver', /dev/input/event22 is a keyboard
    [ 2.991] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-11/3-11.4/3-11.4:1.1/0003:046D:C52F.0005/input/input25/event22"
    [ 2.991] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE, id 13)
    [ 2.991] (**) Option "AccelerationScheme" "none"
    [ 2.991] (**) Logitech USB Receiver: (accel) selected scheme none/0
    [ 2.991] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 2.991] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 2.991] (II) input device 'Logitech USB Receiver', /dev/input/event22 is tagged by udev as: Keyboard
    [ 2.991] (II) input device 'Logitech USB Receiver', /dev/input/event22 is a keyboard
    [ 2.991] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event11)
    [ 2.991] (II) No input driver specified, ignoring this device.
    [ 2.991] (II) This device may have been added with another device file.
    [ 2.992] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event13)
    [ 2.992] (II) No input driver specified, ignoring this device.
    [ 2.992] (II) This device may have been added with another device file.
    [ 2.992] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event14)
    [ 2.992] (II) No input driver specified, ignoring this device.
    [ 2.992] (II) This device may have been added with another device file.
    [ 2.992] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event15)
    [ 2.992] (II) No input driver specified, ignoring this device.
    [ 2.992] (II) This device may have been added with another device file.
    [ 2.992] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event16)
    [ 2.992] (II) No input driver specified, ignoring this device.
    [ 2.992] (II) This device may have been added with another device file.
    [ 2.992] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event17)
    [ 2.992] (II) No input driver specified, ignoring this device.
    [ 2.992] (II) This device may have been added with another device file.
    [ 2.992] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event18)
    [ 2.992] (II) No input driver specified, ignoring this device.
    [ 2.992] (II) This device may have been added with another device file.
    [ 2.992] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event19)
    [ 2.992] (II) No input driver specified, ignoring this device.
    [ 2.992] (II) This device may have been added with another device file.
    [ 2.992] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
    [ 2.992] (II) No input driver specified, ignoring this device.
    [ 2.992] (II) This device may have been added with another device file.
    [ 2.993] (EE) FBDEV(0): FBIOBLANK: Invalid argument
    Output of lshw -c video:
    *-display
    description: VGA compatible controller
    product: Curacao PRO [Radeon R9 270]
    vendor: Advanced Micro Devices, Inc. [AMD/ATI]
    physical id: 0
    bus info: pci@0000:01:00.0
    version: 00
    width: 64 bits
    clock: 33MHz
    capabilities: pm pciexpress msi vga_controller bus_master cap_list rom
    configuration: driver=radeon latency=0
    resources: irq:29 memory:d0000000-dfffffff memory:efe00000-efe3ffff ioport:e000(size=256) memory:efe40000-efe5ffff
    And the output of systemctl status gdm:
    ● gdm.service - GNOME Display Manager
    Loaded: loaded (/usr/lib/systemd/system/gdm.service; enabled; vendor preset: disabled)
    Active: active (running) since Wed 2015-04-29 03:30:42 AEST; 15min ago
    Main PID: 289 (gdm)
    CGroup: /system.slice/gdm.service
    └─289 /usr/bin/gdm
    Apr 29 03:30:42 spitfire systemd[1]: Starting GNOME Display Manager...
    Apr 29 03:30:42 spitfire systemd[1]: Started GNOME Display Manager.
    Apr 29 03:30:45 spitfire gdm[289]: GdmDisplay: display lasted 2.980133 seconds
    Apr 29 03:30:45 spitfire gdm[289]: Child process -311 was already dead.
    Apr 29 03:30:45 spitfire gdm[289]: Child process 303 was already dead.
    Apr 29 03:30:45 spitfire gdm[289]: Unable to kill session worker process
    Apr 29 03:30:45 spitfire gdm[289]: Child process 303 was already dead.
    Apr 29 03:30:45 spitfire gdm[289]: Unable to kill session worker process
    I don't know where the GDM logs are located, as the /var/log/gdm folder is empty. Newbie problems.
    If there are other logs that would help, please tell me and I'll add them. Thanks.
    Last edited by The6P4C (2015-04-28 09:53:14)

    The first is the audio codec, which is WM Std at 44.1kHz. WVP2 is the video codec and I have not heard of it. Nor seen it playback in QT assisted by Flip4mac so it may be unplayable.
    There are always listed one audio codec and one video codec in that box assuming there are audio and video in the clip, e.g. AAC 256 bit (audio) and H264 Simple Profile (video) in an iPod clip.
    Ooh bad news, from another source:
    +"It seems that the Flip4Mac WMV Player, which should provide the missing Windows Media support for Mac users (as endorsed by Microsoft) does not support all Windows Media codecs, namely *it refuses to play content encoded with the Windows Media Video 9 Image v2 (WVP2) codec.* "+

  • How do you get multiple screens on the iPad with iOS 5.1.1?

    How do you get multiple screens on the iPad with iOS 5.1.1? We just upgraded to iOS 5.1.1, and we see no way to be able to open multiple screens at once. Before, there was a small button in the upper portion of any window. That button would take you from a particular window to the place where multiple windows are open at once. Does it do it differently? Is there a special setting button that we have missed? Thanks!
    One more thing: We are only talking about Safari.

    Guitaristica-
    I don't think I've seen a way to have separate Safari screens visible at the same time.  The small thumbnails were deleted in one of the iOS updates, and replaced with a multiple "Tab" system.
    You can open an additional screen in a new "tab" by pressing and holding on a link until a new menu comes up.
    Fred

Maybe you are looking for