[request] xorg-server with Xvnc

I have read the other topic (http://bbs.archlinux.org/viewtopic.php? … light=xvnc) concerning this. I was going to create a new vnc package with Xvnc, but when I started reading through the README that comes with Real VNC I realized I don't have the time to get it all straightened out. I've never built a package for Arch before (indeed, have just started using Arch) and am not sure what the most efficient way of creating the package would be. I was hoping to create a package that depends on the already available vnc package; the new one would just include the vnc.so module for X. That was until I learned the whole X server needs to be built at the same time as the vnc.so module. That really complicates learning how to build this package.
I would use x11vnc but it doesn't want to work properly. My Gnome session is supposed to start it when I login, but it isn't. I would prefer to be able to use the vnc.so module any way.

ok, so i'm almost embarassed to post this.  it's actually pretty trivial.  nevertheless, might as well finish what i've started.
re-statement of the problem:
1) xorg-server 1.5.3 depends on hal and evdev in order to provide input hotplugging.
2) input hotplugging can be turned off, as decsribed here: Arch Wiki Xinput Hotplugging Page.  however, x still requires libhal.so.1 at runtime or it fails.  (it took me ages of googling to figure out that this is indeed the case.)
3) therefore, xorg-server must be rebuilt without hal if you'd like to run v.1.5.3 without installing hal.
how-to correct it:
1) sync abs tree
2) copy xorg-server from the abs tree to your local build directory
3) remove 'hal' and 'xf86-input-evdev' from the depends array
4) change --enable-config-{hal,dbus} to --disable-config-{hal,dbus}  (apparently the server has *some* support for input hotplugging through dbus without hal.  apparently, it also sucked.  so my method is to turn off both, entirely.)
5) makepkg
6) pacman -U
7) add xorg-server to IgnorePkg in /etc/pacman.conf.  the next time xorg-server is upgraded, pacman -Syu will give you a warning and the opportunity to exit.  this is your notice to rebuild and upgrade your local xorg-server.
8?) i suppose you could go through the patches that are applied to xorg-server and figure out which aren't needed.  that would be all neat and clean, but probably not necessary.

Similar Messages

  • HOWTO: xorg-server with no hal dependency (was: xorg-server-screw-hal)

    it annoys me that hal and evdev are hard depends of xorg-server-1.5.3 and autoAddDevices is enabled by default.  i realize the fix is actually fairly trivial, but there's just someting inelegant about installing a package, disabling a feature, then uninstalling the dependencies for that feature.  so here's a PKGBUILD that suits my taste.  maybe it'll make your life just a bit easier.
    EDIT: SCRATCH EVERYTHING BELOW.  the change to the patch will almost guarantee failure if you do this my way.  it doesn't change the default config; it removes the configuration option enitrely.  i get 'epic fail' for that one.  also, x still complains and fails to start if libhal.so.1 is missing, even if you're not using it.  grrrr....
    p.s.: you'll want to open xserver-1.5.3-AEI-on-by-default.patch, go to line 101, and change TRUE to FALSE.  this turns off autoAddDevices by default.  then run makepkg -g and replace the last md5 sum with the new for the changed patch file.
    # $Id: PKGBUILD 21903 2008-12-17 20:32:54Z jgc $ Maintainer: Alexander
    # Baldeck <[email protected]> Contributor: Jan de Groot
    # <[email protected]>
    pkgname=xorg-server
    pkgver=1.5.3
    pkgrel=1
    pkgdesc="X.Org X servers"
    arch=('i686' 'x86_64')
    license=('custom')
    url="http://xorg.freedesktop.org"
    depends=('libx11>=1.1.5'
    'libxkbui>=1.0.2' 'libgl' 'libxfont>=1.3.3' 'openssl>=0.9.8h'
    'libxxf86misc>=1.0.1' 'libpciaccess>=0.10.5' 'libxv>=1.0.4'
    'libxaw>=1.0.4' 'pixman>=0.11.10' 'xcursor-themes'
    'xkeyboard-config>=1.3' 'xorg-server-utils' 'xorg-utils'
    'xorg-fonts-misc' 'xbitmaps' 'libdrm>=2.3.1' 'diffutils')
    makedepends=('glproto>=1.4.9' 'xf86driproto>=2.0.4'
    'mesa>=7.2' 'randrproto>=1.2.2' 'renderproto>=0.9.3'
    'scrnsaverproto>=1.1.0' 'fontsproto>=2.0.2' 'videoproto>=2.2.2'
    'compositeproto>=0.4' 'trapproto>=3.4.3' 'resourceproto>=1.0.2'
    'xineramaproto>=1.1.2' 'evieext>=1.0.2' 'libxkbfile>=1.0.5'
    'libxmu>=1.0.4' 'libxpm>=3.5.7' 'libxxf86dga>=1.0.2' 'inputproto>=1.4.4'
    'xcmiscproto>=1.1.2' 'bigreqsproto' 'libdrm=2.3.1' 'xtrans')
    optdepends=( 'xf86-input-evdev: to provide input device hotplugging'/
    'hal>=0.5.11: to provide input devices for hotplugging' )
    options=('!libtool')
    provides=('x-server')
    groups=('xorg')
    install=xorg-server.install
    source=(${url}/releases/individual/xserver/${pkgname}-${pkgver}.tar.bz2
    xserver-1.5-branch-4970d.patch
    001_fedora_extramodes.patch
    xorg-redhat-die-ugly-pattern-die-die-die.patch
    xserver-1.5.0-force-SwitchCoreKeyboard-for-evdev.patch
    xserver-1.5.3-AEI-on-by-default-AAD-off.patch)
    md5sums=('308971036e25250e7fe3cccfd5a120f8'
    '61f9bb524501247dce647b218ad14347'
    '033427f2b406cba8dd6103ff374e7156'
    '1a336eb22e27cbf443ec5a2ecddfa93c'
    '7b03ba9b75d795e4f7fdfaa550d97159'
    '06e2c673e83b8210c528e27b4051790d')
    build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    # Upstream commits from server-1.5 branch
    patch -Np1 -i "${srcdir}/xserver-1.5-branch-4970d.patch" || return 1
    # extramodes
    patch -Np1 -i "${srcdir}/001_fedora_extramodes.patch" || return 1
    # Get rid of the ugly pattern
    patch -Np3 -i "${srcdir}/xorg-redhat-die-ugly-pattern-die-die-die.patch" || return 1
    # Patch from Fedora to fix FS#12248
    patch -Np1 -i "${srcdir}/xserver-1.5.0-force-SwitchCoreKeyboard-for-evdev.patch" || return 1
    # Upstream patch to fix evdev issues with >=2.1.0
    patch -Np1 -i "${srcdir}/xserver-1.5.3-AEI-on-by-default.patch" || return 1
    # Fix dbus config path
    sed -i -e 's/\$(sysconfdir)/\/etc/' config/Makefile.* || return 1
    ./configure --prefix=/usr \
    --enable-ipv6 \
    --enable-dri \
    --disable-dmx \
    --enable-xvfb \
    --enable-xnest \
    --enable-composite \
    --enable-xcsecurity \
    --enable-xorg \
    --enable-xtrap \
    --enable-xevie \
    --enable-xephyr \
    --enable-glx-tls \
    --enable-xorgcfg \
    --enable-kdrive \
    --enable-install-setuid \
    --enable-config-hal \
    --enable-config-dbus \
    --disable-xfbdev \
    --disable-xfake \
    --disable-xsdl \
    --disable-kdrive-vesa \
    --disable-dri2 \
    --disable-xprint \
    --disable-static \
    --sysconfdir=/etc/X11 \
    --localstatedir=/var \
    --with-default-font-path=/usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1 \
    --with-xkb-path=/usr/share/X11/xkb \
    --with-xkb-output=/var/lib/xkb \
    --with-dri-driver-path=/usr/lib/xorg/modules/dri || return 1
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    rm -rf "${pkgdir}/var/log" || return 1
    install -m755 -d "${pkgdir}/etc/X11" || return 1
    install -m755 -d "${pkgdir}/var/lib/xkb" || return 1
    # No longer needed, but as nvidia-utils mangles these files, keep them
    # like this so they can be restored
    mv "${pkgdir}/usr/lib/xorg/modules/libwfb.so" \
    "${pkgdir}/usr/lib/xorg/modules/libwfb.so.1.4" || return 1
    # Needed for non-mesa drivers, libgl will restore it
    mv "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so" \
    "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.xorg" || return 1
    mv "${pkgdir}/usr/lib/xorg/modules/extensions/libdri.so" \
    "${pkgdir}/usr/lib/xorg/modules/extensions/libdri.xorg" || return 1
    install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
    install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
    Last edited by kludge (2009-01-04 20:41:22)

    ok, so i'm almost embarassed to post this.  it's actually pretty trivial.  nevertheless, might as well finish what i've started.
    re-statement of the problem:
    1) xorg-server 1.5.3 depends on hal and evdev in order to provide input hotplugging.
    2) input hotplugging can be turned off, as decsribed here: Arch Wiki Xinput Hotplugging Page.  however, x still requires libhal.so.1 at runtime or it fails.  (it took me ages of googling to figure out that this is indeed the case.)
    3) therefore, xorg-server must be rebuilt without hal if you'd like to run v.1.5.3 without installing hal.
    how-to correct it:
    1) sync abs tree
    2) copy xorg-server from the abs tree to your local build directory
    3) remove 'hal' and 'xf86-input-evdev' from the depends array
    4) change --enable-config-{hal,dbus} to --disable-config-{hal,dbus}  (apparently the server has *some* support for input hotplugging through dbus without hal.  apparently, it also sucked.  so my method is to turn off both, entirely.)
    5) makepkg
    6) pacman -U
    7) add xorg-server to IgnorePkg in /etc/pacman.conf.  the next time xorg-server is upgraded, pacman -Syu will give you a warning and the opportunity to exit.  this is your notice to rebuild and upgrade your local xorg-server.
    8?) i suppose you could go through the patches that are applied to xorg-server and figure out which aren't needed.  that would be all neat and clean, but probably not necessary.

  • [SOLVED] xorg-server build from abs fails

    Hi,
    ever since I installed the update to gcc-5.1.0 the building of xorg-server from abs fails:
    $ makepkg -s
    CCLD libXextdpmsstubs.la
    xvdisp.c: In function ‘XineramifyXv’:
    xvdisp.c:1783:37: error: array subscript is above array bounds [-Werror=array-bounds]
    if (MatchingAdaptors[k] && (MatchingAdaptors[k]->nPorts > j))
    ^
    xvdisp.c:1784:31: error: array subscript is above array bounds [-Werror=array-bounds]
    port->info[k].id = MatchingAdaptors[k]->base_id + j;
    ^
    xvdisp.c:1786:31: error: array subscript is above array bounds [-Werror=array-bounds]
    port->info[k].id = 0;
    ^
    cc1: some warnings being treated as errors
    Makefile:777: recipe for target 'xvdisp.lo' failed
    make[1]: *** [xvdisp.lo] Error 1
    make[1]: *** Waiting for unfinished jobs....
    make: *** [all-recursive] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    This happens for xorg-server-1.17.1-6 and up as well as for xorg-server-1.17.2-1 .
    $ gcc --version
    gcc (GCC) 5.1.0
    Copyright (C) 2015 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    I searched for a solution or a patch, but couldn't find anything.
    xorg-server-1.17.2 supposedly has build fixes with gcc-5.1, but obviously that didn't help much for me.
    Otherwise my arch installation is up-to-date.
    I'm building on x86-64 (Haswell) with
    CPPFLAGS="-D_FORTIFY_SOURCE=2"
    CFLAGS="-march=native -mtune=native -O3 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    CXXFLAGS="-march=native -mtune=native -O3 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    LDFLAGS="-Wl,-O2,--sort-common,--as-needed,-z,relro"
    MAKEFLAGS="-j16"
    DEBUG_CFLAGS="-g -fvar-tracking-assignments"
    DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
    Has anyone else seen this or any idea how to fix it?
    Last edited by pgzh (2015-06-19 15:03:20)

    Using
    CFLAGS="-march=native -mtune=native -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    CXXFLAGS="-march=native -mtune=native -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    in makepkg.conf actually worked, I totally forgot about changing the optimization level.
    Since this is the first time for a very long time I've encountered a problem with -O3, do you think this should be reported as a bug for xorg-server?
    With gcc-4.9 building xorg-server with -O3 optimization level worked perfectly fine for me (I built 1.17.1 like that) and gcc-5.1 causes this culprit.
    Anyways, thank you very much for your help!

  • [SOLVED] building xorg-server: libgl & nvidia-utils conflict

    Hello!
    I somehow feel like I'm totally missing the point, but...
    edit: although I think (not sure any more) this was the same procedure when I first compiled xorg-server, I maybe should mention, I'm now using the testing xorg.
    I still don't really understand, why I need libgl to build xorg-server. Aren't nvidia-utils supposed to replace that? Is there a way of building xorg-server with nvidia-utils instead of libgl and if yes: are there (dis-/) advantages doing so other than not having to uninstall nvidia-utils while compiling xorg-server?
    Or the other way around: Perhaps it's just me, but I feel "funny" having to remove something that's vital to my installation before I can compile something that's vital to my installation, too... so is it really OK to remove nvidia-utils and compile xorg-server without it or am I doing it wrong?
    Thank you for enlightening me
    Last edited by whoops (2009-04-07 02:20:51)

    Well AFAIK, The nVIDIA closed source drivers haven't caught up with xorg server 1.6 which is why you need libgl to build xorg-xserver 1.6+. I personally perfer the open source drivers over Fglrx (FireGL and Radeon X) and the closed source nVIDIA drivers as well.
    edit: xorg server is 1.6 in testing so if you want to compile from source, and have the closed source nvidia drivers, you would need to compile xorg server 1.5.XX
    P.S. You cannot have both, the nvidia drivers and the open source drivers (libgl), running at the same time which is why the nvidia-* packages are to be removed.
    Cheers!
    Last edited by Neo_The_User (2009-03-30 16:53:28)

  • [solved/cannot be solved]Xorg-server and gnome-power-manager

    I was wondering if there is hope that someone will put patches to main tree of Xorg-server which are here: http://blogs.gnome.org/hughsie/2009/08/ … of-bodges/
    It should remove this weird blanking effect and time gap before screen is backlighted again. I didn't tested it, because it requires rebuild of xorg-server and I don't want to use git version, but guys there says that it's working.
    Last edited by megawebmaster (2010-02-08 22:24:26)

    OK, thanks for advice, I'll try building xorg-server with ABS.
    I've got another problem with automatic turn off screen - media players don't prevent turning screen off while they are playing film. Is there any possibility to fix it? Only way I've found is to turn off automatic screen backlight off after couple of minutes, but it's not how tigers want this to work

  • Xorg-server 1.6 - black screen with mouse cursor

    Hi
    First of all: I'm really new to Arch, so maybe there is a real easy fix for this problem
    Since upgrading to xorg-server 1.6 (and today to 1.6.1) I'm not able to get a running Desktop Environment.
    Usually I am using gnome with compiz-fusion on my Geforce 4 (nvidia-96xx 96.43.11-4 driver).
    When I boot my machine i see gdm and I am able to login. I can hear my login sound but I only get a black screen with a mouse cursor.
    I added a new test user to my system without compiz and get the same.
    I tried my old xorg.conf from 1.5, generated a new one with X -configure and tried without xorg.conf but everytime the same
    Actually I'm not sure if the xorg update is responsible for this, because i did not watch the upgrade-process....
    I googled this problem and was searching similar things in this froum, but I wasn't able to find something
    Here are some files
    xorg.conf (i know there are some bullshit things in it, but it was workig )
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5x) man page for details about the format of
    # this file.
    # Module section -- this section is used to specify
    # which dynamically loadable modules to load.
    Section "Module"
    # This loads the DBE extension module.
    Load "dbe" # Double buffer extension
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    # This loads the font modules
    # Load "type1"
    # Load "freetype"
    # Load "xtt"
    # This loads the GLX module
    Load "glx"
    # This loads the DRI module
    # Load "dri"
    EndSection
    # Files section. This allows default font and rgb paths to be set
    Section "Files"
    # The location of the RGB database. Note, this is the name of the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    # RgbPath "/usr/share/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    # FontPath "/usr/share/fonts/OTF"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    FontPath "/usr/lib/X11/fonts/local/"
    FontPath "/usr/lib/X11/fonts/misc/"
    FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
    FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/Speedo/"
    FontPath "/usr/lib/X11/fonts/Type1/"
    # FontPath "/usr/lib/X11/fonts/TrueType/"
    # FontPath "/usr/lib/X11/fonts/freefont/"
    FontPath "/usr/lib/X11/fonts/75dpi/"
    FontPath "/usr/lib/X11/fonts/100dpi/"
    # The module search path. The default path is shown here.
    # ModulePath "/usr/lib/modules"
    EndSection
    # Server flags section.
    Section "ServerFlags"
    # Uncomment this to cause a core dump at the spot where a signal is
    # received. This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    # Option "NoTrapSignals"
    # Uncomment this to disable the <Ctrl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12). This allows clients to receive these key
    # events.
    # Option "DontVTSwitch"
    # Uncomment this to disable the <Ctrl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    # Option "DontZap"
    # Uncomment this to disable the <Ctrl><Alt><KP_+>/<KP_-> mode switching
    # sequences. This allows clients to receive these key events.
    # Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    # Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    # Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    # Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    # Option "AllowNonLocalModInDev"
    EndSection
    # Input devices
    # Core keyboard's InputDevice section
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    # For most OSs the protocol can be omitted (it defaults to "Standard").
    # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
    # uncomment the following line.
    # Option "Protocol" "Xqueue"
    Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    # Option "Xleds" "1 2 3"
    # Option "LeftAlt" "Meta"
    # Option "RightAlt" "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "us"
    # Option "XkbVariant" ""
    # Option "XkbOptions" ""
    # Option "XkbDisable"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "de"
    Option "XkbVariant" "nodeadkeys"
    EndSection
    # Core Pointer's InputDevice section
    Section "InputDevice"
    # Identifier and driver
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "IMPS/2" # PS/2 Mouse
    Option "Device" "/dev/psaux"
    Option "Buttons" "5"
    Option "ZAxisMapping" "4 5"
    # When using XQUEUE, comment out the above two lines, and uncomment
    # the following line.
    # Option "Protocol" "Xqueue"
    # Mouse-speed setting for PS/2 mouse.
    # Option "Resolution" "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    # Option "BaudRate" "9600"
    # Option "SampleRate" "150"
    # Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7. Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
    Option "ZAxisMapping" "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    # Option "Emulate3Buttons"
    # Option "Emulate3Timeout" "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    # Option "ChordMiddle"
    EndSection
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices. This is for example only. Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    # Identifier "Mouse2"
    # Driver "mouse"
    # Option "Protocol" "MouseMan"
    # Option "Device" "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball"
    # Driver "magellan"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball2"
    # Driver "spaceorb"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen0"
    # Driver "microtouch"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "1412"
    # Option "MaxX" "15184"
    # Option "MinY" "15372"
    # Option "MaxY" "1230"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen1"
    # Driver "elo2300"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "231"
    # Option "MaxX" "3868"
    # Option "MinY" "3858"
    # Option "MaxY" "272"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonThreshold" "17"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    Section "Monitor"
    Identifier "Eizo"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    HorizSync 24.8-80
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    VertRefresh 50-75
    EndSection
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    Section "Device"
    Identifier "Standard VGA"
    VendorName "Unknown"
    BoardName "Unknown"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    Driver "vga"
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    EndSection
    # Device configured by xorgconfig:
    Section "Device"
    Identifier "GeForce4"
    # Driver "nv"
    Driver "nvidia"
    #VideoRam 131072
    # Insert Clocks lines here if appropriate
    EndSection
    # Screen sections
    # Any number of screen sections may be present. Each describes
    # the configuration of a single screen. A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    Section "Screen"
    Identifier "Screen 1"
    Device "GeForce4"
    Monitor "Eizo"
    DefaultDepth 24
    Option "AddARGBGLXVisuals" "true"
    Subsection "Display"
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    EndSection
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present. Each describes
    # the way multiple screens are organised. A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option. In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
    Identifier "Simple Layout"
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens. The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen. In this example, screen 2 is located to the
    # right of screen 1.
    Screen "Screen 1"
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used. Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    # Section "DRI"
    # Mode 0666
    # EndSection
    Section "Extensions"
    Option "Composite" "enable"
    EndSection
    Xorg.0.log
    X.Org X Server 1.6.1
    Release Date: 2009-4-14
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.29-ARCH i686
    Current Operating System: Linux delirium 2.6.29-ARCH #1 SMP PREEMPT Wed Apr 8 12:47:56 UTC 2009 i686
    Build Date: 15 April 2009 11:09:10AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Apr 15 23:20:32 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Simple Layout"
    (**) |-->Screen "Screen 1" (0)
    (**) | |-->Monitor "Eizo"
    (**) | |-->Device "GeForce4"
    (**) |-->Input Device "Mouse1"
    (**) |-->Input Device "Keyboard1"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/lib/X11/fonts/local/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/misc/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/75dpi/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/100dpi/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/Type1/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/75dpi/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/100dpi/" does not exist.
    Entry deleted from font path.
    (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (**) Extension "Composite" is enabled
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Mouse1
    (WW) Disabling Keyboard1
    (II) Loader magic: 0x1a40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI:*(0@3:0:0) nVidia Corporation NV25 [GeForce4 Ti 4200] rev 163, Mem @ 0xe5000000/16777216, 0xd0000000/134217728, 0xd8000000/524288, BIOS @ 0x????????/131072
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded by default.
    (II) "dri2" will be loaded by default.
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    (II) NVIDIA GLX Module 96.43.11 Mon Feb 23 15:43:14 PST 2009
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) NVIDIA dlloader X Driver 96.43.11 Mon Feb 23 15:32:04 PST 2009
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 03@00:00:0
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Option "AddARGBGLXVisuals" "true"
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) NVIDIA(0): enabled.
    (II) NVIDIA(0): NVIDIA GPU GeForce4 Ti 4200 at PCI:3:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 131072 kBytes
    (--) NVIDIA(0): VideoBIOS: 04.25.00.34.00
    (II) NVIDIA(0): Detected AGP rate: 4X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce4 Ti 4200 at PCI:3:0:0:
    (--) NVIDIA(0): EIZO L578 (DFP-0)
    (--) NVIDIA(0): EIZO L578 (DFP-0): 165.0 MHz maximum pixel clock
    (--) NVIDIA(0): EIZO L578 (DFP-0): External Single Link TMDS
    (II) NVIDIA(0): Assigned Display Device: DFP-0
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "1280x1024"
    (II) NVIDIA(0): "1024x768"
    (II) NVIDIA(0): "800x600"
    (II) NVIDIA(0): "640x480"
    (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    (--) NVIDIA(0): DPI set to (95, 96); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) NVIDIA(0): Initialized GART.
    (II) NVIDIA(0): Setting mode "1280x1024"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (II) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (==) RandR enabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing extension GLX
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.2.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device ImPS/2 Logitech Wheel Mouse
    (**) ImPS/2 Logitech Wheel Mouse: always reports core events
    (**) ImPS/2 Logitech Wheel Mouse: Device: "/dev/input/event6"
    (II) ImPS/2 Logitech Wheel Mouse: Found 3 mouse buttons
    (II) ImPS/2 Logitech Wheel Mouse: Found x and y relative axes
    (II) ImPS/2 Logitech Wheel Mouse: Found scroll wheel(s)
    (II) ImPS/2 Logitech Wheel Mouse: Configuring as mouse
    (**) ImPS/2 Logitech Wheel Mouse: YAxisMapping: buttons 4 and 5
    (**) ImPS/2 Logitech Wheel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "ImPS/2 Logitech Wheel Mouse" (type: MOUSE)
    (**) ImPS/2 Logitech Wheel Mouse: (accel) keeping acceleration scheme 1
    (**) ImPS/2 Logitech Wheel Mouse: (accel) filter chain progression: 2.00
    (**) ImPS/2 Logitech Wheel Mouse: (accel) filter stage 0: 20.00 ms
    (**) ImPS/2 Logitech Wheel Mouse: (accel) set acceleration profile 0
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device saa7134 IR (LifeView FlyVIDEO30
    (**) saa7134 IR (LifeView FlyVIDEO30: always reports core events
    (**) saa7134 IR (LifeView FlyVIDEO30: Device: "/dev/input/event5"
    (II) saa7134 IR (LifeView FlyVIDEO30: Found keys
    (II) saa7134 IR (LifeView FlyVIDEO30: Configuring as keyboard
    (II) XINPUT: Adding extended input device "saa7134 IR (LifeView FlyVIDEO30" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    Last edited by MueLLe (2009-04-15 21:35:42)

    I'm having a very similar issue. Sometimes, when I boot and type in startx (I'm not even a GNOME user--I use dwm and no graphical login manager), I just get a black screen. No mouse cursor, so I think X doesn't even load. It only started with the xserver 1.6 update and the update to that hasn't changed anything. What I've been doing is just rebooting until it loads normally (takes one to three times). Is anyone else having this problem?

  • Keyboard not working with xorg-server 1.6.1-1 or xkeyboard 1.5-1

    Hello!
    I have a problem with a no working keyboard. It seems like this is a problem related to some of the latest xkeyboard-config or xorg-server versions. This have been a problem some time, but it have been solved by downgrading xkeyboard-config to v1.5-1 and xorg-server to v1.6.1-1.
    I'm booting into runlevel 3. Keyboard is working in the terminal, but when I run startx, the keyboard stops working. The mouse works fine.
    Have tested with an empty xorg.conf file. Then I get a 'no screen found' error. And I have tryed to enable the keyboard entry in xorg.conf. X starts, but no keyboard. Hal is running.
    Any ideas?
    The xorg.conf and rc.conf
    # Copyright 2004 The X.Org Foundation
    Section "ServerLayout"
    Identifier "Laptop"
    Screen 0 "Default" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    # InputDevice "EvdevMouse" "CorePointer"
    # Inputdevice "Trackpoint" "SendCoreEvents"
    EndSection
    Section "ServerFlags"
    Option "AutoAddDevices" "True"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    EndSection
    Section "Monitor"
    Identifier "LCD"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "radeon_hd"
    Driver "fglrx"
    EndSection
    Section "Screen"
    Identifier "Default"
    Device "radeon_hd"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1440x900" "1024x768"
    Virtual 2720 1024
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    # /etc/rc.conf - Main Configuration for Arch Linux
    LOCALE="en_US.utf8"
    HARDWARECLOCK="UTC"
    USEDIRECTISA="no"
    TIMEZONE="Europe/Oslo"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    MOD_AUTOLOAD="yes"
    MODULES=(fglrx vboxdrv vboxnetadp acpi_cpufreq cpufreq_ondemand !pcspkr)
    USELVM="no"
    HOSTNAME="ArchT400"
    eth0="dhcp"
    INTERFACES=(!eth0)
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    DAEMONS=(syslog-ng network netfs hal laptop-mode cpufreq crond oss @autowifi @cups @openntpd @hddtemp)
    Last edited by orjanp (2009-08-11 13:07:41)

    Her er Xorg.0.log
    X.Org X Server 1.6.3
    Release Date: 2009-7-31
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH x86_64
    Current Operating System: Linux ArchT400 2.6.30-ARCH #1 SMP PREEMPT Fri Jul 31 07:30:28 CEST 2009 x86_64
    Build Date: 03 August 2009 08:17:16PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Aug 12 10:39:18 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Laptop"
    (**) |-->Screen "Default" (0)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "radeon_hd"
    (==) No monitor specified for screen "Default".
    Using a default monitor configuration.
    (**) Option "AutoAddDevices" "True"
    (**) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (II) Loader magic: 0x7540
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0:1:0:0) 1002:95c4:17aa:210e ATI Technologies Inc Mobility Radeon HD 3400 Series rev 0, Mem @ 0xd0000000/268435456, 0xcfff0000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="FireGL - ATI Technologies Inc."
    compiled for 7.4.0, module version = 1.0.0
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 7.4.0, module version = 1.0.0
    (II) Loading extension XFree86-DRI
    (II) Loading sub module "fglrxdrm"
    (II) LoadModule: "fglrxdrm"
    (II) Loading /usr/lib/xorg/modules/linux//libfglrxdrm.so
    (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
    compiled for 1.4.99.906, module version = 8.63.2
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "fglrx"
    (II) Loading /usr/lib/xorg/modules/drivers//fglrx_drv.so
    (II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
    compiled for 1.4.99.906, module version = 8.63.2
    Module class: X.Org Video Driver
    (II) Primary Device is: PCI 01@00:00:0
    (WW) Falling back to old probe method for fglrx
    (II) ATI Proprietary Linux Driver Version Identifier:8.63.2
    (II) ATI Proprietary Linux Driver Release Identifier: 8.632
    (II) ATI Proprietary Linux Driver Build Date: Jul 2 2009 12:25:51
    (II) Loading PCS database from /etc/ati/amdpcsdb
    (WW) This ATI Proprietary Linux Driver does not guarantee support of video driver ABI higher than 2.0
    (WW) Video driver ABI version of the X server is 5.0
    (--) Assigning device section with no busID to primary device
    (--) Chipset Supported AMD Graphics Processor (0x95C4) found
    (II) AMD Video driver is running on a device belonging to a group targeted for this release
    (II) AMD Video driver is signed
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) fglrx(0): pEnt->device->identifier=0x154b6d0
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (II) fglrx(0): === [atiddxPreInit] === begin
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) fglrx(0): PCI bus 1 card 0 func 0
    (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    (==) fglrx(0): Default visual is TrueColor
    (II) fglrx(0): 10BitPixelFormat disabled by default
    (==) fglrx(0): RGB weight 888
    (II) fglrx(0): Using 8 bits per RGB (8 bit DAC)
    (==) fglrx(0): Gamma Correction for I is 0x06419064
    (==) fglrx(0): Gamma Correction for II is 0x06419064
    (==) fglrx(0): Buffer Tiling is ON
    (II) Loading sub module "fglrxdrm"
    (II) LoadModule: "fglrxdrm"
    (II) Reloading /usr/lib/xorg/modules/linux//libfglrxdrm.so
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: Searching for BusID PCI:1:0:0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: drmOpenMinor returns 8
    drmOpenByBusid: drmGetBusid reports PCI:1:0:0
    (--) fglrx(0): Chipset: "ATI Mobility Radeon HD 3400 Series" (Chipset = 0x95c4)
    (--) fglrx(0): (PciSubVendor = 0x17aa, PciSubDevice = 0x210e)
    (--) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
    (--) fglrx(0): Linear framebuffer (phys) at 0xd0000000
    (--) fglrx(0): MMIO registers at 0xcfff0000
    (--) fglrx(0): I/O port at 0x00002000
    (==) fglrx(0): ROM-BIOS at 0x000c0000
    (II) fglrx(0): Battery is used
    (II) fglrx(0): Primary V_BIOS segment is: 0xc000
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules//libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) fglrx(0): VESA BIOS detected
    (II) fglrx(0): VESA VBE Version 3.0
    (II) fglrx(0): VESA VBE Total Mem: 16384 kB
    (II) fglrx(0): VESA VBE OEM: ATI ATOMBIOS
    (II) fglrx(0): VESA VBE OEM Software Rev: 10.88
    (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2005, ATI Technologies Inc.
    (II) fglrx(0): VESA VBE OEM Product: M82
    (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
    (II) fglrx(0): ATI Video BIOS revision 9 or later detected
    (--) fglrx(0): Video RAM: 262144 kByte, Type: DDR3
    (II) fglrx(0): PCIE card detected
    (--) fglrx(0): Using per-process page tables (PPPT) as GART.
    (WW) fglrx(0): board is an unknown third party board, chipset is supported
    (II) fglrx(0): Using adapter: 1:0.0.
    (II) fglrx(0): [FB] MC range(MCFBBase = 0xc0000000, MCFBSize = 0x10000000)
    (II) fglrx(0): [pcie] 1986048 kB allocated
    (II) fglrx(0): [drm] DRM buffer queue setup: nbufs = 100 bufsize = 65536
    (II) fglrx(0): Interrupt handler installed at IRQ 32.
    (II) fglrx(0): IRQ 32 Enabled.
    (II) fglrx(0): RandR 1.2 support is enabled!
    (II) fglrx(0): RandR 1.2 rotation support is enabled!
    (==) fglrx(0): Center Mode is disabled
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) fglrx(0): ***Display: ConnectedDisplayTypes=0x00000002, disabled=0x00000000
    (II) fglrx(0): Connected Display1: LCD on internal LVDS [lvds]
    (II) fglrx(0): Display1 EDID data ---------------------------
    (II) fglrx(0): Manufacturer: LEN Model: 4036 Serial#: 0
    (II) fglrx(0): Year: 2008 Week: 0
    (II) fglrx(0): EDID Version: 1.3
    (II) fglrx(0): Digital Display Input
    (II) fglrx(0): Max Image Size [cm]: horiz.: 30 vert.: 19
    (II) fglrx(0): Gamma: 2.20
    (II) fglrx(0): DPMS capabilities: StandBy Suspend Off
    (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    (II) fglrx(0): First detailed timing is preferred mode
    (II) fglrx(0): redX: 0.571 redY: 0.340 greenX: 0.338 greenY: 0.542
    (II) fglrx(0): blueX: 0.158 blueY: 0.125 whiteX: 0.313 whiteY: 0.329
    (II) fglrx(0): Manufacturer's mask: 0
    (II) fglrx(0): Supported detailed timing:
    (II) fglrx(0): clock: 101.6 MHz Image Size: 304 x 190 mm
    (II) fglrx(0): h_active: 1440 h_sync: 1488 h_sync_end 1520 h_blank_end 1824 h_border: 0
    (II) fglrx(0): v_active: 900 v_sync: 903 v_sync_end 909 v_blanking: 926 v_border: 0
    (II) fglrx(0): Supported detailed timing:
    (II) fglrx(0): clock: 85.6 MHz Image Size: 304 x 190 mm
    (II) fglrx(0): h_active: 1440 h_sync: 1488 h_sync_end 1520 h_blank_end 1848 h_border: 0
    (II) fglrx(0): v_active: 900 v_sync: 903 v_sync_end 909 v_blanking: 926 v_border: 0
    (WW) fglrx(0): Unknown vendor-specific block f
    (II) fglrx(0): LP141WP2-TLB1
    (II) fglrx(0): EDID (in hex):
    (II) fglrx(0): 00ffffffffffff0030ae364000000000
    (II) fglrx(0): 00120103801e1378ea4b859257568a28
    (II) fglrx(0): 20505400000001010101010101010101
    (II) fglrx(0): 010101010101b027a08051841a303020
    (II) fglrx(0): 360030be100000197021a09851841a30
    (II) fglrx(0): 3020360030be100000190000000f0095
    (II) fglrx(0): 0a32950a28191900320c3c01000000fe
    (II) fglrx(0): 004c503134315750322d544c4231001f
    (II) fglrx(0): End of Display1 EDID data --------------------
    (II) fglrx(0): Output LCD using monitor section LCD
    (II) fglrx(0): Output DFP1 has no monitor section
    (II) fglrx(0): Output CRT1 has no monitor section
    (II) fglrx(0): EDID vendor "LEN", prod id 16438
    (II) fglrx(0): Printing DDC gathered Modelines:
    (II) fglrx(0): Modeline "1440x900"x0.0 101.60 1440 1488 1520 1824 900 903 909 926 -hsync -vsync (55.7 kHz)
    (II) fglrx(0): Modeline "1440x900"x0.0 85.60 1440 1488 1520 1848 900 903 909 926 -hsync -vsync (46.3 kHz)
    (II) fglrx(0): Output LCD connected
    (II) fglrx(0): Output DFP1 disconnected
    (II) fglrx(0): Output CRT1 disconnected
    (II) fglrx(0): Using user preference for initial modes
    (II) fglrx(0): Output LCD using initial mode 1440x900
    (++) fglrx(0): DPI set to (96, 96)
    (==) fglrx(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) fglrx(0): QBS disabled
    (==) fglrx(0): FAST_SWAP disabled
    (==) fglrx(0): PseudoColor visuals disabled
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (==) fglrx(0): NoAccel = NO
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.2.1
    ABI class: X.Org Video Driver, version 5.0
    (==) fglrx(0): NoDRI = NO
    (==) fglrx(0): Capabilities: 0x00000000
    (==) fglrx(0): CapabilitiesEx: 0x00000000
    (==) fglrx(0): cpuFlags: 0x8000001d
    (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
    (==) fglrx(0): UseFastTLS=0
    (==) fglrx(0): BlockSignalsOnLock=1
    (II) fglrx(0): Finished Initialize PPLIB!
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) fglrx(0): driver needs X.org 1.4.x.y with x.y >= 99.906
    (WW) fglrx(0): could not detect X server version (query_status=-1)
    (II) Loading extension ATIFGLRXDRI
    (II) fglrx(0): doing DRIScreenInit
    (II) fglrx(0): DRIScreenInit for fglrx driver
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID PCI:1:0:0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports PCI:1:0:0
    (II) fglrx(0): [drm] DRM interface version 1.0
    (II) fglrx(0): [drm] created "fglrx" driver at busid "PCI:1:0:0"
    (II) fglrx(0): [drm] added 8192 byte SAREA at 0xcd000
    (II) fglrx(0): [drm] mapped SAREA 0xcd000 to 0x7f3e01f4b000
    (II) fglrx(0): [drm] framebuffer handle = 0xce000
    (II) fglrx(0): [drm] added 1 reserved context for kernel
    (II) fglrx(0): DRIScreenInit done
    (II) fglrx(0): Kernel Module Version Information:
    (II) fglrx(0): Name: fglrx
    (II) fglrx(0): Version: 8.63.2
    (II) fglrx(0): Date: Jul 2 2009
    (II) fglrx(0): Desc: ATI FireGL DRM kernel module
    (II) fglrx(0): Kernel Module version matches driver.
    (II) fglrx(0): Kernel Module Build Time Information:
    (II) fglrx(0): Build-Kernel UTS_RELEASE: 2.6.30-ARCH
    (II) fglrx(0): Build-Kernel MODVERSIONS: no
    (II) fglrx(0): Build-Kernel __SMP__: yes
    (II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
    (II) fglrx(0): [drm] register handle = 0x000cf000
    (II) fglrx(0): Display width adjusted to to 2816 due to alignment constraints
    (II) fglrx(0): DRI initialization successfull!
    (II) fglrx(0): FBADPhys: 0xc0000000 FBMappedSize: 0x0106a000
    (II) fglrx(0): FBMM initialized for area (0,0)-(2816,1528)
    (II) fglrx(0): FBMM auto alloc for area (0,0)-(2816,1024) (front color buffer - assumption)
    (II) fglrx(0): Largest offscreen area available: 2816 x 504
    (==) fglrx(0): Backing store disabled
    (II) Loading extension FGLRXEXTENSION
    (II) Loading extension ATITVOUT
    (II) fglrx(0): DPMS enabled
    (**) fglrx(0): Textured Video is enabled.
    (II) LoadModule: "glesx"
    (II) Loading /usr/lib/xorg/modules//glesx.so
    (II) Module glesx: vendor="X.Org Foundation"
    compiled for 1.4.99.906, module version = 1.0.0
    (II) Loading extension GLESX
    (II) fglrx(0): GLESX enableFlags = 94
    (II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    Solid Horizontal and Vertical Lines
    Driver provided ScreenToScreenBitBlt replacement
    Driver provided FillSolidRects replacement
    (II) fglrx(0): GLESX is enabled
    (II) LoadModule: "amdxmm"
    (II) Loading /usr/lib/xorg/modules//amdxmm.so
    (II) Module amdxmm: vendor="X.Org Foundation"
    compiled for 1.4.99.906, module version = 1.0.0
    (II) Loading extension AMDXVOPL
    (II) fglrx(0): UVD2 feature is available
    (II) fglrx(0): Enable composite support successfully
    (II) fglrx(0): X context handle = 0x1
    (II) fglrx(0): [DRI] installation complete
    (==) fglrx(0): Silken mouse enabled
    (==) fglrx(0): Using HW cursor of display infrastructure!
    (==) fglrx(0): Using software cursor
    (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (WW) AIGLX: 3D driver claims to not support visual 0x23
    (WW) AIGLX: 3D driver claims to not support visual 0x24
    (WW) AIGLX: 3D driver claims to not support visual 0x25
    (WW) AIGLX: 3D driver claims to not support visual 0x26
    (WW) AIGLX: 3D driver claims to not support visual 0x27
    (WW) AIGLX: 3D driver claims to not support visual 0x28
    (WW) AIGLX: 3D driver claims to not support visual 0x29
    (WW) AIGLX: 3D driver claims to not support visual 0x2a
    (WW) AIGLX: 3D driver claims to not support visual 0x2b
    (WW) AIGLX: 3D driver claims to not support visual 0x2c
    (WW) AIGLX: 3D driver claims to not support visual 0x2d
    (WW) AIGLX: 3D driver claims to not support visual 0x2e
    (WW) AIGLX: 3D driver claims to not support visual 0x2f
    (WW) AIGLX: 3D driver claims to not support visual 0x30
    (WW) AIGLX: 3D driver claims to not support visual 0x31
    (WW) AIGLX: 3D driver claims to not support visual 0x32
    (WW) AIGLX: 3D driver claims to not support visual 0x33
    (WW) AIGLX: 3D driver claims to not support visual 0x34
    (WW) AIGLX: 3D driver claims to not support visual 0x35
    (WW) AIGLX: 3D driver claims to not support visual 0x36
    (WW) AIGLX: 3D driver claims to not support visual 0x37
    (WW) AIGLX: 3D driver claims to not support visual 0x38
    (WW) AIGLX: 3D driver claims to not support visual 0x39
    (WW) AIGLX: 3D driver claims to not support visual 0x3a
    (WW) AIGLX: 3D driver claims to not support visual 0x3b
    (WW) AIGLX: 3D driver claims to not support visual 0x3c
    (WW) AIGLX: 3D driver claims to not support visual 0x3d
    (WW) AIGLX: 3D driver claims to not support visual 0x3e
    (WW) AIGLX: 3D driver claims to not support visual 0x3f
    (WW) AIGLX: 3D driver claims to not support visual 0x40
    (WW) AIGLX: 3D driver claims to not support visual 0x41
    (WW) AIGLX: 3D driver claims to not support visual 0x42
    (WW) AIGLX: 3D driver claims to not support visual 0x43
    (WW) AIGLX: 3D driver claims to not support visual 0x44
    (WW) AIGLX: 3D driver claims to not support visual 0x45
    (WW) AIGLX: 3D driver claims to not support visual 0x46
    (WW) AIGLX: 3D driver claims to not support visual 0x47
    (WW) AIGLX: 3D driver claims to not support visual 0x48
    (WW) AIGLX: 3D driver claims to not support visual 0x49
    (WW) AIGLX: 3D driver claims to not support visual 0x4a
    (WW) AIGLX: 3D driver claims to not support visual 0x4b
    (WW) AIGLX: 3D driver claims to not support visual 0x4c
    (WW) AIGLX: 3D driver claims to not support visual 0x4d
    (WW) AIGLX: 3D driver claims to not support visual 0x4e
    (WW) AIGLX: 3D driver claims to not support visual 0x4f
    (WW) AIGLX: 3D driver claims to not support visual 0x50
    (WW) AIGLX: 3D driver claims to not support visual 0x51
    (WW) AIGLX: 3D driver claims to not support visual 0x52
    (WW) AIGLX: 3D driver claims to not support visual 0x53
    (WW) AIGLX: 3D driver claims to not support visual 0x54
    (WW) AIGLX: 3D driver claims to not support visual 0x55
    (WW) AIGLX: 3D driver claims to not support visual 0x56
    (WW) AIGLX: 3D driver claims to not support visual 0x57
    (WW) AIGLX: 3D driver claims to not support visual 0x58
    (WW) AIGLX: 3D driver claims to not support visual 0x59
    (WW) AIGLX: 3D driver claims to not support visual 0x5a
    (WW) AIGLX: 3D driver claims to not support visual 0x5b
    (WW) AIGLX: 3D driver claims to not support visual 0x5c
    (WW) AIGLX: 3D driver claims to not support visual 0x5d
    (WW) AIGLX: 3D driver claims to not support visual 0x5e
    (WW) AIGLX: 3D driver claims to not support visual 0x5f
    (WW) AIGLX: 3D driver claims to not support visual 0x60
    (WW) AIGLX: 3D driver claims to not support visual 0x61
    (WW) AIGLX: 3D driver claims to not support visual 0x62
    (WW) AIGLX: 3D driver claims to not support visual 0x63
    (WW) AIGLX: 3D driver claims to not support visual 0x64
    (WW) AIGLX: 3D driver claims to not support visual 0x65
    (WW) AIGLX: 3D driver claims to not support visual 0x66
    (WW) AIGLX: 3D driver claims to not support visual 0x67
    (WW) AIGLX: 3D driver claims to not support visual 0x68
    (WW) AIGLX: 3D driver claims to not support visual 0x69
    (WW) AIGLX: 3D driver claims to not support visual 0x6a
    (WW) AIGLX: 3D driver claims to not support visual 0x6b
    (WW) AIGLX: 3D driver claims to not support visual 0x6c
    (WW) AIGLX: 3D driver claims to not support visual 0x6d
    (WW) AIGLX: 3D driver claims to not support visual 0x6e
    (WW) AIGLX: 3D driver claims to not support visual 0x6f
    (WW) AIGLX: 3D driver claims to not support visual 0x70
    (WW) AIGLX: 3D driver claims to not support visual 0x71
    (WW) AIGLX: 3D driver claims to not support visual 0x72
    (II) AIGLX: Loaded and initialized /usr/lib/dri/fglrx_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) fglrx(0): Enable the clock gating!
    (II) fglrx(0): Setting screen physical size to 381 x 238
    (II) config/hal: Adding input device ThinkPad Extra Buttons
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 2.2.3
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) ThinkPad Extra Buttons: always reports core events
    (**) ThinkPad Extra Buttons: Device: "/dev/input/event6"
    (II) ThinkPad Extra Buttons: Found keys
    (II) ThinkPad Extra Buttons: Configuring as keyboard
    (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us,no"
    (**) Option "xkb_options" "grp:alt_shift_toggle"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device TPPS/2 IBM TrackPoint
    (**) TPPS/2 IBM TrackPoint: always reports core events
    (**) TPPS/2 IBM TrackPoint: Device: "/dev/input/event8"
    (II) TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    (II) TPPS/2 IBM TrackPoint: Found x and y relative axes
    (II) TPPS/2 IBM TrackPoint: Configuring as mouse
    (**) TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    (**) TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE)
    (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    (**) TPPS/2 IBM TrackPoint: (accel) filter chain progression: 2.00
    (**) TPPS/2 IBM TrackPoint: (accel) filter stage 0: 20.00 ms
    (**) TPPS/2 IBM TrackPoint: (accel) set acceleration profile 0
    (II) config/hal: Adding input device Logitech USB Receiver
    (**) Logitech USB Receiver: always reports core events
    (**) Logitech USB Receiver: Device: "/dev/input/event9"
    (II) Logitech USB Receiver: Found 20 mouse buttons
    (II) Logitech USB Receiver: Found x and y relative axes
    (II) Logitech USB Receiver: Found scroll wheel(s)
    (II) Logitech USB Receiver: Configuring as mouse
    (**) Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    (**) Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE)
    (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    (**) Logitech USB Receiver: (accel) filter chain progression: 2.00
    (**) Logitech USB Receiver: (accel) filter stage 0: 20.00 ms
    (**) Logitech USB Receiver: (accel) set acceleration profile 0
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us,no"
    (**) Option "xkb_options" "grp:alt_shift_toggle"
    (II) config/hal: Adding input device Logitech USB Receiver
    (**) Logitech USB Receiver: always reports core events
    (**) Logitech USB Receiver: Device: "/dev/input/event10"
    (II) Logitech USB Receiver: Found 1 mouse buttons
    (II) Logitech USB Receiver: Found scroll wheel(s)
    (II) Logitech USB Receiver: Found keys
    (II) Logitech USB Receiver: Configuring as keyboard
    (II) Logitech USB Receiver: Adding scrollwheel support
    (**) Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    (**) Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us,no"
    (**) Option "xkb_options" "grp:alt_shift_toggle"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event5"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us,no"
    (**) Option "xkb_options" "grp:alt_shift_toggle"
    (II) fglrx(0): EDID vendor "LEN", prod id 16438
    (II) fglrx(0): Printing DDC gathered Modelines:
    (II) fglrx(0): Modeline "1440x900"x0.0 101.60 1440 1488 1520 1824 900 903 909 926 -hsync -vsync (55.7 kHz)
    (II) fglrx(0): Modeline "1440x900"x0.0 85.60 1440 1488 1520 1848 900 903 909 926 -hsync -vsync (46.3 kHz)
    (II) fglrx(0): EDID vendor "LEN", prod id 16438
    (II) fglrx(0): Printing DDC gathered Modelines:
    (II) fglrx(0): Modeline "1440x900"x0.0 101.60 1440 1488 1520 1824 900 903 909 926 -hsync -vsync (55.7 kHz)
    (II) fglrx(0): Modeline "1440x900"x0.0 85.60 1440 1488 1520 1848 900 903 909 926 -hsync -vsync (46.3 kHz)
    Last edited by orjanp (2009-08-12 08:43:13)

  • Certificate request not working with web server v2 template on windows 2012 R2

    I have tried to generate a certificate request on my domain joined Windows 2012 R2. I have tried both online and offline requests. I am using the web server v2 template.
    Both Method fails with error message that the cryptographic algorithm is unknown. I am using these settings apart from the template:
    This is the error Message in online request:
    The error Message in the offline request is somewhat similar.
    An event error is also appearing in the application log:
    The CSPs from the template:
    I am wondering if a cryptographic service provider or several of them are missing? They are installed With Windows update are they not? The strange thing is that this supposedly have worked before with another user. Could it be that I do not have the
    correct permissions to request a certificate with this template, or has something happened with the server? 

    Hey dag 
    Thanks for posting ,
    If You try duplicate the web template for using it in version 4 - can You see any difference? 
    Also check the link below for certificate templates versions:
    http://social.technet.microsoft.com/wiki/contents/articles/13303.windows-server-2012-certificate-template-versions-and-options.aspx#Version_4_Certificate_Templates
    In previous operating system versions the configuration of CSPs and KSPs were on different tabs in the certificate properties. For version 2 certificate templates, CSPs were configured on the Request Handling tab. For version 3 certificate templates,
    KSPs were configured on the Cryptography tab. Starting in Windows Server 2012, the configuration of the providers is consolidated on the Cryptography tab. To learn more about the cryptographic provider options present in previous operating systems
    Notice later.
    I'd be glad to answer any question

  • Frozen screen with xorg-server 1.16 and ati driver

    Hi,
    after upgrading xorg-server to 1.16 (yes, I've read the news), the screen is somehow frozen: I can move the mouse but when I e.g. want to open a gui/window, nothing happens. Only switching from tty1 to another tty and back to tty1 updates the screen.
    I'm using driver. xf86-video-ati on a Mobility Radeon HD 3650.
    .local/share/xorg/Xorg.0.log:
    [ 57.275]
    X.Org X Server 1.16.0
    Release Date: 2014-07-16
    [ 57.275] X Protocol Version 11, Revision 0
    [ 57.275] Build Operating System: Linux 3.15.5-2-ARCH x86_64
    [ 57.275] Current Operating System: Linux bra 3.16.1-1-ARCH #1 SMP PREEMPT Thu Aug 14 07:40:19 CEST 2014 x86_64
    [ 57.275] Kernel command line: BOOT_IMAGE=../vmlinuz-linux cryptdevice=/dev/sda2:main root=/dev/mapper/main-root ro locale=de_DE.UTF-8 initrd=../initramfs-linux.img
    [ 57.275] Build Date: 31 July 2014 11:53:19AM
    [ 57.275]
    [ 57.275] Current version of pixman: 0.32.6
    [ 57.275] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 57.275] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 57.275] (==) Log file: "/home/hel/.local/share/xorg/Xorg.0.log", Time: Sat Aug 30 19:43:24 2014
    [ 57.282] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 57.282] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 57.295] (==) No Layout section. Using the first Screen section.
    [ 57.295] (==) No screen section available. Using defaults.
    [ 57.295] (**) |-->Screen "Default Screen Section" (0)
    [ 57.295] (**) | |-->Monitor "<default monitor>"
    [ 57.297] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 57.297] (**) | |-->Device "My Graphics Card"
    [ 57.297] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 57.297] (==) Automatically adding devices
    [ 57.297] (==) Automatically enabling devices
    [ 57.297] (==) Automatically adding GPU devices
    [ 57.360] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 57.360] Entry deleted from font path.
    [ 57.361] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 57.361] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 57.361] Entry deleted from font path.
    [ 57.361] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 57.361] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 57.361] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 57.361] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 57.362] (II) Loader magic: 0x818d80
    [ 57.362] (II) Module ABI versions:
    [ 57.362] X.Org ANSI C Emulation: 0.4
    [ 57.362] X.Org Video Driver: 18.0
    [ 57.362] X.Org XInput driver : 21.0
    [ 57.362] X.Org Server Extension : 8.0
    [ 57.459] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 57.459] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 57.504] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 57.506] (--) PCI:*(0:1:0:0) 1002:9591:17aa:2117 rev 0, Mem @ 0xd0000000/268435456, 0xcfff0000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
    [ 57.506] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 57.506] (II) LoadModule: "glx"
    [ 57.509] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 57.608] (II) Module glx: vendor="X.Org Foundation"
    [ 57.608] compiled for 1.16.0, module version = 1.0.0
    [ 57.608] ABI class: X.Org Server Extension, version 8.0
    [ 57.608] (==) AIGLX enabled
    [ 57.608] (==) Matched ati as autoconfigured driver 0
    [ 57.608] (==) Matched ati as autoconfigured driver 1
    [ 57.608] (==) Matched modesetting as autoconfigured driver 2
    [ 57.608] (==) Matched fbdev as autoconfigured driver 3
    [ 57.608] (==) Matched vesa as autoconfigured driver 4
    [ 57.608] (==) Assigned the driver to the xf86ConfigLayout
    [ 57.608] (II) LoadModule: "ati"
    [ 57.608] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 57.612] (II) Module ati: vendor="X.Org Foundation"
    [ 57.612] compiled for 1.16.0, module version = 7.4.0
    [ 57.612] Module class: X.Org Video Driver
    [ 57.612] ABI class: X.Org Video Driver, version 18.0
    [ 57.612] (II) LoadModule: "radeon"
    [ 57.612] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 57.626] (II) Module radeon: vendor="X.Org Foundation"
    [ 57.626] compiled for 1.16.0, module version = 7.4.0
    [ 57.626] Module class: X.Org Video Driver
    [ 57.626] ABI class: X.Org Video Driver, version 18.0
    [ 57.626] (II) LoadModule: "modesetting"
    [ 57.627] (WW) Warning, couldn't open module modesetting
    [ 57.627] (II) UnloadModule: "modesetting"
    [ 57.627] (II) Unloading modesetting
    [ 57.627] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 57.627] (II) LoadModule: "fbdev"
    [ 57.627] (WW) Warning, couldn't open module fbdev
    [ 57.627] (II) UnloadModule: "fbdev"
    [ 57.627] (II) Unloading fbdev
    [ 57.627] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 57.627] (II) LoadModule: "vesa"
    [ 57.627] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 57.632] (II) Module vesa: vendor="X.Org Foundation"
    [ 57.632] compiled for 1.16.0, module version = 2.3.2
    [ 57.632] Module class: X.Org Video Driver
    [ 57.632] ABI class: X.Org Video Driver, version 18.0
    [ 57.632] (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, 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, 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, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 57.636] (II) VESA: driver for VESA chipsets: vesa
    [ 57.636] (++) using VT number 1
    [ 57.637] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 57.637] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
    [ 57.642] (II) [KMS] Kernel modesetting enabled.
    [ 57.642] (WW) Falling back to old probe method for vesa
    [ 57.642] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 57.642] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 57.642] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 57.642] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 57.642] (==) RADEON(0): Default visual is TrueColor
    [ 57.642] (**) RADEON(0): Option "EXAVSync" "on"
    [ 57.642] (**) RADEON(0): Option "EXAPixmaps" "on"
    [ 57.642] (==) RADEON(0): RGB weight 888
    [ 57.642] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 57.642] (--) RADEON(0): Chipset: "ATI Mobility Radeon HD 3650" (ChipID = 0x9591)
    [ 57.642] (II) Loading sub module "dri2"
    [ 57.642] (II) LoadModule: "dri2"
    [ 57.642] (II) Module "dri2" already built-in
    [ 57.642] (II) Loading sub module "exa"
    [ 57.642] (II) LoadModule: "exa"
    [ 57.642] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 57.653] (II) Module exa: vendor="X.Org Foundation"
    [ 57.653] compiled for 1.16.0, module version = 2.6.0
    [ 57.653] ABI class: X.Org Video Driver, version 18.0
    [ 57.653] (II) RADEON(0): KMS Color Tiling: enabled
    [ 57.653] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 57.653] (II) RADEON(0): KMS Pageflipping: enabled
    [ 57.653] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 57.683] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 57.683] (II) RADEON(0): Output LVDS has no monitor section
    [ 57.696] (II) RADEON(0): Output DisplayPort-0 has no monitor section
    [ 57.717] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 57.747] (II) RADEON(0): EDID for output DVI-0
    [ 57.747] (II) RADEON(0): Manufacturer: SAM Model: 3f0 Serial#: 1413755442
    [ 57.747] (II) RADEON(0): Year: 2008 Week: 4
    [ 57.747] (II) RADEON(0): EDID Version: 1.3
    [ 57.747] (II) RADEON(0): Digital Display Input
    [ 57.747] (II) RADEON(0): Max Image Size [cm]: horiz.: 47 vert.: 30
    [ 57.747] (II) RADEON(0): Gamma: 2.20
    [ 57.747] (II) RADEON(0): DPMS capabilities: Off
    [ 57.747] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 57.747] (II) RADEON(0): First detailed timing is preferred mode
    [ 57.747] (II) RADEON(0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.600
    [ 57.747] (II) RADEON(0): blueX: 0.150 blueY: 0.060 whiteX: 0.312 whiteY: 0.329
    [ 57.747] (II) RADEON(0): Supported established timings:
    [ 57.747] (II) RADEON(0): 720x400@70Hz
    [ 57.747] (II) RADEON(0): 640x480@60Hz
    [ 57.747] (II) RADEON(0): 640x480@67Hz
    [ 57.747] (II) RADEON(0): 640x480@72Hz
    [ 57.747] (II) RADEON(0): 640x480@75Hz
    [ 57.747] (II) RADEON(0): 800x600@56Hz
    [ 57.747] (II) RADEON(0): 800x600@60Hz
    [ 57.747] (II) RADEON(0): 800x600@72Hz
    [ 57.747] (II) RADEON(0): 800x600@75Hz
    [ 57.747] (II) RADEON(0): 832x624@75Hz
    [ 57.747] (II) RADEON(0): 1024x768@60Hz
    [ 57.748] (II) RADEON(0): 1024x768@70Hz
    [ 57.748] (II) RADEON(0): 1024x768@75Hz
    [ 57.748] (II) RADEON(0): 1280x1024@75Hz
    [ 57.748] (II) RADEON(0): 1152x864@75Hz
    [ 57.748] (II) RADEON(0): Manufacturer's mask: 0
    [ 57.748] (II) RADEON(0): Supported standard timings:
    [ 57.748] (II) RADEON(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 57.748] (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 57.748] (II) RADEON(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 57.748] (II) RADEON(0): #3: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 57.748] (II) RADEON(0): Supported detailed timing:
    [ 57.748] (II) RADEON(0): clock: 146.2 MHz Image Size: 433 x 271 mm
    [ 57.748] (II) RADEON(0): h_active: 1680 h_sync: 1784 h_sync_end 1960 h_blank_end 2240 h_border: 0
    [ 57.748] (II) RADEON(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1089 v_border: 0
    [ 57.748] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 155 MHz
    [ 57.748] (II) RADEON(0): Monitor name: SyncMaster
    [ 57.748] (II) RADEON(0): Serial No: H1AK500000
    [ 57.748] (II) RADEON(0): EDID (in hex):
    [ 57.748] (II) RADEON(0): 00ffffffffffff004c2df00332324454
    [ 57.748] (II) RADEON(0): 04120103802f1e782aee91a3544c9926
    [ 57.748] (II) RADEON(0): 0f5054bfef80b30081808140714f0101
    [ 57.748] (II) RADEON(0): 01010101010121399030621a274068b0
    [ 57.748] (II) RADEON(0): 3600b10f1100001c000000fd00384b1e
    [ 57.748] (II) RADEON(0): 510f000a202020202020000000fc0053
    [ 57.748] (II) RADEON(0): 796e634d61737465720a2020000000ff
    [ 57.748] (II) RADEON(0): 004831414b3530303030300a202000b4
    [ 57.748] (II) RADEON(0): Printing probed modes for output DVI-0
    [ 57.748] (II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz eP)
    [ 57.748] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 57.748] (II) RADEON(0): EDID for output LVDS
    [ 57.748] (II) RADEON(0): Manufacturer: IBM Model: 2887 Serial#: 0
    [ 57.748] (II) RADEON(0): Year: 2005 Week: 0
    [ 57.748] (II) RADEON(0): EDID Version: 1.3
    [ 57.748] (II) RADEON(0): Digital Display Input
    [ 57.748] (II) RADEON(0): Max Image Size [cm]: horiz.: 33 vert.: 21
    [ 57.748] (II) RADEON(0): Gamma: 2.20
    [ 57.748] (II) RADEON(0): No DPMS capabilities specified
    [ 57.748] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 57.748] (II) RADEON(0): First detailed timing is preferred mode
    [ 57.748] (II) RADEON(0): redX: 0.596 redY: 0.347 greenX: 0.335 greenY: 0.543
    [ 57.748] (II) RADEON(0): blueX: 0.158 blueY: 0.143 whiteX: 0.313 whiteY: 0.329
    [ 57.748] (II) RADEON(0): Manufacturer's mask: 0
    [ 57.748] (II) RADEON(0): Supported detailed timing:
    [ 57.748] (II) RADEON(0): clock: 120.6 MHz Image Size: 331 x 207 mm
    [ 57.748] (II) RADEON(0): h_active: 1680 h_sync: 1712 h_sync_end 1760 h_blank_end 1888 h_border: 0
    [ 57.748] (II) RADEON(0): v_active: 1050 v_sync: 1051 v_sync_end 1054 v_blanking: 1065 v_border: 0
    [ 57.748] (II) RADEON(0): Supported detailed timing:
    [ 57.748] (II) RADEON(0): clock: 100.5 MHz Image Size: 331 x 207 mm
    [ 57.748] (II) RADEON(0): h_active: 1680 h_sync: 1712 h_sync_end 1760 h_blank_end 1888 h_border: 0
    [ 57.748] (II) RADEON(0): v_active: 1050 v_sync: 1051 v_sync_end 1054 v_blanking: 1065 v_border: 0
    [ 57.748] (II) RADEON(0): Unknown vendor-specific block f
    [ 57.748] (II) RADEON(0): LP154W02-TL06
    [ 57.748] (II) RADEON(0): EDID (in hex):
    [ 57.748] (II) RADEON(0): 00ffffffffffff00244d872800000000
    [ 57.748] (II) RADEON(0): 000f0103802115780abca59858558b28
    [ 57.748] (II) RADEON(0): 24505400000001010101010101010101
    [ 57.748] (II) RADEON(0): 0101010101011c2f90d0601a0f402030
    [ 57.748] (II) RADEON(0): 13004bcf10000019452790d0601a0f40
    [ 57.748] (II) RADEON(0): 203013004bcf100000190000000f00b3
    [ 57.748] (II) RADEON(0): 0a32b30a28140100320c0000000000fe
    [ 57.748] (II) RADEON(0): 004c503135345730322d544c303600bf
    [ 57.748] (II) RADEON(0): Printing probed modes for output LVDS
    [ 57.748] (II) RADEON(0): Modeline "1680x1050"x60.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 57.748] (II) RADEON(0): Modeline "1680x1050"x50.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1400x1050"x60.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x1024"x59.9 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync (63.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x960"x59.9 101.25 1280 1360 1488 1696 960 963 967 996 -hsync +vsync (59.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x854"x59.9 89.25 1280 1352 1480 1680 854 857 867 887 -hsync +vsync (53.1 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1152x768"x59.8 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 57.748] (II) RADEON(0): Modeline "848x480"x59.7 31.50 848 872 952 1056 480 483 493 500 -hsync +vsync (29.8 kHz)
    [ 57.749] (II) RADEON(0): Modeline "720x480"x59.7 26.75 720 744 808 896 480 483 493 500 -hsync +vsync (29.9 kHz)
    [ 57.749] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 57.760] (II) RADEON(0): EDID for output DisplayPort-0
    [ 57.780] (II) RADEON(0): EDID for output VGA-0
    [ 57.780] (II) RADEON(0): Output DVI-0 connected
    [ 57.780] (II) RADEON(0): Output LVDS connected
    [ 57.780] (II) RADEON(0): Output DisplayPort-0 disconnected
    [ 57.780] (II) RADEON(0): Output VGA-0 disconnected
    [ 57.780] (II) RADEON(0): Using exact sizes for initial modes
    [ 57.780] (II) RADEON(0): Output DVI-0 using initial mode 1680x1050
    [ 57.780] (II) RADEON(0): Output LVDS using initial mode 1680x1050
    [ 57.780] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 57.780] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:f8ca000
    [ 57.780] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 57.780] (==) RADEON(0): DPI set to (96, 96)
    [ 57.780] (II) Loading sub module "fb"
    [ 57.780] (II) LoadModule: "fb"
    [ 57.780] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 57.815] (II) Module fb: vendor="X.Org Foundation"
    [ 57.815] compiled for 1.16.0, module version = 1.0.0
    [ 57.815] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 57.815] (II) Loading sub module "ramdac"
    [ 57.815] (II) LoadModule: "ramdac"
    [ 57.815] (II) Module "ramdac" already built-in
    [ 57.815] (II) UnloadModule: "vesa"
    [ 57.816] (II) Unloading vesa
    [ 57.816] (--) Depth 24 pixmap format is 32 bpp
    [ 57.817] (II) RADEON(0): [DRI2] Setup complete
    [ 57.817] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 57.817] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 57.817] (II) RADEON(0): Front buffer size: 7128K
    [ 57.817] (II) RADEON(0): VRAM usage limit set to 222840K
    [ 57.829] (==) RADEON(0): Backing store enabled
    [ 57.829] (II) RADEON(0): Direct rendering enabled
    [ 57.829] (II) RADEON(0): EXA VSync enabled
    [ 57.829] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 57.829] (II) EXA(0): Driver registered support for the following operations:
    [ 57.829] (II) Solid
    [ 57.829] (II) Copy
    [ 57.829] (II) Composite (RENDER acceleration)
    [ 57.829] (II) UploadToScreen
    [ 57.829] (II) DownloadFromScreen
    [ 57.829] (II) RADEON(0): Acceleration enabled
    [ 57.829] (==) RADEON(0): DPMS enabled
    [ 57.829] (==) RADEON(0): Silken mouse enabled
    [ 57.830] (II) RADEON(0): Set up textured video
    [ 57.830] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 57.830] (II) RADEON(0): [XvMC] Extension initialized.
    [ 57.830] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 57.841] (WW) RADEON(0): Option "AccelDFS" is not used
    [ 57.841] (--) RandR disabled
    [ 58.103] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 58.103] (II) AIGLX: enabled GLX_ARB_create_context
    [ 58.103] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 58.103] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 58.103] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 58.103] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 58.103] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 58.103] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 58.103] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 58.104] (II) AIGLX: Loaded and initialized r600
    [ 58.104] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 58.940] (II) RADEON(0): Setting screen physical size to 444 x 277
    [ 59.040] (II) config/udev: Adding input device Power Button (/dev/input/event6)
    [ 59.040] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 59.040] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 59.040] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 59.040] (II) LoadModule: "evdev"
    [ 59.040] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 59.053] (II) Module evdev: vendor="X.Org Foundation"
    [ 59.053] compiled for 1.16.0, module version = 2.9.0
    [ 59.053] Module class: X.Org XInput Driver
    [ 59.053] ABI class: X.Org XInput driver, version 21.0
    [ 59.054] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 11 paused 0
    [ 59.054] (II) Using input driver 'evdev' for 'Power Button'
    [ 59.054] (**) Power Button: always reports core events
    [ 59.054] (**) evdev: Power Button: Device: "/dev/input/event6"
    [ 59.054] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 59.054] (--) evdev: Power Button: Found keys
    [ 59.054] (II) evdev: Power Button: Configuring as keyboard
    [ 59.054] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input7/event6"
    [ 59.054] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 59.054] (**) Option "xkb_rules" "evdev"
    [ 59.054] (**) Option "xkb_model" "pc104"
    [ 59.054] (**) Option "xkb_layout" "us"
    [ 59.054] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.105] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 59.105] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 59.105] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 59.105] (**) Video Bus: Applying InputClass "Keyboard Defaults"
    [ 59.107] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 12 paused 0
    [ 59.107] (II) Using input driver 'evdev' for 'Video Bus'
    [ 59.107] (**) Video Bus: always reports core events
    [ 59.107] (**) evdev: Video Bus: Device: "/dev/input/event7"
    [ 59.107] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 59.107] (--) evdev: Video Bus: Found keys
    [ 59.107] (II) evdev: Video Bus: Configuring as keyboard
    [ 59.107] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/LNXVIDEO:01/input/input8/event7"
    [ 59.107] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 59.107] (**) Option "xkb_rules" "evdev"
    [ 59.107] (**) Option "xkb_model" "pc104"
    [ 59.107] (**) Option "xkb_layout" "us"
    [ 59.107] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.107] (II) config/udev: Adding input device Lid Switch (/dev/input/event4)
    [ 59.108] (II) No input driver specified, ignoring this device.
    [ 59.108] (II) This device may have been added with another device file.
    [ 59.108] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
    [ 59.108] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 59.108] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 59.108] (**) Sleep Button: Applying InputClass "Keyboard Defaults"
    [ 59.108] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 13 paused 0
    [ 59.108] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 59.108] (**) Sleep Button: always reports core events
    [ 59.108] (**) evdev: Sleep Button: Device: "/dev/input/event5"
    [ 59.108] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 59.108] (--) evdev: Sleep Button: Found keys
    [ 59.108] (II) evdev: Sleep Button: Configuring as keyboard
    [ 59.108] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input6/event5"
    [ 59.108] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 59.108] (**) Option "xkb_rules" "evdev"
    [ 59.108] (**) Option "xkb_model" "pc104"
    [ 59.108] (**) Option "xkb_layout" "us"
    [ 59.108] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.109] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/event1)
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    [ 59.110] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 14 paused 0
    [ 59.110] (II) Using input driver 'evdev' for 'Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint'
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: always reports core events
    [ 59.110] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Device: "/dev/input/event1"
    [ 59.110] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Vendor 0x17ef Product 0x6009
    [ 59.110] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found keys
    [ 59.110] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Configuring as keyboard
    [ 59.110] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb7/7-5/7-5.2/7-5.2:1.0/0003:17EF:6009.0001/input/input2/event1"
    [ 59.110] (II) XINPUT: Adding extended input device "Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint" (type: KEYBOARD, id 9)
    [ 59.110] (**) Option "xkb_rules" "evdev"
    [ 59.110] (**) Option "xkb_model" "pc104"
    [ 59.110] (**) Option "xkb_layout" "us"
    [ 59.110] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.110] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/event2)
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    [ 59.111] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 15 paused 0
    [ 59.111] (II) Using input driver 'evdev' for 'Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint'
    [ 59.111] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: always reports core events
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Device: "/dev/input/event2"
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Vendor 0x17ef Product 0x6009
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found 19 mouse buttons
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found relative axes
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found x and y relative axes
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found keys
    [ 59.111] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Configuring as mouse
    [ 59.111] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Configuring as keyboard
    [ 59.111] (**) Option "Emulate3Buttons" "false"
    [ 59.111] (**) Option "EmulateWheel" "true"
    [ 59.111] (**) Option "EmulateWheelButton" "2"
    [ 59.111] (**) Option "YAxisMapping" "4 5"
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: YAxisMapping: buttons 4 and 5
    [ 59.111] (**) Option "XAxisMapping" "6 7"
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: XAxisMapping: buttons 6 and 7
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.111] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb7/7-5/7-5.2/7-5.2:1.1/0003:17EF:6009.0002/input/input3/event2"
    [ 59.111] (II) XINPUT: Adding extended input device "Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint" (type: KEYBOARD, id 10)
    [ 59.111] (**) Option "xkb_rules" "evdev"
    [ 59.111] (**) Option "xkb_model" "pc104"
    [ 59.111] (**) Option "xkb_layout" "us"
    [ 59.111] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.111] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: initialized for relative axes.
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) keeping acceleration scheme 1
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) acceleration profile 0
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) acceleration factor: 2.000
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) acceleration threshold: 4
    [ 59.112] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/js0)
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.112] (II) No input driver specified, ignoring this device.
    [ 59.112] (II) This device may have been added with another device file.
    [ 59.112] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/mouse0)
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.112] (II) No input driver specified, ignoring this device.
    [ 59.112] (II) This device may have been added with another device file.
    [ 59.113] (II) config/udev: Adding input device Logitech USB Gaming Mouse (/dev/input/event3)
    [ 59.113] (**) Logitech USB Gaming Mouse: Applying InputClass "evdev pointer catchall"
    [ 59.113] (**) Logitech USB Gaming Mouse: Applying InputClass "evdev pointer catchall"
    [ 59.157] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 16 paused 0
    [ 59.157] (II) Using input driver 'evdev' for 'Logitech USB Gaming Mouse'
    [ 59.157] (**) Logitech USB Gaming Mouse: always reports core events
    [ 59.157] (**) evdev: Logitech USB Gaming Mouse: Device: "/dev/input/event3"
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Vendor 0x46d Product 0xc042
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found 20 mouse buttons
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found scroll wheel(s)
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found relative axes
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found x and y relative axes
    [ 59.157] (II) evdev: Logitech USB Gaming Mouse: Configuring as mouse
    [ 59.157] (II) evdev: Logitech USB Gaming Mouse: Adding scrollwheel support
    [ 59.157] (**) evdev: Logitech USB Gaming Mouse: YAxisMapping: buttons 4 and 5
    [ 59.157] (**) evdev: Logitech USB Gaming Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.157] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb7/7-5/7-5.3/7-5.3:1.0/0003:046D:C042.0003/input/input4/event3"
    [ 59.157] (II) XINPUT: Adding extended input device "Logitech USB Gaming Mouse" (type: MOUSE, id 11)
    [ 59.157] (II) evdev: Logitech USB Gaming Mouse: initialized for relative axes.
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) keeping acceleration scheme 1
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) acceleration profile 0
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) acceleration factor: 2.000
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) acceleration threshold: 4
    [ 59.158] (II) config/udev: Adding input device Logitech USB Gaming Mouse (/dev/input/mouse1)
    [ 59.158] (II) No input driver specified, ignoring this device.
    [ 59.158] (II) This device may have been added with another device file.
    [ 59.158] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
    [ 59.158] (II) No input driver specified, ignoring this device.
    [ 59.158] (II) This device may have been added with another device file.
    [ 59.158] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event10)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.159] (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event11)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.159] (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event12)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.159] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event13)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.160] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 59.160] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 59.160] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 59.160] (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard Defaults"
    [ 59.160] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 17 paused 0
    [ 59.160] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 59.160] (**) AT Translated Set 2 keyboard: always reports core events
    [ 59.160] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 59.160] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 59.160] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 59.160] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 59.160] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 59.160] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
    [ 59.160] (**) Option "xkb_rules" "evdev"
    [ 59.160] (**) Option "xkb_model" "pc104"
    [ 59.160] (**) Option "xkb_layout" "us"
    [ 59.160] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.161] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event14)
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 59.161] (II) systemd-logind: got fd for /dev/input/event14 13:78 fd 18 paused 0
    [ 59.161] (II) Using input driver 'evdev' for 'SynPS/2 Synaptics TouchPad'
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 59.161] (**) evdev: SynPS/2 Synaptics TouchPad: Device: "/dev/input/event14"
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found 3 mouse buttons
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found absolute axes
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found x and y absolute axes
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found absolute touchpad.
    [ 59.161] (II) evdev: SynPS/2 Synaptics TouchPad: Configuring as touchpad
    [ 59.161] (**) evdev: SynPS/2 Synaptics TouchPad: YAxisMapping: buttons 4 and 5
    [ 59.161] (**) evdev: SynPS/2 Synaptics TouchPad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.161] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input15/event14"
    [ 59.161] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
    [ 59.162] (II) evdev: SynPS/2 Synaptics TouchPad: initialized for absolute axes.
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 59.162] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse2)
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 59.162] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event15)
    [ 59.162] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.162] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.162] (**) TPPS/2 IBM TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    [ 59.207] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 19 paused 0
    [ 59.207] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
    [ 59.207] (**) TPPS/2 IBM TrackPoint: always reports core events
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event15"
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
    [ 59.207] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
    [ 59.207] (**) Option "Emulate3Buttons" "false"
    [ 59.207] (**) Option "EmulateWheel" "true"
    [ 59.207] (**) Option "EmulateWheelButton" "2"
    [ 59.207] (**) Option "YAxisMapping" "4 5"
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    [ 59.207] (**) Option "XAxisMapping" "6 7"
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: XAxisMapping: buttons 6 and 7
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.207] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input16/event15"
    [ 59.207] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 14)
    [ 59.207] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
    [ 59.207] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    [ 59.208] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    [ 59.208] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    [ 59.208] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    [ 59.208] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse3)
    [ 59.208] (II) No input driver specified, ignoring this device.
    [ 59.208] (II) This device may have been added with another device file.
    [ 59.208] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event8)
    [ 59.208] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 59.208] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 59.208] (**) ThinkPad Extra Buttons: Applying InputClass "Keyboard Defaults"
    [ 59.209] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 20 paused 0
    [ 59.209] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
    [ 59.209] (**) ThinkPad Extra Buttons: always reports core events
    [ 59.209] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event8"
    [ 59.209] (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054
    [ 59.209] (--) evdev: ThinkPad Extra Buttons: Found keys
    [ 59.209] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
    [ 59.209] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input9/event8"
    [ 59.209] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 15)
    [ 59.209] (**) Option "xkb_rules" "evdev"
    [ 59.209] (**) Option "xkb_model" "pc104"
    [ 59.209] (**) Option "xkb_layout" "us"
    [ 59.209] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.497] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 59.497] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 59.497] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 59.497] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 59.568] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 59.568] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 59.568] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 59.568] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 59.941] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 59.941] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 59.941] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 59.941] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 60.027] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 60.027] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 60.027] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 60.027] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 60.099] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 60.099] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 60.099] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 60.099] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 61.044] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 61.044] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 61.044] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 61.044] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 61.112] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 61.112] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 61.112] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 61.112] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 62.930] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 62.930] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 62.930] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 62.930] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 89.683] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 89.730] (II) systemd-logind: got pause for 226:0
    [ 89.730] (II) systemd-logind: got pause for 13:70
    [ 89.730] (II) systemd-logind: got pause for 13:71
    [ 89.730] (II) systemd-logind: got pause for 13:69
    [ 89.730] (II) systemd-logind: got pause for 13:65
    [ 89.730] (II) systemd-logind: got pause for 13:66
    [ 89.730] (II) systemd-logind: got pause for 13:67
    [ 89.730] (II) systemd-logind: got pause for 13:64
    [ 89.730] (II) systemd-logind: got pause for 13:78
    [ 89.730] (II) systemd-logind: got pause for 13:79
    [ 89.730] (II) systemd-logind: got pause for 13:72
    [ 90.518] (II) systemd-logind: got resume for 226:0
    [ 90.518] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 90.551] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 90.551] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 90.551] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 90.551] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 90.591] (II) systemd-logind: got resume for 13:70
    [ 90.591] (II) systemd-logind: got resume for 13:71
    [ 90.592] (II) systemd-logind: got resume for 13:69
    [ 90.592] (II) systemd-logind: got resume for 13:65
    [ 90.592] (II) systemd-logind: got resume for 13:66
    [ 90.603] (II) systemd-logind: got resume for 13:67
    [ 90.616] (II) systemd-logind: got resume for 13:64
    [ 90.620] (II) systemd-logind: got resume for 13:78
    [ 90.633] (II) systemd-logind: got resume for 13:79
    [ 90.641] (II) systemd-logind: got resume for 13:72
    [ 95.368] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 95.429] (II) systemd-logind: got pause for 226:0
    [ 95.429] (II) systemd-logind: got pause for 13:70
    [ 95.429] (II) systemd-logind: got pause for 13:71
    [ 95.429] (II) systemd-logind: got pause for 13:69
    [ 95.429] (II) systemd-logind: got pause for 13:65
    [ 95.429] (II) systemd-logind: got pause for 13:66
    [ 95.429] (II) systemd-logind: got pause for 13:67
    [ 95.429] (II) systemd-logind: got pause for 13:64
    [ 95.429] (II) systemd-logind: got pause for 13:78
    [ 95.429] (II) systemd-logind: got pause for 13:79
    [ 95.429] (II) systemd-logind: got pause for 13:72
    [ 95.750] (II) systemd-logind: got resume for 226:0
    [ 95.750] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 95.783] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 95.783] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 95.784] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 95.784] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 95.821] (II) systemd-logind: got resume for 13:70
    [ 95.821] (II) systemd-logind: got resume for 13:71
    [ 95.821] (II) systemd-logind: got resume for 13:69
    [ 95.821] (II) systemd-logind: got resume for 13:65
    [ 95.836] (II) systemd-logind: got resume for 13:66
    [ 95.843] (II) systemd-logind: got resume for 13:67
    [ 95.853] (II) systemd-logind: got resume for 13:64
    [ 95.866] (II) systemd-logind: got resume for 13:78
    [ 95.876] (II) systemd-logind: got resume for 13:79
    [ 95.897] (II) systemd-logind: got resume for 13:72
    [ 98.008] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 98.061] (II) systemd-logind: got pause for 226:0
    [ 98.061] (II) systemd-logind: got pause for 13:70
    [ 98.061] (II) systemd-logind: got pause for 13:71
    [ 98.061] (II) systemd-logind: got pause for 13:69
    [ 98.061] (II) systemd-logind: got pause for 13:65
    [ 98.061] (II) systemd-logind: got pause for 13:66
    [ 98.061] (II) systemd-logind: got pause for 13:67
    [ 98.061] (II) systemd-logind: got pause for 13:64
    [ 98.061] (II) systemd-logind: got pause for 13:78
    [ 98.061] (II) systemd-logind: got pause for 13:79
    [ 98.061] (II) systemd-logind: got pause for 13:72
    [ 98.614] (II) systemd-logind: got resume for 226:0
    [ 98.614] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 98.648] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 98.648] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 98.648] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 98.648] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 98.687] (II) systemd-logind: got resume for 13:70
    [ 98.688] (II) systemd-logind: got resume for 13:71
    [ 98.688] (II) systemd-logind: got resume for 13:69
    [ 98.688] (II) systemd-logind: got resume for 13:65
    [ 98.693] (II) systemd-logind: got resume for 13:66
    [ 98.703] (II) systemd-logind: got resume for 13:67
    [ 98.710] (II) systemd-logind: got resume for 13:64
    [ 98.723] (II) systemd-logind: got resume for 13:78
    [ 98.726] (II) systemd-logind: got resume for 13:79
    [ 98.743] (II) systemd-logind: got resume for 13:72
    [ 99.618] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 99.674] (II) systemd-logind: got pause for 226:0
    [ 99.674] (II) systemd-logind: got pause for 13:70
    [ 99.674] (II) systemd-logind: got pause for 13:71
    [ 99.674] (II) systemd-logind: got pause for 13:69
    [ 99.674] (II) systemd-logind: got pause for 13:65
    [ 99.674] (II) systemd-logind: got pause for 13:66
    [ 99.674] (II) systemd-logind: got pause for 13:67
    [ 99.674] (II) systemd-logind: got pause for 13:64
    [ 99.674] (II) systemd-logind: got pause for 13:78
    [ 99.674] (II) systemd-logind: got pause for 13:79
    [ 99.674] (II) systemd-logind: got pause for 13:72
    [ 123.984] (II) systemd-logind: got resume for 226:0
    [ 123.984] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 124.017] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 124.017] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 124.017] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 124.017] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 124.096] (II) systemd-logind: got resume for 13:70
    [ 124.096] (II) systemd-logind: got resume for 13:71
    [ 124.096] (II) systemd-logind: got resume for 13:69
    [ 124.096] (II) systemd-logind: got resume for 13:65
    [ 124.104] (II) systemd-logind: got resume for 13:66
    [ 124.118] (II) systemd-logind: got resume for 13:67
    [ 124.130] (II) systemd-logind: got resume for 13:64
    [ 124.140] (II) systemd-logind: got resume for 13:78
    [ 124.150] (II) s

    Yes - I'm using startx:
    [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx
    .xinitrc:
    /usr/bin/xscreensaver -no-splash &
    xautolock -time 60 -locker "sudo pm-suspend" &
    xset -dpms s noblank
    xset b off
    exec mate-session
    Excerpt of the system journal (doesn't look suspicious for me): I just booted, logged in (startx), switch to tty2 to refresh the screen on tty1 and rebooted.
    Sep 01 20:41:37 bra kernel: [drm] radeon kernel modesetting enabled.
    Sep 01 20:41:37 bra kernel: [drm] initializing kernel modesetting (RV635 0x1002:0x9591 0x17AA:0x2117).
    Sep 01 20:41:37 bra kernel: [drm] register mmio base: 0xCFFF0000
    Sep 01 20:41:37 bra kernel: [drm] register mmio size: 65536
    Sep 01 20:41:37 bra kernel: ATOM BIOS: M86M
    Sep 01 20:41:37 bra kernel: radeon 0000:01:00.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (256M used)
    Sep 01 20:41:37 bra kernel: radeon 0000:01:00.0: GTT: 512M 0x0000000010000000 - 0x000000002FFFFFFF
    Sep 01 20:41:37 bra kernel: [drm] Detected VRAM RAM=256M, BAR=256M
    Sep 01 20:41:37 bra kernel: [drm] RAM width 128bits DDR
    Sep 01 20:41:37 bra kernel: [TTM] Zone kernel: Available graphics memory: 4054930 kiB
    Sep 01 20:41:37 bra kernel: [TTM] Zone dma32: Available graphics memory: 2097152 kiB
    Sep 01 20:41:37 bra kernel: [TTM] Initializing pool allocator
    Sep 01 20:41:37 bra kernel: [TTM] Initializing DMA pool allocator
    Sep 01 20:41:37 bra kernel: [drm] radeon: 256M of VRAM memory ready
    Sep 01 20:41:37 bra kernel: [drm] radeon: 512M of GTT memory ready.
    Sep 01 20:41:37 bra kernel: [drm] Loading RV635 Microcode
    Sep 01 20:41:37 bra kernel: [drm] radeon: power management initialized
    Sep 01 20:41:37 bra kernel: [drm] GART: num cpu pages 131072, num gpu pages 131072
    Sep 01 20:41:37 bra kernel: e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:1c:25:9d:62:d0
    Sep 01 20:41:37 bra kernel: e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    Sep 01 20:41:37 bra kernel: e1000e 0000:00:19.0 eth0: MAC: 7, PHY: 8, PBA No: 1008FF-0FF
    Sep 01 20:41:37 bra kernel: snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
    Sep 01 20:41:37 bra kernel: ACPI Warning: SystemIO range 0x0000000000001028-0x000000000000102f conflicts with OpRegion 0x0000000000001000-0x000000000000107f (\_SB_.PCI0.LPC_.PMIO) (20140424/utaddress-258)
    Sep 01 20:41:37 bra kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Sep 01 20:41:37 bra kernel: ACPI Warning: SystemIO range 0x00000000000011b0-0x00000000000011bf conflicts with OpRegion 0x0000000000001180-0x00000000000011ff (\_SB_.PCI0.LPC_.LPIO) (20140424/utaddress-258)
    Sep 01 20:41:37 bra kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Sep 01 20:41:37 bra kernel: ACPI Warning: SystemIO range 0x0000000000001180-0x00000000000011af conflicts with OpRegion 0x0000000000001180-0x00000000000011ff (\_SB_.PCI0.LPC_.LPIO) (20140424/utaddress-258)
    Sep 01 20:41:37 bra kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Sep 01 20:41:37 bra kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Sep 01 20:41:38 bra kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xf4300000-0xf7ffffff:
    Sep 01 20:41:38 bra kernel: excluding 0xf4300000-0xf46cffff
    Sep 01 20:41:38 bra kernel: yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf0000000-0xf3ffffff 64bit pref]
    Sep 01 20:41:38 bra kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xf0000000-0xf3ffffff:
    Sep 01 20:41:38 bra kernel: excluding 0xf0000000-0xf3ffffff
    Sep 01 20:41:38 bra kernel: r592: driver successfully loaded
    Sep 01 20:41:38 bra kernel: r852: driver loaded successfully
    Sep 01 20:41:38 bra kernel: microcode: CPU0 sig=0x10676, pf=0x80, revision=0x60c
    Sep 01 20:41:38 bra kernel: microcode: CPU1 sig=0x10676, pf=0x80, revision=0x60c
    Sep 01 20:41:38 bra kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Sep 01 20:41:38 bra kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    Sep 01 20:41:38 bra kernel: [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    Sep 01 20:41:38 bra kernel: radeon 0000:01:00.0: WB enabled
    Sep 01 20:41:38 bra kernel: radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000010000c00 and cpu addr 0xffff8800bacd5c00
    Sep 01 20:41:38 bra kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    Sep 01 20:41:38 bra kernel: [drm] Driver supports precise vblank timestamp query.
    Sep 01 20:41:38 bra kernel: radeon 0000:01:00.0: irq 49 for MSI/MSI-X
    Sep 01 20:41:38 bra kernel: radeon 0000:01:00.0: radeon: using MSI.
    Sep 01 20:41:38 bra kernel: [drm] radeon: irq initialized.
    Sep 01 20:41:38 bra kernel: [drm] ring test on 0 succeeded in 1 usecs
    Sep 01 20:41:38 bra kernel: [drm] ib test on ring 0 succeeded in 0 usecs
    Sep 01 20:41:38 bra kernel: [drm] radeon atom DIG backlight initialized
    Sep 01 20:41:38 bra kernel: [drm] Radeon Display Connectors
    Sep 01 20:41:38 bra kernel: [drm] Connector 0:
    Sep 01 20:41:38 bra kernel: [drm] DVI-I-1
    Sep 01 20:41:38 bra kernel: [drm] HPD3
    Sep 01 20:41:38 bra kernel: [drm] DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 0x7e6c
    Sep 01 20:41:38 bra kernel: [drm] Encoders:
    Sep 01 20:41:38 bra kernel: [drm] DFP1: INTERNAL_UNIPHY
    Sep 01 20:41:38 bra kernel: [drm] Connector 1:
    Sep 01 20:41:38 bra kernel: [drm] LVDS-1
    Sep 01 20:41:38 bra kernel: [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
    Sep 01 20:41:38 bra kernel: [drm] Encoders:
    Sep 01 20:41:38 bra kernel: [drm] LCD1: INTERNAL_KLDSCP_LVTMA
    Sep 01 20:41:38 bra kernel: [drm] Connector 2:
    Sep 01 20:41:38 bra kernel: [drm] DP-1
    Sep 01 20:41:38 bra kernel: [drm] HPD1
    Sep 01 20:41:38 bra kernel: [drm] DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
    Sep 01 20:41:38 bra kernel: [drm] Encoders:
    Sep 01 20:41:38 bra kernel: [drm] DFP2: INTERNAL_UNIPHY
    Sep 01 20:41:38 bra kernel: [drm] Connector 3:
    Sep 01 20:41:38 bra kernel: [drm] VGA-1
    Sep 01 20:41:38 bra kernel: [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
    Sep 01 20:41:38 bra kernel: [drm] Encoders:
    Sep 01 20:41:38 bra kernel: [drm] CRT1: INTERNAL_KLDSCP_DAC1
    Sep 01 20:41:38 bra kernel: ppdev: user-space parallel port driver
    Sep 01 20:41:38 bra systemd[1]: Starting Sound Card.
    Sep 01 20:41:38 bra systemd[1]: Reached target Sound Card.
    Sep 01 20:41:38 bra kernel: iTCO_vendor_support: vendor-support=0
    Sep 01 20:41:38 bra kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff:
    Sep 01 20:41:38 bra kernel: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
    Sep 01 20:41:38 bra kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff:
    Sep 01 20:41:38 bra kernel: excluding 0xa0000000-0xa0ffffff
    Sep 01 20:41:38 bra kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff:
    Sep 01 20:41:38 bra kernel: excluding 0x60000000-0x60ffffff
    Sep 01 20:41:38 bra kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    Sep 01 20:41:38 bra kernel: iTCO_wdt: Found a ICH9M-E TCO device (Version=2, TCOBASE=0x1060)
    Sep 01 20:41:38 bra kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90010, key code 190): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90011, key code 148): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90012, key code 152): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90013, key code 236): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90014, key code 238): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90015, key code 212): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90016, key code 227): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90017, key code 191): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90019, key code 205): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x9001a, key code 225): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x9001b, key code 224): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x9001d, key code 372): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[227]: renamed network interface wlan0 to wlp3s0
    Sep 01 20:41:39 bra kernel: [drm] fb mappable at 0xD0141000
    Sep 01 20:41:39 bra kernel: [drm] vram apper at 0xD0000000
    Sep 01 20:41:39 bra kernel: [drm] size 7299072
    Sep 01 20:41:39 bra kernel: [drm] fb depth is 24
    Sep 01 20:41:39 bra kernel: [drm] pitch is 6912
    Sep 01 20:41:39 bra kernel: fbcon: radeondrmfb (fb0) is primary device
    Sep 01 20:41:39 bra kernel: Console: switching to colour frame buffer device 210x65
    Sep 01 20:41:39 bra kernel: radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
    Sep 01 20:41:39 bra kernel: radeon 0000:01:00.0: registered panic notifier
    Sep 01 20:41:39 bra kernel: [drm] Initialized radeon 2.39.0 20080528 for 0000:01:00.0 on minor 0
    Sep 01 20:41:38 bra systemd[1]: Started Trigger Flushing of Journal to Persistent Storage.
    Sep 01 20:41:39 bra systemd[1]: Started Update UTMP about System Boot/Shutdown.
    Sep 01 20:41:39 bra systemd[1]: Starting System Initialization.
    Sep 01 20:41:39 bra systemd[1]: Reached target System Initialization.
    Sep 01 20:41:39 bra systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    Sep 01 20:41:39 bra systemd[1]: Starting CUPS Printer Service Spool.
    Sep 01 20:41:40 bra systemd[1]: Started Avahi mDNS/DNS-SD Stack.
    Sep 01 20:41:40 bra systemd[1]: Starting Login Service...
    Sep 01 20:41:40 bra systemd[1]: Starting Permit User Sessions...
    Sep 01 20:41:40 bra systemd[1]: Started LVM2 PV scan on device 254:0.
    Sep 01 20:41:40 bra systemd[1]: Started Restore Sound Card State.
    Sep 01 20:41:40 bra systemd[1]: Starting system-systemd\x2dbacklight.slice.
    Sep 01 20:41:40 bra systemd[1]: Created slice system-systemd\x2dbacklight.slice.
    Sep 01 20:41:40 bra systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:radeon_bl0...
    Sep 01 20:41:40 bra systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:acpi_video0...
    Sep 01 20:41:40 bra systemd[1]: Started Permit User Sessions.
    Sep 01 20:41:40 bra systemd[1]: Starting Getty on tty1...
    Sep 01 20:41:40 bra systemd[1]: Started Getty on tty1.
    Sep 01 20:41:40 bra systemd[1]: Starting Login Prompts.
    Sep 01 20:41:40 bra systemd[1]: Reached target Login Prompts.
    Sep 01 20:41:40 bra systemd-logind[416]: New seat seat0.
    Sep 01 20:41:40 bra systemd-logind[416]: Watching system buttons on /dev/input/event6 (Power Button)
    Sep 01 20:41:40 bra systemd-logind[416]: Watching system buttons on /dev/input/event7 (Video Bus)
    Sep 01 20:41:40 bra systemd-logind[416]: Watching system buttons on /dev/input/event4 (Lid Switch)
    Sep 01 20:41:40 bra systemd-logind[416]: Watching system buttons on /dev/input/event5 (Sleep Button)
    Sep 01 20:41:40 bra systemd-logind[416]: Watching system buttons on /dev/input/event8 (ThinkPad Extra Buttons)
    Sep 01 20:41:40 bra systemd[1]: Started Login Service.
    Sep 01 20:41:40 bra systemd[1]: Started Initialize hardware monitoring sensors.
    Sep 01 20:41:40 bra systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:radeon_bl0.
    Sep 01 20:41:40 bra systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:acpi_video0.
    Sep 01 20:41:40 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service'
    Sep 01 20:41:40 bra systemd[1]: Starting Authorization Manager...
    Sep 01 20:41:40 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service'
    Sep 01 20:41:40 bra systemd[1]: Starting Manage, Install and Generate Color Profiles...
    Sep 01 20:41:40 bra polkitd[520]: Started polkitd version 0.112
    Sep 01 20:41:40 bra dbus[392]: [system] Successfully activated service 'org.freedesktop.ColorManager'
    Sep 01 20:41:40 bra systemd[1]: Started Manage, Install and Generate Color Profiles.
    Sep 01 20:41:40 bra polkitd[520]: Loading rules from directory /etc/polkit-1/rules.d
    Sep 01 20:41:40 bra polkitd[520]: Loading rules from directory /usr/share/polkit-1/rules.d
    Sep 01 20:41:40 bra polkitd[520]: Finished loading, compiling and executing 2 rules
    Sep 01 20:41:40 bra dbus[392]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
    Sep 01 20:41:40 bra systemd[1]: Started Authorization Manager.
    Sep 01 20:41:40 bra polkitd[520]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
    Sep 01 20:41:40 bra dkms[391]: Kernel preparation unnecessary for this kernel. Skipping...
    Sep 01 20:41:41 bra dkms[391]: Building module:
    Sep 01 20:41:41 bra kernel: e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
    Sep 01 20:41:41 bra kernel: e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
    Sep 01 20:41:43 bra kernel: e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
    Sep 01 20:41:43 bra kernel: e1000e 0000:00:19.0 eth0: 10/100 speed: disabling TSO
    Sep 01 20:41:43 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    Sep 01 20:41:43 bra dbus[392]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.nm-dispatcher.service': Unit dbus-org.freedesktop.nm-dispatcher.service failed to load: No such file or directory.
    Sep 01 20:41:43 bra kernel: psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
    Sep 01 20:41:44 bra dkms[391]: cleaning build area....
    Sep 01 20:41:44 bra kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input16
    Sep 01 20:41:44 bra avahi-daemon[383]: Registering new address record for fe80::21c:25ff:fe9d:62d0 on eth0.*.
    Sep 01 20:41:47 bra dkms[391]: cd /var/lib/dkms/fglrx/8.892/build; sh make.sh --nohints --uname_r=3.16.1-1-ARCH --norootcheck....(bad exit status: 1)
    Sep 01 20:41:47 bra dkms[391]: Error! Bad return status for module build on kernel: 3.16.1-1-ARCH (x86_64)
    Sep 01 20:41:47 bra dkms[391]: Consult /var/lib/dkms/fglrx/8.892/build/make.log for more information.
    Sep 01 20:41:47 bra systemd[1]: Started Dynamic Kernel Modules System.
    Sep 01 20:41:48 bra login[427]: pam_unix(login:session): session opened for user hel by LOGIN(uid=0)
    Sep 01 20:41:48 bra systemd[1]: Starting user-1000.slice.
    Sep 01 20:41:48 bra systemd[1]: Created slice user-1000.slice.
    Sep 01 20:41:48 bra systemd[1]: Starting User Manager for UID 1000...
    Sep 01 20:41:48 bra systemd[867]: pam_unix(systemd-user:session): session opened for user hel by (uid=0)
    Sep 01 20:41:48 bra systemd[1]: Starting Session c1 of user hel.
    Sep 01 20:41:48 bra systemd[1]: Started Session c1 of user hel.
    Sep 01 20:41:48 bra systemd-logind[416]: New session c1 of user hel.
    Sep 01 20:41:48 bra systemd[867]: Starting Paths.
    Sep 01 20:41:48 bra systemd[867]: Reached target Paths.
    Sep 01 20:41:48 bra systemd[867]: Starting Timers.
    Sep 01 20:41:48 bra systemd[867]: Reached target Timers.
    Sep 01 20:41:48 bra systemd[867]: Starting Sockets.
    Sep 01 20:41:48 bra systemd[867]: Reached target Sockets.
    Sep 01 20:41:48 bra systemd[867]: Starting Basic System.
    Sep 01 20:41:48 bra systemd[867]: Reached target Basic System.
    Sep 01 20:41:48 bra systemd[867]: Starting Default.
    Sep 01 20:41:48 bra systemd[867]: Reached target Default.
    Sep 01 20:41:48 bra systemd[867]: Startup finished in 131ms.
    Sep 01 20:41:48 bra systemd[1]: Started User Manager for UID 1000.
    Sep 01 20:41:48 bra login[427]: LOGIN ON tty1 BY hel
    Sep 01 20:41:48 bra NetworkManager[384]: <info> startup complete
    Sep 01 20:41:54 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service'
    Sep 01 20:41:54 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service'
    Sep 01 20:41:54 bra systemd[1]: Starting RealtimeKit Scheduling Policy Service...
    Sep 01 20:41:54 bra systemd[1]: Starting Disk Manager...
    Sep 01 20:41:54 bra polkitd[520]: Registered Authentication Agent for unix-session:c1 (system bus name :1.16 [/usr/lib/mate-polkit/polkit-mate-authentication-agent-1], object path /org/mate/PolicyKit1/AuthenticationAgent, locale en_GB.UTF-8)
    Sep 01 20:41:54 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
    Sep 01 20:41:54 bra systemd[1]: Starting Daemon for power management...
    Sep 01 20:41:54 bra udisksd[1121]: udisks daemon version 2.1.3 starting
    Sep 01 20:41:54 bra dbus[392]: [system] Successfully activated service 'org.freedesktop.UPower'
    Sep 01 20:41:54 bra systemd[1]: Started Daemon for power management.
    Sep 01 20:41:54 bra dbus[392]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
    Sep 01 20:41:54 bra systemd[1]: Started RealtimeKit Scheduling Policy Service.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully called chroot.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully dropped privileges.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully limited resources.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Running.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Canary thread running.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Watchdog thread running.
    Sep 01 20:41:54 bra dbus[392]: [system] Successfully activated service 'org.freedesktop.UDisks2'
    Sep 01 20:41:54 bra systemd[1]: Started Disk Manager.
    Sep 01 20:41:54 bra udisksd[1121]: Acquired the name org.freedesktop.UDisks2 on the system message bus
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully made thread 1119 of process 1119 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Supervising 1 threads of 1 processes of 1 users.
    Sep 01 20:41:54 bra org.a11y.Bus[1057]: Activating service name='org.a11y.atspi.Registry'
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Supervising 1 threads of 1 processes of 1 users.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully made thread 1193 of process 1119 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Supervising 2 threads of 1 processes of 1 users.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Supervising 2 threads of 1 processes of 1 users.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully made thread 1194 of process 1119 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Supervising 3 threads of 1 processes of 1 users.
    Sep 01 20:41:54 bra org.a11y.Bus[1057]: Successfully activated service 'org.a11y.atspi.Registry'
    Sep 01 20:41:54 bra org.a11y.atspi.Registry[1176]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
    Sep 01 20:41:54 bra org.a11y.atspi.Registry[1176]: ** (at-spi2-registryd:1185): WARNING **: Failed to register client: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files
    Sep 01 20:41:54 bra org.a11y.atspi.Registry[1176]: ** (at-spi2-registryd:1185): WARNING **: Unable to register client with session manager
    Sep 01 20:41:54 bra dbus[392]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
    Sep 01 20:41:54 bra dbus[392]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service failed to load: No such file or directory.
    Sep 01 20:41:55 bra rtkit-daemon[1120]: Successfully made thread 1206 of process 1206 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Sep 01 20:41:55 bra rtkit-daemon[1120]: Supervising 4 threads of 2 processes of 1 users.
    Sep 01 20:41:55 bra rtkit-daemon[1120]: Successfully made thread 1208 of process 1208 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Sep 01 20:41:55 bra rtkit-daemon[1120]: Supervising 5 threads of 3 processes of 1 users.
    Sep 01 20:41:55 bra pulseaudio[1208]: [pulseaudio] pid.c: Daemon already running.
    Sep 01 20:41:56 bra dbus[392]: [system] Activating service name='org.mate.SettingsDaemon.DateTimeMechanism' (using servicehelper)
    Sep 01 20:41:56 bra dbus[392]: [system] Successfully activated service 'org.mate.SettingsDaemon.DateTimeMechanism'
    Sep 01 20:42:01 bra systemd-logind[416]: kernel does not support evdev-revocation
    Sep 01 20:42:01 bra systemd[1]: Starting Getty on tty2...
    Sep 01 20:42:01 bra systemd[1]: Started Getty on tty2.
    Sep 01 20:42:05 bra systemd[1]: Started Getty on tty2.
    Sep 01 20:42:08 bra systemd-logind[416]: System is rebooting.
    Sep 01 20:42:08 bra systemd[1]: Stopping Session c1 of user hel.
    Sep 01 20:42:08 bra systemd[1]: Stopped Session c1 of user hel.
    Sep 01 20:42:08 bra systemd[1]: Stopping LVM2 PV scan on device 254:0...
    Sep 01 20:42:08 bra systemd[1]: Stopping Sound Card.
    Sep 01 20:42:08 bra systemd[1]: Stopped target Sound Card.
    Sep 01 20:42:08 bra systemd[1]: Stopping system-systemd\x2dfsck.slice.
    Sep 01 20:42:08 bra systemd[1]: Removed slice system-systemd\x2dfsck.slice.
    Sep 01 20:42:08 bra systemd[1]: Stopping LVM2 metadata daemon...
    Sep 01 20:42:08 bra systemd[1]: Stopping Daemon for power management...
    Sep 01 20:42:08 bra systemd[1]: Stopping RealtimeKit Scheduling Policy Service...
    Sep 01 20:42:08 bra systemd[1]: Stopping Disk Manager...
    Sep 01 20:42:08 bra systemd[1]: Stopping User Manager for UID 1000...
    Sep 01 20:42:09 bra systemd[867]: Stopping Default.
    Sep 01 20:42:09 bra systemd[867]: Stopped target Default.
    Sep 01 20:42:09 bra systemd[867]: Stopping Basic System.
    Sep 01 20:42:09 bra systemd[867]: Stopped target Basic System.
    Sep 01 20:42:09 bra systemd[867]: Stopping Paths.
    Sep 01 20:42:09 bra systemd[867]: Stopped target Paths.
    Sep 01 20:42:09 bra systemd[867]: Stopping Timers.
    Sep 01 20:42:09 bra systemd[867]: Stopped target Timers.
    Sep 01 20:42:09 bra systemd[867]: Stopping Sockets.
    Sep 01 20:42:09 bra systemd[867]: Stopped target Sockets.
    Sep 01 20:42:09 bra systemd[867]: Starting Shutdown.
    Sep 01 20:42:09 bra systemd[867]: Reached target Shutdown.
    Sep 01 20:42:09 bra systemd[867]: Starting Exit the Session...
    Sep 01 20:42:09 bra kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
    Sep 01 20:42:08 bra polkitd[520]: Unregistered Authentication Agent for unix-session:c1 (system bus name :1.16, object path /org/mate/PolicyKit1/AuthenticationAgent, locale en_GB.UTF-8) (disconnected from bus)
    Sep 01 20:42:08 bra thinkfan[387]: Caught deadly signal.
    Sep 01 20:42:08 bra thinkfan[387]: Cleaning up and resetting fan control.
    Sep 01 20:42:08 bra NetworkManager[384]: <info> caught signal 15, shutting down normally.
    Sep 01 20:42:08 bra NetworkManager[384]: <info> (wlp3s0): device state change: unavailable -> unmanaged (reason 'removed') [20 10 36]
    Sep 01 20:42:08 bra NetworkManager[384]: <info> exiting (success)
    Sep 01 20:42:09 bra avahi-daemon[383]: Got SIGTERM, quitting.
    Sep 01 20:42:09 bra avahi-daemon[383]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.100.53.
    Sep 01 20:42:09 bra avahi-daemon[383]: avahi-daemon 0.6.31 exiting.
    Sep 01 20:42:09 bra systemd[868]: pam_unix(systemd-user:session): session closed for user hel
    Sep 01 20:42:09 bra systemd[867]: Received SIGRTMIN+24 from PID 1279 (kill).
    Sep 01 20:42:09 bra NetworkManager[384]: (NetworkManager:384): GLib-CRITICAL **: Source ID 86 was not found when attempting to remove it
    Sep 01 20:42:10 bra systemd[1]: Stopped Getty on tty1.
    Sep 01 20:42:10 bra systemd[1]: Stopped Authorization Manager.
    Sep 01 20:42:10 bra systemd[1]: Stopped Manage, Install and Generate Color Profiles.
    Sep 01 20:42:10 bra systemd[1]: Stopped User Manager for UID 1000.
    Sep 01 20:42:10 bra systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
    Sep 01 20:42:10 bra systemd[1]: Stopped Disk Manager.
    Sep 01 20:42:10 bra systemd[1]: Stopped Daemon for power management.
    Sep 01 20:42:10 bra systemd[1]: Stopped Getty on tty2.
    Sep 01 20:42:10 bra systemd[1]: Stopped Initialize hardware monitoring sensors.
    Sep 01 20:42:10 bra systemd[1]: Stopped Dynamic Kernel Modules System.
    Sep 01 20:42:10 bra systemd[1]: Shutting down.
    Sep 01 20:42:10 bra systemd[1]: Hardware watchdog 'INTCAMT', version 0
    Sep 01 20:42:10 bra systemd[1]: Set hardware watchdog to 10min.
    Sep 01 20:42:10 bra systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    Sep 01 20:42:10 bra systemd-journal[188]: Journal stopped
    I can't downgrade the ati-driver because it needs glamor-egl which conflicts with xorg-1.16.
    After deinstalling the ati-driver and removing the 20-radeon.conf file, I got the following error (Xorg.0.log):
    [ 120.639]
    X.Org X Server 1.16.0
    Release Date: 2014-07-16
    [ 120.639] X Protocol Version 11, Revision 0
    [ 120.640] Build Operating System: Linux 3.15.5-2-ARCH x86_64
    [ 120.640] Current Operating System: Linux bra 3.16.1-1-ARCH #1 SMP PREEMPT Thu Aug 14 07:40:19 CEST 2014 x86_64
    [ 120.640] Kernel command line: BOOT_IMAGE=../vmlinuz-linux cryptdevice=/dev/sda2:main root=/dev/mapper/main-root ro locale=de_DE.UTF-8 initrd=../initramfs-linux.img
    [ 120.640] Build Date: 31 July 2014 11:53:19AM
    [ 120.640]
    [ 120.640] Current version of pixman: 0.32.6
    [ 120.640] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 120.640] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 120.640] (==) Log file: "/home/hel/.local/share/xorg/Xorg.0.log", Time: Mon Sep 1 20:28:35 2014
    [ 120.641] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 120.641] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 120.641] (==) No Layout section. Using the first Screen section.
    [ 120.641] (==) No screen section available. Using defaults.
    [ 120.641] (**) |-->Screen "Default Screen Section" (0)
    [ 120.641] (**) | |-->Monitor "<default monitor>"
    [ 120.641] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 120.641] (==) Automatically adding devices
    [ 120.641] (==) Automatically enabling devices
    [ 120.641] (==) Automatically adding GPU devices
    [ 120.641] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 120.641] Entry deleted from font path.
    [ 120.641] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 120.641] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 120.641] Entry deleted from font path.
    [ 120.641] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 120.641] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 120.641] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 120.641] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 120.641] (II) Loader magic: 0x818d80
    [ 120.641] (II) Module ABI versions:
    [ 120.641] X.Org ANSI C Emulation: 0.4
    [ 120.641] X.Org Video Driver: 18.0
    [ 120.641] X.Org XInput driver : 21.0
    [ 120.641] X.Org Server Extension : 8.0
    [ 120.740] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c4
    [ 120.740] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 120.787] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 120.789] (--) PCI:*(0:1:0:0) 1002:9591:17aa:2117 rev 0, Mem @ 0xd0000000/268435456, 0xcfff0000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
    [ 120.789] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 120.790] (II) LoadModule: "glx"
    [ 120.790] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 120.792] (II) Module glx: vendor="X.Org Foundation"
    [ 120.792] compiled for 1.16.0, module version = 1.0.0
    [ 120.792] ABI class: X.Org Server Extension, version 8.0
    [ 120.792] (==) AIGLX enabled
    [ 120.792] (==) Matched ati as autoconfigured driver 0
    [ 120.792] (==) Matched ati as autoconfigured driver 1
    [ 120.792] (==) Matched modesetting as autoconfigured driver 2
    [ 120.792] (==) Matched fbdev as autoconfigured driver 3
    [ 120.792] (==) Matched vesa as autoconfigured driver 4
    [ 120.792] (==) Assigned the driver to the xf86ConfigLayout
    [ 120.792] (II) LoadModule: "ati"
    [ 120.792] (WW) Warning, couldn't open module ati
    [ 120.792] (II) UnloadModule: "ati"
    [ 120.792] (II) Unloading ati
    [ 120.792] (EE) Failed to load module "ati" (module does not exist, 0)
    [ 120.792] (II) LoadModule: "modesetting"
    [ 120.792] (WW) Warning, couldn't open module modesetting
    [ 120.792] (II) UnloadModule: "modesetting"
    [ 120.792] (II) Unloading modesetting
    [ 120.792] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 120.792] (II) LoadModule: "fbdev"
    [ 120.793] (WW) Warning, couldn't open module fbdev
    [ 120.793] (II) UnloadModule: "fbdev"
    [ 120.793] (II) Unloading fbdev
    [ 120.793] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 120.793] (II) LoadModule: "vesa"
    [ 120.793] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 120.793] (II) Module vesa: vendor="X.Org Foundation"
    [ 120.793] compiled for 1.16.0, module version = 2.3.2
    [ 120.793] Module class: X.Org Video Driver
    [ 120.793] ABI class: X.Org Video Driver, version 18.0
    [ 120.793] (II) VESA: driver for VESA chipsets: vesa
    [ 120.793] (++) using VT number 1
    [ 120.793] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 120.793] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
    [ 120.793] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 120.793] (II) Loading sub module "vbe"
    [ 120.793] (II) LoadModule: "vbe"
    [ 120.793] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 120.793] (II) Module vbe: vendor="X.Org Foundation"
    [ 120.793] compiled for 1.16.0, module version = 1.1.0
    [ 120.793] ABI class: X.Org Video Driver, version 18.0
    [ 120.793] (II) Loading sub module "int10"
    [ 120.793] (II) LoadModule: "int10"
    [ 120.793] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 120.793] (II) Module int10: vendor="X.Org Foundation"
    [ 120.793] compiled for 1.16.0, module version = 1.0.0
    [ 120.793] ABI class: X.Org Video Driver, version 18.0
    [ 120.793] (II) VESA(0): initializing int10
    [ 120.794] (WW) xf86ReadBIOS: Failed to open /dev/mem (Permission denied)
    [ 120.794] (EE) VESA(0): Cannot read int vect
    [ 120.794] (II) UnloadModule: "vesa"
    [ 120.794] (II) UnloadSubModule: "int10"
    [ 120.794] (II) Unloading int10
    [ 120.794] (II) UnloadSubModule: "vbe"
    [ 120.794] (II) Unloading vbe
    [ 120.794] (EE) Screen(s) found, but none have a usable configuration.
    [ 120.794] (EE)
    Fatal server error:
    [ 120.794] (EE) no screens found(EE)
    [ 120.794] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 120.794] (EE) Please also check the log file at "/home/hel/.local/share/xorg/Xorg.0.log" for additional information.
    [ 120.794] (EE)
    [ 120.846] (EE) Server terminated with error (1). Closing log file.
    "[   120.794] (WW) xf86ReadBIOS: Failed to open /dev/mem (Permission denied)" seems to be the problem.
    Edit: By the way: I'm using an external monitor but using the laptop without the external monitor leads to the same problem.
    Last edited by hel (2014-09-01 19:10:09)

  • Xte no longer works with xorg-server-1.4.0.90-3

    Program xte from xautomation no longer works.  It's no longer possible to simulate X key strokes.  xte runs and returns 0 but the key strokes are not simulated.  It last worked in xorg-server-1.4-6.  xte uses libxtst to work its magic.
    Has anyone else had these same issues?  Is there an alternative to xte that will work with Arch's latest xorg-server?  Thanks.

    Just to follow up on this... the same startx messages are still coming with the latest xorg-server 1.4.0.90-5
    I've spent hours searching but have not run across a fix that works and don't know what's causing it.  At least so far, I've not found any ill effects from it on my machine.

  • [svn] 949: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 949
    Author: [email protected]
    Date: 2008-03-27 07:12:59 -0700 (Thu, 27 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - try again with legacy-collection true and false.
    Doc: No
    Checkintests: Pass
    Details: Another try in fixing this bug. When legacy-collection is false, Actionscript Array on the client becomes Java Array on the server and my fix yesterday assumed this case. However, when legacy-collection is true, Actionscript Array becomes Java ArrayList on the server. So added code to handle this case.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • [svn] 931: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 931
    Author: [email protected]
    Date: 2008-03-26 11:31:01 -0700 (Wed, 26 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - we need automated tests for this basic case.
    Doc: No
    Checkintests: Pass
    Details: RequestFilter was not handling multiple headers with the same name properly.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • I have Hello screen after i slide to set up gel language options after select English , Egypt it request to connect with WI FI after connect start to activate my IPhone after that it unable to activated because the activation server is unavailable

    I have Hello screen after i slide to set up gel language options after select English , Egypt it request to connect with WI FI after connect start to activate my IPhone after that it unable to activated because the activation server is unavailable and request to connect to itunes and no activate.

    4 possible causes of that message:
    1] Activation server is actually down. Very rare occurrence, but it does happen.
    When it does occur, down time is very short. Solution - try again.
    2] Your firewall or antivirus are blocking the connection. Solution - temporarily
    deactivate your firewall or antivirus until the update completes.
    3] Computer being used for the activation has previously been used to jailbreak
    an iOS device. Solution - use a computer that has not been used to jailbreak an
    iOs device.
    4] Your iPhone is jailbroken. Google may provide some direction. Be advised the jailbreak
    may have made changes that will prevent the iPhone from successfully activating.
    Terms of Use for this forum prohibit discussion of jailbroken iPhones.

  • Nvidia/nvidia-utils 190.42-1 with xorg-server 1.7.1-1 segfault

    After today's upgrade, X fails to start with segmentation fault.  When I downgraded nvidia/nvidia-utils to 185.18.36-2, xorg-server to 1.6.3.901-1 and related xf86-input-*, it starts to work.  Interestingly, neither combination of nvidia/nvidia-utils to 185.18.36-2 with xorg-server 1.7.1-1, nor nvidia/nvidia-utils 190.42-1 with xorg-server to 1.6.3.901-1 works.  After downgrading and playing it a little bit, I lost my original crash logs.
    I guess I should post the problem here to see if anyone is seeing the same problem, before going back upgrading and hitting the bug again.  Of course, if you are interested in my Xorg.0.log, I can produce it again.
    And by the way, I'm using arch64 on a lenovo t61p with nVidia Quadro FX 570M.  I guess the problem is new, and I don't have any luck with google, yet.

    I just encountered this error with nvidia-173xx, I guess the only solution is to manually search for and install the
    older xorg packages? And wait for nvidia to possibly* add support for the new xorg?
    X.Org X Server 1.7.1
    Release Date: 2009-10-23
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.31-ARCH i686
    Current Operating System: Linux Thorin 2.6.31-ARCH #1 SMP PREEMPT Fri Oct 23 11:12:58 CEST 2009 i686
    Kernel command line: root=/dev/disk/by-uuid/3902f419-5299-4a4e-8cc7-f31d3d7702a5 ro vga=773
    Build Date: 25 October 2009 08:20:56PM
    Current version of pixman: 0.16.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Nov 1 13:59:11 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Layout0"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Device0"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "Mouse0"
    (**) Option "DontZap" "false"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Keyboard0
    (WW) Disabling Mouse0
    (II) Loader magic: 0x81e5f40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 6.0
    X.Org XInput driver : 7.0
    X.Org Server Extension : 2.0
    (--) using VT number 8
    (--) PCI:*(0:1:0:0) 10de:00c8:1558:0900 nVidia Corporation NV41.8 [GeForce Go 6800] rev 162, Mem @ 0xb2000000/16777216, 0xc0000000/268435456, 0xb1000000/16777216
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded by default.
    (II) "dri2" will be loaded by default.
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.7.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.7.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "freetype"
    (WW) Warning, couldn't open module freetype
    (II) UnloadModule: "freetype"
    (EE) Failed to load module "freetype" (module does not exist, 0)
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    (II) NVIDIA GLX Module 173.14.20 Thu Jun 25 19:49:59 PDT 2009
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.7.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.7.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.7.1, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    dlopen: /usr/lib/xorg/modules/drivers/nvidia_drv.so: undefined symbol: resVgaShared
    (EE) Failed to load /usr/lib/xorg/modules/drivers/nvidia_drv.so
    (II) UnloadModule: "nvidia"
    (EE) Failed to load module "nvidia" (loader failed, 7)
    (EE) No drivers available.
    Fatal server error:
    no screens found
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    Edit: found my packages at http://www.schlunix.org/archlinux/extra/os/i686/ and did a downgrade,
    anubis@Thorin ~/ $ sudo pacman -U /var/cache/pacman/pkg/xorg-server-1.6.3.901-1-i686.pkg.tar.gz /var/cache/pacman/pkg/xorg-server-utils-7.4-7-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-input-evdev-2.2.5-1-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-input-keyboard-1.3.2-2-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-input-mouse-1.4.0-2-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-input-synaptics-1.1.3-1-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-video-nv-2.1.14-1-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-video-vesa-2.2.0-1-i686.pkg.tar.gz
    Last edited by 1LordAnubis (2009-11-01 23:07:34)

  • OfficialFile.asmx The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Negotiate,NTLM'. ERROR

    We are getting an error on the authentication piece when trying to submit a file to the OfficialFile.asmx web service to submit a document to the Drop-Off Library. Here is the code snippet -
    public string FileUpload(HttpPostedFile FileInput, RecordsRepositoryProperty[] properties)
    string strFileUrl = string.Empty;
    RecordsRepositorySoapClient repository = new RecordsRepositorySoapClient();
    BinaryReader b = new BinaryReader(FileInput.InputStream);
    byte[] binData = b.ReadBytes(FileInput.ContentLength);
    repository.ClientCredentials.Windows.ClientCredential = new System.Net.NetworkCredential(iUserID, iUserPassword, iUserDomain);
    repository.ClientCredentials.Windows.AllowedImpersonationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation;
    repository.SubmitFile(binData, properties, null, FileInput.FileName, HttpContext.Current.User.Identity.Name);
    strFileUrl = repository.GetFinalRoutingDestinationFolderUrl(properties, null, FileInput.FileName).Url;
    return strFileUrl;
    Although we are setting the network credential in the client call we still get the error
    - The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Negotiate,NTLM'.
    Ideas?
    Thanks in advance.

    Hi,
    Based on the error message, the issue is related to the authentication type.
    I suggest you can specify the credential type like the below:
    CredentialCache credentialCache = new CredentialCache();
    NetworkCredential credentials = new NetworkCredential(UserName, PassWord, sDomain);
    credentialCache.Add(new Uri(recordCenterUrl), "NTLM", credentials);
    Here is a detailed code demo for your reference:
    http://blogs.msdn.com/b/mcsnoiwb/archive/2011/06/06/sending-files-to-a-record-center-using-the-sp2010-webservice-officialfile-asmx.aspx
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jerry Guo
    TechNet Community Support

Maybe you are looking for

  • HT3529 my iphone is in recovery mode and when i try restore it it says error

    my iphone has the plug into itunes symbol on it, and when i plug it into itunes it says to restore it so i click restore and it gets half way through then it says error. i cant get onto my phone without restoring it. what do i do ? help!!!!!!!!!!!!!!

  • Passing Parameter to sub report from detail section of Main report

    I am new to CR I am developing a CR for Clinical Lab Test. My main report have four field i.e 1. Test Code 2. Test Name 3. Result Value 4. Normal Values This report has sub report in Page Footer. When TestCode = 18 or 19 It has to show a normal value

  • Align gridlines

    Hello All. With the help of this board I have managed to plot both my data sets on the same graph. I have a request. Is it possible to force the right y-axis to use the gridlines of the left y-axis? Basically I have a predictable range on the left an

  • Create Placeholder

    How does one CREATE a placeholder image ? I found an old post from 2006 that reco's 'control/option/command I ' that will convert a masked image to a placeholder image but it doesn't work for me. Anyone ?

  • How can I fix this camera software issue?

    My iPhone 5 was most recently updated to iOS 7.1, and now my rear camera is showing up black. The front camera works, however it freezes when I attempt switching back to the rear camera. How can I fix this software issue? Please Help.