Help with Presence Server 9.0 and Compliance Logging to Postgres

I recently got Presence IM up and running, version, 9.0.1, using Jabber for Windows 9.1.1.  I am required to log all conversations so I stood up a postgres server, version 9.1.  I am not having any success with getting messages to log however. 
I have gone through the database deployment guide, along with the IM guide and the regular deployment guide that has some of the persistent chat stuff in it. 
Presence has created tables and did log some of the persistent chat stuff I did using CUPC 8.6 so I know the connection is working.  The 'jm' table was created so I know the connection for compliance is good as well.  I am just not sure what I am missing as to why it wont log conversations.
I have gone through the guides a couple times each and verified everything was done.  I am not seeing any errors in the postgres log files.  I see Presence connect and then disconnect right away. 
Any help or advice with log files or where to look next would be greatly appreciated.

I checked the conf file and it matches what you recommended.
I then turned on trace logging, restarted the message archiver, ensured the external database screen show it could connect and tried sending some IM's.  The logs are below.
Still, no tables have any entries. 
07:48:05.470 HDR|04/08/2013 MA_1,StandAloneCluster4e198,x-x-x-x,Detailed,9.0.1.10000-21
07:48:05.470 |Tracing initialized
07:48:05.470 |b7e7fb90| debug| MAService.cpp:206 Got db config. Configuring.
07:48:05.506 |b7e7fb90| info| ODBCConnection.cpp:202 connect dsn:afde2fdb-8cfb-4fa4-bd39-29a086c432d7 username:tcuser type:2
07:48:05.564 |b7e7fb90| debug| MAService.cpp:246 Finished DB Config.
07:48:05.564 |b7e7fb90| info| MA Service No database section found in regular config. Fetching global config from the router.
07:48:05.564 |b7e7fb90| debug| JAXConnection.cpp:1453 JAXConnection::_setState state=3 prev_state=2
07:48:05.565 |b7e7fb90| debug| JAXConnection.cpp:1230 JAXConnection::_setState state=2 prev_state=3
07:48:05.566 |b7e7fb90| debug| metrics Get Interval Record: record_id('0')
07:48:05.566 |b7e7fb90| debug| MAService.cpp:314 MAService::onConfig _state 1
07:48:05.566 |b7e7fb90| debug| MAService.cpp:271 MAService::_configStats found ma-counters
07:48:05.566 |b7e7fb90| debug| metrics Added field 'packets-received' to record 'ma-counters'
07:48:05.566 |b7e7fb90| debug| metrics Added field 'packets-sent' to record 'ma-counters'
07:48:05.566 |b7e7fb90| debug| metrics Added field 'successful-db-writes' to record 'ma-counters'
07:48:05.566 |b7e7fb90| debug| metrics Added field 'failed-db-writes' to record 'ma-counters'
07:48:05.566 |b7e7fb90| debug| metrics Added field 'packets-dropped' to record 'ma-counters'
07:48:05.566 |b7e7fb90| debug| metrics Added field 'db-queue-size' to record 'ma-counters'
07:48:05.566 |b7e7fb90| debug| metrics Record registered: timeout(60), from('ma-1.x-x-x-x'), namespace('ma-counters'), timer_id(5), record_id(0)
07:48:05.566 |b7e7fb90| debug| JAXConnection.cpp:1115 JAXConnection::_setState state=4 prev_state=2
07:48:05.566 |b7e7fb90| info| MA Service Message Archiver is connected to the router.
07:53:06.802 |b4607b90| debug| ConnectionPool.cpp:98 ConnectionPool::_heartbeat_cb
07:58:08.809 |b4607b90| debug| ConnectionPool.cpp:98 ConnectionPool::_heartbeat_cb

Similar Messages

  • Help with if statement in cursor and for loop to get output

    I have the following cursor and and want to use if else statement to get the output. The cursor is working fine. What i need help with is how to use and if else statement to only get the folderrsn that have not been updated in the last 30 days. If you look at the talbe below my select statement is showing folderrs 291631 was updated only 4 days ago and folderrsn 322160 was also updated 4 days ago.
    I do not want these two to appear in my result set. So i need to use if else so that my result only shows all folderrsn that havenot been updated in the last 30 days.
    Here is my cursor:
    /*Cursor for Email procedure. It is working Shows userid and the string
    You need to update these folders*/
    DECLARE
    a_user varchar2(200) := null;
    v_assigneduser varchar2(20);
    v_folderrsn varchar2(200);
    v_emailaddress varchar2(60);
    v_subject varchar2(200);
    Cursor c IS
    SELECT assigneduser, vu.emailaddress, f.folderrsn, trunc(f.indate) AS "IN DATE",
    MAX (trunc(fpa.attemptdate)) AS "LAST UPDATE",
    trunc(sysdate) - MAX (trunc(fpa.attemptdate)) AS "DAYS PAST"
    --MAX (TRUNC (fpa.attemptdate)) - TRUNC (f.indate) AS "NUMBER OF DAYS"
    FROM folder f, folderprocess fp, validuser vu, folderprocessattempt fpa
    WHERE f.foldertype = 'HJ'
    AND f.statuscode NOT IN (20, 40)
    AND f.folderrsn = fp.folderrsn
    AND fp.processrsn = fpa.processrsn
    AND vu.userid = fp.assigneduser
    AND vu.statuscode = 1
    GROUP BY assigneduser, vu.emailaddress, f.folderrsn, f.indate
    ORDER BY fp.assigneduser;
    BEGIN
    FOR c1 IN c LOOP
    IF (c1.assigneduser = v_assigneduser) THEN
    dbms_output.put_line(' ' || c1.folderrsn);
    else
    dbms_output.put(c1.assigneduser ||': ' || 'Overdue Folders:You need to update these folders: Folderrsn: '||c1.folderrsn);
    END IF;
    a_user := c1.assigneduser;
    v_assigneduser := c1.assigneduser;
    v_folderrsn := c1.folderrsn;
    v_emailaddress := c1.emailaddress;
    v_subject := 'Subject: Project for';
    END LOOP;
    END;
    The reason I have included the folowing table is that I want you to see the output from the select statement. that way you can help me do the if statement in the above cursor so that the result will look like this:
    emailaddress
    Subject: 'Project for ' || V_email || 'not updated in the last 30 days'
    v_folderrsn
    v_folderrsn
    etc
    [email protected]......
    Subject: 'Project for: ' Jim...'not updated in the last 30 days'
    284087
    292709
    [email protected].....
    Subject: 'Project for: ' Kim...'not updated in the last 30 days'
    185083
    190121
    190132
    190133
    190159
    190237
    284109
    286647
    294631
    322922
    [email protected]....
    Subject: 'Project for: Joe...'not updated in the last 30 days'
    183332
    183336
    [email protected]......
    Subject: 'Project for: Sam...'not updated in the last 30 days'
    183876
    183877
    183879
    183880
    183881
    183882
    183883
    183884
    183886
    183887
    183888
    This table is to shwo you the select statement output. I want to eliminnate the two days that that are less than 30 days since the last update in the last column.
    Assigneduser....Email.........Folderrsn...........indate.............maxattemptdate...days past since last update
    JIM.........      jim@ aol.com.... 284087.............     9/28/2006.......10/5/2006...........690
    JIM.........      jim@ aol.com.... 292709.............     3/20/2007.......3/28/2007............516
    KIM.........      kim@ aol.com.... 185083.............     8/31/2004.......2/9/2006.............     928
    KIM...........kim@ aol.com.... 190121.............     2/9/2006.........2/9/2006.............928
    KIM...........kim@ aol.com.... 190132.............     2/9/2006.........2/9/2006.............928
    KIM...........kim@ aol.com.... 190133.............     2/9/2006.........2/9/2006.............928
    KIM...........kim@ aol.com.... 190159.............     2/13/2006.......2/14/2006............923
    KIM...........kim@ aol.com.... 190237.............     2/23/2006.......2/23/2006............914
    KIM...........kim@ aol.com.... 284109.............     9/28/2006.......9/28/2006............697
    KIM...........kim@ aol.com.... 286647.............     11/7/2006.......12/5/2006............629
    KIM...........kim@ aol.com.... 294631.............     4/2/2007.........3/4/2008.............174
    KIM...........kim@ aol.com.... 322922.............     7/29/2008.......7/29/2008............27
    JOE...........joe@ aol.com.... 183332.............     1/28/2004.......4/23/2004............1585
    JOE...........joe@ aol.com.... 183336.............     1/28/2004.......3/9/2004.............1630
    SAM...........sam@ aol.com....183876.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183877.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183879.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183880.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183881.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183882.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183883.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183884.............3/5/2004.........3/8/2004............     1631
    SAM...........sam@ aol.com....183886.............3/5/2004.........3/8/2004............     1631
    SAM...........sam@ aol.com....183887.............3/5/2004.........3/8/2004............     1631
    SAM...........sam@ aol.com....183888.............3/5/2004.........3/8/2004............     1631
    PAT...........pat@ aol.com.....291630.............2/23/2007.......7/8/2008............     48
    PAT...........pat@ aol.com.....313990.............2/27/2008.......7/28/2008............28
    NED...........ned@ aol.com.....190681.............4/4/2006........8/10/2006............746
    NED...........ned@ aol.com......95467.............6/14/2006.......11/6/2006............658
    NED...........ned@ aol.com......286688.............11/8/2006.......10/3/2007............327
    NED...........ned@ aol.com.....291631.............2/23/2007.......8/21/2008............4
    NED...........ned@ aol.com.....292111.............3/7/2007.........2/26/2008............181
    NED...........ned@ aol.com.....292410.............3/15/2007.......7/22/2008............34
    NED...........ned@ aol.com.....299410.............6/27/2007.......2/27/2008............180
    NED...........ned@ aol.com.....303790.............9/19/2007.......9/19/2007............341
    NED...........ned@ aol.com.....304268.............9/24/2007.......3/3/2008............     175
    NED...........ned@ aol.com.....308228.............12/6/2007.......12/6/2007............263
    NED...........ned@ aol.com.....316689.............3/19/2008.......3/19/2008............159
    NED...........ned@ aol.com.....316789.............3/20/2008.......3/20/2008............158
    NED...........ned@ aol.com.....317528.............3/25/2008.......3/25/2008............153
    NED...........ned@ aol.com.....321476.............6/4/2008.........6/17/2008............69
    NED...........ned@ aol.com.....322160.............7/3/2008.........8/21/2008............4
    MOE...........moe@ aol.com.....184169.............4/5/2004.......12/5/2006............629
    [email protected]/27/2004.......3/8/2004............1631
    How do I incorporate a if else statement in the above cursor so the two days less than 30 days since last update are not returned. I do not want to send email if the project have been updated within the last 30 days.
    Edited by: user4653174 on Aug 25, 2008 2:40 PM

    analytical functions: http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/functions2a.htm#81409
    CASE
    http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96624/02_funds.htm#36899
    http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96624/04_struc.htm#5997
    Incorporating either of these into your query should assist you in returning the desired results.

  • Server Virtualization with Windows Server Hyper-v and System Center Expiration

    Prometric says: STATUS: Passed, EXPIRATION: 22-03-2015.
    Does this means that I have to take the exam again before 22-03-2015?

    Hi, Daniel.
    Let me understand this exactly.
    You log into http://register.prometric.com/ and then on the left side, you click
    Candidate History to see your list of exam attempts.
    Under the Status Expiration column, all the way to the right, it should read
    Passed and the date/time you passed it. Are you sure it reads
    2015 and not
    2014? Is there also
    another date on that same row/column for this exam's expiration below the date you passed it?
    On the Prometric site, this column is supposed to display the date you passed it and optionally the date it expires for many non-Microsoft exams.
    Typically for Microsoft exams, this final column will state the day you passed the exam and
    not an expiration date.
    As well, by passing this exam, I know that you also earned a Specialist: Server Virtualization with Windows Server Hyper-V and System Center certification title. This certification does
    not expire.
    Exam 74-409:
    http://www.microsoft.com/learning/en-us/exam.aspx?ID=74-409
    Have you looked at your MCP transcript to see if a expiration date is mentioned there? No matter what it states on the Prometric site, your transcript will describe any exam/certification expiration dates much
    more accurately.
    Also, I understand that the 74-nnn series exams are Microsoft partner exams. Perhaps they
    do require recertification to keep up to date with the latest certifications.
    If your transcript does really contain an expiration, you can contact Prometric about this and see if they can help you understand it. Here is the Prometric contact information for Microsoft exams:
    https://www.prometric.com/en-us/clients/pages/contact-numbers.aspx?client=microsoft
    As well, if they can't help you, you can call/email Microsoft Learning Support with information found here:
    http://www.microsoft.com/learning/en-us/help.aspx.
    Finally, if you want to be sure how this exam works against your employer's Microsoft partnership, you can log in and view the Partner support page here:
    https://partners.microsoft.com/partnerprogram/help/en-us/whgdata/whlstt14.htm#14
    I hope someone can help you get this cleared up.
    Good luck!
    Best wishes, Davin Mickelson

  • I need help with Mavericks Server: an error occurred while configuring your server.  I

    I need help with Mavricks Server, I get the following: an error occurred while configuring your server.  I have deleted the Server.app several times along with the associated com.apple and Server folder.  Any more help would be appreciated.

    There are usually some log files around, related to the installation.  See if Console.app (Applications > Utilities) shows anything relevant to the error, when you've done a fresh install of Server.app and tried the configuration.

  • Need help with how to reset bios and admin password to reformat hard drive in 8440p elitebook.......

    need help with how to reset bios and admin password to reformat hard drive in 8440p elitebook? removal of cmos, resetting laptop, using cccleaner, windows password recovery and hiren's was noneffective, any help is appreciated. thanks

    Hi,
    As your notebook is a business class machine, security is more stringent - the password is stored in non-volatile memory and there are no 'backdoor' passwords.  Your best option would be to contact HP regarding this.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Can anyone help with issue whereby Music, Podcasts and Audiable Book Apps keep stopping when listing via Headphones following IOS 7.01 Updates on Iphone 4?

    Can anyone help with issue whereby Music, Podcasts and Audiable Book Apps keep stopping when listing via Headphones following IOS 7.06 Updates on Iphone 4?
    I have tried the following all ready:
    Resetting Phone
    Resetting Settings on phone
    Change Headsets to speakers
    Reinstalled Phone
    Updated to IOS 7.1
    No of the above has resolved the issue does anyone have any ideas?

    Can anyone help with issue whereby Music, Podcasts and Audiable Book Apps keep stopping when listing via Headphones following IOS 7.06 Updates on Iphone 4?
    I have tried the following all ready:
    Resetting Phone
    Resetting Settings on phone
    Change Headsets to speakers
    Reinstalled Phone
    Updated to IOS 7.1
    No of the above has resolved the issue does anyone have any ideas?

  • Hi i would like help with:  When I draw circle and add stroke I can not see stroke  I use Photoshop CS 5

    Hi i would like help with:
    When I draw circle and add stroke I can not see stroke
    I use Photoshop CS 5

    Make sure the stroke is set to a color and not to the symbol that appears here for Fill

  • Help with OSX server mail setup

    Please if anyone can tell me what I am doing wrong, I would be very grateful.  I have a company with an externaly hosted website and an an internally hosted email (OSX server).  I have everything kind of working, but some things don't seem quite right.  I'll explain below:
    I have a purchased domain: mycompany.com hosted by godaddy.
    I am using Godaddy name servers: ns65.domaincontrol.com and ns66.domaincontrol.com
    The external godaddy DNS has an a name entry for my mail server: mail pointing to 123.123.123.123 (which is my companies external static IP address).
    There is also a null (@) a name record for my website hosting service (squarespace) pointing to 456.456.456.456
    There is a cName record www pointing to the squarespace domain "www.squarespace6.com"  (know this is unusual, but it is how squarespace asks this to be set up and does not work otherwise)
    There is an MX record with priority 10 and host name @ pointing to mail.mycompany.com
    I have a airport extreme router with the appropriate ports forwarded to the OSX server.
    The DNS servers on the router are pointed to the internal IP address of the OSX server
    I did not change the domain name on the router (mistake?) it is currently san.rr.com
    On the OSX server I have set up host name to be mycompany.comDNS is set up with primary zone being mycompany.com
    Primary Zone entries include
    nameserver = mycompany.com
    machine record host name is mycompany.com and the IP address is the internal IP address of the OSX server
    another machine record with host name "mail" and IP address is the internal IP address of the OSX server.
    Finally, there is a mail exchanger record with mail server "mail.mycompany.com" and priority 10
    There are 2 entries autocreated in the Reverse zone
    Mail is setup and running on the OSX server providing mail for "mail.mycompany.com"
    Users are setup with email address: [email protected] (note: without the mail subdomain - I think this is OK?)
    I am using self signed certificate.
    In my clients (windows Thunderbird, Mac Mail, iOS mail), the settings are for the incoming mail server host name to be "mail.mycompany.com" and the outgoing also to be "mail.mycompany.com"
    I woud have expected this to be imap.mycompany.com and smtp.mycompany.com respectively, but it doesn't work when I input these values and works with the former.  Have I set this up wrong??  imap seems to require SSL on port 993 and SMTP seems to require TLS on port 587.Outlook on PC gives me an error that after googling appears to be a problem with not recognizing a fuly qualified hostname form the SMTP client.  I see the fix, but wanted to know if that meant that my server didn't have a fully qualified host name and whether I should change that rather than just remove that restriction???
    The final problem is that my outgoing emails seem to be getting caught up in other people's spam filters too frequently.  What is the main reason for this?  Is it because I have set something up wrong and it brings up flags or is it simply because I am not a huge hosting company, or somethign else althogether?
    If you've gotten this far, big thanks!  If you can help me, even more thanks!

    Well, actually they are both getting caught up in spam filters and bounced back.  I actually realized that part of the problem is that I have a dynamic IP address, but it doesn't change.  Regardless, on the bounce back it looks like hotmail and other domains are rejecting email from my IP and recognize it as dynamic.  This was a test server that i would by physically taking to my business where there is a static business IP address (Cox).
    Sorry for the very long original message, but it seems that most people don't post enough information for the problem to be solved in their original posts and I was hoping to provide as much detail as possible.
    The other is the question of "are things set up right?"  It seems strange to me that both my outgoing and incoming servers are "mail.mycompany.com" and not imap.mycompany.com and smtp.mycompany.com and I wonder if this is going to cause me to have problems?
    Is it a problem that my email addresses are [email protected] and not [email protected]?
    Was I supposed to change the domain name on the router?
    Also is it going to be a problem that I am using a self signed certificate?

  • Need some help with Slow Downs in Java3D and Servlets

    Hi,
    I realize that there is a separate forum for Java 3D, but I posted there, and did not get any response. This is kinda the crux of my program, so I would like to invite anybody on this forum with knowledge of Java 3D and servlets to give it a stab. Between this post and that one, there are TWENTY duke dollars up for grabs.
    Thanks.
    http://forum.java.sun.com/thread.jspa?threadID=603198

    Let me have an educated guess.
    You calculated the time elapsed before sending in a server request - and at that point you have you updated timeLastStateChange yet, which means by the time of the next calculation of time elapsed this apparent delay is not counted in, hence the slow down in animation rate.
    Hope this helps~
    Alex Lam S.L.

  • Frozen screen with xorg-server 1.16 and ati driver

    Hi,
    after upgrading xorg-server to 1.16 (yes, I've read the news), the screen is somehow frozen: I can move the mouse but when I e.g. want to open a gui/window, nothing happens. Only switching from tty1 to another tty and back to tty1 updates the screen.
    I'm using driver. xf86-video-ati on a Mobility Radeon HD 3650.
    .local/share/xorg/Xorg.0.log:
    [ 57.275]
    X.Org X Server 1.16.0
    Release Date: 2014-07-16
    [ 57.275] X Protocol Version 11, Revision 0
    [ 57.275] Build Operating System: Linux 3.15.5-2-ARCH x86_64
    [ 57.275] Current Operating System: Linux bra 3.16.1-1-ARCH #1 SMP PREEMPT Thu Aug 14 07:40:19 CEST 2014 x86_64
    [ 57.275] Kernel command line: BOOT_IMAGE=../vmlinuz-linux cryptdevice=/dev/sda2:main root=/dev/mapper/main-root ro locale=de_DE.UTF-8 initrd=../initramfs-linux.img
    [ 57.275] Build Date: 31 July 2014 11:53:19AM
    [ 57.275]
    [ 57.275] Current version of pixman: 0.32.6
    [ 57.275] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 57.275] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 57.275] (==) Log file: "/home/hel/.local/share/xorg/Xorg.0.log", Time: Sat Aug 30 19:43:24 2014
    [ 57.282] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 57.282] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 57.295] (==) No Layout section. Using the first Screen section.
    [ 57.295] (==) No screen section available. Using defaults.
    [ 57.295] (**) |-->Screen "Default Screen Section" (0)
    [ 57.295] (**) | |-->Monitor "<default monitor>"
    [ 57.297] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 57.297] (**) | |-->Device "My Graphics Card"
    [ 57.297] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 57.297] (==) Automatically adding devices
    [ 57.297] (==) Automatically enabling devices
    [ 57.297] (==) Automatically adding GPU devices
    [ 57.360] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 57.360] Entry deleted from font path.
    [ 57.361] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 57.361] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 57.361] Entry deleted from font path.
    [ 57.361] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 57.361] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 57.361] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 57.361] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 57.362] (II) Loader magic: 0x818d80
    [ 57.362] (II) Module ABI versions:
    [ 57.362] X.Org ANSI C Emulation: 0.4
    [ 57.362] X.Org Video Driver: 18.0
    [ 57.362] X.Org XInput driver : 21.0
    [ 57.362] X.Org Server Extension : 8.0
    [ 57.459] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 57.459] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 57.504] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 57.506] (--) PCI:*(0:1:0:0) 1002:9591:17aa:2117 rev 0, Mem @ 0xd0000000/268435456, 0xcfff0000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
    [ 57.506] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 57.506] (II) LoadModule: "glx"
    [ 57.509] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 57.608] (II) Module glx: vendor="X.Org Foundation"
    [ 57.608] compiled for 1.16.0, module version = 1.0.0
    [ 57.608] ABI class: X.Org Server Extension, version 8.0
    [ 57.608] (==) AIGLX enabled
    [ 57.608] (==) Matched ati as autoconfigured driver 0
    [ 57.608] (==) Matched ati as autoconfigured driver 1
    [ 57.608] (==) Matched modesetting as autoconfigured driver 2
    [ 57.608] (==) Matched fbdev as autoconfigured driver 3
    [ 57.608] (==) Matched vesa as autoconfigured driver 4
    [ 57.608] (==) Assigned the driver to the xf86ConfigLayout
    [ 57.608] (II) LoadModule: "ati"
    [ 57.608] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 57.612] (II) Module ati: vendor="X.Org Foundation"
    [ 57.612] compiled for 1.16.0, module version = 7.4.0
    [ 57.612] Module class: X.Org Video Driver
    [ 57.612] ABI class: X.Org Video Driver, version 18.0
    [ 57.612] (II) LoadModule: "radeon"
    [ 57.612] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 57.626] (II) Module radeon: vendor="X.Org Foundation"
    [ 57.626] compiled for 1.16.0, module version = 7.4.0
    [ 57.626] Module class: X.Org Video Driver
    [ 57.626] ABI class: X.Org Video Driver, version 18.0
    [ 57.626] (II) LoadModule: "modesetting"
    [ 57.627] (WW) Warning, couldn't open module modesetting
    [ 57.627] (II) UnloadModule: "modesetting"
    [ 57.627] (II) Unloading modesetting
    [ 57.627] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 57.627] (II) LoadModule: "fbdev"
    [ 57.627] (WW) Warning, couldn't open module fbdev
    [ 57.627] (II) UnloadModule: "fbdev"
    [ 57.627] (II) Unloading fbdev
    [ 57.627] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 57.627] (II) LoadModule: "vesa"
    [ 57.627] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 57.632] (II) Module vesa: vendor="X.Org Foundation"
    [ 57.632] compiled for 1.16.0, module version = 2.3.2
    [ 57.632] Module class: X.Org Video Driver
    [ 57.632] ABI class: X.Org Video Driver, version 18.0
    [ 57.632] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, HAINAN, HAINAN, HAINAN,
    HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 57.636] (II) VESA: driver for VESA chipsets: vesa
    [ 57.636] (++) using VT number 1
    [ 57.637] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 57.637] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
    [ 57.642] (II) [KMS] Kernel modesetting enabled.
    [ 57.642] (WW) Falling back to old probe method for vesa
    [ 57.642] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 57.642] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 57.642] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 57.642] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 57.642] (==) RADEON(0): Default visual is TrueColor
    [ 57.642] (**) RADEON(0): Option "EXAVSync" "on"
    [ 57.642] (**) RADEON(0): Option "EXAPixmaps" "on"
    [ 57.642] (==) RADEON(0): RGB weight 888
    [ 57.642] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 57.642] (--) RADEON(0): Chipset: "ATI Mobility Radeon HD 3650" (ChipID = 0x9591)
    [ 57.642] (II) Loading sub module "dri2"
    [ 57.642] (II) LoadModule: "dri2"
    [ 57.642] (II) Module "dri2" already built-in
    [ 57.642] (II) Loading sub module "exa"
    [ 57.642] (II) LoadModule: "exa"
    [ 57.642] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 57.653] (II) Module exa: vendor="X.Org Foundation"
    [ 57.653] compiled for 1.16.0, module version = 2.6.0
    [ 57.653] ABI class: X.Org Video Driver, version 18.0
    [ 57.653] (II) RADEON(0): KMS Color Tiling: enabled
    [ 57.653] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 57.653] (II) RADEON(0): KMS Pageflipping: enabled
    [ 57.653] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 57.683] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 57.683] (II) RADEON(0): Output LVDS has no monitor section
    [ 57.696] (II) RADEON(0): Output DisplayPort-0 has no monitor section
    [ 57.717] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 57.747] (II) RADEON(0): EDID for output DVI-0
    [ 57.747] (II) RADEON(0): Manufacturer: SAM Model: 3f0 Serial#: 1413755442
    [ 57.747] (II) RADEON(0): Year: 2008 Week: 4
    [ 57.747] (II) RADEON(0): EDID Version: 1.3
    [ 57.747] (II) RADEON(0): Digital Display Input
    [ 57.747] (II) RADEON(0): Max Image Size [cm]: horiz.: 47 vert.: 30
    [ 57.747] (II) RADEON(0): Gamma: 2.20
    [ 57.747] (II) RADEON(0): DPMS capabilities: Off
    [ 57.747] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 57.747] (II) RADEON(0): First detailed timing is preferred mode
    [ 57.747] (II) RADEON(0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.600
    [ 57.747] (II) RADEON(0): blueX: 0.150 blueY: 0.060 whiteX: 0.312 whiteY: 0.329
    [ 57.747] (II) RADEON(0): Supported established timings:
    [ 57.747] (II) RADEON(0): 720x400@70Hz
    [ 57.747] (II) RADEON(0): 640x480@60Hz
    [ 57.747] (II) RADEON(0): 640x480@67Hz
    [ 57.747] (II) RADEON(0): 640x480@72Hz
    [ 57.747] (II) RADEON(0): 640x480@75Hz
    [ 57.747] (II) RADEON(0): 800x600@56Hz
    [ 57.747] (II) RADEON(0): 800x600@60Hz
    [ 57.747] (II) RADEON(0): 800x600@72Hz
    [ 57.747] (II) RADEON(0): 800x600@75Hz
    [ 57.747] (II) RADEON(0): 832x624@75Hz
    [ 57.747] (II) RADEON(0): 1024x768@60Hz
    [ 57.748] (II) RADEON(0): 1024x768@70Hz
    [ 57.748] (II) RADEON(0): 1024x768@75Hz
    [ 57.748] (II) RADEON(0): 1280x1024@75Hz
    [ 57.748] (II) RADEON(0): 1152x864@75Hz
    [ 57.748] (II) RADEON(0): Manufacturer's mask: 0
    [ 57.748] (II) RADEON(0): Supported standard timings:
    [ 57.748] (II) RADEON(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 57.748] (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 57.748] (II) RADEON(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 57.748] (II) RADEON(0): #3: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 57.748] (II) RADEON(0): Supported detailed timing:
    [ 57.748] (II) RADEON(0): clock: 146.2 MHz Image Size: 433 x 271 mm
    [ 57.748] (II) RADEON(0): h_active: 1680 h_sync: 1784 h_sync_end 1960 h_blank_end 2240 h_border: 0
    [ 57.748] (II) RADEON(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1089 v_border: 0
    [ 57.748] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 155 MHz
    [ 57.748] (II) RADEON(0): Monitor name: SyncMaster
    [ 57.748] (II) RADEON(0): Serial No: H1AK500000
    [ 57.748] (II) RADEON(0): EDID (in hex):
    [ 57.748] (II) RADEON(0): 00ffffffffffff004c2df00332324454
    [ 57.748] (II) RADEON(0): 04120103802f1e782aee91a3544c9926
    [ 57.748] (II) RADEON(0): 0f5054bfef80b30081808140714f0101
    [ 57.748] (II) RADEON(0): 01010101010121399030621a274068b0
    [ 57.748] (II) RADEON(0): 3600b10f1100001c000000fd00384b1e
    [ 57.748] (II) RADEON(0): 510f000a202020202020000000fc0053
    [ 57.748] (II) RADEON(0): 796e634d61737465720a2020000000ff
    [ 57.748] (II) RADEON(0): 004831414b3530303030300a202000b4
    [ 57.748] (II) RADEON(0): Printing probed modes for output DVI-0
    [ 57.748] (II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz eP)
    [ 57.748] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 57.748] (II) RADEON(0): EDID for output LVDS
    [ 57.748] (II) RADEON(0): Manufacturer: IBM Model: 2887 Serial#: 0
    [ 57.748] (II) RADEON(0): Year: 2005 Week: 0
    [ 57.748] (II) RADEON(0): EDID Version: 1.3
    [ 57.748] (II) RADEON(0): Digital Display Input
    [ 57.748] (II) RADEON(0): Max Image Size [cm]: horiz.: 33 vert.: 21
    [ 57.748] (II) RADEON(0): Gamma: 2.20
    [ 57.748] (II) RADEON(0): No DPMS capabilities specified
    [ 57.748] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 57.748] (II) RADEON(0): First detailed timing is preferred mode
    [ 57.748] (II) RADEON(0): redX: 0.596 redY: 0.347 greenX: 0.335 greenY: 0.543
    [ 57.748] (II) RADEON(0): blueX: 0.158 blueY: 0.143 whiteX: 0.313 whiteY: 0.329
    [ 57.748] (II) RADEON(0): Manufacturer's mask: 0
    [ 57.748] (II) RADEON(0): Supported detailed timing:
    [ 57.748] (II) RADEON(0): clock: 120.6 MHz Image Size: 331 x 207 mm
    [ 57.748] (II) RADEON(0): h_active: 1680 h_sync: 1712 h_sync_end 1760 h_blank_end 1888 h_border: 0
    [ 57.748] (II) RADEON(0): v_active: 1050 v_sync: 1051 v_sync_end 1054 v_blanking: 1065 v_border: 0
    [ 57.748] (II) RADEON(0): Supported detailed timing:
    [ 57.748] (II) RADEON(0): clock: 100.5 MHz Image Size: 331 x 207 mm
    [ 57.748] (II) RADEON(0): h_active: 1680 h_sync: 1712 h_sync_end 1760 h_blank_end 1888 h_border: 0
    [ 57.748] (II) RADEON(0): v_active: 1050 v_sync: 1051 v_sync_end 1054 v_blanking: 1065 v_border: 0
    [ 57.748] (II) RADEON(0): Unknown vendor-specific block f
    [ 57.748] (II) RADEON(0): LP154W02-TL06
    [ 57.748] (II) RADEON(0): EDID (in hex):
    [ 57.748] (II) RADEON(0): 00ffffffffffff00244d872800000000
    [ 57.748] (II) RADEON(0): 000f0103802115780abca59858558b28
    [ 57.748] (II) RADEON(0): 24505400000001010101010101010101
    [ 57.748] (II) RADEON(0): 0101010101011c2f90d0601a0f402030
    [ 57.748] (II) RADEON(0): 13004bcf10000019452790d0601a0f40
    [ 57.748] (II) RADEON(0): 203013004bcf100000190000000f00b3
    [ 57.748] (II) RADEON(0): 0a32b30a28140100320c0000000000fe
    [ 57.748] (II) RADEON(0): 004c503135345730322d544c303600bf
    [ 57.748] (II) RADEON(0): Printing probed modes for output LVDS
    [ 57.748] (II) RADEON(0): Modeline "1680x1050"x60.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 57.748] (II) RADEON(0): Modeline "1680x1050"x50.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1400x1050"x60.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x1024"x59.9 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync (63.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x960"x59.9 101.25 1280 1360 1488 1696 960 963 967 996 -hsync +vsync (59.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x854"x59.9 89.25 1280 1352 1480 1680 854 857 867 887 -hsync +vsync (53.1 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1152x768"x59.8 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 57.748] (II) RADEON(0): Modeline "848x480"x59.7 31.50 848 872 952 1056 480 483 493 500 -hsync +vsync (29.8 kHz)
    [ 57.749] (II) RADEON(0): Modeline "720x480"x59.7 26.75 720 744 808 896 480 483 493 500 -hsync +vsync (29.9 kHz)
    [ 57.749] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 57.760] (II) RADEON(0): EDID for output DisplayPort-0
    [ 57.780] (II) RADEON(0): EDID for output VGA-0
    [ 57.780] (II) RADEON(0): Output DVI-0 connected
    [ 57.780] (II) RADEON(0): Output LVDS connected
    [ 57.780] (II) RADEON(0): Output DisplayPort-0 disconnected
    [ 57.780] (II) RADEON(0): Output VGA-0 disconnected
    [ 57.780] (II) RADEON(0): Using exact sizes for initial modes
    [ 57.780] (II) RADEON(0): Output DVI-0 using initial mode 1680x1050
    [ 57.780] (II) RADEON(0): Output LVDS using initial mode 1680x1050
    [ 57.780] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 57.780] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:f8ca000
    [ 57.780] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 57.780] (==) RADEON(0): DPI set to (96, 96)
    [ 57.780] (II) Loading sub module "fb"
    [ 57.780] (II) LoadModule: "fb"
    [ 57.780] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 57.815] (II) Module fb: vendor="X.Org Foundation"
    [ 57.815] compiled for 1.16.0, module version = 1.0.0
    [ 57.815] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 57.815] (II) Loading sub module "ramdac"
    [ 57.815] (II) LoadModule: "ramdac"
    [ 57.815] (II) Module "ramdac" already built-in
    [ 57.815] (II) UnloadModule: "vesa"
    [ 57.816] (II) Unloading vesa
    [ 57.816] (--) Depth 24 pixmap format is 32 bpp
    [ 57.817] (II) RADEON(0): [DRI2] Setup complete
    [ 57.817] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 57.817] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 57.817] (II) RADEON(0): Front buffer size: 7128K
    [ 57.817] (II) RADEON(0): VRAM usage limit set to 222840K
    [ 57.829] (==) RADEON(0): Backing store enabled
    [ 57.829] (II) RADEON(0): Direct rendering enabled
    [ 57.829] (II) RADEON(0): EXA VSync enabled
    [ 57.829] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 57.829] (II) EXA(0): Driver registered support for the following operations:
    [ 57.829] (II) Solid
    [ 57.829] (II) Copy
    [ 57.829] (II) Composite (RENDER acceleration)
    [ 57.829] (II) UploadToScreen
    [ 57.829] (II) DownloadFromScreen
    [ 57.829] (II) RADEON(0): Acceleration enabled
    [ 57.829] (==) RADEON(0): DPMS enabled
    [ 57.829] (==) RADEON(0): Silken mouse enabled
    [ 57.830] (II) RADEON(0): Set up textured video
    [ 57.830] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 57.830] (II) RADEON(0): [XvMC] Extension initialized.
    [ 57.830] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 57.841] (WW) RADEON(0): Option "AccelDFS" is not used
    [ 57.841] (--) RandR disabled
    [ 58.103] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 58.103] (II) AIGLX: enabled GLX_ARB_create_context
    [ 58.103] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 58.103] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 58.103] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 58.103] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 58.103] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 58.103] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 58.103] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 58.104] (II) AIGLX: Loaded and initialized r600
    [ 58.104] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 58.940] (II) RADEON(0): Setting screen physical size to 444 x 277
    [ 59.040] (II) config/udev: Adding input device Power Button (/dev/input/event6)
    [ 59.040] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 59.040] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 59.040] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 59.040] (II) LoadModule: "evdev"
    [ 59.040] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 59.053] (II) Module evdev: vendor="X.Org Foundation"
    [ 59.053] compiled for 1.16.0, module version = 2.9.0
    [ 59.053] Module class: X.Org XInput Driver
    [ 59.053] ABI class: X.Org XInput driver, version 21.0
    [ 59.054] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 11 paused 0
    [ 59.054] (II) Using input driver 'evdev' for 'Power Button'
    [ 59.054] (**) Power Button: always reports core events
    [ 59.054] (**) evdev: Power Button: Device: "/dev/input/event6"
    [ 59.054] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 59.054] (--) evdev: Power Button: Found keys
    [ 59.054] (II) evdev: Power Button: Configuring as keyboard
    [ 59.054] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input7/event6"
    [ 59.054] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 59.054] (**) Option "xkb_rules" "evdev"
    [ 59.054] (**) Option "xkb_model" "pc104"
    [ 59.054] (**) Option "xkb_layout" "us"
    [ 59.054] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.105] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 59.105] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 59.105] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 59.105] (**) Video Bus: Applying InputClass "Keyboard Defaults"
    [ 59.107] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 12 paused 0
    [ 59.107] (II) Using input driver 'evdev' for 'Video Bus'
    [ 59.107] (**) Video Bus: always reports core events
    [ 59.107] (**) evdev: Video Bus: Device: "/dev/input/event7"
    [ 59.107] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 59.107] (--) evdev: Video Bus: Found keys
    [ 59.107] (II) evdev: Video Bus: Configuring as keyboard
    [ 59.107] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/LNXVIDEO:01/input/input8/event7"
    [ 59.107] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 59.107] (**) Option "xkb_rules" "evdev"
    [ 59.107] (**) Option "xkb_model" "pc104"
    [ 59.107] (**) Option "xkb_layout" "us"
    [ 59.107] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.107] (II) config/udev: Adding input device Lid Switch (/dev/input/event4)
    [ 59.108] (II) No input driver specified, ignoring this device.
    [ 59.108] (II) This device may have been added with another device file.
    [ 59.108] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
    [ 59.108] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 59.108] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 59.108] (**) Sleep Button: Applying InputClass "Keyboard Defaults"
    [ 59.108] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 13 paused 0
    [ 59.108] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 59.108] (**) Sleep Button: always reports core events
    [ 59.108] (**) evdev: Sleep Button: Device: "/dev/input/event5"
    [ 59.108] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 59.108] (--) evdev: Sleep Button: Found keys
    [ 59.108] (II) evdev: Sleep Button: Configuring as keyboard
    [ 59.108] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input6/event5"
    [ 59.108] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 59.108] (**) Option "xkb_rules" "evdev"
    [ 59.108] (**) Option "xkb_model" "pc104"
    [ 59.108] (**) Option "xkb_layout" "us"
    [ 59.108] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.109] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/event1)
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    [ 59.110] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 14 paused 0
    [ 59.110] (II) Using input driver 'evdev' for 'Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint'
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: always reports core events
    [ 59.110] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Device: "/dev/input/event1"
    [ 59.110] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Vendor 0x17ef Product 0x6009
    [ 59.110] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found keys
    [ 59.110] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Configuring as keyboard
    [ 59.110] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb7/7-5/7-5.2/7-5.2:1.0/0003:17EF:6009.0001/input/input2/event1"
    [ 59.110] (II) XINPUT: Adding extended input device "Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint" (type: KEYBOARD, id 9)
    [ 59.110] (**) Option "xkb_rules" "evdev"
    [ 59.110] (**) Option "xkb_model" "pc104"
    [ 59.110] (**) Option "xkb_layout" "us"
    [ 59.110] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.110] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/event2)
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    [ 59.111] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 15 paused 0
    [ 59.111] (II) Using input driver 'evdev' for 'Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint'
    [ 59.111] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: always reports core events
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Device: "/dev/input/event2"
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Vendor 0x17ef Product 0x6009
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found 19 mouse buttons
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found relative axes
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found x and y relative axes
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found keys
    [ 59.111] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Configuring as mouse
    [ 59.111] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Configuring as keyboard
    [ 59.111] (**) Option "Emulate3Buttons" "false"
    [ 59.111] (**) Option "EmulateWheel" "true"
    [ 59.111] (**) Option "EmulateWheelButton" "2"
    [ 59.111] (**) Option "YAxisMapping" "4 5"
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: YAxisMapping: buttons 4 and 5
    [ 59.111] (**) Option "XAxisMapping" "6 7"
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: XAxisMapping: buttons 6 and 7
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.111] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb7/7-5/7-5.2/7-5.2:1.1/0003:17EF:6009.0002/input/input3/event2"
    [ 59.111] (II) XINPUT: Adding extended input device "Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint" (type: KEYBOARD, id 10)
    [ 59.111] (**) Option "xkb_rules" "evdev"
    [ 59.111] (**) Option "xkb_model" "pc104"
    [ 59.111] (**) Option "xkb_layout" "us"
    [ 59.111] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.111] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: initialized for relative axes.
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) keeping acceleration scheme 1
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) acceleration profile 0
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) acceleration factor: 2.000
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) acceleration threshold: 4
    [ 59.112] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/js0)
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.112] (II) No input driver specified, ignoring this device.
    [ 59.112] (II) This device may have been added with another device file.
    [ 59.112] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/mouse0)
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.112] (II) No input driver specified, ignoring this device.
    [ 59.112] (II) This device may have been added with another device file.
    [ 59.113] (II) config/udev: Adding input device Logitech USB Gaming Mouse (/dev/input/event3)
    [ 59.113] (**) Logitech USB Gaming Mouse: Applying InputClass "evdev pointer catchall"
    [ 59.113] (**) Logitech USB Gaming Mouse: Applying InputClass "evdev pointer catchall"
    [ 59.157] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 16 paused 0
    [ 59.157] (II) Using input driver 'evdev' for 'Logitech USB Gaming Mouse'
    [ 59.157] (**) Logitech USB Gaming Mouse: always reports core events
    [ 59.157] (**) evdev: Logitech USB Gaming Mouse: Device: "/dev/input/event3"
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Vendor 0x46d Product 0xc042
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found 20 mouse buttons
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found scroll wheel(s)
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found relative axes
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found x and y relative axes
    [ 59.157] (II) evdev: Logitech USB Gaming Mouse: Configuring as mouse
    [ 59.157] (II) evdev: Logitech USB Gaming Mouse: Adding scrollwheel support
    [ 59.157] (**) evdev: Logitech USB Gaming Mouse: YAxisMapping: buttons 4 and 5
    [ 59.157] (**) evdev: Logitech USB Gaming Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.157] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb7/7-5/7-5.3/7-5.3:1.0/0003:046D:C042.0003/input/input4/event3"
    [ 59.157] (II) XINPUT: Adding extended input device "Logitech USB Gaming Mouse" (type: MOUSE, id 11)
    [ 59.157] (II) evdev: Logitech USB Gaming Mouse: initialized for relative axes.
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) keeping acceleration scheme 1
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) acceleration profile 0
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) acceleration factor: 2.000
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) acceleration threshold: 4
    [ 59.158] (II) config/udev: Adding input device Logitech USB Gaming Mouse (/dev/input/mouse1)
    [ 59.158] (II) No input driver specified, ignoring this device.
    [ 59.158] (II) This device may have been added with another device file.
    [ 59.158] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
    [ 59.158] (II) No input driver specified, ignoring this device.
    [ 59.158] (II) This device may have been added with another device file.
    [ 59.158] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event10)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.159] (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event11)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.159] (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event12)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.159] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event13)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.160] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 59.160] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 59.160] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 59.160] (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard Defaults"
    [ 59.160] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 17 paused 0
    [ 59.160] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 59.160] (**) AT Translated Set 2 keyboard: always reports core events
    [ 59.160] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 59.160] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 59.160] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 59.160] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 59.160] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 59.160] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
    [ 59.160] (**) Option "xkb_rules" "evdev"
    [ 59.160] (**) Option "xkb_model" "pc104"
    [ 59.160] (**) Option "xkb_layout" "us"
    [ 59.160] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.161] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event14)
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 59.161] (II) systemd-logind: got fd for /dev/input/event14 13:78 fd 18 paused 0
    [ 59.161] (II) Using input driver 'evdev' for 'SynPS/2 Synaptics TouchPad'
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 59.161] (**) evdev: SynPS/2 Synaptics TouchPad: Device: "/dev/input/event14"
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found 3 mouse buttons
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found absolute axes
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found x and y absolute axes
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found absolute touchpad.
    [ 59.161] (II) evdev: SynPS/2 Synaptics TouchPad: Configuring as touchpad
    [ 59.161] (**) evdev: SynPS/2 Synaptics TouchPad: YAxisMapping: buttons 4 and 5
    [ 59.161] (**) evdev: SynPS/2 Synaptics TouchPad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.161] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input15/event14"
    [ 59.161] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
    [ 59.162] (II) evdev: SynPS/2 Synaptics TouchPad: initialized for absolute axes.
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 59.162] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse2)
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 59.162] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event15)
    [ 59.162] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.162] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.162] (**) TPPS/2 IBM TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    [ 59.207] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 19 paused 0
    [ 59.207] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
    [ 59.207] (**) TPPS/2 IBM TrackPoint: always reports core events
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event15"
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
    [ 59.207] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
    [ 59.207] (**) Option "Emulate3Buttons" "false"
    [ 59.207] (**) Option "EmulateWheel" "true"
    [ 59.207] (**) Option "EmulateWheelButton" "2"
    [ 59.207] (**) Option "YAxisMapping" "4 5"
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    [ 59.207] (**) Option "XAxisMapping" "6 7"
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: XAxisMapping: buttons 6 and 7
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.207] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input16/event15"
    [ 59.207] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 14)
    [ 59.207] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
    [ 59.207] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    [ 59.208] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    [ 59.208] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    [ 59.208] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    [ 59.208] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse3)
    [ 59.208] (II) No input driver specified, ignoring this device.
    [ 59.208] (II) This device may have been added with another device file.
    [ 59.208] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event8)
    [ 59.208] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 59.208] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 59.208] (**) ThinkPad Extra Buttons: Applying InputClass "Keyboard Defaults"
    [ 59.209] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 20 paused 0
    [ 59.209] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
    [ 59.209] (**) ThinkPad Extra Buttons: always reports core events
    [ 59.209] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event8"
    [ 59.209] (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054
    [ 59.209] (--) evdev: ThinkPad Extra Buttons: Found keys
    [ 59.209] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
    [ 59.209] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input9/event8"
    [ 59.209] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 15)
    [ 59.209] (**) Option "xkb_rules" "evdev"
    [ 59.209] (**) Option "xkb_model" "pc104"
    [ 59.209] (**) Option "xkb_layout" "us"
    [ 59.209] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.497] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 59.497] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 59.497] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 59.497] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 59.568] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 59.568] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 59.568] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 59.568] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 59.941] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 59.941] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 59.941] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 59.941] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 60.027] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 60.027] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 60.027] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 60.027] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 60.099] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 60.099] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 60.099] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 60.099] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 61.044] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 61.044] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 61.044] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 61.044] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 61.112] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 61.112] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 61.112] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 61.112] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 62.930] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 62.930] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 62.930] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 62.930] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 89.683] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 89.730] (II) systemd-logind: got pause for 226:0
    [ 89.730] (II) systemd-logind: got pause for 13:70
    [ 89.730] (II) systemd-logind: got pause for 13:71
    [ 89.730] (II) systemd-logind: got pause for 13:69
    [ 89.730] (II) systemd-logind: got pause for 13:65
    [ 89.730] (II) systemd-logind: got pause for 13:66
    [ 89.730] (II) systemd-logind: got pause for 13:67
    [ 89.730] (II) systemd-logind: got pause for 13:64
    [ 89.730] (II) systemd-logind: got pause for 13:78
    [ 89.730] (II) systemd-logind: got pause for 13:79
    [ 89.730] (II) systemd-logind: got pause for 13:72
    [ 90.518] (II) systemd-logind: got resume for 226:0
    [ 90.518] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 90.551] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 90.551] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 90.551] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 90.551] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 90.591] (II) systemd-logind: got resume for 13:70
    [ 90.591] (II) systemd-logind: got resume for 13:71
    [ 90.592] (II) systemd-logind: got resume for 13:69
    [ 90.592] (II) systemd-logind: got resume for 13:65
    [ 90.592] (II) systemd-logind: got resume for 13:66
    [ 90.603] (II) systemd-logind: got resume for 13:67
    [ 90.616] (II) systemd-logind: got resume for 13:64
    [ 90.620] (II) systemd-logind: got resume for 13:78
    [ 90.633] (II) systemd-logind: got resume for 13:79
    [ 90.641] (II) systemd-logind: got resume for 13:72
    [ 95.368] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 95.429] (II) systemd-logind: got pause for 226:0
    [ 95.429] (II) systemd-logind: got pause for 13:70
    [ 95.429] (II) systemd-logind: got pause for 13:71
    [ 95.429] (II) systemd-logind: got pause for 13:69
    [ 95.429] (II) systemd-logind: got pause for 13:65
    [ 95.429] (II) systemd-logind: got pause for 13:66
    [ 95.429] (II) systemd-logind: got pause for 13:67
    [ 95.429] (II) systemd-logind: got pause for 13:64
    [ 95.429] (II) systemd-logind: got pause for 13:78
    [ 95.429] (II) systemd-logind: got pause for 13:79
    [ 95.429] (II) systemd-logind: got pause for 13:72
    [ 95.750] (II) systemd-logind: got resume for 226:0
    [ 95.750] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 95.783] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 95.783] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 95.784] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 95.784] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 95.821] (II) systemd-logind: got resume for 13:70
    [ 95.821] (II) systemd-logind: got resume for 13:71
    [ 95.821] (II) systemd-logind: got resume for 13:69
    [ 95.821] (II) systemd-logind: got resume for 13:65
    [ 95.836] (II) systemd-logind: got resume for 13:66
    [ 95.843] (II) systemd-logind: got resume for 13:67
    [ 95.853] (II) systemd-logind: got resume for 13:64
    [ 95.866] (II) systemd-logind: got resume for 13:78
    [ 95.876] (II) systemd-logind: got resume for 13:79
    [ 95.897] (II) systemd-logind: got resume for 13:72
    [ 98.008] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 98.061] (II) systemd-logind: got pause for 226:0
    [ 98.061] (II) systemd-logind: got pause for 13:70
    [ 98.061] (II) systemd-logind: got pause for 13:71
    [ 98.061] (II) systemd-logind: got pause for 13:69
    [ 98.061] (II) systemd-logind: got pause for 13:65
    [ 98.061] (II) systemd-logind: got pause for 13:66
    [ 98.061] (II) systemd-logind: got pause for 13:67
    [ 98.061] (II) systemd-logind: got pause for 13:64
    [ 98.061] (II) systemd-logind: got pause for 13:78
    [ 98.061] (II) systemd-logind: got pause for 13:79
    [ 98.061] (II) systemd-logind: got pause for 13:72
    [ 98.614] (II) systemd-logind: got resume for 226:0
    [ 98.614] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 98.648] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 98.648] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 98.648] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 98.648] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 98.687] (II) systemd-logind: got resume for 13:70
    [ 98.688] (II) systemd-logind: got resume for 13:71
    [ 98.688] (II) systemd-logind: got resume for 13:69
    [ 98.688] (II) systemd-logind: got resume for 13:65
    [ 98.693] (II) systemd-logind: got resume for 13:66
    [ 98.703] (II) systemd-logind: got resume for 13:67
    [ 98.710] (II) systemd-logind: got resume for 13:64
    [ 98.723] (II) systemd-logind: got resume for 13:78
    [ 98.726] (II) systemd-logind: got resume for 13:79
    [ 98.743] (II) systemd-logind: got resume for 13:72
    [ 99.618] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 99.674] (II) systemd-logind: got pause for 226:0
    [ 99.674] (II) systemd-logind: got pause for 13:70
    [ 99.674] (II) systemd-logind: got pause for 13:71
    [ 99.674] (II) systemd-logind: got pause for 13:69
    [ 99.674] (II) systemd-logind: got pause for 13:65
    [ 99.674] (II) systemd-logind: got pause for 13:66
    [ 99.674] (II) systemd-logind: got pause for 13:67
    [ 99.674] (II) systemd-logind: got pause for 13:64
    [ 99.674] (II) systemd-logind: got pause for 13:78
    [ 99.674] (II) systemd-logind: got pause for 13:79
    [ 99.674] (II) systemd-logind: got pause for 13:72
    [ 123.984] (II) systemd-logind: got resume for 226:0
    [ 123.984] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 124.017] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 124.017] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 124.017] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 124.017] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 124.096] (II) systemd-logind: got resume for 13:70
    [ 124.096] (II) systemd-logind: got resume for 13:71
    [ 124.096] (II) systemd-logind: got resume for 13:69
    [ 124.096] (II) systemd-logind: got resume for 13:65
    [ 124.104] (II) systemd-logind: got resume for 13:66
    [ 124.118] (II) systemd-logind: got resume for 13:67
    [ 124.130] (II) systemd-logind: got resume for 13:64
    [ 124.140] (II) systemd-logind: got resume for 13:78
    [ 124.150] (II) s

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

  • Help with Proxy Server

    Hi!All
    I have developed a Chat Application which has to be put up at the Clients
    place over the intranet,i have developed it using the Avalon FrameWork for the server side and applet on the Client side.Everything works perfectly,the application also runs perfectly,im using the port 4000 for communication,now the problem is that since at the Clients place we have a Proxy Server which only allows port 80 and bards all other port so my appliaction will not perform there at all,i was wondering is there any other way out of this problem if anyone has ever been through this problem please let me know at theearliest.Help needed urgently.Awaiting reply.
    Thanx.

    Try routing the communication from your end from port 4000 to port 80 using some sort of Proxy DLL if u are using IIS as the web server, it comes handy with such a thing.
    Using BEA Weblogic 6.1, i have been able to do so. My web server is IIS and the app server being Weblogic, both run on different ports.
    The user access the website from port 80 which is handled by IIS and then the request is funneled to Weblogic via the Proxy DLL on a specified port where my weblogic is running.
    This works fine with me. Try using that am something should work.

  • Help with a server - crashed after update -SOLVED

    Hi everybody.
    at the school where I study,. its the student who´ll take cake of the network, and now we have a really big problem...
    After an pacman -Syu, (by an older student) one of the servers crashe. Its the only one that´s been updatet. Its run f.i. Apache , stunnel and up against an LDap server.
    The problem is that the only way you can get into it, is in single user mode. At normal boot at the login-menu - we could type in the username and passwd, but the machine is too long to validate the passwd so it times out. thats also when you trying to lock in as root. And we cant start Apache(Even though we selv compiled it, and not did a pacman on that one.)  But I´m not into arch that much yet, so hoefully someone can give me a hint about what went wrong during the updates..
    But the worst part about that one is, that everything goes by that one, so we cant get in på using ssh..  But after 7 hours trying and studying the net - we didn´t get anywhere. and we don´t have a clue what to do ...
    looking in the logfiles do not show anything unusual....
    in normalboot at the login screen, after ca. 40sek. the message comes :
    The server died unexpectet... thats it
    So please help with this one - if anyone have a clue what went wrong..

    Heya,
    have you tried using a knoppix-cd or another live-cd to have a look at the system or isn't that a possibility?
    You can also login by adding the following kernelparameter: init=/bin/sh
    However, I'm not sure how to mount the partitions then.
    I'm guessing that the message "server died unexpectedly" is coming from a certain server-process (not the machine). Do you know which process and have you had a look at the logfiles (if there are any) of that process?
    You can have a look at the output of the "dmesg"-command maybe if it is kernel-related (I think).
    You say it isn't overridden. Are you sure? You can tell pacman to not override packages or certain files, but you have to mention it in the "/etc/pacman.conf"-file.
    Hopes this helps you,
    greetings,
    Michel

  • Help with a server program

    Hello,
    I don't know much about threading, but I've got this server program (code follows). And where it does this... :
                        // Create a new thread for the connection
                        HandleAClient thread = new HandleAClient(connectToClient);
                        cn = clientNo;
                        // Start the new thread
                        thread.start();I need it to create another instance of the client program that accessing it with the same thread(I think, as i said I don't know much about threads). That way when a remote user accesses the client program, the server will automatically open another client program on the machine the server is running on. Then while their both using the same thread, they'll be able to speak back and forth without anyone else getting their text.
    Does this make sense? Can anyone help?
    Here is the server code, I don't have it perfected yet to send the text, but the clients will regester with the server.
    // MultiThreadServer.java: The server can communicate with
    // multiple clients concurrently using the multiple threads
    import java.io.*;
    import java.net.*;
    import java.util.*;
    // MultiThreadServer should be able to
    //    handle text from multiple users at once
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MultiThreadServer extends JFrame {
         // Text area for displaying contents
         private JTextArea jta = new JTextArea();
         public static void main(String[] args) {
              new MultiThreadServer();
         public int cn = 0;
         public MultiThreadServer() {
              // Place text area on the frame
              getContentPane().setLayout(new BorderLayout());
              getContentPane().add(new JScrollPane(jta), BorderLayout.CENTER);
              setTitle("MultiThreadServer");
              setSize(500, 300);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setVisible(true); // It is necessary to show the frame here!
              try {
                   // Create a server socket
                   ServerSocket serverSocket = new ServerSocket(8000);
                   jta.append("MultiThreadServer started at " + new Date() + '\n');
                   // Number a client
                   int clientNo = 1;
                   while (true) {
                        // Listen for a new connection request
                        Socket connectToClient = serverSocket.accept();
                        // Display the client number
                        jta.append("Starting thread for client " + clientNo +
                             " at " + new Date() + '\n');
                        // Find the client's host name, and IP address
                        InetAddress clientInetAddress =
                             connectToClient.getInetAddress();
                        jta.append("Client " + clientNo + "'s host name is "
                             + clientInetAddress.getHostName() + "\n");
                        jta.append("Client " + clientNo + "'s IP Address is "
                             + clientInetAddress.getHostAddress() + "\n");
                        // Create a new thread for the connection
                        HandleAClient thread = new HandleAClient(connectToClient);
                        cn = clientNo;
                        // Start the new thread
                        thread.start();
                        // Increment clientNo
                        clientNo++;
              catch(IOException ex) {
                   System.err.println(ex);
         // Inner class
         // Define the thread class for handling new connection
         class HandleAClient extends Thread {
              private Socket connectToClient; // A connected socket
              // Construct a thread
              public HandleAClient(Socket socket) {
                   connectToClient = socket;
              // Run a thread
              public void run() {
                   try {
                        // Create data input and output streams
                        DataInputStream isFromClient = new DataInputStream(
                             connectToClient.getInputStream());
                        DataOutputStream osToClient = new DataOutputStream(
                             connectToClient.getOutputStream());
                        osToClient.writeDouble(cn);
                        // Continuously serve the client
                        while (true) {
                             // Receive radius from the client
                             double radius = isFromClient.readDouble();
                             // Compute area
                             double area = radius*radius*Math.PI;
                             // Send area back to the client
                             osToClient.writeDouble(area);
                             jta.append("radius received from client: " +
                                  radius + '\n');
                             jta.append("Area found: " + area + '\n');
                   catch(IOException e) {
                        System.err.println(e);
    }And here is the Client Program code, note that the sending of text does not yet work here either.
    // Client.java: The client sends the input to the server and receives
    //           result back from the server
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.*;
    public class Client extends JFrame implements ActionListener {
         // Text field for receiving radius
         private JTextField jtf = new JTextField(40);
         // Text area to display contents
         private JTextArea jta = new JTextArea();
         // IO streams
         DataOutputStream osToServer;
         DataInputStream isFromServer;
         public static void main(String[] args) {
              new Client();
         public Client() {
              // Ask the user for a name
              String s = JOptionPane.showInputDialog
                   (null, "Please Enter Your Name:", "ZedX Web Messenger", JOptionPane.QUESTION_MESSAGE);
              // Panel p to hold the label and text field
              JPanel p = new JPanel();
              p.setLayout(new BorderLayout());
              p.add(new JLabel("Enter Text"), BorderLayout.WEST);
              p.add(jtf, BorderLayout.CENTER);
              p.add(new JButton("Go"), BorderLayout.EAST);
              jtf.setHorizontalAlignment(JTextField.LEFT);
    //          jta.editable(false);
              getContentPane().setLayout(new BorderLayout());
              getContentPane().add(p, BorderLayout.NORTH);
              getContentPane().add(new JScrollPane(jta), BorderLayout.CENTER);
              jtf.addActionListener(this); // Register listener
              String user = "Client";
              setTitle(user);
              setSize(500,500);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setVisible(true); // It is necessary to show the frame here!
              try {
                   // Create a socket to connect to the server
                   Socket connectToServer = new Socket("10.0.5.39", 8000);
                   // Create an input stream to receive data from the server
                   isFromServer = new DataInputStream(
                        connectToServer.getInputStream());
                   // Create an output stream to send data to the server
                   osToServer = new DataOutputStream(connectToServer.getOutputStream());
                   // Send client Name to server
                   // Get client number and name from server
                   double cn = isFromServer.readDouble();
                   user = user + " " + cn + ":  " + s;
                   setTitle(user);
              catch (IOException ex) {
                   jta.append(ex.toString() + '\n' + "Administrator must be offline, try again later.");
         public void actionPerformed(ActionEvent e) {
              String actionCommand = e.getActionCommand();
              if (e.getSource() instanceof JTextField) {
                   try {
                        // Get the text from the text field
                        String radius = jtf.getText();
                        // Send the text to the server
                        osToServer.println(radius);
                        osToServer.flush();
                        // Get text from the server
                        double area = isFromServer.readDouble();
                        // Display to the text area
                        jta.append("You Sent: " + radius + "\n");
                        jta.append("Server" + area + '\n');
                   catch (IOException ex) {
                        System.err.println(ex);
    }

    bump

  • Help with Client/Server communication

    Im working on a project for university, and one aspect of it is downloading files from a remote computer.
    The majority of my project so far has been using RMI only, for browsing the remote computer, deleting files, renaming files, creating new directories and searching for files. All of this is done via a GUI client, with a server running on the server machine.
    Ive now reached the part where I'll need to implement the downloading of files. I want the user to select a file from within the GUI and click download, and get it off the server.
    I dont need any help with event handlers or getting the contents of the remote computer or anything of that sort.
    Consider when I have the name of the file that I want to download from the client.
    Im having trouble understanding how exactly its going to work. Ive seen examples of file transfer programs where the user types in the name of the file in the command line which they want to download. But my implementation will differ.
    Every time the user clicks the button, I have to send to the server the name of a different file which will need to be downloaded.
    I imagine in the event handler for the Download button I'll be creating a new socket and Streams for the download of the file that the user wants. But how am I to send to the client a dynamic file name each time when the user tries to download a different file?
    I am a bit new at this, and Ive been searching on the forums for examples and Ive run through them, but I think my situation is a bit different.
    Also, will RMI play any part in this? Or will it purely be just Socket and Streams?
    I'll also develop an Upload button, but I imagine once I get the Download one going, the Upload one should be much harder.
    Any ideas and help would be appreciated.

    Hi
    I'm no RMI expert... and I did not understand your question very well....
    I think you should do this procedure:
    you should send a request for the file from the client to the server . then a new connection between the two machines should be made which will be used to send the file.
    by using UDP you will achive it quite nicely...
    //socket - is your TCP socket  you already use on the client...
    //out - socket's output stream
    byte [] b=new String("File HelloWorld.java").getBytes();
    // you should use a different way for using this rather than using strings...
    out.write(b);
    DatagramSocket DS=new DatagramSocket(port);
    DS.recieve(packet); //the data is written into the packet...on the server side you should...
    //socket - is your TCP socket  you already use on the server...
    //in - socket's input stream
    byte [] b=new byte[256];
    out.read(b);
    /*Here you check what file you need to send to the client*/
    DatagramSocket DS=new DatagramSocket(server_port);
    byte [] data=//you should read the file and translate it into bytes and build a packet with them
    DS.send(packet); //the data is in the packet...This way the server sends the required file to the client .....
    I hope it will help, otherwise try being clearier so I could help you...
    SIJP

  • Help with client server chat2

    Hi aggain,
    And here is my Client part of program
    Server part is in topic "help with client server1
    CLIENT.JAVA
    import java.io.*;
    import java.net.*;
    import java.lang.*;
    import javax.swing.*;
    public class Client {
    private static int SBAP_PORT = 5555;
    private static String server = "localhost";
    public static Socket socket = null;
    //main starts
    public static void main(String[] args) {
    try { //handle broken connection
    //set up connection to server, input, output streams
    try {
    socket = new Socket(server, SBAP_PORT);
    // handle wrong host/port errors
    catch (UnknownHostException e) {
    System.out.println("Unknown IP address for server.");
    System.exit(0);
    } //end catch UnknownHost
    catch (IOException ex) {
    System.out.println("No server found at specified port.");
    System.exit(0);
    } //end catch IOException
    catch (Exception exc) {
    System.out.println("Error :" + exc);
    System.exit(0);
    } //end cath Exception exc
    InputStream input = socket.getInputStream();
    OutputStream output = socket.getOutputStream();
    BufferedReader reader = new BufferedReader(new InputStreamReader(input));
    PrintWriter writer = new PrintWriter(output);
    while (true) {
    String client_in = JOptionPane.showInputDialog(null, "Client Request");
    System.out.println("Sending: " + client_in);
    writer.print(client_in);
    writer.flush();
    //read server entry and dispay
    String response = reader.readLine();
    if (response == null || response.equals("QUIT"))
    System.out.println("No data received");
    else
    System.out.println("Receiving: " + response);
    } //end try
    catch (IOException e) {
    System.out.println("Connection with server broken:" + e);
    System.exit(0);
    } //end catch IOException
    catch (Exception exp) {
    System.out.println("Error :" + exp);
    System.exit(0);
    } //end catch exp
    }//end main()
    }//end class Client

    http://forum.java.sun.com/thread.jspa?threadID=574466&messageID=2861516#2861516

Maybe you are looking for

  • Internal order Type creation

    Hi Guru, My client want to create new internal order type. so My doubt is new order type need to create directly in production server or not. Because development server orders type and production server order type there is some miss match is there. K

  • Using Javascript To UnCheck A Checkbox

    Hi, I have a select list with two options in. When one of them is selected I have two checkboxes that I want hiding and setting to unselected. I can hide and show them fine using *$x_HideItemRow* and *$x_ShowItemRow*, but when I hide them I want the

  • T60 running Windows 8 won't extend display to monitor

    Hello, I checked the forums but couldn't find a similar topic. I have a T60 coming up on it's 8th birthday. About a year and a half ago I installed windows 8. Just recently I tried to extend my work space to a second VGA monitor, in addition to the T

  • Reinstalling iTunes

    When I try to start iTunes, I am getting a message that "iTunes cannot run because some of its required files are missing.  Please reinstall iTunes." When I try to reinstall, the dowload gets stuck at the step identified as "unregistering iTunes auto

  • How to access an object's variable from native code

    i am passing an object in a native method.i have to change the value of the object's variable.how do i access the variable of object and assign it new value from c++ code.when i try to access it i get a message that the variable must have a class/sru