[solved]makepkg -e ignoring the -e?

Trying to build a package that includes curl/types.h which has been removed from the curl package, but every time I comment out the include and run makepkg -e it re-extracts from the source file and overwrites my changes anyway. I thought the entire point of the -e option was to use the existing src/ directory as-is? That's what it says it does with makepkg --help:
$ makepkg --help
makepkg (pacman) 4.0.3
Usage: /usr/bin/makepkg [options]
Options:
  -A, --ignorearch Ignore incomplete arch field in PKGBUILD
  -c, --clean      Clean up work files after build
  -d, --nodeps     Skip all dependency checks
  -e, --noextract  Do not extract source files (use existing src/ dir)
  -f, --force      Overwrite existing package
  -g, --geninteg   Generate integrity checks for source files
  -h, --help       Show this help message and exit
  -i, --install    Install package after successful build
  -L, --log        Log package build process
<snip>
Last edited by biltong (2012-10-20 15:49:20)

That is not a vcs build.  There is an svn version of littleblackbox available, but this is for one of the versioned releases.
That PKGBUILD really does need some TLC though.  It should not try to re-extract the source tarball in the build function, this is what is causing your problems.
Here's a modified version that solves that issue:
pkgname=littleblackbox
pkgver=0.1.3
pkgrel=1
pkgdesc="security/penetration testing tool, search in a collection of thousands of private SSL keys extracted from various embedded devices"
arch=(any)
url="http://code.google.com/p/littleblackbox/wiki/FAQ"
license=('MIT')
depends=('openssl' 'libpcap' 'sqlite3')
source=('https://littleblackbox.googlecode.com/files/littleblackbox-0.1.3.tar.gz')
md5sums=('7ddc140beda3f98c34db644b01fc4d84')
build() {
cd $pkgname-$pkgver
rm -f bin/$pkgname 2>/dev/null
cd src
make distclean
./configure
make
package() {
cd $srcdir/$pkgname-$pkgver
install -m755 -d ${pkgdir}/usr/bin $pkgdir/usr/share/doc/$pkgname \
$pkgdir/usr/share/licenses/$pkgname $pkgdir/usr/share/$pkgname
install -m755 bin/$pkgname ${pkgdir}/usr/bin
install -m644 bin/lbb.db $pkgdir/usr/share/$pkgname
ln -s /usr/share/$pkgname/lbb.db $pkgdir/usr/bin/lbb.db
install -m644 docs/LICENSE $pkgdir/usr/share/$pkgname
install -m644 docs/{FAQ,README,submission.txt} $pkgdir/usr/share/doc/$pkgname
msg "done"
# vim:set ts=2 sw=2 et:
Last edited by Trilby (2012-10-20 11:46:31)

Similar Messages

  • [SOLVED] makepkg ignoreing CFLAGS

    It seems no matter what I do makeflags ignores my CFLAGS and CXXFLAGS options.
    I have added
    CFLAGS="-march=sandybridge -mtune=sandybridge -O3 -pipe"
    to all the locations that makepkg.conf has been installed..
    /etc/makepkg.conf
    /home/jwdev/abs/chroot/jwdev/etc/makepkg.conf
    /home/jwdev/abs/chroot/root/etc/makepkg.conf
    /var/abs/core/pacman/makepkg.conf
    as well as to the makechrootpkg command
    mkarchroot -C /etc/pacman.conf -M /etc/makepkg.conf $CHROOT/root base-devel
    arch-nspawn $CHROOT/root pacman -Syu
    cd $1
    makechrootpkg -c -r $CHROOT -- CFLAGS="-march=sandybridge -mtune=sandybridge -O3 -pipe" CXXFLAGS="-march=sandybridge -mtune=sandybridge -O3 -pipe"
    But still, when I run makepkg I see...
    g++ -c -pipe -O2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -Wall
    This is the case if I makepkg or makechrootpkg
    is there some otehr secert location for these args? or are they hardcoded in
    I do see that some packages have hardcoded args, like libaio, which kind of defeats the point of abs
    build() {
    cd "$srcdir/$pkgname-$pkgver"
    CFLAGS="-march=${CARCH/_/-} -mtune=generic -O2 -pipe"
    make
    but in my test case, smplayer, this is not the case
    build() {
    cd "$pkgname-$pkgver"
    make PREFIX=/usr \
    DOC_PATH="\\\"/usr/share/doc/smplayer\\\"" \
    QMAKE_OPTS=DEFINES+=NO_DEBUG_ON_CONSOLE
    thanks
    UPDATE:  running makepkg on "joe" I see that the CFLAGS are correct... so it seems that only some (all but 1 so far actually) packages respect the makepkg? while the other just do their 'own thing'?  I am new to Arch, so maybe I am missing a huge piece of information
    Last edited by ntisithoj (2015-03-17 06:35:08)

    The trick desribed in wiki:
    https://wiki.archlinux.org/index.php/makepkg#CFLAGS.2FCXXFLAGS.2FCPPFLAGS_in_makepkg.conf_do_not_work_for_QMAKE_based_packages
    works only with those sources, that use qmake (qmake-qt4) for preconfigure. In those case, you should to define QMAKE variable in PKGBUILD and next invoke it in "build" section. See example of QupZilla that works for me (it's modified qupzilla-qt5-qtwebkit-git's PKGBUILD by Alex Talker):
    pkgname=qupzilla-qt5-qtwebkit-git
    pkgver=r3348.0c37b62
    pkgrel=1
    pkgdesc="A new and very fast open source browser based on WebKit core, written in Qt Framework."
    arch=('i686' 'x86_64')
    url="http://qupzilla.com/index.php"
    license=('GPL')
    depends=( 'qt5-base' 'qt5-script' 'qt5-webkit')
    makedepends=('git')
    provides=('qupzilla' 'qupzilla-git')
    conflicts=('qupzilla' 'qupzilla-git' 'qupzilla-qt5-git')
    source=('git+https://github.com/QupZilla/qupzilla.git')
    md5sums=('SKIP')
    CFLAGS="-march=native -mtune=bdver2 -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    CXXFLAGS="-march=native -mtune=bdver2 -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    pkgver() {
    cd qupzilla
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
    build() {
    cd "$srcdir/qupzilla"
    export USE_WEBGL="true"
    export KDE_INTEGRATION="true"
    export QUPZILLA_PREFIX="/usr/"
    export USE_LIBPATH="/usr/lib"
    qmake-qt5 "$srcdir/qupzilla/QupZilla.pro" \
    PREFIX=/usr \
    CONFIG+=LINUX_INTEGRATED \
    INSTALL_ROOT_PATH="$pkgdir" \
    QMAKE_CFLAGS_RELEASE="${CFLAGS}" \
    QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}"
    make
    package() {
    cd ${srcdir}/qupzilla
    make INSTALL_ROOT="$pkgdir/" install
    Modified sections are:
    - in "headers" - where I add CFLAGS="something" and CXXFLAGS="something" variable and
    - in "build" section by add:
    QupZilla.pro to
    qmake-qt5 "$srcdir/qupzilla/
    in original PKGBUILD and
    CONFIG+=LINUX_INTEGRATED \
    INSTALL_ROOT_PATH="$pkgdir" \
    QMAKE_CFLAGS_RELEASE="${CFLAGS}" \
    QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}"
    But, in case of smplayer, it looks like, that is "preconfigured". There isn't *.pro file, you don't use "qmake" to preconfigure sources, and typical configuration for it is only:
    make
    sudo make install
    because everything else is in Makefile.txt. You should use another trick (I don't know which will be correct).

  • Makepkg whont "install" the files to the pkg/ dir

    hi
    this is my first PKGBUILD i made so far, but it whont work.
    my problem is that makepkg whont copy the files to the pkg dir so it can make the package, instead it trys to install the files directly to the destination where they are supposed to be installed with the package manager.
    # Contributor: Wesley <[email protected]>
    pkgname=ufoai-svn
    pkgver=11224
    pkgrel=1
    pkgdesc="UFO: Alien Invasion is a strategy game featuring tactical combat"
    arch=('i686' 'x86_64')
    url="http://ufoai.ninex.info"
    license=('GPL')
    depends=(libgl sdl_ttf)
    conflicts=('ufoai')
    makedepends=('subversion')
    source=()
    md5sums=()
    _svntrunk=https://ufoai.svn.sourceforge.net/svnroot/ufoai/ufoai/trunk
    _svnmod=trunk
    _langs=()
    build() {
    cd $startdir/src
    if [ -d $_svnmod/.svn ]; then
    (cd $_svnmod && svn up -r $pkgver)
    else
    svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
    fi
    msg "SVN checkout done or server timeout"
    msg "Starting make..."
    cd $_svnmod
    ./configure --prefix=/usr
    make || return 1
    make lang
    make maps
    cd base
    ./archives.sh
    cd ..
    make DESTDIR=$startdir/pkg/ install
    cp -t $startdir/pkg/usr/share/ufoai/base/ base/*.pk3 base/*.cfg base/*.txt
    "DESTDIR" whont works for me at all.
    if i make
    ./configure --prefix=$startdir/pkg/usr
    it trys to read the pk3 files from thet directory AFTER installing, so it whont work if i delete the pkg and src dir.

    thank you for that hint.
    i THINK i found why it is thatway(just wana state here that i am still an absolute newb in making PKGBUILD's my own).
    there are some entrys in the MakeFile that describe where to put what (afaik because of what i gave ./configure as parameters?)
    everything except the DATADIR is set to ${prefix}/bla or ${exec_prefix}/bla.
    but DATADIR needs an absolute path as target to install probably or it gets just ignored, so its, whatever i make either DATADIR=/usr/share/ufoai(where i trys to install it there instead of throwing it into the pkg dir) or DATADIR=/home/bla/pkg/usr/share/ufoai(where he trys to look for that files even after installation.)
    since i dont solved the problem with your hint i postet the makefile into a pastebin, maybe u can tell how to actually work around this.
    http://pastebin.com/m3da70e68

  • Want TV guide so can mark hrs ahead favorite ahead shows,&ignore the rest.

    I don't know where else to post this question, so here goes:
    Want online TV guide so can mark hrs ahead favorite ahead shows,&ignore the rest.
    Oh, and I mean for antenna broadcast tv. Not for cable or satellite, can't afford that.
    Is there such an online site or application for Mac, Firefox.
    Want to be able to look over a TV schedule and click on the shows interested in for the hours ahead and not have to bother even seeing (much less having to re-read) again the shows we have no interest in.
    I would like the shows I do not mark to just disappear from the schedule and see them no more that day and evening.
    Less clutter, much simpler, and a lot less re-reading.
    So frustrating to have to skim down the column for each hour and look at all those shows channels I've already looked at and know I have no interest in.
    I know, I should be able to remember (naahhhh), or write them down (naahhh). The mac is supposed to do all our work and thinkin for us these days.
    Hasn't some bright bulb already solved this problem for millions of viewerrs? Made such an online tv guide website, invented sucha application?
    I have been using zap2it, but it does not have any sucha feature.
    I have Mac, Snow Leopard, and using Firefox.
    Don't think I won't thank you, cuz
    I will.
    Forest Gump ("I'm not a smaaarrrt maaaaannnn.")
    Always very grateful.
    Snow Mac
    P.S.: New to Using Intel MacMini with SnowLeopard.

    thelnukus wrote:
    The mac is supposed to do all our work and thinkin for us these days.
    Oh, dear, then I must have a seriously defective Mac. It refuses to go to work for me, doesn't do my laundry or feed the cat. And it won't do my homework for me.

  • How do I ignore the difference​s in DBMSs when reading data from a DB?

    My boss wants me to create a text parser that parses the below sentence and executes an SQL query.
    'get table field1,field2,field3,...,fieldN [where SQL conditional statements]'
    This corresponds to 'select field1, field2, field3, ..., fieldN from table where blahblah'.
    Since different DBMSs have different formats for timestamp, that sentence has to be changed for each DBMS.
    One way to ignore the differences is to make a complex text anlayzer that converts a certain type of timestamp string to one that fits each DBMS.
    But it looks ridiculous to adopt such a solution when there might be an elegant solution.
    LabVIEW DB Toolkit is not capable of concealing the differences.
    Does anybody have a better idea than I do?
    Solved!
    Go to Solution.

    I remember having an issue like this when working with an older version of an Oracle server. I was able alter the session by setting 'NLS_TIMESTAMP_FORMAT'.
    This page might be of interest; I found this when searching for 'NLS_TIMESTAMP_FORMAT'
    Database Portability: Date and Timestamp Columns
    (PS The Format Into String and Scan From String functions work nicely with the correct date format specifiers. See the link below in my signature for ISO 8601 timestamp/string conversions)
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • How can I say to the ODBC Driver to ignore the double quotes (")

    I have an application that does many SELECT's to the DB, but there is no predifined case, i.e. some developers do the commands in lowercase while others do it on uppercase.
    I'm trying to solve this in the easy way, i.e. I'm trying to find a way to say to the ODBC driver: Whenever you see SELECT "column_name" from "table_name" or SELECT "COLUMN_NAME" from "TABLE_NAME", please ignore the double quotes so that these commands won't be different to the Oracle DB.
    Is there a way to do this?
    I don't want to change AAALLLL the classes. It would take me weeks.
    Thanks in advance.

    OK, thanks.
    I'm trying another approach... is it possible to ask the driver to reply a space instead of double quotes in
    ::SQLGetInfo(...,SQL_IDENTIFIER_QUOTE_CHAR)???
    That function is called on the MFC's (Microsoft Foundation Classes) in dbcore.cpp --> CDatabase::GetConnectInfo
    If it is possible to change the answer from this function (SQLGetInfo) it would solve me all my problems.

  • Excel 2007 ignores the roles configured on SSAS 2008

    Hi,
    I am facing a common problem for which I have found very useful threads but they didn't manage to help me.
    My problem is on excel report, Dimension data is not filtering correctly when I connect with user credentials for which a role is configured on the cube. Excel 2007 ignores the roles configured on SSAS 2008 and I tested with 2 different users with the same
    role configuration.
    I ensured that the user doesn't fall in the server admin role and . I started up an SQL Profiler and I ensured no  * in the list of roles of the user.  I ensured also that there is no "built-in administrators group" configured (Security\BuiltinAdminsAreServerAdmin).
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/7052f751-8478-4ab2-aba8-d250a1606e07/deny-access-to-analysis-services-cube-from-excel-2007
    Also I am planning to upgrade my Service Pack 1 to the cumulative pack Hot Fix 2710 ( KB969099 ) as it seems there are some known issues about dimension security on SSAS 2008. Do you really think it is a question of upgrade?
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/4b4e6e3c-bebe-4f81-8462-b2d0bd61ad11/dimension-attribute-security-on-ssas-2008-not-working-but-works-fine-on-2005
    However I managed to work around the issue on SSAS and on Excel as follow but it is the not the solution expected: 
    - On SSAS 2008 R2 cube browser, while testing using the role: Dimension values filtered correctly the required data 
    - On Excel: Unless the role is specified in the configuration of the connection then the data is not filtered.
    http://kevin_s_goff.typepad.com/kevin_s_goff_weblog/2009/12/1242009---testing-ssas-roles-in-excel.html
    It is really urgent,
    Many thanks

    Hello,
    I'm experiencing exactly the same issue and I can't find any solution to it.
    Were you able to solve it? If so, how did you do it?
    Thanks!!!

  • Aperture ignores the settings Picture Control of my camera

    Hello.
    I am a professional photographer. I would like to use Aperture 3 in my professional career, but I can not because of this problem: When I import files from my Nikon D300 to Aperture, the program ignores the settings Picture Control of my camera. As a result, I can not use the potential of my camera. This forces me to do extra steps that take time. The recommendation not to use the Piсture Сontrol in my camera and use the presets and settings from Aperture no good for me because I dynamically change both standard and created by myself Picture Control settings directly at the shooting.
    How to set up Aperture to read and save settings Picture Control from my camera?
    Sincerely,
    Ulyaschenkov Nikita

    I have no doubt that you would say.
    Blame Nikon?
    Will the aperture to solve this problem in the future? I hope so.
    I do not think this problem is an unsolved problem.
    Of course, if the Aperture will want to do it. If the Aperture has a desire to get better and better.

  • Export as mp3 ignores the cycle region

    When I try to export a portion of the multitrack file based on the cycle region as an mp3 file, it ignores the region and exports to the end, even though only the short clip is soloed. After export, it turns off cycle region. When I export as aiff, it honors the cycle region? Any thoughts? Anyone else experience this?
    Weird. . .
    Philip

    Hi - Im just wondering did you solve this issue? I am trying to export a selection of video as a podcast using the i/o poitns of cycle. When I export, it exports the whole video file and not the selection. Any ideas?

  • [SOLVED]makepkg was unable to build conkyforecast-bzr

    $yaourt conkyforecast
    then i enter n of package (1-3)
    after succes installing conkyforecast-2.20.1 then installing conkyforecast-bzr i allways get error messages
    sory for my bad english
    i hope u get my point
    ==> Starting build()...
    ==> Connecting to the server....
    bzr: ERROR: Already a branch: "conkyforecast".
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build conkyforecast-bzr.
    ==> Restart building conkyforecast-bzr ? [y/N]
    ==> ------------------------------------------
    ==>
    oke solved it
    i reinstall the conky, and it works
    Last edited by maput (2012-05-03 07:30:58)

    ChoK wrote:It seems like you need lib32-jack and the maintainer of lib32-portaudio forgot to add it to makedepends/depends
    Iv'e got lib32-jack already installed. And by reading the comments of the AUR link to the package ( lib32-portaudio ) they supposedly fixed the PKGBUILD too.

  • WebI Report on BEx ignoring the filter values

    Hallo experts,
    I have a Webi report on BEx query.
    We have two BEx Variables; one for Manual input and other one is a Customer Exit to calculate YTD on 0CALMONTH(Calender Month/Year).
    We've created Webi report on this Bex query.
    When we selected a value in webi prompt then it is ignoring the value and delivering all the data for previous years also.
    But when we selected the value in Bex variable then it is giving only values which we selected.
    For example:
    We have data in our cubes for 2013 and 2014.
    We selected in webi prompt JUN 2014 ------ in this case webi is delivering all the data for all the months and years (i:e JAN - DEC for 2013 and 2014)
    We selected in Bex variable JUN 2014 ----in this case Bex is delivering only values for JAN 2014 until JUN 2014 for only 2014.
    So, BEx is working as should be but not Webi.
    Any ideas to solve this Webi issues would be appreciated.
    Thanks
    Indra

    Hallo Sathish,
    When I am placing input variable in a dummy key figure, I am getting values for one month less.
    Example: i am selecting JUN 2014 and it is delivering values until MAY 2014.
    Thanks
    Indra

  • Another BlackBerry Q5 camera issue. Why is BB ignoring the problem?

    Hi all
    I love the blackberry Q5 , and appreciate the bb10 OS. Got bored of IOS and don't like the android phones...
    I was happy with it until the camera stopped working three days ago.
    I blocked all third party apps, drained the battery, security wiped twice, shut down and restarted the phone dozens of times, downloaded two camera apps... But none of this worked.
    I still get the can't change flash mode message or can't access then camera one.
    Odd thing, I tried snapchat and would get then front camera working.
    The handset is no longer under warranty .
    I'm wondering why BlackBerry is ignoring the issue, noticed many similar problems with loads of other users that had even changed the camera module.
    Any suggestions? I'm worried to change for other Q5 or Q10 as the malfunction seems quite recurrent...
    Help anyone?
    Thanks!

    Well, since the original poster of this thread fixed his already, why don't you start from the beginning and let us know what exactly the problem is and what, exactly, you've done to try and solve it.
    You replaced hardware? So, you've disassembled the device?
    How have you "restored software?"
    Provide as many details as possible.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • [SOLVED] Certain programs crash the GUI (ATI graphics card)

    Hi all,
    When I start certain programs, the GUI crashes and becomes inreadable. I can't see the text, buttons or anything. It is as if 'bricks' have been moved around.
    When I log on to a Virtual Consile, I can restart GDM, login and all is fine, untill I start the certain programs again.
    It seems to be these two programs causing the GUI to crash:
    LibreOffice (It automatically starts in the document restore mode, after the last crash - which crashes the GUI )
    Keepass
    Other programs I can use jsut fine:
    Gimp
    FireFox
    Chromium
    Eclipse
    Rhythmbox
    Banshee
    I do not know what causes this, nor where I should start looking. I've skimmed through the error logs, but I do not see anything suspecious.
    I'm running arch linux, 64 - bit, and it is fully updated, open source ati drivers.
    Where should I start looking, and what might cause this problem?
    Thank you in advance for your help.
    /Lazy_Warrior
    *Edit
    Changed the subject to solved, and added the info that I use an ATI card.
    The solution was in the following thread.
    Last edited by Lazy_Warrior (2011-02-22 18:33:50)

    Thank you for the reply. Here are the log files:
    /var/log/Xorg.0.log:
    [ 9944.626]
    X.Org X Server 1.9.4
    Release Date: 2011-02-04
    [ 9944.626] X Protocol Version 11, Revision 0
    [ 9944.626] Build Operating System: Linux 2.6.37-ARCH x86_64
    [ 9944.626] Current Operating System: Linux kkm-wom 2.6.37-ARCH #1 SMP PREEMPT Fri Feb 11 09:29:49 CET 2011 x86_64
    [ 9944.626] Kernel command line: root=/dev/disk/by-uuid/de9f4095-307d-4a81-86fb-f6c8bc244727 ro
    [ 9944.626] Build Date: 04 February 2011 09:38:18PM
    [ 9944.626]
    [ 9944.626] Current version of pixman: 0.20.2
    [ 9944.626] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 9944.626] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 9944.626] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Feb 20 21:27:35 2011
    [ 9944.626] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 9944.626] (==) No Layout section. Using the first Screen section.
    [ 9944.626] (==) No screen section available. Using defaults.
    [ 9944.626] (**) |-->Screen "Default Screen Section" (0)
    [ 9944.626] (**) | |-->Monitor "<default monitor>"
    [ 9944.627] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 9944.627] (==) Automatically adding devices
    [ 9944.627] (==) Automatically enabling devices
    [ 9944.627] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 9944.627] Entry deleted from font path.
    [ 9944.627] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 9944.627] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 9944.627] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 9944.627] (II) Loader magic: 0x7d3b20
    [ 9944.627] (II) Module ABI versions:
    [ 9944.627] X.Org ANSI C Emulation: 0.4
    [ 9944.627] X.Org Video Driver: 8.0
    [ 9944.627] X.Org XInput driver : 11.0
    [ 9944.627] X.Org Server Extension : 4.0
    [ 9944.628] (--) PCI:*(0:1:0:0) 1002:71c5:103c:30a3 rev 0, Mem @ 0xe0000000/268435456, 0xf4600000/65536, I/O @ 0x00004000/256, BIOS @ 0x????????/131072
    [ 9944.628] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 9944.628] (II) LoadModule: "extmod"
    [ 9944.628] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 9944.628] (II) Module extmod: vendor="X.Org Foundation"
    [ 9944.628] compiled for 1.9.4, module version = 1.0.0
    [ 9944.628] Module class: X.Org Server Extension
    [ 9944.628] ABI class: X.Org Server Extension, version 4.0
    [ 9944.628] (II) Loading extension MIT-SCREEN-SAVER
    [ 9944.628] (II) Loading extension XFree86-VidModeExtension
    [ 9944.628] (II) Loading extension XFree86-DGA
    [ 9944.629] (II) Loading extension DPMS
    [ 9944.629] (II) Loading extension XVideo
    [ 9944.629] (II) Loading extension XVideo-MotionCompensation
    [ 9944.629] (II) Loading extension X-Resource
    [ 9944.629] (II) LoadModule: "dbe"
    [ 9944.629] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 9944.629] (II) Module dbe: vendor="X.Org Foundation"
    [ 9944.629] compiled for 1.9.4, module version = 1.0.0
    [ 9944.629] Module class: X.Org Server Extension
    [ 9944.629] ABI class: X.Org Server Extension, version 4.0
    [ 9944.629] (II) Loading extension DOUBLE-BUFFER
    [ 9944.629] (II) LoadModule: "glx"
    [ 9944.629] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 9944.629] (II) Module glx: vendor="X.Org Foundation"
    [ 9944.629] compiled for 1.9.4, module version = 1.0.0
    [ 9944.629] ABI class: X.Org Server Extension, version 4.0
    [ 9944.629] (==) AIGLX enabled
    [ 9944.629] (II) Loading extension GLX
    [ 9944.629] (II) LoadModule: "record"
    [ 9944.629] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 9944.630] (II) Module record: vendor="X.Org Foundation"
    [ 9944.630] compiled for 1.9.4, module version = 1.13.0
    [ 9944.630] Module class: X.Org Server Extension
    [ 9944.630] ABI class: X.Org Server Extension, version 4.0
    [ 9944.630] (II) Loading extension RECORD
    [ 9944.630] (II) LoadModule: "dri"
    [ 9944.630] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 9944.630] (II) Module dri: vendor="X.Org Foundation"
    [ 9944.630] compiled for 1.9.4, module version = 1.0.0
    [ 9944.630] ABI class: X.Org Server Extension, version 4.0
    [ 9944.630] (II) Loading extension XFree86-DRI
    [ 9944.630] (II) LoadModule: "dri2"
    [ 9944.630] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 9944.630] (II) Module dri2: vendor="X.Org Foundation"
    [ 9944.630] compiled for 1.9.4, module version = 1.2.0
    [ 9944.630] ABI class: X.Org Server Extension, version 4.0
    [ 9944.630] (II) Loading extension DRI2
    [ 9944.630] (==) Matched ati as autoconfigured driver 0
    [ 9944.630] (==) Matched vesa as autoconfigured driver 1
    [ 9944.630] (==) Matched fbdev as autoconfigured driver 2
    [ 9944.630] (==) Assigned the driver to the xf86ConfigLayout
    [ 9944.630] (II) LoadModule: "ati"
    [ 9944.630] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 9944.630] (II) Module ati: vendor="X.Org Foundation"
    [ 9944.631] compiled for 1.9.3.901, module version = 6.14.0
    [ 9944.631] Module class: X.Org Video Driver
    [ 9944.631] ABI class: X.Org Video Driver, version 8.0
    [ 9944.631] (II) LoadModule: "radeon"
    [ 9944.631] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 9944.631] (II) Module radeon: vendor="X.Org Foundation"
    [ 9944.631] compiled for 1.9.3.901, module version = 6.14.0
    [ 9944.631] Module class: X.Org Video Driver
    [ 9944.631] ABI class: X.Org Video Driver, version 8.0
    [ 9944.631] (II) LoadModule: "vesa"
    [ 9944.631] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 9944.631] (II) Module vesa: vendor="X.Org Foundation"
    [ 9944.631] compiled for 1.9.0, module version = 2.3.0
    [ 9944.631] Module class: X.Org Video Driver
    [ 9944.631] ABI class: X.Org Video Driver, version 8.0
    [ 9944.631] (II) LoadModule: "fbdev"
    [ 9944.631] (WW) Warning, couldn't open module fbdev
    [ 9944.632] (II) UnloadModule: "fbdev"
    [ 9944.632] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 9944.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 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, 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, 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 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 5700 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, 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, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS
    [ 9944.639] (II) VESA: driver for VESA chipsets: vesa
    [ 9944.639] (++) using VT number 8
    [ 9944.645] (II) [KMS] Kernel modesetting enabled.
    [ 9944.645] (WW) Falling back to old probe method for vesa
    [ 9944.645] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 9944.645] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 9944.646] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 9944.646] (==) RADEON(0): Default visual is TrueColor
    [ 9944.646] (==) RADEON(0): RGB weight 888
    [ 9944.646] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 9944.646] (--) RADEON(0): Chipset: "ATI Mobility Radeon X1600" (ChipID = 0x71c5)
    [ 9944.646] (II) RADEON(0): PCIE card detected
    [ 9944.646] drmOpenDevice: node name is /dev/dri/card0
    [ 9944.646] drmOpenDevice: open result is 8, (OK)
    [ 9944.646] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 9944.646] drmOpenDevice: node name is /dev/dri/card0
    [ 9944.646] drmOpenDevice: open result is 8, (OK)
    [ 9944.646] drmOpenByBusid: drmOpenMinor returns 8
    [ 9944.646] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 9944.646] (II) RADEON(0): KMS Color Tiling: enabled
    [ 9944.646] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 9944.686] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 9944.686] (II) RADEON(0): Output LVDS has no monitor section
    [ 9944.726] (II) RADEON(0): Output S-video has no monitor section
    [ 9944.730] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 9944.769] (II) RADEON(0): EDID for output VGA-0
    [ 9944.769] (II) RADEON(0): EDID for output LVDS
    [ 9944.769] (II) RADEON(0): Manufacturer: CMO Model: 1520 Serial#: 0
    [ 9944.769] (II) RADEON(0): Year: 1990 Week: 0
    [ 9944.769] (II) RADEON(0): EDID Version: 1.3
    [ 9944.769] (II) RADEON(0): Digital Display Input
    [ 9944.769] (II) RADEON(0): Max Image Size [cm]: horiz.: 33 vert.: 20
    [ 9944.769] (II) RADEON(0): Gamma: 2.20
    [ 9944.769] (II) RADEON(0): No DPMS capabilities specified
    [ 9944.769] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 9944.769] (II) RADEON(0): First detailed timing is preferred mode
    [ 9944.769] (II) RADEON(0): redX: 0.626 redY: 0.354 greenX: 0.294 greenY: 0.589
    [ 9944.769] (II) RADEON(0): blueX: 0.144 blueY: 0.097 whiteX: 0.309 whiteY: 0.329
    [ 9944.769] (II) RADEON(0): Manufacturer's mask: 0
    [ 9944.769] (II) RADEON(0): Supported detailed timing:
    [ 9944.769] (II) RADEON(0): clock: 119.0 MHz Image Size: 331 x 207 mm
    [ 9944.769] (II) RADEON(0): h_active: 1680 h_sync: 1728 h_sync_end 1760 h_blank_end 1840 h_border: 0
    [ 9944.769] (II) RADEON(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1080 v_border: 0
    [ 9944.769] (II) RADEON(0): N154Z1-L01
    [ 9944.769] (II) RADEON(0): CMO
    [ 9944.769] (II) RADEON(0): N154Z1-L01
    [ 9944.769] (II) RADEON(0): EDID (in hex):
    [ 9944.769] (II) RADEON(0): 00ffffffffffff000daf201500000000
    [ 9944.769] (II) RADEON(0): 00000103802114780a77f1a05a4b9624
    [ 9944.769] (II) RADEON(0): 184f5400000001010101010101010101
    [ 9944.769] (II) RADEON(0): 0101010101017c2e90a0601a1e403020
    [ 9944.769] (II) RADEON(0): 36004bcf10000018000000fe004e3135
    [ 9944.770] (II) RADEON(0): 345a312d4c30310a2020000000fe0043
    [ 9944.770] (II) RADEON(0): 4d4f0a202020202020202020000000fe
    [ 9944.770] (II) RADEON(0): 004e3135345a312d4c30310a202000fd
    [ 9944.770] (II) RADEON(0): Printing probed modes for output LVDS
    [ 9944.770] (II) RADEON(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 -hsync -vsync (64.7 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "1400x1050"x60.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "1280x1024"x59.9 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync (63.7 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "1280x960"x59.9 101.25 1280 1360 1488 1696 960 963 967 996 -hsync +vsync (59.7 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "1280x854"x59.9 89.25 1280 1352 1480 1680 854 857 867 887 -hsync +vsync (53.1 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "1152x768"x59.8 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "848x480"x59.7 31.50 848 872 952 1056 480 483 493 500 -hsync +vsync (29.8 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "720x480"x59.7 26.75 720 744 808 896 480 483 493 500 -hsync +vsync (29.9 kHz)
    [ 9944.770] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 9944.809] (II) RADEON(0): EDID for output S-video
    [ 9944.813] (II) RADEON(0): EDID for output DVI-0
    [ 9944.813] (II) RADEON(0): Output VGA-0 disconnected
    [ 9944.813] (II) RADEON(0): Output LVDS connected
    [ 9944.813] (II) RADEON(0): Output S-video disconnected
    [ 9944.813] (II) RADEON(0): Output DVI-0 disconnected
    [ 9944.813] (II) RADEON(0): Using exact sizes for initial modes
    [ 9944.813] (II) RADEON(0): Output LVDS using initial mode 1680x1050
    [ 9944.813] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 9944.813] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:f8d4000
    [ 9944.813] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 9944.813] (==) RADEON(0): DPI set to (96, 96)
    [ 9944.813] (II) Loading sub module "fb"
    [ 9944.813] (II) LoadModule: "fb"
    [ 9944.813] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 9944.813] (II) Module fb: vendor="X.Org Foundation"
    [ 9944.813] compiled for 1.9.4, module version = 1.0.0
    [ 9944.813] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 9944.813] (II) Loading sub module "ramdac"
    [ 9944.814] (II) LoadModule: "ramdac"
    [ 9944.814] (II) Module "ramdac" already built-in
    [ 9944.814] (II) Loading sub module "exa"
    [ 9944.814] (II) LoadModule: "exa"
    [ 9944.814] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 9944.814] (II) Module exa: vendor="X.Org Foundation"
    [ 9944.814] compiled for 1.9.4, module version = 2.5.0
    [ 9944.814] ABI class: X.Org Video Driver, version 8.0
    [ 9944.814] (II) UnloadModule: "vesa"
    [ 9944.814] (II) Unloading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 9944.814] (--) Depth 24 pixmap format is 32 bpp
    [ 9944.814] (II) RADEON(0): [DRI2] Setup complete
    [ 9944.814] (II) RADEON(0): [DRI2] DRI driver: r300
    [ 9944.814] (II) RADEON(0): Front buffer size: 7128K
    [ 9944.814] (II) RADEON(0): VRAM usage limit set to 222904K
    [ 9944.814] (==) RADEON(0): Backing store disabled
    [ 9944.814] (II) RADEON(0): Direct rendering enabled
    [ 9944.814] (II) RADEON(0): Render acceleration enabled for R300/R400/R500 type cards.
    [ 9944.814] (II) RADEON(0): Setting EXA maxPitchBytes
    [ 9944.814] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 9944.814] (II) EXA(0): Driver registered support for the following operations:
    [ 9944.814] (II) Solid
    [ 9944.814] (II) Copy
    [ 9944.814] (II) Composite (RENDER acceleration)
    [ 9944.814] (II) UploadToScreen
    [ 9944.814] (II) DownloadFromScreen
    [ 9944.814] (II) RADEON(0): Acceleration enabled
    [ 9944.814] (==) RADEON(0): DPMS enabled
    [ 9944.814] (==) RADEON(0): Silken mouse enabled
    [ 9944.814] (II) RADEON(0): Set up textured video
    [ 9944.815] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 9944.815] (--) RandR disabled
    [ 9944.815] (II) Initializing built-in extension Generic Event Extension
    [ 9944.815] (II) Initializing built-in extension SHAPE
    [ 9944.815] (II) Initializing built-in extension MIT-SHM
    [ 9944.815] (II) Initializing built-in extension XInputExtension
    [ 9944.815] (II) Initializing built-in extension XTEST
    [ 9944.815] (II) Initializing built-in extension BIG-REQUESTS
    [ 9944.815] (II) Initializing built-in extension SYNC
    [ 9944.815] (II) Initializing built-in extension XKEYBOARD
    [ 9944.815] (II) Initializing built-in extension XC-MISC
    [ 9944.815] (II) Initializing built-in extension SECURITY
    [ 9944.815] (II) Initializing built-in extension XINERAMA
    [ 9944.815] (II) Initializing built-in extension XFIXES
    [ 9944.815] (II) Initializing built-in extension RENDER
    [ 9944.815] (II) Initializing built-in extension RANDR
    [ 9944.815] (II) Initializing built-in extension COMPOSITE
    [ 9944.815] (II) Initializing built-in extension DAMAGE
    [ 9944.824] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 9944.824] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 9944.824] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 9944.824] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 9944.824] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 9944.825] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/r300_dri.so
    [ 9944.825] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 9944.825] (II) RADEON(0): Setting screen physical size to 444 x 277
    [ 9944.949] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 9944.949] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 9944.949] (II) LoadModule: "evdev"
    [ 9944.950] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 9944.950] (II) Module evdev: vendor="X.Org Foundation"
    [ 9944.950] compiled for 1.9.4, module version = 2.6.0
    [ 9944.950] Module class: X.Org XInput Driver
    [ 9944.950] ABI class: X.Org XInput driver, version 11.0
    [ 9944.950] (**) Power Button: always reports core events
    [ 9944.950] (**) Power Button: Device: "/dev/input/event3"
    [ 9944.959] (--) Power Button: Found keys
    [ 9944.959] (II) Power Button: Configuring as keyboard
    [ 9944.959] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 9944.959] (**) Option "xkb_rules" "evdev"
    [ 9944.959] (**) Option "xkb_model" "evdev"
    [ 9944.959] (**) Option "xkb_layout" "dk"
    [ 9944.988] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
    [ 9944.988] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 9944.988] (**) Video Bus: always reports core events
    [ 9944.988] (**) Video Bus: Device: "/dev/input/event5"
    [ 9944.995] (--) Video Bus: Found keys
    [ 9944.995] (II) Video Bus: Configuring as keyboard
    [ 9944.995] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    [ 9944.995] (**) Option "xkb_rules" "evdev"
    [ 9944.995] (**) Option "xkb_model" "evdev"
    [ 9944.995] (**) Option "xkb_layout" "dk"
    [ 9945.000] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
    [ 9945.000] (II) No input driver/identifier specified (ignoring)
    [ 9945.001] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
    [ 9945.001] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 9945.001] (**) Sleep Button: always reports core events
    [ 9945.001] (**) Sleep Button: Device: "/dev/input/event1"
    [ 9945.009] (--) Sleep Button: Found keys
    [ 9945.009] (II) Sleep Button: Configuring as keyboard
    [ 9945.009] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    [ 9945.009] (**) Option "xkb_rules" "evdev"
    [ 9945.009] (**) Option "xkb_model" "evdev"
    [ 9945.009] (**) Option "xkb_layout" "dk"
    [ 9945.011] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
    [ 9945.011] (II) No input driver/identifier specified (ignoring)
    [ 9945.019] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 9945.019] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 9945.019] (**) AT Translated Set 2 keyboard: always reports core events
    [ 9945.019] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 9945.039] (--) AT Translated Set 2 keyboard: Found keys
    [ 9945.039] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 9945.039] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    [ 9945.039] (**) Option "xkb_rules" "evdev"
    [ 9945.039] (**) Option "xkb_model" "evdev"
    [ 9945.039] (**) Option "xkb_layout" "dk"
    [ 9945.040] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event8)
    [ 9945.040] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 9945.040] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 9945.040] (II) LoadModule: "synaptics"
    [ 9945.040] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 9945.040] (II) Module synaptics: vendor="X.Org Foundation"
    [ 9945.040] compiled for 1.9.2, module version = 1.3.0
    [ 9945.040] Module class: X.Org XInput Driver
    [ 9945.040] ABI class: X.Org XInput driver, version 11.0
    [ 9945.040] (II) Synaptics touchpad driver version 1.3.0
    [ 9945.040] (**) Option "Device" "/dev/input/event8"
    [ 9945.162] (--) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    [ 9945.162] (--) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    [ 9945.162] (--) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 9945.162] (--) SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 9945.162] (--) SynPS/2 Synaptics TouchPad: buttons: left right middle double triple
    [ 9945.162] (**) Option "TapButton1" "1"
    [ 9945.162] (**) Option "TapButton2" "2"
    [ 9945.162] (**) Option "TapButton3" "3"
    [ 9945.269] (--) SynPS/2 Synaptics TouchPad: touchpad found
    [ 9945.269] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 9945.322] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    [ 9945.322] (**) SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 9945.322] (**) SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    [ 9945.322] (**) SynPS/2 Synaptics TouchPad: AccelFactor is now 0.040
    [ 9945.322] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 9945.322] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 9945.322] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 9945.322] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 9945.402] (--) SynPS/2 Synaptics TouchPad: touchpad found
    [ 9945.402] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 9945.402] (II) No input driver/identifier specified (ignoring)
    [ 9945.403] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/event10)
    [ 9945.403] (**) PS/2 Generic Mouse: Applying InputClass "evdev pointer catchall"
    [ 9945.403] (**) PS/2 Generic Mouse: always reports core events
    [ 9945.403] (**) PS/2 Generic Mouse: Device: "/dev/input/event10"
    [ 9945.429] (--) PS/2 Generic Mouse: Found 3 mouse buttons
    [ 9945.429] (--) PS/2 Generic Mouse: Found relative axes
    [ 9945.429] (--) PS/2 Generic Mouse: Found x and y relative axes
    [ 9945.429] (II) PS/2 Generic Mouse: Configuring as mouse
    [ 9945.429] (**) PS/2 Generic Mouse: YAxisMapping: buttons 4 and 5
    [ 9945.429] (**) PS/2 Generic Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 9945.429] (II) XINPUT: Adding extended input device "PS/2 Generic Mouse" (type: MOUSE)
    [ 9945.429] (**) PS/2 Generic Mouse: (accel) keeping acceleration scheme 1
    [ 9945.429] (**) PS/2 Generic Mouse: (accel) acceleration profile 0
    [ 9945.429] (**) PS/2 Generic Mouse: (accel) acceleration factor: 2.000
    [ 9945.429] (**) PS/2 Generic Mouse: (accel) acceleration threshold: 4
    [ 9945.429] (II) PS/2 Generic Mouse: initialized for relative axes.
    [ 9945.429] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/mouse1)
    [ 9945.429] (II) No input driver/identifier specified (ignoring)
    [ 9945.430] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/event6)
    [ 9945.430] (II) No input driver/identifier specified (ignoring)
    [ 9945.430] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/js0)
    [ 9945.430] (II) No input driver/identifier specified (ignoring)
    [ 9945.430] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 9945.430] (II) No input driver/identifier specified (ignoring)
    [ 9945.432] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event7)
    [ 9945.432] (**) HP WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 9945.432] (**) HP WMI hotkeys: always reports core events
    [ 9945.432] (**) HP WMI hotkeys: Device: "/dev/input/event7"
    [ 9945.455] (--) HP WMI hotkeys: Found keys
    [ 9945.455] (II) HP WMI hotkeys: Configuring as keyboard
    [ 9945.455] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD)
    [ 9945.455] (**) Option "xkb_rules" "evdev"
    [ 9945.455] (**) Option "xkb_model" "evdev"
    [ 9945.455] (**) Option "xkb_layout" "dk"
    [ 9945.686] (II) RADEON(0): EDID vendor "CMO", prod id 5408
    [ 9945.686] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 9945.686] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 -hsync -vsync (64.7 kHz)
    [ 9945.772] (II) RADEON(0): EDID vendor "CMO", prod id 5408
    [ 9945.772] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 9945.772] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 -hsync -vsync (64.7 kHz)
    [ 9945.859] (II) RADEON(0): EDID vendor "CMO", prod id 5408
    [ 9945.859] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 9945.859] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 -hsync -vsync (64.7 kHz)
    [ 9945.946] (II) RADEON(0): EDID vendor "CMO", prod id 5408
    [ 9945.946] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 9945.946] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 -hsync -vsync (64.7 kHz)
    [ 9951.719] (II) RADEON(0): EDID vendor "CMO", prod id 5408
    [ 9951.719] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 9951.719] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 -hsync -vsync (64.7 kHz)
    [ 9951.806] (II) RADEON(0): EDID vendor "CMO", prod id 5408
    [ 9951.806] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 9951.806] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 -hsync -vsync (64.7 kHz)
    [ 9951.892] (II) RADEON(0): EDID vendor "CMO", prod id 5408
    [ 9951.892] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 9951.892] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 -hsync -vsync (64.7 kHz)
    [ 9951.979] (II) RADEON(0): EDID vendor "CMO", prod id 5408
    [ 9951.979] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 9951.979] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 -hsync -vsync (64.7 kHz)
    [ 9952.629] (II) RADEON(0): EDID vendor "CMO", prod id 5408
    [ 9952.629] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 9952.629] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 -hsync -vsync (64.7 kHz)
    ~/.xsession-errors:
    /etc/gdm/Xsession: Beginning session setup...
    /etc/gdm/Xsession: Setup done, will execute: /usr/bin/ssh-agent -- gnome-session
    gnome-session[10384]: EggSMClient-WARNING: Invalid Version string '0.9.4' in /home/kkm/.config/autostart/Tilda.desktop
    gnome-session[10384]: WARNING: Could not parse desktop file /home/kkm/.config/autostart/xfce4-settings-helper-autostart.desktop: Key file does not have key 'Name'
    gnome-session[10384]: WARNING: could not read /home/kkm/.config/autostart/xfce4-settings-helper-autostart.desktop
    gnome-session[10384]: WARNING: Could not parse desktop file /home/kkm/.config/autostart/xfconf-migration-4.6.desktop: Key file does not have key 'Name'
    gnome-session[10384]: WARNING: could not read /home/kkm/.config/autostart/xfconf-migration-4.6.desktop
    GNOME_KEYRING_CONTROL=/tmp/keyring-TQ9ltx
    SSH_AUTH_SOCK=/tmp/keyring-TQ9ltx/ssh
    GNOME_KEYRING_CONTROL=/tmp/keyring-TQ9ltx
    SSH_AUTH_SOCK=/tmp/keyring-TQ9ltx/ssh
    GPG_AGENT_INFO=/tmp/keyring-TQ9ltx/gpg:0:1
    GNOME_KEYRING_CONTROL=/tmp/keyring-TQ9ltx
    SSH_AUTH_SOCK=/tmp/keyring-TQ9ltx/ssh
    GPG_AGENT_INFO=/tmp/keyring-TQ9ltx/gpg:0:1
    GNOME_KEYRING_CONTROL=/tmp/keyring-TQ9ltx
    SSH_AUTH_SOCK=/tmp/keyring-TQ9ltx/ssh
    GPG_AGENT_INFO=/tmp/keyring-TQ9ltx/gpg:0:1
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmXsmpServer: accept_ice_connection()
    ** (gnome-session:10384): DEBUG: GsmXsmpServer: auth_ice_connection()
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Setting up new connection
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: New client '0x15d2950 []'
    ** (gnome-session:10384): DEBUG: GsmStore: Adding object id /org/gnome/SessionManager/Client2 to store
    ** (gnome-session:10384): DEBUG: GsmManager: Client added: /org/gnome/SessionManager/Client2
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Initializing client 0x15d2950 []
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Client '0x15d2950 []' received RegisterClient(10d9e439dccd4de5d5129823366265066300000103840032)
    ** (gnome-session:10384): DEBUG: GsmManager: Adding new client 10d9e439dccd4de5d5129823366265066300000103840032 to session
    ** (gnome-session:10384): DEBUG: GsmManager: ending phase WINDOW_MANAGER
    ** (gnome-session:10384): DEBUG: GsmManager: starting phase PANEL
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App36
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting gnome-panel.desktop: command=gnome-panel startup-id=10d9e439dccd4de5d5129823366265127600000103840033
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10432
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Sending RegisterClientReply to '0x15d2950 [10d9e439dccd4de5d5129823366265066300000103840032]'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Set properties from client '0x15d2950 [10d9e439dccd4de5d5129823366265066300000103840032]'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Program = 'metacity'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: UserID = 'kkm'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: RestartStyleHint = 2
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: ProcessID = '10422'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: CurrentDirectory = '/home/kkm'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: _GSM_Priority = 20
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmXsmpServer: accept_ice_connection()
    ** (gnome-session:10384): DEBUG: GsmXsmpServer: auth_ice_connection()
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Setting up new connection
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: New client '0x15d29f0 []'
    ** (gnome-session:10384): DEBUG: GsmStore: Adding object id /org/gnome/SessionManager/Client3 to store
    ** (gnome-session:10384): DEBUG: GsmManager: Client added: /org/gnome/SessionManager/Client3
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Initializing client 0x15d29f0 []
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Client '0x15d29f0 []' received RegisterClient(10d9e439dccd4de5d5129823366265127600000103840033)
    ** (gnome-session:10384): DEBUG: GsmManager: Adding new client 10d9e439dccd4de5d5129823366265127600000103840033 to session
    ** (gnome-session:10384): DEBUG: GsmManager: ending phase PANEL
    ** (gnome-session:10384): DEBUG: GsmManager: starting phase DESKTOP
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App37
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting nautilus.desktop: command=nautilus startup-id=10d9e439dccd4de5d5129823366265168800000103840034
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10448
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Sending RegisterClientReply to '0x15d29f0 [10d9e439dccd4de5d5129823366265127600000103840033]'
    ** (gnome-session:10384): DEBUG: GsmXsmpServer: accept_ice_connection()
    ** (gnome-session:10384): DEBUG: GsmXsmpServer: auth_ice_connection()
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Setting up new connection
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: New client '0x15d2a90 []'
    ** (gnome-session:10384): DEBUG: GsmStore: Adding object id /org/gnome/SessionManager/Client4 to store
    ** (gnome-session:10384): DEBUG: GsmManager: Client added: /org/gnome/SessionManager/Client4
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Initializing client 0x15d2a90 []
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Client '0x15d2a90 []' received RegisterClient(10d9e439dccd4de5d5129823366265168800000103840034)
    ** (gnome-session:10384): DEBUG: GsmManager: Adding new client 10d9e439dccd4de5d5129823366265168800000103840034 to session
    ** (gnome-session:10384): DEBUG: GsmManager: ending phase DESKTOP
    ** (gnome-session:10384): DEBUG: GsmManager: starting phase APPLICATION
    ** (gnome-session:10384): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App12
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App19
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting gnome-power-manager.desktop: command=gnome-power-manager startup-id=10d9e439dccd4de5d5129823366264736100000103840016
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10452
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App16
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting wicd-tray.desktop: command=wicd-gtk startup-id=10d9e439dccd4de5d5129823366264682200000103840013
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10453
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App13
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting polkit-gnome-authentication-agent-1.desktop: command=/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 startup-id=10d9e439dccd4de5d5129823366264649200000103840010
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10454
    ** (gnome-session:10384): DEBUG: app /org/gnome/SessionManager/App20 is disabled by Hidden
    ** (gnome-session:10384): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App20
    ** (gnome-session:10384): DEBUG: app /org/gnome/SessionManager/App21 not installed or not for GNOME
    ** (gnome-session:10384): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App21
    ** (gnome-session:10384): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App22
    ** (gnome-session:10384): DEBUG: app /org/gnome/SessionManager/App1 is disabled by X-GNOME-Autostart-enabled
    ** (gnome-session:10384): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App1
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App2
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting Tilda.desktop: command=tilda startup-id=10d9e439dccd4de5d5129823366264466100000103840001
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10458
    ** (gnome-session:10384): DEBUG: app /org/gnome/SessionManager/App25 not installed or not for GNOME
    ** (gnome-session:10384): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App25
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App4
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting skype.desktop: command=skype startup-id=10d9e439dccd4de5d5129823366264485900000103840002
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10459
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App5
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting alunn.desktop: command=alunn startup-id=10d9e439dccd4de5d5129823366264494000000103840003
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10465
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App6
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting pidgin.desktop: command=pidgin startup-id=10d9e439dccd4de5d5129823366264502300000103840004
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10466
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App7
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting dropbox.desktop: command=/opt/dropbox/dropboxd startup-id=10d9e439dccd4de5d5129823366264512800000103840005
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10467
    ** (gnome-session:10384): DEBUG: app /org/gnome/SessionManager/App8 is disabled by X-GNOME-Autostart-enabled
    ** (gnome-session:10384): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App8
    ** (gnome-session:10384): DEBUG: app /org/gnome/SessionManager/App28 is disabled by Hidden
    ** (gnome-session:10384): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App28
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App27
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting gnome-screensaver.desktop: command=gnome-screensaver startup-id=10d9e439dccd4de5d5129823366264886000000103840024
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10468
    ** (gnome-session:10384): DEBUG: app /org/gnome/SessionManager/App24 not installed or not for GNOME
    ** (gnome-session:10384): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App24
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App23
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting xfconf-migration-4.6.desktop: command=/usr/lib/xfce4/xfconf-migration/xfconf-migration-4.6.pl startup-id=10d9e439dccd4de5d5129823366264820300000103840020
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10472
    ** (gnome-session:10384): DEBUG: app /org/gnome/SessionManager/App10 is disabled by X-GNOME-Autostart-enabled
    ** (gnome-session:10384): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App10
    ** (gnome-session:10384): DEBUG: Starting app: /org/gnome/SessionManager/App30
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: starting gdu-notification-daemon.desktop: command=/usr/lib/gnome-disk-utility/gdu-notification-daemon startup-id=10d9e439dccd4de5d5129823366264939200000103840027
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: started pid:10476
    ** (gnome-session:10384): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App11
    ** (gnome-session:10384): DEBUG: GsmManager: ending phase APPLICATION
    ** (gnome-session:10384): DEBUG: GsmManager: starting phase RUNNING
    ** (gnome-session:10384): DEBUG: GsmPresence: adding idle watch
    ** (gnome-session:10384): DEBUG: GSIdleMonitor: creating new alarm for positive transition wait=300000
    ** (gnome-session:10384): DEBUG: GSIdleMonitor: creating new alarm for negative transition wait=300000
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Sending RegisterClientReply to '0x15d2a90 [10d9e439dccd4de5d5129823366265168800000103840034]'
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=Get
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=RegisterClient
    ** (gnome-session:10384): DEBUG: GsmManager: RegisterClient 10d9e439dccd4de5d5129823366264736100000103840016
    ** (gnome-session:10384): DEBUG: GsmManager: Adding new client 10d9e439dccd4de5d5129823366264736100000103840016 to session
    ** (gnome-session:10384): DEBUG: uid = 1000
    ** (gnome-session:10384): DEBUG: pid = 10452
    ** (gnome-session:10384): DEBUG: GsmStore: Adding object id /org/gnome/SessionManager/Client5 to store
    ** (gnome-session:10384): DEBUG: GsmManager: Client added: /org/gnome/SessionManager/Client5
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Set properties from client '0x15d29f0 [10d9e439dccd4de5d5129823366265127600000103840033]'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Program = 'gnome-panel'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: CloneCommand = 'gnome-panel'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: RestartCommand = 'gnome-panel' '--sm-client-id' '10d9e439dccd4de5d5129823366265127600000103840033'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: UserID = 'kkm'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: ProcessID = '10432'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: RestartStyleHint = 2
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Set properties from client '0x15d29f0 [gnome-panel 10d9e439dccd4de5d5129823366265127600000103840033]'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: _GSM_DesktopFile = 'file:///usr/share/applications/gnome-panel.desktop'
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=Get
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=Get
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=Get
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=Get
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: (pid:10468) done (status:0)
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    MCS->Xfconf settings migration complete
    ** (gnome-session:10384): DEBUG: GsmAutostartApp: (pid:10472) done (status:0)
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** Message: Initializing gksu extension...
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Set properties from client '0x15d2a90 [10d9e439dccd4de5d5129823366265168800000103840034]'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Program = 'nautilus'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: CloneCommand = 'nautilus'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: RestartCommand = 'nautilus' '--sm-client-id' '10d9e439dccd4de5d5129823366265168800000103840034'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: UserID = 'kkm'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: ProcessID = '10448'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: RestartStyleHint = 2
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: Set properties from client '0x15d2a90 [nautilus 10d9e439dccd4de5d5129823366265168800000103840034]'
    ** (gnome-session:10384): DEBUG: GsmXSMPClient: _GSM_DesktopFile = 'file:///usr/share/applications/nautilus.desktop'
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=CanShutdown
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=CanShutdown
    ** (gnome-session:10384): DEBUG: GsmManager: CanShutdown called
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10384): DEBUG: Gsm

  • HT2357 So how does this work on Mountain Lion? I cannot seem to ignore the iTunes 11 updates, which now seem to appear every 5 minutes!!

    So how does this work on Mountain Lion? I cannot seem to ignore the iTunes 11 updates, which now seem to appear every 5 minutes!!

    Fantastic!  Didn't work at first so restarted App store and tried again.  This time it asked 'ignore update'.  All gone!

  • How to create an XSD for file adaptor which will ignore the records that are not required.

    Hi All,
       I have a requirement, the Fixed Length file contains
    30013742387462382938742      82347023984623087   
    30037348237  983743  9837423098  98347 
    10108472398   98034702398409238 9838472398   09823409238
    300163527 387462398746 38746293874693746324763
    101037642873643 37438724683746837648 873648736
    200138743986493874398
    2002738469837246
    10003784629837469283746937463987469387
    I need to select only the records that startswith 3001 and 3003 which are of different types and ignore the remaining records like 1010,2001,2002,1000.
    Can any one help me on this.

    You can make use of "conditionValue" or "startsWith" attributes while designing you native XSD.
    Check this example - Native Format Builder Wizard - 11g Release 1 (11.1.1.6.3) for better understanding.

Maybe you are looking for

  • Satellite L875-12J: Win 8.1 upgrade - FN brightness key not operating

    After Windows 8.1 upgrade the Function keys for brightness are not operating. I've downloaded and installed all new software including that for the function keys without result. Brightness is not working in power plans or in change pc seetings. PS. F

  • OS 8.1 - Trying to partition an external scsi drive and backup data.

    Have an Apple PowerMac 6000 series minitower at work. It runs a program called 4D, that is a database we use to catalog images. Since I've been with the company, there has been no backup of the database, as an external scsi drive had died and never b

  • ORACLE EXPRESS EDITION ON WINDOWS VISTA NOT WORKING

    I HAVE WINDOWS VISTA AND I TRIED TO INSTALL ORACLE EXPRESS EDITION.WHEN I GO TO THE DATABASE HOME PAGE IT GOES TO THE FOLLOWING URL http://127.0.0.1:8080/apex AND IN INTERNET EXPLORER I GET THE FOLLOWING ERROR Internet Explorer cannot display the web

  • Problem to download contacts from 6021 to car thro...

    Hello, I face a problem with my new car (Renault Laguna). After succeeded to connect my 6021 to the Navigation hand free system, I can use properly the phone to call and receive call, but I did not find the way to download my contacts. The car system

  • Phones compatible for prepaid plans

    My Samsung intensity is messing up. And I'm wondering if I get a used phone from a friend if it would work on the prepaid plan. What phones can be used besides the original prepaid phones?