.rhost

The permission of .rhost files are not appropriate.
How can i configure this .rhost permission?
Plz help me its very urgent.

You shouldn't use .rhosts, it's very unsecure. That said, su to root and do a chmod to whatever permissions you want - ex: chmod 744 .rhosts

Similar Messages

  • CUCM 8.6 - Unified CM Rhosts error message

    Hi Guys,
    My Customer verified in CUCM reports a message error about the Rhosts. "The rhost file on x.x.x.x does not match the publisher". I verified that the restart about the A Cisco DB will be solve the problem. Is correct my analysis? If yes, what is the impact in restart this service? I believe that is more recommendad to do in window maitenance.
    Thanks,
    Wilson

    Hi Wilson,
    Your analysis is correct. You should restart the A Cisco DB service in off hours if possible, although i have seen that it does not cause any issues even during production hours most of the times. If the issue persists after restart then you should contact TAC, as in a few cases they require root access to change the rhosts , so that they are the same on all the servers.
    HTH
    Manish

  • Renaming .rhost and /etc/hosts.equiv

    Hi!
    In the Solaris hardening quide there is a point which says that the .rhost and /etc/hosts.equiv files should be removed. Is it enough if I just rename them (in the same directory) in order to be able to restore them in a later point?
    Thanks.

    Should be.
    7/M.

  • ACE: How to have icmp-reply active ignore redirect rhosts?

    I'm wondering if anyone knows if I can have an ace4710 not reply to ICMP requests for a VIP unless atleast one of the host rservers is up. It appears to reply if just a single redirect service is online.
    Thanks,
    Chad

    Chad,
    Thanks for the clarification regretably I'm pretty sure the ACE works alike as the CSS in this requirement.
    The problem is that the content rules (CSS) and the class-maps (ACE) are not dependent with each other. i.e with a config like the one shown below regardless if you suspend the service SIP or the content Web, ICMP still is going to be answered as the MAC address is still allocated on the arp table of your SW, in this case for the content Redirect there's no way you can stop ICMP replies other than manually suspending the rule.
    owner Web
      content Redirect
        vip address 10.10.10.10
        url "/*"
        port 80
        protocol tcp
        redirect "http://website.com/blah.htm"
        active
      content Web
        vip address 10.10.10.10
        port 80
        protocol tcp
        url "/blah*"
        add service SIP
        active
    I had thought I would've been able to it with an ACL like this one buuuut this is not traffic directed to the VIP :S
    acl 5
      clause 1 deny icmp any destination content Web/Redirect
      clause 2 permit icmp any destination content Web/Web
      clause 3 permit any any destination any
      apply circuit-(VLAN10)
    Same happens with the ACE redirect services will always make the VIP show as "inservice" as they don't require a health check to check the aliveness, these ones were thought to be UP all the time.
    serverfarm host Web
      probe HTTP
      rserver Web-1
        inservice
      rserver Web-2
        inservice
    rserver redirect Redirect
      webhost-redirection https://%h/blah.htm
      inservice
    serverfarm redirect Blah
      rserver Redirect
        inservice
    class-map type http loadbalance match-any Any
      2  math http url  .*
    class-map type http loadbalance match-any Blah
      2 match http url /blah.htm
    policy-map type loadbalance first-match Insertion
       class Blah
         serverfarm Web
       class Any
         serverfarm Blah

  • How to log successful logins to a syslog server in NX-OS

    Does anyone know how to do this in NX-OS?  I do it in IOS with the following commands:
    login on-failure log
    login on-success log
    logging x.x.x.x
    With that I get a syslog message that I can then log to a file to track who has logged into which device and when.  But I can't find the syntax to do the same thing in the Nexus switches that we have.  Does anyone know what the equivalent commands are?
    Thanks,
    Ben

    Hi Ben,
    By default, failed logins are logged.
    You can checked the log using:
    show logging logfile | last 15
    and for every logging failed (by default) you will get something like this:
    2012 Dec 18 14:51:08 Nexus5010-B %AUTHPRIV-3-SYSTEM_MSG: pam_aaa:Authentication
    failed for user en from 2.2.2.1 - login
    To get the success-login to show up in the logs we need to increase the level of the authpriv to 5 (it is 3 by default), and doing this will add a new log for failed or succesful connections.
    Use the following command:
    Nexus5010-A(config)# logging level authpriv 5
    You can check loggin levels by using:
    #show logging level
    After you do this with the logging level you will see in the log something like this when a succesful login takes place:
    2005 Jan  6 03:29:48 Nexus5010-A %AUTHPRIV-5-SYSTEM_MSG:    admin :TTY=unknown
    ; PWD=/var/sysmgr/vsh ; USER=root ; COMMAND=/usr/bin/strings/proc/18340/environ
    - sudo
    Now for a failed login and after increasing the authpriv level you will see the following logs:
    2005 Jan  6 03:31:36 Nexus5010-A %AUTHPRIV-4-SYSTEM_MSG: pam_unix(aaa:auth):check pass; user unknown - aaad
    2005 Jan  6 03:31:36 Nexus5010-A %AUTHPRIV-5-SYSTEM_MSG: pam_unix(aaa:auth):
    aut
    hentication failure; logname= uid=0 euid=0 tty= ruser= rhost=  - aaad
    For logging *****
    Nexus7018(config)# logging ?
      console           Set console logging
      event             Interface events
      ip                IP configuration
      level             Facility parameter for syslog messages
      logfile           Set File logging
      message           Interface events
      module            Set module(linecard) logging
      monitor           Set terminal line(monitor) logging level
      origin-id         Enable origin information for Remote Syslog Server
      server            Enable forwarding to Remote Syslog Server
      source-interface  Enable Source-Interface for Remote Syslog Server
      timestamp         Set logging timestamp granularity
    You can use logging source-interface ....
    Thanks-
    Afroz
    ***Ratings Encourages Contributors ****

  • Problem in JAVA PL/SQL Block

    Hi all,
    I am facing a peculiar problem. I have one JAVA PL/SQL code, which runs a shell script, which indeed fire a zipping command remotely. Here I am providing you the code. Actually it zip some files at application server running from Database Server.
    create or replace procedure RC(p_cmd in varchar2)
    as
    x number;
    begin
    x := run_cmd(p_cmd);
    EXCEPTION
    when others then
    dbms_output.put_line('WHEN OTHERS '||sqlcode||sqlerrm);
    end;
    <====This RC is called from a before insert trigger. And value of p_cmd is $ORACLE_BASE/report_compress.sh $REPORT_DIR/<report_file>.
    create or replace
    function RUN_CMD(p_cmd in varchar2) return number
    as
    language java
    name 'Util.RunThis(java.lang.String) return integer';
    create or replace and compile
    java source named "Util"
    as
    import java.io.*;
    import java.lang.*;
    public class Util extends Object
    public static int RunThis(String args)
    Runtime rt = Runtime.getRuntime();
    int rc = -1;
    try
    Process p = rt.exec(args);
    int bufSize = 4096;
    BufferedInputStream bis =
    new BufferedInputStream(p.getInputStream(), bufSize);
    int len;
    byte buffer[] = new byte[bufSize];
    // Echo back what the program spit out
    while ((len = bis.read(buffer, 0, bufSize)) != -1)
    System.out.write(buffer, 0, len);
    rc = p.waitFor();
    catch (Exception e)
    e.printStackTrace();
    rc = -1;
    finally
    return rc;
    And also I have executed:
    BEGIN
    dbms_java.grant_permission('<DB_USER>','java.io.FilePermission','$ORACLE_BASE','write');
    dbms_java.grant_permission('<DB_USER>','java.io.FilePermission','$ORACLE_BASE/report_compress.sh','execute');
    dbms_java.grant_permission('<DB_USER>','java.lang.RuntimePermission','*', 'writeFileDescriptor' );
    END;
    REPORT_COMPRESS.SH
    #!/bin/sh
    remsh <APPLICATION SERVER IP> -l <APPLICATION_SERVER_OS_USER> -n "gzip -f $1"
    Now problem is while execute RC, it gives no error but the remote file does not get zipped. When I run report_compress.sh from command promt, it works fine.
    Earlier we used HP-UX as our DB server and Application Server. And RC worked fine there. Recently we have moved to AIX(for both DB and AS), and now we are facing this problem.
    Please guide me to resolve this problem.
    Note: .rhosts entry is fine in both the servers(as per me) as report_compress.sh is working fine.

    Make sure that the .profile does not read something from tty - it should not, but it sounds like the .profile is expecting tty input.
    Alternatively, simply copy and paste the environment settings from .profile to your compress script. The only read important setting is PATH as your script simply does a remote shell. Thus LD_LIBRARY_PATH/SHLIB_PATH and other settings are not needed.
    You can also add debugging to your shell script - useful when executing it in the background.
    Something as follows:
    # create debug file name
    DEBUGFILE=/tmp/~$$.debug-out # e.g. /tmp/~1234.debug-out where 1234 is the PID
    echo "`date` Starting [$0] with parameters [$*]" >> $DEBUGFILE
    # sourcing environment
    echo "Loading default profile..." >>$DEBUGFILE
    . /home/oracle/.profile 1>>$DEBUGFILE 2>>$DEBUGFILE
    # running remote shell
    echo "Running remote shell..." >>$DEBUGFILE
    remsh ... 1>>$DEBUGFILE 2>>$DEBUGFILE
    .. etc.
    When this is working, you can remove the debug file from the shell script, or simply delete it when the script is successful.

  • Problems with SSH: Connection Refused

    Greetings fellow Arch users,
    I have hit a bit of a snag that I could really use some extra help getting around. I've tried everything I can think of (and everything that Google thought might work) and I have my back rather against a wall, so I thought I'd come here to see if anyone can offer some advice.
    To make a long story short, I am a college student and am attempting to set up an ssh server on a desktop at my house so I can access it remotely from the college. I have the computer set up and the server running, however I am having difficulty making connections to it from my laptop. I know that the server is running, because I can log into it both from the server itself (sshing into local host) and from my laptop when I use the internal IP address.
    The server is on a static IP address within the network(192.168.0.75), and my router is configured to forward TCP port 1500 to it (I'm using 1500 as the port for my ssh server). However, when I attempt to log into the ssh server using my network's external IP address, the connection is refused. I used nmap to scan my network and found that, even though the proper ports are forwarded to the proper place as far as my Router's configuration interface is concerned, port 1500 is not listed as one of the open TCP ports. I also, to test it, temporarily disabled the firewalls on both the server and the client. That didn't help. The command that I am running is:
    ssh -p 1500 douglas@[external ip address
    As I am really not sure what is causing this problem, I don't know what information to provide. So here is everything that my inexperienced mind sees as likely being important. If you need anything more, let me know and I will do my best to provide it.
    Here is the sshd_config file from my server.
    # This is the sshd server system-wide configuration file. See
    # sshd_config(5) for more information.
    # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
    # The strategy used for options in the default sshd_config shipped with
    # OpenSSH is to specify options with their default value where
    # possible, but leave them commented. Uncommented options override the
    # default value.
    Port 1500
    #AddressFamily any
    #ListenAddress 0.0.0.0
    #ListenAddress ::
    # The default requires explicit activation of protocol 1
    #Protocol 2
    # HostKey for protocol version 1
    #HostKey /etc/ssh/ssh_host_key
    # HostKeys for protocol version 2
    #HostKey /etc/ssh/ssh_host_rsa_key
    #HostKey /etc/ssh/ssh_host_dsa_key
    #HostKey /etc/ssh/ssh_host_ecdsa_key
    # Lifetime and size of ephemeral version 1 server key
    #KeyRegenerationInterval 1h
    #ServerKeyBits 1024
    # Ciphers and keying
    #RekeyLimit default none
    # Logging
    # obsoletes QuietMode and FascistLogging
    #SyslogFacility AUTH
    #LogLevel INFO
    # Authentication:
    #LoginGraceTime 2m
    PermitRootLogin no
    #StrictModes yes
    #MaxAuthTries 6
    #MaxSessions 10
    #RSAAuthentication yes
    #PubkeyAuthentication yes
    # The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
    # but this is overridden so installations will only check .ssh/authorized_keys
    AuthorizedKeysFile .ssh/authorized_keys
    #AuthorizedPrincipalsFile none
    #AuthorizedKeysCommand none
    #AuthorizedKeysCommandUser nobody
    # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
    #RhostsRSAAuthentication no
    # similar for protocol version 2
    #HostbasedAuthentication no
    # Change to yes if you don't trust ~/.ssh/known_hosts for
    # RhostsRSAAuthentication and HostbasedAuthentication
    #IgnoreUserKnownHosts no
    # Don't read the user's ~/.rhosts and ~/.shosts files
    #IgnoreRhosts yes
    # To disable tunneled clear text passwords, change to no here!
    #PasswordAuthentication yes
    #PermitEmptyPasswords no
    # Change to no to disable s/key passwords
    ChallengeResponseAuthentication no
    # Kerberos options
    #KerberosAuthentication no
    #KerberosOrLocalPasswd yes
    #KerberosTicketCleanup yes
    #KerberosGetAFSToken no
    # GSSAPI options
    #GSSAPIAuthentication no
    #GSSAPICleanupCredentials yes
    # Set this to 'yes' to enable PAM authentication, account processing,
    # and session processing. If this is enabled, PAM authentication will
    # be allowed through the ChallengeResponseAuthentication and
    # PasswordAuthentication. Depending on your PAM configuration,
    # PAM authentication via ChallengeResponseAuthentication may bypass
    # the setting of "PermitRootLogin without-password".
    # If you just want the PAM account and session checks to run without
    # PAM authentication, then enable this but set PasswordAuthentication
    # and ChallengeResponseAuthentication to 'no'.
    UsePAM yes
    #AllowAgentForwarding yes
    #AllowTcpForwarding yes
    #GatewayPorts no
    #X11Forwarding no
    #X11DisplayOffset 10
    #X11UseLocalhost yes
    PrintMotd no # pam does that
    #PrintLastLog yes
    #TCPKeepAlive yes
    #UseLogin no
    UsePrivilegeSeparation sandbox # Default for new installations.
    #PermitUserEnvironment no
    #Compression delayed
    #ClientAliveInterval 0
    #ClientAliveCountMax 3
    #UseDNS yes
    #PidFile /run/sshd.pid
    #MaxStartups 10:30:100
    #PermitTunnel no
    #ChrootDirectory none
    #VersionAddendum none
    # no default banner path
    #Banner none
    # override default of no subsystems
    Subsystem sftp /usr/lib/ssh/sftp-server
    # Example of overriding settings on a per-user basis
    #Match User anoncvs
    # X11Forwarding no
    # AllowTcpForwarding no
    # ForceCommand cvs server
    The ouptut of ip addr when run on the server:
    1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
    valid_lft forever preferred_lft forever
    2: enp8s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
    link/ether 00:21:9b:3a:be:94 brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.75/24 brd 192.168.255.0 scope global enp8s0
    valid_lft forever preferred_lft forever
    inet6 fe80::221:9bff:fe3a:be94/64 scope link
    valid_lft forever preferred_lft forever
    Here is the output from running nmap on the network:
    Starting Nmap 6.40 ( http://nmap.org ) at 2013-09-28 21:05 EDT
    Initiating Ping Scan at 21:05
    Scanning address [2 ports]
    Completed Ping Scan at 21:05, 0.01s elapsed (1 total hosts)
    Initiating Parallel DNS resolution of 1 host. at 21:05
    Completed Parallel DNS resolution of 1 host. at 21:05, 0.05s elapsed
    Initiating Connect Scan at 21:05
    Scanning pa-addresss.dhcp.embarqhsd.net (address) [1000 ports]
    Discovered open port 80/tcp on address
    Discovered open port 443/tcp on address
    Discovered open port 23/tcp on address
    Discovered open port 21/tcp on address
    Completed Connect Scan at 21:05, 4.08s elapsed (1000 total ports)
    Nmap scan report for pa-address.dhcp.embarqhsd.net (address)
    Host is up (0.036s latency).
    Not shown: 995 closed ports
    PORT STATE SERVICE
    21/tcp open ftp
    23/tcp open telnet
    80/tcp open http
    443/tcp open https
    8080/tcp filtered http-proxy
    Read data files from: /usr/bin/../share/nmap
    Nmap done: 1 IP address (1 host up) scanned in 4.19 seconds
    Here is the ssh_config client-side:
    # $OpenBSD: ssh_config,v 1.27 2013/05/16 02:00:34 dtucker Exp $
    # This is the ssh client system-wide configuration file. See
    # ssh_config(5) for more information. This file provides defaults for
    # users, and the values can be changed in per-user configuration files
    # or on the command line.
    # Configuration data is parsed as follows:
    # 1. command line options
    # 2. user-specific file
    # 3. system-wide file
    # Any configuration value is only changed the first time it is set.
    # Thus, host-specific definitions should be at the beginning of the
    # configuration file, and defaults at the end.
    # Site-wide defaults for some commonly used options. For a comprehensive
    # list of available options, their meanings and defaults, please see the
    # ssh_config(5) man page.
    # Host *
    # ForwardAgent no
    # ForwardX11 no
    # RhostsRSAAuthentication no
    # RSAAuthentication yes
    # PasswordAuthentication yes
    # HostbasedAuthentication no
    # GSSAPIAuthentication no
    # GSSAPIDelegateCredentials no
    # BatchMode no
    # CheckHostIP yes
    # AddressFamily any
    # ConnectTimeout 0
    # StrictHostKeyChecking ask
    # IdentityFile ~/.ssh/identity
    # IdentityFile ~/.ssh/id_rsa
    # IdentityFile ~/.ssh/id_dsa
    # Port 22
    Protocol 2
    # Cipher 3des
    # Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
    # MACs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160
    # EscapeChar ~
    # Tunnel no
    # TunnelDevice any:any
    # PermitLocalCommand no
    # VisualHostKey no
    # ProxyCommand ssh -q -W %h:%p gateway.example.com
    # RekeyLimit 1G 1h
    Output of ssh -v during connection attempt:
    OpenSSH_6.3, OpenSSL 1.0.1e 11 Feb 2013
    debug1: Reading configuration data /home/douglas/.ssh/config
    debug1: Reading configuration data /etc/ssh/ssh_config
    debug2: ssh_connect: needpriv 0
    debug1: Connecting to address [address] port 1500.
    debug1: connect to address address port 1500: Connection refused
    ssh: connect to host address port 1500: Connection refused
    Thank you guys ahead of time. Getting this server operational is hardly critical, it is just a side project of mine, but I would really like to see it working.
    Douglas Bahr Rumbaugh
    Last edited by douglasr (2013-09-29 02:58:56)

    Okay, so I finally have the opportunity to try and log in from a remote network. And. . .  it doesn't work. Which is just my luck because I now need to wait an entire week, at least, before I can touch the server again. Anyway, running ssh with the maximum verbosity I get this output:
    douglas ~ $ ssh -vvv -p 2000 address
    OpenSSH_6.3, OpenSSL 1.0.1e 11 Feb 2013
    debug1: Reading configuration data /home/douglas/.ssh/config
    debug1: Reading configuration data /etc/ssh/ssh_config
    debug2: ssh_connect: needpriv 0
    debug1: Connecting to address [address] port 2000.
    debug1: connect to address address port 2000: Connection timed out
    ssh: connect to host address port 2000: Connection timed out
    It takes a minute or two for the command to finish with the connection timeout, as one would expect. And yes, I am reasonably sure that the address that I am using is my home network's external IP. It is dynamic, but I checked it before I left which was just over an hour ago. I guess that it may have changed. I'll know that for sure in the morning, when my server sends me an automatic email with the network's current address. In the meantime I am operating under the assumption that the address I am using is correct. What else could be the problem?

  • Cinnamon 2.0.2-1 does not start. [SOLVED: See github for solution].

    Hi,
    So I've just upgraded the cinnamon package to 2.0.2-1 and it fails to load 3D mode, crashes, loads in Software Rendering mode and asks me if I want to restart Cinnamon. If I restart Cinnamon, the same happens. Does this happen to anyone else?
    Here are the journalctl logs (with C style comments):
    -- Reboot -- /*(User Note: Running package cinnamon 2.0.2-1)*/
    Oct 10 10:48:17 claire systemd[370]: Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
    Oct 10 10:48:17 claire systemd[370]: Mounted /sys/kernel/config.
    Oct 10 10:48:17 claire systemd[370]: Stopped target Sound Card.
    Oct 10 10:48:17 claire systemd[370]: Starting Default.
    Oct 10 10:48:17 claire systemd[370]: Reached target Default.
    Oct 10 10:48:17 claire systemd[370]: Startup finished in 186ms.
    Oct 10 10:48:20 claire pulseaudio[402]: [pulseaudio] bluetooth-util.c: org.bluez.Manager.GetProperties() failed: org.freedesktop.systemd1.LoadFailed: Unit dbus-org.bluez
    Oct 10 10:48:22 claire pulseaudio[444]: [pulseaudio] pid.c: Daemon already running.
    Oct 10 10:48:46 claire cinnamon-session[376]: WARNING: Application 'cinnamon.desktop' killed by signal 15
    Oct 10 10:48:49 claire cinnamon-session[376]: WARNING: App 'cinnamon.desktop' respawning too quickly /*Restarted Cinnamon after this*/
    Oct 10 10:48:49 claire cinnamon-session[376]: CRITICAL: We failed, but the fail whale is dead. Sorry....
    Oct 10 10:48:58 claire cinnamon-session[376]: WARNING: App 'cinnamon.desktop' respawning too quickly /*Restarted Cinnamon after this*/
    Oct 10 10:49:00 claire cinnamon-session[376]: WARNING: App 'cinnamon.desktop' respawning too quickly
    Oct 10 10:52:10 claire systemd[370]: Stopping Default.
    Oct 10 10:52:10 claire systemd[370]: Stopped target Default.
    Oct 10 10:52:10 claire systemd[370]: Starting Shutdown.
    Oct 10 10:52:10 claire systemd[370]: Reached target Shutdown.
    Oct 10 10:52:10 claire systemd[370]: Starting Exit the Session...
    -- Reboot -- /*(User Note: Running package cinnamon 1.9.2-2)*/
    Oct 10 10:53:03 claire systemd[370]: Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
    Oct 10 10:53:03 claire systemd[370]: Mounted /sys/kernel/config.
    Oct 10 10:53:03 claire systemd[370]: Stopped target Sound Card.
    Oct 10 10:53:03 claire systemd[370]: Starting Default.
    Oct 10 10:53:03 claire systemd[370]: Reached target Default.
    Oct 10 10:53:03 claire systemd[370]: Startup finished in 76ms.
    Oct 10 10:53:06 claire pulseaudio[402]: [pulseaudio] bluetooth-util.c: org.bluez.Manager.GetProperties() failed: org.freedesktop.systemd1.LoadFailed: Unit dbus-org.bluez
    Oct 10 10:53:08 claire pulseaudio[446]: [pulseaudio] pid.c: Daemon already running.
    Oct 10 10:55:32 claire sudo[644]: pam_unix(sudo:auth): authentication failure; logname= uid=1000 euid=0 tty=/dev/pts/1 ruser=andes rhost= user=andes
    Oct 10 10:58:50 claire cinnamon-session[376]: Gtk-WARNING: Theme directory preferences/48 of theme Numix has no size field
    Oct 10 10:58:53 claire systemd[370]: Stopping Default.
    Oct 10 10:58:53 claire systemd[370]: Stopped target Default.
    -- Reboot -- /*(User Note: Running package cinnamon 2.0.2-1 and X server 1.14.3-1)*/
    Oct 10 10:59:48 claire systemd[372]: Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
    Oct 10 10:59:48 claire systemd[372]: Mounted /sys/kernel/config.
    Oct 10 10:59:48 claire systemd[372]: Stopped target Sound Card.
    Oct 10 10:59:48 claire systemd[372]: Starting Default.
    Oct 10 10:59:48 claire systemd[372]: Reached target Default.
    Oct 10 10:59:48 claire systemd[372]: Startup finished in 98ms.
    Oct 10 10:59:51 claire pulseaudio[404]: [pulseaudio] bluetooth-util.c: org.bluez.Manager.GetProperties() failed: org.freedesktop.systemd1.LoadFailed: Unit dbus-org.bluez
    Oct 10 10:59:53 claire pulseaudio[449]: [pulseaudio] pid.c: Daemon already running.
    Oct 10 11:00:15 claire cinnamon-session[378]: WARNING: Application 'cinnamon.desktop' killed by signal 15
    Oct 10 11:00:17 claire cinnamon-session[378]: WARNING: App 'cinnamon.desktop' respawning too quickly
    Oct 10 11:00:17 claire cinnamon-session[378]: CRITICAL: We failed, but the fail whale is dead. Sorry....
    Oct 10 11:02:32 claire systemd[372]: Stopping Default.
    Oct 10 11:02:32 claire systemd[372]: Stopped target Default.
    Oct 10 11:02:32 claire systemd[372]: Starting Shutdown.
    -- Reboot -- /*(Using updated X server and cinnamon 1.9.2-2)*/
    Oct 10 11:03:40 claire systemd[371]: Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
    Oct 10 11:03:40 claire systemd[371]: Mounted /sys/kernel/config.
    Oct 10 11:03:40 claire systemd[371]: Stopped target Sound Card.
    Oct 10 11:03:40 claire systemd[371]: Starting Default.
    Oct 10 11:03:40 claire systemd[371]: Reached target Default.
    Oct 10 11:03:40 claire systemd[371]: Startup finished in 87ms.
    Oct 10 11:03:43 claire pulseaudio[403]: [pulseaudio] bluetooth-util.c: org.bluez.Manager.GetProperties() failed: org.freedesktop.systemd1.LoadFailed: Unit dbus-org.bluez
    Oct 10 11:03:45 claire pulseaudio[444]: [pulseaudio] pid.c: Daemon already running.
    And here is the x.Org log corresponding to the Oct 10 10:59:48 reboot (with Cinnamon 2.0.2-1), that is the second to last reboot:
    [ 17.977]
    X.Org X Server 1.14.3
    Release Date: 2013-09-12
    [ 17.977] X Protocol Version 11, Revision 0
    [ 17.977] Build Operating System: Linux 3.11.0-1-ARCH x86_64
    [ 17.977] Current Operating System: Linux claire 3.11.4-1-ck #1 SMP PREEMPT Sat Oct 5 12:41:35 EDT 2013 x86_64
    [ 17.977] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-ck root=UUID=39a70e8b-6be9-43f3-a70c-fdbf45c2cead rw quiet nomodeset elevator=bfq
    [ 17.977] Build Date: 13 September 2013 01:28:59PM
    [ 17.977]
    [ 17.977] Current version of pixman: 0.30.2
    [ 17.977] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 17.977] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 17.977] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Oct 10 10:59:27 2013
    [ 18.009] (==) Using config file: "/etc/X11/xorg.conf"
    [ 18.009] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 18.062] (==) ServerLayout "aticonfig Layout"
    [ 18.062] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
    [ 18.062] (**) | |-->Monitor "<default monitor>"
    [ 18.062] (**) | |-->Device "aticonfig-Device[0]-0"
    [ 18.062] (==) No monitor specified for screen "aticonfig-Screen[0]-0".
    Using a default monitor configuration.
    [ 18.062] (**) |-->Screen "amdcccle-Screen[0]-1" (1)
    [ 18.062] (**) | |-->Monitor "<default monitor>"
    [ 18.062] (**) | |-->Device "amdcccle-Device[0]-1"
    [ 18.062] (==) No monitor specified for screen "amdcccle-Screen[0]-1".
    Using a default monitor configuration.
    [ 18.062] (==) Automatically adding devices
    [ 18.062] (==) Automatically enabling devices
    [ 18.062] (==) Automatically adding GPU devices
    [ 18.149] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 18.149] Entry deleted from font path.
    [ 18.149] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 18.150] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 18.150] Entry deleted from font path.
    [ 18.150] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 18.150] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 18.150] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 18.150] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 18.150] (II) Loader magic: 0x7fdc20
    [ 18.150] (II) Module ABI versions:
    [ 18.150] X.Org ANSI C Emulation: 0.4
    [ 18.150] X.Org Video Driver: 14.1
    [ 18.150] X.Org XInput driver : 19.1
    [ 18.150] X.Org Server Extension : 7.0
    [ 18.152] (--) PCI:*(0:0:1:0) 1002:9649:103c:3566 rev 0, Mem @ 0xe0000000/268435456, 0xf0300000/262144, I/O @ 0x00004000/256
    [ 18.160] Initializing built-in extension Generic Event Extension
    [ 18.160] Initializing built-in extension SHAPE
    [ 18.160] Initializing built-in extension MIT-SHM
    [ 18.160] Initializing built-in extension XInputExtension
    [ 18.160] Initializing built-in extension XTEST
    [ 18.160] Initializing built-in extension BIG-REQUESTS
    [ 18.160] Initializing built-in extension SYNC
    [ 18.160] Initializing built-in extension XKEYBOARD
    [ 18.160] Initializing built-in extension XC-MISC
    [ 18.160] Initializing built-in extension SECURITY
    [ 18.160] Initializing built-in extension XINERAMA
    [ 18.160] Initializing built-in extension XFIXES
    [ 18.160] Initializing built-in extension RENDER
    [ 18.160] Initializing built-in extension RANDR
    [ 18.160] Initializing built-in extension COMPOSITE
    [ 18.160] Initializing built-in extension DAMAGE
    [ 18.160] Initializing built-in extension MIT-SCREEN-SAVER
    [ 18.160] Initializing built-in extension DOUBLE-BUFFER
    [ 18.160] Initializing built-in extension RECORD
    [ 18.160] Initializing built-in extension DPMS
    [ 18.160] Initializing built-in extension X-Resource
    [ 18.160] Initializing built-in extension XVideo
    [ 18.160] Initializing built-in extension XVideo-MotionCompensation
    [ 18.160] Initializing built-in extension XFree86-VidModeExtension
    [ 18.160] Initializing built-in extension XFree86-DGA
    [ 18.160] Initializing built-in extension XFree86-DRI
    [ 18.160] Initializing built-in extension DRI2
    [ 18.160] (II) "glx" will be loaded by default.
    [ 18.160] (II) LoadModule: "glx"
    [ 18.237] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 18.258] (II) Module glx: vendor="Advanced Micro Devices, Inc."
    [ 18.258] compiled for 6.9.0, module version = 1.0.0
    [ 18.258] Loading extension GLX
    [ 18.258] (II) LoadModule: "fglrx"
    [ 18.259] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    [ 18.485] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
    [ 18.485] compiled for 1.4.99.906, module version = 13.20.5
    [ 18.485] Module class: X.Org Video Driver
    [ 18.487] (II) Loading sub module "fglrxdrm"
    [ 18.487] (II) LoadModule: "fglrxdrm"
    [ 18.487] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 18.501] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 18.501] compiled for 1.4.99.906, module version = 13.20.5
    [ 18.501] (II) AMD Proprietary Linux Driver Version Identifier:13.20.5
    [ 18.501] (II) AMD Proprietary Linux Driver Release Identifier: UNSUPPORTED-13.20.11
    [ 18.501] (II) AMD Proprietary Linux Driver Build Date: Sep 21 2013 02:26:09
    [ 18.501] (++) using VT number 7
    [ 18.518] (WW) Falling back to old probe method for fglrx
    [ 18.582] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
    [ 18.594] ukiDynamicMajor: found major device number 250
    [ 18.594] ukiDynamicMajor: found major device number 250
    [ 18.594] ukiOpenByBusid: Searching for BusID PCI:0:1:0
    [ 18.594] ukiOpenDevice: node name is /dev/ati/card0
    [ 18.594] ukiOpenDevice: open result is 9, (OK)
    [ 19.069] ukiOpenByBusid: ukiOpenMinor returns 9
    [ 19.069] ukiOpenByBusid: ukiGetBusid reports PCI:0:1:0
    [ 19.084] ukiDynamicMajor: found major device number 250
    [ 19.084] ukiDynamicMajor: found major device number 250
    [ 19.084] ukiOpenByBusid: Searching for BusID PCI:0:1:0
    [ 19.084] ukiOpenDevice: node name is /dev/ati/card0
    [ 19.084] ukiOpenDevice: open result is 9, (OK)
    [ 19.084] ukiOpenByBusid: ukiOpenMinor returns 9
    [ 19.084] ukiOpenByBusid: ukiGetBusid reports PCI:0:1:0
    [ 19.103] (--) Chipset Supported AMD Graphics Processor (0x9649) found
    [ 19.103] (--) Chipset Supported AMD Graphics Processor (0x9649) found
    [ 19.111] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:1:1) found
    [ 19.113] (II) fglrx(0): pEnt->device->identifier=0x2351e30
    [ 19.113] (II) fglrx(1): pEnt->device->identifier=0x2351e30
    [ 19.113] (II) fglrx(0): === [xdl_xs114_atiddxPreInit] === begin
    [ 19.114] (II) Loading sub module "vgahw"
    [ 19.114] (II) LoadModule: "vgahw"
    [ 19.114] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 19.125] (II) Module vgahw: vendor="X.Org Foundation"
    [ 19.125] compiled for 1.14.3, module version = 0.1.0
    [ 19.125] ABI class: X.Org Video Driver, version 14.1
    [ 19.126] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    [ 19.126] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 19.126] (==) fglrx(0): Default visual is TrueColor
    [ 19.126] (==) fglrx(0): RGB weight 888
    [ 19.126] (II) fglrx(0): Using 8 bits per RGB
    [ 19.126] (==) fglrx(0): Buffer Tiling is ON
    [ 19.126] (II) Loading sub module "fglrxdrm"
    [ 19.126] (II) LoadModule: "fglrxdrm"
    [ 19.126] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 19.126] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 19.126] compiled for 1.4.99.906, module version = 13.20.5
    [ 19.129] ukiDynamicMajor: found major device number 250
    [ 19.130] ukiDynamicMajor: found major device number 250
    [ 19.130] ukiOpenByBusid: Searching for BusID PCI:0:1:0
    [ 19.130] ukiOpenDevice: node name is /dev/ati/card0
    [ 19.130] ukiOpenDevice: open result is 11, (OK)
    [ 19.130] ukiOpenByBusid: ukiOpenMinor returns 11
    [ 19.130] ukiOpenByBusid: ukiGetBusid reports PCI:0:1:0
    [ 19.130] (**) fglrx(0): NoAccel = NO
    [ 19.130] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
    [ 19.130] (--) fglrx(0): Chipset: "AMD Radeon(TM) HD 6480G" (Chipset = 0x9649)
    [ 19.130] (--) fglrx(0): (PciSubVendor = 0x103c, PciSubDevice = 0x3566)
    [ 19.130] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
    [ 19.130] (--) fglrx(0): Linear framebuffer (phys) at 0xe0000000
    [ 19.130] (--) fglrx(0): MMIO registers at 0xf0300000
    [ 19.130] (--) fglrx(0): I/O port at 0x00004000
    [ 19.130] (==) fglrx(0): ROM-BIOS at 0x000c0000
    [ 19.192] (II) fglrx(0): AC Adapter is used
    [ 19.417] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
    [ 19.443] (II) Loading sub module "vbe"
    [ 19.443] (II) LoadModule: "vbe"
    [ 19.443] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 19.456] (II) Module vbe: vendor="X.Org Foundation"
    [ 19.456] compiled for 1.14.3, module version = 1.1.0
    [ 19.456] ABI class: X.Org Video Driver, version 14.1
    [ 19.456] (II) fglrx(0): VESA BIOS detected
    [ 19.456] (II) fglrx(0): VESA VBE Version 3.0
    [ 19.456] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
    [ 19.456] (II) fglrx(0): VESA VBE OEM: AMD ATOMBIOS
    [ 19.456] (II) fglrx(0): VESA VBE OEM Software Rev: 12.43
    [ 19.456] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2010, AMD Technologies Inc.
    [ 19.456] (II) fglrx(0): VESA VBE OEM Product: SUMO
    [ 19.456] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
    [ 19.456] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
    [ 19.456] (--) fglrx(0): Video RAM: 524288 kByte, Type: DDR3
    [ 19.456] (II) fglrx(0): PCIE card detected
    [ 19.457] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
    [ 19.457] (WW) fglrx(0): board is an unknown third party board, chipset is supported
    [ 19.457] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf00000000, MCFBSize = 0x20000000)
    [ 19.457] (II) fglrx(0): RandR 1.2 support is enabled!
    [ 19.457] (II) fglrx(0): RandR 1.2 rotation support is enabled!
    [ 19.457] (==) fglrx(0): Center Mode is disabled
    [ 19.457] (II) Loading sub module "fb"
    [ 19.457] (II) LoadModule: "fb"
    [ 19.457] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 19.477] (II) Module fb: vendor="X.Org Foundation"
    [ 19.477] compiled for 1.14.3, module version = 1.0.0
    [ 19.477] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 19.477] (II) Loading sub module "ddc"
    [ 19.477] (II) LoadModule: "ddc"
    [ 19.477] (II) Module "ddc" already built-in
    [ 19.771] (II) fglrx(0): Output LVDS has no monitor section
    [ 19.771] (II) fglrx(0): Output DFP1 using monitor section 0-DFP1
    [ 19.771] (**) fglrx(0): Option "PreferredMode" "1280x768"
    [ 19.771] (**) fglrx(0): Option "Position" "0 0"
    [ 19.771] (**) fglrx(0): Option "Disable" "false"
    [ 19.771] (**) fglrx(0): Option "Rotate" "normal"
    [ 19.771] (**) fglrx(0): Option "TargetRefresh" "60"
    [ 19.771] (II) fglrx(0): Output CRT1 has no monitor section
    [ 19.771] (II) Loading sub module "ddc"
    [ 19.771] (II) LoadModule: "ddc"
    [ 19.771] (II) Module "ddc" already built-in
    [ 19.771] (II) fglrx(0): Connected Display0: LVDS
    [ 19.771] (II) fglrx(0): Display0 EDID data ---------------------------
    [ 19.771] (II) fglrx(0): Manufacturer: LGD Model: 2f2 Serial#: 0
    [ 19.771] (II) fglrx(0): Year: 2010 Week: 0
    [ 19.771] (II) fglrx(0): EDID Version: 1.3
    [ 19.771] (II) fglrx(0): Digital Display Input
    [ 19.771] (II) fglrx(0): Max Image Size [cm]: horiz.: 34 vert.: 19
    [ 19.771] (II) fglrx(0): Gamma: 2.20
    [ 19.771] (II) fglrx(0): No DPMS capabilities specified
    [ 19.771] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 19.771] (II) fglrx(0): First detailed timing is preferred mode
    [ 19.771] (II) fglrx(0): redX: 0.605 redY: 0.355 greenX: 0.329 greenY: 0.579
    [ 19.771] (II) fglrx(0): blueX: 0.150 blueY: 0.055 whiteX: 0.313 whiteY: 0.329
    [ 19.771] (II) fglrx(0): Manufacturer's mask: 0
    [ 19.771] (II) fglrx(0): Supported detailed timing:
    [ 19.771] (II) fglrx(0): clock: 69.3 MHz Image Size: 344 x 194 mm
    [ 19.771] (II) fglrx(0): h_active: 1366 h_sync: 1402 h_sync_end 1442 h_blank_end 1480 h_border: 0
    [ 19.771] (II) fglrx(0): v_active: 768 v_sync: 771 v_sync_end 776 v_blanking: 780 v_border: 0
    [ 19.772] (II) fglrx(0): LG Display
    [ 19.772] (II) fglrx(0): LP156WH4-TLC1
    [ 19.772] (II) fglrx(0): EDID (in hex):
    [ 19.772] (II) fglrx(0): 00ffffffffffff0030e4f20200000000
    [ 19.772] (II) fglrx(0): 00140103802213780a05859b5b549426
    [ 19.772] (II) fglrx(0): 0e505400000001010101010101010101
    [ 19.772] (II) fglrx(0): 010101010101121b567250000c302428
    [ 19.772] (II) fglrx(0): 350058c2100000190000000000000000
    [ 19.772] (II) fglrx(0): 00000000000000000000000000fe004c
    [ 19.772] (II) fglrx(0): 4720446973706c61790a2020000000fe
    [ 19.772] (II) fglrx(0): 004c503135365748342d544c433100ff
    [ 19.772] (II) fglrx(0): End of Display0 EDID data --------------------
    [ 19.772] (WW) fglrx(0): Dynamic Surface Resizing cannot be enabled
    [ 19.772] (II) fglrx(0): EDID for output LVDS
    [ 19.772] (II) fglrx(0): Manufacturer: LGD Model: 2f2 Serial#: 0
    [ 19.772] (II) fglrx(0): Year: 2010 Week: 0
    [ 19.772] (II) fglrx(0): EDID Version: 1.3
    [ 19.772] (II) fglrx(0): Digital Display Input
    [ 19.772] (II) fglrx(0): Max Image Size [cm]: horiz.: 34 vert.: 19
    [ 19.772] (II) fglrx(0): Gamma: 2.20
    [ 19.772] (II) fglrx(0): No DPMS capabilities specified
    [ 19.772] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 19.772] (II) fglrx(0): First detailed timing is preferred mode
    [ 19.772] (II) fglrx(0): redX: 0.605 redY: 0.355 greenX: 0.329 greenY: 0.579
    [ 19.772] (II) fglrx(0): blueX: 0.150 blueY: 0.055 whiteX: 0.313 whiteY: 0.329
    [ 19.772] (II) fglrx(0): Manufacturer's mask: 0
    [ 19.772] (II) fglrx(0): Supported detailed timing:
    [ 19.772] (II) fglrx(0): clock: 69.3 MHz Image Size: 344 x 194 mm
    [ 19.772] (II) fglrx(0): h_active: 1366 h_sync: 1402 h_sync_end 1442 h_blank_end 1480 h_border: 0
    [ 19.772] (II) fglrx(0): v_active: 768 v_sync: 771 v_sync_end 776 v_blanking: 780 v_border: 0
    [ 19.772] (II) fglrx(0): LG Display
    [ 19.772] (II) fglrx(0): LP156WH4-TLC1
    [ 19.772] (II) fglrx(0): EDID (in hex):
    [ 19.773] (II) fglrx(0): 00ffffffffffff0030e4f20200000000
    [ 19.773] (II) fglrx(0): 00140103802213780a05859b5b549426
    [ 19.773] (II) fglrx(0): 0e505400000001010101010101010101
    [ 19.773] (II) fglrx(0): 010101010101121b567250000c302428
    [ 19.773] (II) fglrx(0): 350058c2100000190000000000000000
    [ 19.773] (II) fglrx(0): 00000000000000000000000000fe004c
    [ 19.773] (II) fglrx(0): 4720446973706c61790a2020000000fe
    [ 19.773] (II) fglrx(0): 004c503135365748342d544c433100ff
    [ 19.773] (II) fglrx(0): EDID vendor "LGD", prod id 754
    [ 19.773] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 19.773] (II) fglrx(0): Modeline "1366x768"x0.0 69.30 1366 1402 1442 1480 768 771 776 780 -hsync -vsync (46.8 kHz eP)
    [ 19.773] (II) fglrx(0): Printing probed modes for output LVDS
    [ 19.773] (II) fglrx(0): Modeline "1366x768"x60.0 69.30 1366 1402 1442 1480 768 771 776 780 -hsync -vsync (46.8 kHz eP)
    [ 19.773] (II) fglrx(0): Modeline "1360x768"x60.0 69.30 1360 1402 1442 1480 768 771 776 780 -hsync -vsync (46.8 kHz e)
    [ 19.773] (II) fglrx(0): Modeline "1280x768"x60.0 69.30 1280 1402 1442 1480 768 771 776 780 -hsync -vsync (46.8 kHz e)
    [ 19.773] (II) fglrx(0): Modeline "1280x720"x60.0 69.30 1280 1402 1442 1480 720 771 776 780 -hsync -vsync (46.8 kHz e)
    [ 19.773] (II) fglrx(0): Modeline "1024x768"x60.0 69.30 1024 1402 1442 1480 768 771 776 780 -hsync -vsync (46.8 kHz e)
    [ 19.773] (II) fglrx(0): Modeline "1024x600"x60.0 69.30 1024 1402 1442 1480 600 771 776 780 -hsync -vsync (46.8 kHz e)
    [ 19.773] (II) fglrx(0): Modeline "800x600"x60.0 69.30 800 1402 1442 1480 600 771 776 780 -hsync -vsync (46.8 kHz e)
    [ 19.773] (II) fglrx(0): Modeline "800x480"x60.0 69.30 800 1402 1442 1480 480 771 776 780 -hsync -vsync (46.8 kHz e)
    [ 19.773] (II) fglrx(0): Modeline "640x480"x60.0 69.30 640 1402 1442 1480 480 771 776 780 -hsync -vsync (46.8 kHz e)
    [ 19.773] (II) fglrx(0): EDID for output DFP1
    [ 19.773] (II) fglrx(0): EDID for output CRT1
    [ 19.773] (II) fglrx(0): Output LVDS connected
    [ 19.773] (II) fglrx(0): Output DFP1 disconnected
    [ 19.773] (II) fglrx(0): Output CRT1 disconnected
    [ 19.773] (II) fglrx(0): Using user preference for initial modes
    [ 19.773] (II) fglrx(0): Output LVDS using initial mode 1366x768
    [ 19.773] (II) fglrx(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 19.773] (II) fglrx(0): Display dimensions: (340, 190) mm
    [ 19.773] (II) fglrx(0): DPI set to (102, 102)
    [ 19.773] (II) fglrx(0): Adapter AMD Radeon(TM) HD 6480G has 2 configurable heads and 1 displays connected.
    [ 19.773] (==) fglrx(0): PseudoColor visuals disabled
    [ 19.773] (II) Loading sub module "ramdac"
    [ 19.773] (II) LoadModule: "ramdac"
    [ 19.773] (II) Module "ramdac" already built-in
    [ 19.773] (==) fglrx(0): NoDRI = NO
    [ 19.773] (==) fglrx(0): Capabilities: 0x00000000
    [ 19.773] (==) fglrx(0): CapabilitiesEx: 0x00000000
    [ 19.773] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
    [ 19.773] (==) fglrx(0): UseFastTLS=0
    [ 19.773] (II) fglrx(0): Shadow Primary option: ShadowPrimary is enabled
    [ 19.773] (II) fglrx(1): === [xdl_xs114_atiddxPreInit] === begin
    [ 19.773] (WW) fglrx(1): Quitting screen 1 -- no monitor specified.
    [ 19.773] (II) fglrx(1): === [xdl_xs114_atiddxPreInit] === end
    [ 19.773] (II) UnloadModule: "fglrx"
    [ 19.773] (II) UnloadSubModule: "fglrxdrm"
    [ 19.773] (--) Depth 24 pixmap format is 32 bpp
    [ 19.773] Loading extension ATIFGLRXDRI
    [ 19.773] (II) fglrx(0): doing swlDriScreenInit
    [ 19.773] (II) fglrx(0): swlDriScreenInit for fglrx driver
    [ 19.774] ukiDynamicMajor: found major device number 250
    [ 19.774] ukiDynamicMajor: found major device number 250
    [ 19.774] ukiDynamicMajor: found major device number 250
    [ 19.774] ukiOpenByBusid: Searching for BusID PCI:0:1:0
    [ 19.774] ukiOpenDevice: node name is /dev/ati/card0
    [ 19.774] ukiOpenDevice: open result is 12, (OK)
    [ 19.774] ukiOpenByBusid: ukiOpenMinor returns 12
    [ 19.774] ukiOpenByBusid: ukiGetBusid reports PCI:0:1:0
    [ 19.774] (II) fglrx(0): [uki] DRM interface version 1.0
    [ 19.774] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:0:1:0"
    [ 19.774] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x2000
    [ 19.774] (II) fglrx(0): [uki] mapped SAREA 0x2000 to 0x7f428f53d000
    [ 19.774] (II) fglrx(0): [uki] framebuffer handle = 0x3000
    [ 19.774] (II) fglrx(0): [uki] added 1 reserved context for kernel
    [ 19.774] (II) fglrx(0): swlDriScreenInit done
    [ 19.774] (II) fglrx(0): Kernel Module Version Information:
    [ 19.774] (II) fglrx(0): Name: fglrx
    [ 19.774] (II) fglrx(0): Version: 13.20.5
    [ 19.774] (II) fglrx(0): Date: Sep 21 2013
    [ 19.774] (II) fglrx(0): Desc: AMD FireGL DRM kernel module
    [ 19.774] (II) fglrx(0): Kernel Module version matches driver.
    [ 19.774] (II) fglrx(0): Kernel Module Build Time Information:
    [ 19.774] (II) fglrx(0): Build-Kernel UTS_RELEASE: 3.11.4-1-ck
    [ 19.774] (II) fglrx(0): Build-Kernel MODVERSIONS: yes
    [ 19.774] (II) fglrx(0): Build-Kernel __SMP__: yes
    [ 19.774] (II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
    [ 19.774] (II) fglrx(0): [uki] register handle = 0x00004000
    [ 19.797] (II) fglrx(0): Display width adjusted to to 1664 due to alignment constraints
    [ 19.797] (II) fglrx(0): DRI initialization successfull
    [ 19.809] (II) fglrx(0): FBADPhys: 0xf00000000 FBMappedSize: 0x01110000
    [ 19.817] (==) fglrx(0): Backing store disabled
    [ 19.817] Loading extension FGLRXEXTENSION
    [ 19.817] (==) fglrx(0): DPMS enabled
    [ 19.817] (II) fglrx(0): Initialized in-driver Xinerama extension
    [ 19.818] (**) fglrx(0): Textured Video is enabled.
    [ 19.818] (II) LoadModule: "glesx"
    [ 19.818] (II) Loading /usr/lib/xorg/modules/glesx.so
    [ 19.950] (II) Module glesx: vendor="X.Org Foundation"
    [ 19.950] compiled for 1.4.99.906, module version = 1.0.0
    [ 19.950] Loading extension GLESX
    [ 19.950] (II) fglrx(0): GLESX enableFlags = 592
    [ 19.951] (II) fglrx(0): GLESX is enabled
    [ 19.951] (II) LoadModule: "amdxmm"
    [ 19.951] (II) Loading /usr/lib/xorg/modules/amdxmm.so
    [ 19.965] (II) Module amdxmm: vendor="X.Org Foundation"
    [ 19.965] compiled for 1.4.99.906, module version = 2.0.0
    [ 19.989] Loading extension AMDXVOPL
    [ 19.989] Loading extension AMDXVBA
    [ 20.001] (II) fglrx(0): UVD feature is enabled(II) fglrx(0):
    [ 20.006] (II) fglrx(0): Enable composite support successfully
    [ 20.006] (II) fglrx(0): X context handle = 0x1
    [ 20.006] (II) fglrx(0): [DRI] installation complete
    [ 20.006] (==) fglrx(0): Silken mouse enabled
    [ 20.006] (==) fglrx(0): Using HW cursor of display infrastructure!
    [ 20.007] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 20.016] (II) fglrx(0): 'LVDS LCD' ConnectorType, abstracted as 'Panel'
    [ 20.016] (II) fglrx(0): 'eDP LCD' ConnectorType, abstracted as 'Panel'
    [ 21.143] (--) RandR disabled
    [ 21.151] ukiDynamicMajor: found major device number 250
    [ 21.151] ukiDynamicMajor: found major device number 250
    [ 21.151] ukiOpenByBusid: Searching for BusID PCI:0:1:0
    [ 21.151] ukiOpenDevice: node name is /dev/ati/card0
    [ 21.151] ukiOpenDevice: open result is 13, (OK)
    [ 21.151] ukiOpenByBusid: ukiOpenMinor returns 13
    [ 21.151] ukiOpenByBusid: ukiGetBusid reports PCI:0:1:0
    [ 21.151] (EE) AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or directory]
    [ 21.659] ukiDynamicMajor: found major device number 250
    [ 21.659] ukiDynamicMajor: found major device number 250
    [ 21.659] ukiDynamicMajor: found major device number 250
    [ 21.659] ukiOpenDevice: node name is /dev/ati/card0
    [ 21.659] ukiOpenDevice: open result is 14, (OK)
    [ 21.659] ukiGetBusid returned 'PCI:0:1:0'
    [ 21.659] ukiOpenDevice: node name is /dev/ati/card1
    [ 21.659] ukiOpenDevice: open result is -1, (No such device)
    [ 21.659] ukiOpenDevice: open result is -1, (No such device)
    [ 21.659] ukiOpenDevice: Open failed
    [ 21.659] ukiOpenDevice: node name is /dev/ati/card2
    [ 21.659] ukiOpenDevice: open result is -1, (No such device)
    [ 21.659] ukiOpenDevice: open result is -1, (No such device)
    [ 21.659] ukiOpenDevice: Open failed
    [ 21.659] ukiOpenDevice: node name is /dev/ati/card3
    [ 21.659] ukiOpenDevice: open result is -1, (No such device)
    [ 21.659] ukiOpenDevice: open result is -1, (No such device)
    [ 21.659] ukiOpenDevice: Open failed
    [ 21.659] ukiOpenDevice: node name is /dev/ati/card4
    [ 21.659] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: Open failed
    [ 21.660] ukiOpenDevice: node name is /dev/ati/card5
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: Open failed
    [ 21.660] ukiOpenDevice: node name is /dev/ati/card6
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: Open failed
    [ 21.660] ukiOpenDevice: node name is /dev/ati/card7
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: Open failed
    [ 21.660] ukiOpenDevice: node name is /dev/ati/card8
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: Open failed
    [ 21.660] ukiOpenDevice: node name is /dev/ati/card9
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: Open failed
    [ 21.660] ukiOpenDevice: node name is /dev/ati/card10
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: Open failed
    [ 21.660] ukiOpenDevice: node name is /dev/ati/card11
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.660] ukiOpenDevice: open result is -1, (No such device)
    [ 21.661] ukiOpenDevice: Open failed
    [ 21.661] ukiOpenDevice: node name is /dev/ati/card12
    [ 21.661] ukiOpenDevice: open result is -1, (No such device)
    [ 21.661] ukiOpenDevice: open result is -1, (No such device)
    [ 21.661] ukiOpenDevice: Open failed
    [ 21.661] ukiOpenDevice: node name is /dev/ati/card13
    [ 21.661] ukiOpenDevice: open result is -1, (No such device)
    [ 21.661] ukiOpenDevice: open result is -1, (No such device)
    [ 21.661] ukiOpenDevice: Open failed
    [ 21.661] ukiOpenDevice: node name is /dev/ati/card14
    [ 21.661] ukiOpenDevice: open result is -1, (No such device)
    [ 21.661] ukiOpenDevice: open result is -1, (No such device)
    [ 21.661] ukiOpenDevice: Open failed
    [ 21.661] ukiOpenDevice: node name is /dev/ati/card15
    [ 21.661] ukiOpenDevice: open result is -1, (No such device)
    [ 21.661] ukiOpenDevice: open result is -1, (No such device)
    [ 21.661] ukiOpenDevice: Open failed
    [ 21.661] ukiDynamicMajor: found major device number 250
    [ 21.661] ukiOpenByBusid: Searching for BusID PCI:0:1:0
    [ 21.661] ukiOpenDevice: node name is /dev/ati/card0
    [ 21.661] ukiOpenDevice: open result is 14, (OK)
    [ 21.661] ukiOpenByBusid: ukiOpenMinor returns 14
    [ 21.661] ukiOpenByBusid: ukiGetBusid reports PCI:0:1:0
    [ 22.504] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
    [ 22.504] ukiDynamicMajor: found major device number 250
    [ 22.505] ukiDynamicMajor: found major device number 250
    [ 22.505] ukiDynamicMajor: found major device number 250
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card0
    [ 22.505] ukiOpenDevice: open result is 15, (OK)
    [ 22.505] ukiGetBusid returned 'PCI:0:1:0'
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card1
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card2
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card3
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card4
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card5
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card6
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card7
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card8
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card9
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card10
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card11
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card12
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card13
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card14
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card15
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: open result is -1, (No such device)
    [ 22.505] ukiOpenDevice: Open failed
    [ 22.505] ukiDynamicMajor: found major device number 250
    [ 22.505] ukiOpenByBusid: Searching for BusID PCI:0:1:0
    [ 22.505] ukiOpenDevice: node name is /dev/ati/card0
    [ 22.505] ukiOpenDevice: open result is 15, (OK)
    [ 22.505] ukiOpenByBusid: ukiOpenMinor returns 15
    [ 22.505] ukiOpenByBusid: ukiGetBusid reports PCI:0:1:0
    [ 22.607] (II) fglrx(0): Setting screen physical size to 361 x 203
    [ 23.018] (II) config/udev: Adding input device Power Button (/dev/input/event5)
    [ 23.018] (**) Power Button: Applying InputClass "system-keyboard"
    [ 23.018] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 23.018] (II) LoadModule: "evdev"
    [ 23.018] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 23.049] (II) Module evdev: vendor="X.Org Foundation"
    [ 23.049] compiled for 1.14.3, module version = 2.8.2
    [ 23.049] Module class: X.Org XInput Driver
    [ 23.049] ABI class: X.Org XInput driver, version 19.1
    [ 23.049] (II) Using input driver 'evdev' for 'Power Button'
    [ 23.049] (**) Power Button: always reports core events
    [ 23.049] (**) evdev: Power Button: Device: "/dev/input/event5"
    [ 23.049] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 23.049] (--) evdev: Power Button: Found keys
    [ 23.049] (II) evdev: Power Button: Configuring as keyboard
    [ 23.049] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5/event5"
    [ 23.049] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 23.049] (**) Option "xkb_rules" "evdev"
    [ 23.049] (**) Option "xkb_model" "pc104"
    [ 23.049] (**) Option "xkb_layout" "uk(qwerty)"
    [ 23.077] (EE) Error loading keymap /var/lib/xkb/server-0.xkm
    [ 23.077] (EE) XKB: Failed to load keymap. Loading default keymap instead.
    [ 23.117] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
    [ 23.117] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 23.117] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 23.117] (II) Using input driver 'evdev' for 'Video Bus'
    [ 23.117] (**) Video Bus: always reports core events
    [ 23.117] (**) evdev: Video Bus: Device: "/dev/input/event6"
    [ 23.117] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 23.117] (--) evdev: Video Bus: Found keys
    [ 23.117] (II) evdev: Video Bus: Configuring as keyboard
    [ 23.117] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input6/event6"
    [ 23.117] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 23.117] (**) Option "xkb_rules" "evdev"
    [ 23.117] (**) Option "xkb_model" "pc104"
    [ 23.118] (**) Option "xkb_layout" "uk(qwerty)"
    [ 23.118] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 23.118] (**) Power Button: Applying InputClass "system-keyboard"
    [ 23.118] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 23.118] (II) Using input driver 'evdev' for 'Power Button'
    [ 23.118] (**) Power Button: always reports core events
    [ 23.118] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 23.118] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 23.118] (--) evdev: Power Button: Found keys
    [ 23.118] (II) evdev: Power Button: Configuring as keyboard
    [ 23.118] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3/event3"
    [ 23.118] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 23.118] (**) Option "xkb_rules" "evdev"
    [ 23.118] (**) Option "xkb_model" "pc104"
    [ 23.118] (**) Option "xkb_layout" "uk(qwerty)"
    [ 23.119] (II) config/udev: Adding input device Lid Switch (/dev/input/event4)
    [ 23.119] (II) No input driver specified, ignoring this device.
    [ 23.119] (II) This device may have been added with another device file.
    [ 23.119] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event7)
    [ 23.119] (II) No input driver specified, ignoring this device.
    [ 23.119] (II) This device may have been added with another device file.
    [ 23.119] (II) config/udev: Adding input device HID 04d9:2517 (/dev/input/event2)
    [ 23.119] (**) HID 04d9:2517: Applying InputClass "system-keyboard"
    [ 23.119] (**) HID 04d9:2517: Applying InputClass "evdev keyboard catchall"
    [ 23.119] (II) Using input driver 'evdev' for 'HID 04d9:2517'
    [ 23.119] (**) HID 04d9:2517: always reports core events
    [ 23.119] (**) evdev: HID 04d9:2517: Device: "/dev/input/event2"
    [ 23.119] (--) evdev: HID 04d9:2517: Vendor 0x4d9 Product 0x2517
    [ 23.119] (--) evdev: HID 04d9:2517: Found keys
    [ 23.119] (II) evdev: HID 04d9:2517: Configuring as keyboard
    [ 23.119] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb4/4-1/4-1:1.0/input/input2/event2"
    [ 23.119] (II) XINPUT: Adding extended input device "HID 04d9:2517" (type: KEYBOARD, id 9)
    [ 23.119] (**) Option "xkb_rules" "evdev"
    [ 23.119] (**) Option "xkb_model" "pc104"
    [ 23.119] (**) Option "xkb_layout" "uk(qwerty)"
    [ 23.120] (II) config/udev: Adding input device HID 04d9:2517 (/dev/input/event1)
    [ 23.120] (**) HID 04d9:2517: Applying InputClass "system-keyboard"
    [ 23.120] (**) HID 04d9:2517: Applying InputClass "evdev pointer catchall"
    [ 23.120] (**) HID 04d9:2517: Applying InputClass "evdev keyboard catchall"
    [ 23.120] (II) Using input driver 'evdev' for 'HID 04d9:2517'
    [ 23.120] (**) HID 04d9:2517: always reports core events
    [ 23.120] (**) evdev: HID 04d9:2517: Device: "/dev/input/event1"
    [ 23.120] (--) evdev: HID 04d9:2517: Vendor 0x4d9 Product 0x2517
    [ 23.120] (--) evdev: HID 04d9:2517: Found 9 mouse buttons
    [ 23.120] (--) evdev: HID 04d9:2517: Found scroll wheel(s)
    [ 23.120] (--) evdev: HID 04d9:2517: Found relative axes
    [ 23.120] (--) evdev: HID 04d9:2517: Found x and y relative axes
    [ 23.120] (--) evdev: HID 04d9:2517: Found absolute axes
    [ 23.120] (II) evdev: HID 04d9:2517: Forcing absolute x/y axes to exist.
    [ 23.120] (--) evdev: HID 04d9:2517: Found keys
    [ 23.120] (II) evdev: HID 04d9:2517: Configuring as mouse
    [ 23.120] (II) evdev: HID 04d9:2517: Configuring as keyboard
    [ 23.120] (II) evdev: HID 04d9:2517: Adding scrollwheel support
    [ 23.120] (**) evdev: HID 04d9:2517: YAxisMapping: buttons 4 and 5
    [ 23.120] (**) evdev: HID 04d9:2517: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 23.120] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb4/4-1/4-1:1.1/input/input1/event1"
    [ 23.120] (II) XINPUT: Adding extended input device "HID 04d9:2517" (type: KEYBOARD, id 10)
    [ 23.120] (**) Option "xkb_rules" "evdev"
    [ 23.120] (**) Option "xkb_model" "pc104"
    [ 23.120] (**) Option "xkb_layout" "uk(qwerty)"
    [ 23.120] (II) evdev: HID 04d9:2517: initialized for relative axes.
    [ 23.120] (WW) evdev: HID 04d9:2517: ignoring absolute axes.
    [ 23.120] (**) HID 04d9:2517: (accel) keeping acceleration scheme 1
    [ 23.120] (**) HID 04d9:2517: (accel) acceleration profile 0
    [ 23.121] (**) HID 04d9:2517: (accel) acceleration factor: 2.000
    [ 23.121] (**) HID 04d9:2517: (accel) acceleration threshold: 4
    [ 23.121] (II) config/udev: Adding input device HID 04d9:2517 (/dev/input/mouse0)
    [ 23.121] (**) HID 04d9:2517: Applying InputClass "system-keyboard"
    [ 23.121] (II) No input driver specified, ignoring this device.
    [ 23.121] (II) This device may have been added with another device file.
    [ 23.121] (II) config/udev: Adding input device HP Webcam-101 (/dev/input/event14)
    [ 23.121] (**) HP Webcam-101: Applying InputClass "system-keyboard"
    [ 23.121] (**) HP Webcam-101: Applying InputClass "evdev keyboard catchall"
    [ 23.121] (II) Using input driver 'evdev' for 'HP Webcam-101'
    [ 23.121] (**) HP Webcam-101: always reports core events
    [ 23.121] (**) evdev: HP Webcam-101: Device: "/dev/input/event14"
    [ 23.121] (--) evdev: HP Webcam-101: Vendor 0x5c8 Product 0x21e
    [ 23.121] (--) evdev: HP Webcam-101: Found keys
    [ 23.121] (II) evdev: HP Webcam-101: Configuring as keyboard
    [ 23.121] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.2/usb1/1-3/1-3:1.0/input/input14/event14"
    [ 23.121] (II) XINPUT: Adding extended input device "HP Webcam-101" (type: KEYBOARD, id 11)
    [ 23.121] (**) Option "xkb_rules" "evdev"
    [ 23.121] (**) Option "xkb_model" "pc104"
    [ 23.121] (**) Option "xkb_layout" "uk(qwerty)"
    [ 23.122] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
    [ 23.122] (II) No input driver specified, ignoring this device.
    [ 23.122] (II) This device may have been added with another device file.
    [ 23.122] (II) config/udev: Adding input device HD-Audio Generic Mic (/dev/input/event10)
    [ 23.122] (II) No input driver specified, ignoring this device.
    [ 23.122] (II) This device may have been added with another device file.
    [ 23.122] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event9)
    [ 23.122] (II) No input driver specified, ignoring this device.
    [ 23.122] (II) This device may have been added with another device file.
    [ 23.122] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 23.122] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
    [ 23.122] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 23.122] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 23.122] (**) AT Translated Set 2 keyboard: always reports core events
    [ 23.122] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 23.122] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 23.122] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 23.122] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 23.122] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 23.122] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
    [ 23.122] (**) Option "xkb_rules" "evdev"
    [ 23.122] (**) Option "xkb_model" "pc104"
    [ 23.122] (**) Option "xkb_layout" "uk(qwerty)"
    [ 23.123] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event12)
    [ 23.123] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 23.123] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 23.123] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 23.123] (II) LoadModule: "synaptics"
    [ 23.123] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 23.143] (II) Module synaptics: vendor="X.Org Foundation"
    [ 23.143] compiled for 1.14.1, module version = 1.7.1
    [ 23.143] Module class: X.Org XInput Driver
    [ 23.143] ABI class: X.Org XInput driver, version 19.1
    [ 23.143] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 23.143] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 23.143] (**) Option "Device" "/dev/input/event12"
    [ 23.178] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 23.178] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5634 (res 51)
    [ 23.178] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4598 (res 76)
    [ 23.178] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 23.178] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 23.178] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 23.178] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 23.178] (**) Option "TapButton1" "1"
    [ 23.178] (**) Option "TapButton2" "2"
    [ 23.178] (**) Option "TapButton3" "3"
    [ 23.178] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 23.178] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 23.194] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input12/event12"
    [ 23.194] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
    [ 23.194] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 23.194] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 23.194] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.038
    [ 23.194] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 23.194] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 23.194] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 23.194] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 23.194] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 23.195] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 23.195] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 23.195] (II) config/udev: Adding input device PC Speaker (/dev/input/event11)
    [ 23.195] (II) No input driver specified, ignoring this device.
    [ 23.195] (II) This device may have been added with another device file.
    [ 23.196] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event13)
    [ 23.197] (**) HP WMI hotkeys: Applying InputClass "system-keyboard"
    [ 23.197] (**) HP WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 23.197] (II) Using input driver 'evdev' for 'HP WMI hotkeys'
    [ 23.197] (**) HP WMI hotkeys: always reports core events
    [ 23.197] (**) evdev: HP WMI hotkeys: Device: "/dev/input/event13"
    [ 23.197] (--) evdev: HP WMI hotkeys: Vendor 0 Product 0
    [ 23.197] (--) evdev: HP WMI hotkeys: Found keys
    [ 23.197] (II) evdev: HP WMI hotkeys: Configuring as keyboard
    [ 23.197] (**) Option "config_info" "udev:/sys/devices/virtual/input/input13/event13"
    [ 23.197] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD, id 14)
    [ 23.197] (**) Option "xkb_rules" "evdev"
    [ 23.197] (**) Option "xkb_model" "pc104"
    [ 23.197] (**) Option "xkb_layout" "uk(qwerty)"
    [ 23.205] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
    [ 23.206] (II) fglrx(0): Framebuffer compression enabled from crtc[0]: mcAddr=0xf0f53c000 with=0x800 height=0x258
    [ 44.564] (II) fglrx(0): EDID vendor "LGD", prod id 754
    [ 44.564] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 44.564] (II) fglrx(0): Modeline "1366x768"x0.0 69.30 1366 1402 1442 1480 768 771 776 780 -hsync -vsync (46.8 kHz eP)
    [ 52.467] (II) fglrx(0): EDID vendor "LGD", prod id 754
    [ 52.467] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 52.467] (II) fglrx(0): Modeline "1366x768"x0.0 69.30 1366 1402 1442 1480 768 771 776 780 -hsync -vsync (46.8 kHz eP)
    [ 53.619] (II) fglrx(0): EDID vendor "LGD", prod id 754
    [ 53.619] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 53.619] (II) fglrx(0): Modeline "1366x768"x0.0 69.30 1366 1402 1442 1480 768 771 776 780 -hsync -vsync (46.8 kHz eP)
    [ 66.105] (II) fglrx(0): EDID vendor "LGD", prod id 754
    [ 66.105] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 66.105] (II) fglrx(0): Modeline "1366x768"x0.0 69.30 1366 1402 1442 1480 768 771 776 780 -hsync -vsync (46.8 kHz eP)
    [ 74.151] (II) fglrx(0): EDID vendor "LGD", prod id 754
    [ 74.151] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 74.151] (II) fglrx(0): Modeline "1366x768"x0.0 69.30 1366 1402 1442 1480 768 771 776 780 -hsync -vsync (46.8 kHz eP)
    [ 76.470] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 76.471] (II) fglrx(0): Backup framebuffer data.
    [ 76.494] (II) fglrx(0): Backup complete.
    [ 76.494] (II) fglrx(0): Framebuffer compression disabled from crtc[0]
    [ 204.033] (II) evdev: HP WMI hotkeys: Close
    [ 204.033] (II) UnloadModule: "evdev"
    [ 204.033] (II) UnloadModule: "synaptics"
    [ 204.033] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 204.033] (II) UnloadModule: "evdev"
    [ 204.033] (II) evdev: HP Webcam-101: Close
    [ 204.033] (II) UnloadModule: "evdev"
    [ 204.033] (II) evdev: HID 04d9:2517: Close
    [ 204.033] (II) UnloadModule: "evdev"
    [ 204.033] (II) evdev: HID 04d9:2517: Close
    [ 204.033] (II) UnloadModule: "evdev"
    [ 204.034] (II) evdev: Power Button: Close
    [ 204.034] (II) UnloadModule: "evdev"
    [ 204.034] (II) evdev: Video Bus: Close
    [ 204.034] (II) UnloadModule: "evdev"
    [ 204.034] (II) evdev: Power Button: Close
    [ 204.034] (II) UnloadModule: "evdev"
    [ 204.037] (II) fglrx(0): Shutdown CMMQS
    [ 204.040] (II) fglrx(0): [uki] removed 1 reserved context for kernel
    [ 204.040] (II) fglrx(0): [uki] unmapping 8192 bytes of SAREA 0x2000 at 0x7f428f53d000
    [ 204.040] (EE)
    [ 204.040] (EE) Backtrace:
    [ 204.943] (EE) 0: /usr/bin/Xorg (xorg_backtrace+0x3d) [0x57f67d]
    [ 204.943] (EE) 1: /usr/bin/Xorg (0x400000+0x1833e9) [0x5833e9]
    [ 204.943] (EE) 2: /usr/lib/libpthread.so.0 (0x7f428e886000+0xf870) [0x7f428e895870]
    [ 204.943] (EE) 3: /usr/lib/libpciaccess.so.0 (0x7f428eaa4000+0x504e) [0x7f428eaa904e]
    [ 204.943] (EE) 4: /usr/lib/xorg/modules/drivers/fglrx_drv.so (amd_xs113_int10_x_inb+0x46) [0x7f428c0ebda6]
    [ 204.943] (EE) 5: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0x7f428b845000+0x89fa85) [0x7f428c0e4a85]
    [ 204.944] (EE) 6: /usr/lib/xorg/modules/drivers/fglrx_drv.so (X86EMU_exec+0xa5) [0x7f428c0d81d5]
    [ 204.945] (EE) 7: /usr/lib/xorg/modules/drivers/fglrx_drv.so (amd_xs113_int10_xf86ExecX86int10+0x46) [0x7f428c0ecf06]
    [ 204.945] (EE) 8: /usr/lib/xorg/modules/drivers/fglrx_drv.so (xf86ExecX86int10+0xd) [0x7f428bbce5dd]
    [ 204.945] (EE) 9: /usr/lib/xorg/modules/libvbe.so (VBESetVBEMode+0x9d) [0x7f428b1eb65d]
    [ 204.946] (EE) 10: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0x7f428b845000+0x3bcce3) [0x7f428bc01ce3]
    [ 204.946] (EE) 11: /usr/lib/xorg/modules/drivers/fglrx_drv.so (atiddxVBESetConsoleMode+0x44) [0x7f428bc01b34]
    [ 204.947] (EE) 12: /usr/lib/xorg/modules/drivers/fglrx_drv.so (xdl_xs114_atiddxFreeScreen+0x730) [0x7f428bd60f00]
    [ 204.947] (EE) 13: /usr/lib/xorg/modules/drivers/fglrx_drv.so (xdl_xs114_atiddxCloseScreen+0x321) [0x7f428bd60531]
    [ 204.948] (EE) 14: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0x7f428b845000+0x9074c6) [0x7f428c14c4c6]
    [ 204.948] (EE) 15: /usr/bin/Xorg (0x400000+0xc4efe) [0x4c4efe]
    [ 204.948] (EE) 16: /usr/bin/Xorg (0x400000+0x107de6) [0x507de6]
    [ 204.948] (EE) 17: /usr/bin/Xorg (0x400000+0x26a47) [0x426a47]
    [ 204.948] (EE) 18: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7f428d909bc5]
    [ 204.948] (EE) 19: /usr/bin/Xorg (0x400000+0x26c81) [0x426c81]
    [ 204.948] (EE)
    [ 204.948] (EE) Segmentation fault at address 0x0
    [ 204.949] (EE)
    Fatal server error:
    [ 204.949] (EE) Caught signal 11 (Segmentation fault). Server aborting
    [ 204.949] (EE)
    [ 204.949] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 204.949] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 204.949] (EE)
    [ 204.950] (EE) Server terminated with error (1). Closing log file.
    In case you want this information, I am rocking an AMD Radeon 6480G with the catalyst-hook package at version 13.10 from Vi0L0's repository and the linux-ck-k10 package (not the core kernel) from graysky's repository.
    EDIT: I might create a bug about this on the ArchLinux Tracker.
    EDIT2: It seems I am not the only person having this issue. Please see https://github.com/linuxmint/Cinnamon/issues/2436
    Last edited by clfarron4 (2013-10-19 14:18:22)

    Wow, your logs are nealy identical to mine.  I am runnig catalyst-hook on a 6850.  This is with the default 3.11.1-1-ARCH kernel. 
    -- Reboot --
    Oct 12 13:48:34 WhosYourDaddy systemd[386]: Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
    Oct 12 13:48:34 WhosYourDaddy systemd[386]: Mounted /sys/kernel/config.
    Oct 12 13:48:34 WhosYourDaddy systemd[386]: Stopped target Sound Card.
    Oct 12 13:48:34 WhosYourDaddy systemd[386]: Starting Default.
    Oct 12 13:48:34 WhosYourDaddy systemd[386]: Reached target Default.
    Oct 12 13:48:34 WhosYourDaddy systemd[386]: Startup finished in 3ms.
    Oct 12 13:49:05 WhosYourDaddy pulseaudio[483]: [pulseaudio] source.c: Default and alternate sample rates are the same.
    Oct 12 13:49:05 WhosYourDaddy pulseaudio[483]: [pulseaudio] bluetooth-util.c: org.bluez.Manager.GetProperties() failed: org.freedesktop.systemd1.LoadFailed: Unit dbus-org.bluez.service failed to load: No such file or directory.
    Oct 12 13:49:26 WhosYourDaddy pulseaudio[594]: [pulseaudio] pid.c: Stale PID file, overwriting.
    Oct 12 13:49:26 WhosYourDaddy pulseaudio[594]: [pulseaudio] source.c: Default and alternate sample rates are the same.
    Oct 12 13:49:27 WhosYourDaddy pulseaudio[594]: [pulseaudio] bluetooth-util.c: org.bluez.Manager.GetProperties() failed: org.freedesktop.systemd1.LoadFailed: Unit dbus-org.bluez.service failed to load: No such file or directory.
    Oct 12 13:49:27 WhosYourDaddy pulseaudio[642]: [pulseaudio] pid.c: Daemon already running.
    Oct 12 13:49:28 WhosYourDaddy cinnamon-session[583]: WARNING: Application 'cinnamon.desktop' killed by signal 15
    Oct 12 13:49:29 WhosYourDaddy cinnamon-session[583]: WARNING: App 'cinnamon.desktop' respawning too quickly
    Oct 12 13:49:29 WhosYourDaddy cinnamon-session[583]: CRITICAL: We failed, but the fail whale is dead. Sorry....
    Oct 12 13:49:38 WhosYourDaddy cinnamon-session[583]: WARNING: App 'cinnamon.desktop' respawning too quickly
    Oct 12 13:51:46 WhosYourDaddy systemd[386]: Time has been changed
    Oct 12 13:53:16 WhosYourDaddy pulseaudio[995]: [pulseaudio] pid.c: Stale PID file, overwriting.
    Oct 12 13:53:16 WhosYourDaddy pulseaudio[995]: [pulseaudio] source.c: Default and alternate sample rates are the same.
    Oct 12 13:53:16 WhosYourDaddy pulseaudio[995]: [pulseaudio] bluetooth-util.c: org.bluez.Manager.GetProperties() failed: org.freedesktop.systemd1.LoadFailed: Unit dbus-org.bluez.service failed to load: No such file or directory.
    Oct 12 13:53:16 WhosYourDaddy pulseaudio[1037]: [pulseaudio] pid.c: Daemon already running.
    Oct 12 13:53:17 WhosYourDaddy cinnamon-session[984]: WARNING: Application 'cinnamon.desktop' killed by signal 15
    Oct 12 13:53:18 WhosYourDaddy cinnamon-session[984]: WARNING: App 'cinnamon.desktop' respawning too quickly
    Oct 12 13:53:18 WhosYourDaddy cinnamon-session[984]: CRITICAL: We failed, but the fail whale is dead. Sorry....
    Oct 12 13:55:30 WhosYourDaddy pulseaudio[1273]: [pulseaudio] pid.c: Stale PID file, overwriting.
    Oct 12 13:55:30 WhosYourDaddy pulseaudio[1273]: [pulseaudio] source.c: Default and alternate sample rates are the same.
    Oct 12 13:55:30 WhosYourDaddy pulseaudio[1273]: [pulseaudio] bluetooth-util.c: org.bluez.Manager.GetProperties() failed: org.freedesktop.systemd1.LoadFailed: Unit dbus-org.bluez.service failed to load: No such file or directory.
    Oct 12 13:55:31 WhosYourDaddy pulseaudio[1315]: [pulseaudio] pid.c: Daemon already running.
    Oct 12 13:55:31 WhosYourDaddy cinnamon-session[1262]: WARNING: Application 'cinnamon.desktop' killed by signal 15
    Oct 12 13:55:32 WhosYourDaddy cinnamon-session[1262]: WARNING: App 'cinnamon.desktop' respawning too quickly
    Oct 12 13:55:32 WhosYourDaddy cinnamon-session[1262]: CRITICAL: We failed, but the fail whale is dead. Sorry....
    Also here is Xorg
    [ 427.361]
    X.Org X Server 1.14.3
    Release Date: 2013-09-12
    [ 427.362] X Protocol Version 11, Revision 0
    [ 427.363] Build Operating System: Linux 3.11.1-1-ARCH x86_64
    [ 427.363] Current Operating System: Linux WhosYourDaddy 3.11.4-1-ARCH #1 SMP PREEMPT Sat Oct 5 21:22:51 CEST 2013 x86_64
    [ 427.363] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=82470171-e203-4aae-9554-cbb120ac852f rw quiet
    [ 427.364] Build Date: 08 October 2013 08:48:10PM
    [ 427.365]
    [ 427.365] Current version of pixman: 0.30.2
    [ 427.366] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 427.366] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 427.368] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Oct 12 13:55:30 2013
    [ 427.369] (==) Using config file: "/etc/X11/xorg.conf"
    [ 427.370] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 427.370] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 427.371] (==) ServerLayout "aticonfig Layout"
    [ 427.371] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
    [ 427.371] (**) | |-->Monitor "aticonfig-Monitor[0]-0"
    [ 427.371] (**) | |-->Device "aticonfig-Device[0]-0"
    [ 427.371] (==) Automatically adding devices
    [ 427.371] (==) Automatically enabling devices
    [ 427.371] (==) Automatically adding GPU devices
    [ 427.371] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 427.371] Entry deleted from font path.
    [ 427.371] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 427.371] Entry deleted from font path.
    [ 427.371] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 427.371] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 427.371] Entry deleted from font path.
    [ 427.371] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 427.371] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 427.371] (**) ModulePath set to "/usr/lib/xorg/modules/updates,/usr/lib/xorg/modules"
    [ 427.371] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 427.371] (II) Loader magic: 0x7fdc20
    [ 427.371] (II) Module ABI versions:
    [ 427.371] X.Org ANSI C Emulation: 0.4
    [ 427.371] X.Org Video Driver: 14.1
    [ 427.371] X.Org XInput driver : 19.1
    [ 427.371] X.Org Server Extension : 7.0
    [ 427.371] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 427.372] (--) PCI: (0:0:2:0) 8086:0412:1458:d000 rev 6, Mem @ 0xd0400000/4194304, 0xb0000000/268435456, I/O @ 0x0000f000/64
    [ 427.372] (--) PCI:*(0:1:0:0) 1002:6719:174b:186b rev 0, Mem @ 0xc0000000/268435456, 0xd0020000/131072, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
    [ 427.372] Initializing built-in extension Generic Event Extension
    [ 427.373] Initializing built-in extension SHAPE
    [ 427.373] Initializing built-in extension MIT-SHM
    [ 427.374] Initializing built-in extension XInputExtension
    [ 427.374] Initializing built-in extension XTEST
    [ 427.375] Initializing built-in extension BIG-REQUESTS
    [ 427.375] Initializing built-in extension SYNC
    [ 427.376] Initializing built-in extension XKEYBOARD
    [ 427.376] Initializing built-in extension XC-MISC
    [ 427.377] Initializing built-in extension SECURITY
    [ 427.377] Initializing built-in extension XINERAMA
    [ 427.378] Initializing built-in extension XFIXES
    [ 427.378] Initializing built-in extension RENDER
    [ 427.379] Initializing built-in extension RANDR
    [ 427.379] Initializing built-in extension COMPOSITE
    [ 427.380] Initializing built-in extension DAMAGE
    [ 427.380] Initializing built-in extension MIT-SCREEN-SAVER
    [ 427.381] Initializing built-in extension DOUBLE-BUFFER
    [ 427.381] Initializing built-in extension RECORD
    [ 427.381] Initializing built-in extension DPMS
    [ 427.382] Initializing built-in extension X-Resource
    [ 427.382] Initializing built-in extension XVideo
    [ 427.382] Initializing built-in extension XVideo-MotionCompensation
    [ 427.383] Initializing built-in extension XFree86-VidModeExtension
    [ 427.383] Initializing built-in extension XFree86-DGA
    [ 427.384] Initializing built-in extension XFree86-DRI
    [ 427.384] Initializing built-in extension DRI2
    [ 427.384] (II) "glx" will be loaded by default.
    [ 427.384] (II) LoadModule: "glx"
    [ 427.384] (II) Loading /usr/lib/xorg/modules/updates/extensions/libglx.so
    [ 427.384] (II) Module glx: vendor="Advanced Micro Devices, Inc."
    [ 427.384] compiled for 6.9.0, module version = 1.0.0
    [ 427.384] Loading extension GLX
    [ 427.384] (II) LoadModule: "fglrx"
    [ 427.384] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    [ 427.392] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
    [ 427.392] compiled for 1.4.99.906, module version = 13.20.5
    [ 427.392] Module class: X.Org Video Driver
    [ 427.392] (II) Loading sub module "fglrxdrm"
    [ 427.392] (II) LoadModule: "fglrxdrm"
    [ 427.392] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 427.392] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 427.392] compiled for 1.4.99.906, module version = 13.20.5
    [ 427.392] (II) AMD Proprietary Linux Driver Version Identifier:13.20.5
    [ 427.392] (II) AMD Proprietary Linux Driver Release Identifier: UNSUPPORTED-13.20.11
    [ 427.392] (II) AMD Proprietary Linux Driver Build Date: Sep 21 2013 02:26:09
    [ 427.392] (++) using VT number 1
    [ 427.392] (WW) Falling back to old probe method for fglrx
    [ 427.396] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
    [ 427.396] ukiDynamicMajor: found major device number 251
    [ 427.396] ukiDynamicMajor: found major device number 251
    [ 427.396] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 427.396] ukiOpenDevice: node name is /dev/ati/card0
    [ 427.396] ukiOpenDevice: open result is 9, (OK)
    [ 427.396] ukiOpenByBusid: ukiOpenMinor returns 9
    [ 427.396] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 427.397] (--) Chipset Supported AMD Graphics Processor (0x6719) found
    [ 427.398] (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
    [ 427.398] (II) fglrx(0): pEnt->device->identifier=0x1ad34e0
    [ 427.398] (II) fglrx(0): === [xdl_xs114_atiddxPreInit] === begin
    [ 427.398] (II) Loading sub module "vgahw"
    [ 427.398] (II) LoadModule: "vgahw"
    [ 427.398] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 427.398] (II) Module vgahw: vendor="X.Org Foundation"
    [ 427.398] compiled for 1.14.3, module version = 0.1.0
    [ 427.398] ABI class: X.Org Video Driver, version 14.1
    [ 427.398] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    [ 427.398] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 427.398] (==) fglrx(0): Default visual is TrueColor
    [ 427.398] (**) fglrx(0): Option "DPMS" "true"
    [ 427.398] (==) fglrx(0): RGB weight 888
    [ 427.398] (II) fglrx(0): Using 8 bits per RGB
    [ 427.398] (==) fglrx(0): Buffer Tiling is ON
    [ 427.398] (II) Loading sub module "fglrxdrm"
    [ 427.398] (II) LoadModule: "fglrxdrm"
    [ 427.399] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 427.399] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 427.399] compiled for 1.4.99.906, module version = 13.20.5
    [ 427.399] ukiDynamicMajor: found major device number 251
    [ 427.399] ukiDynamicMajor: found major device number 251
    [ 427.399] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 427.399] ukiOpenDevice: node name is /dev/ati/card0
    [ 427.399] ukiOpenDevice: open result is 11, (OK)
    [ 427.399] ukiOpenByBusid: ukiOpenMinor returns 11
    [ 427.399] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 427.399] (**) fglrx(0): NoAccel = NO
    [ 427.399] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
    [ 427.399] (--) fglrx(0): Chipset: "AMD Radeon HD 6900 Series " (Chipset = 0x6719)
    [ 427.399] (--) fglrx(0): (PciSubVendor = 0x174b, PciSubDevice = 0x186b)
    [ 427.399] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
    [ 427.399] (--) fglrx(0): Linear framebuffer (phys) at 0xc0000000
    [ 427.399] (--) fglrx(0): MMIO registers at 0xd0020000
    [ 427.399] (--) fglrx(0): I/O port at 0x0000e000
    [ 427.399] (==) fglrx(0): ROM-BIOS at 0x000c0000
    [ 427.399] (II) fglrx(0): AC Adapter is used
    [ 427.399] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
    [ 427.399] (--) fglrx(0): Video RAM: 2097152 kByte, Type: GDDR5
    [ 427.399] (II) fglrx(0): PCIE card detected
    [ 427.399] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
    [ 427.399] (WW) fglrx(0): board is an unknown third party board, chipset is supported
    [ 427.399] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf800000000, MCFBSize = 0x80000000)
    [ 427.399] (II) fglrx(0): RandR 1.2 support is enabled!
    [ 427.399] (II) fglrx(0): RandR 1.2 rotation support is enabled!
    [ 427.400] (==) fglrx(0): Center Mode is disabled
    [ 427.400] (II) Loading sub module "fb"
    [ 427.400] (II) LoadModule: "fb"
    [ 427.400] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 427.400] (II) Module fb: vendor="X.Org Foundation"
    [ 427.400] compiled for 1.14.3, module version = 1.0.0
    [ 427.400] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 427.400] (II) Loading sub module "ddc"
    [ 427.400] (II) LoadModule: "ddc"
    [ 427.400] (II) Module "ddc" already built-in
    [ 427.475] (II) fglrx(0): Output DFP1 using monitor section aticonfig-Monitor[0]-0
    [ 427.475] (II) fglrx(0): Output DFP2 has no monitor section
    [ 427.475] (II) fglrx(0): Output DFP3 has no monitor section
    [ 427.475] (II) fglrx(0): Output DFP4 has no monitor section
    [ 427.475] (II) fglrx(0): Output DFP5 has no monitor section
    [ 427.475] (II) fglrx(0): Output DFP6 has no monitor section
    [ 427.475] (II) fglrx(0): Output DFP7 has no monitor section
    [ 427.475] (II) fglrx(0): Output CRT1 has no monitor section
    [ 427.475] (II) Loading sub module "ddc"
    [ 427.475] (II) LoadModule: "ddc"
    [ 427.475] (II) Module "ddc" already built-in
    [ 427.475] (II) fglrx(0): Connected Display0: DFP5
    [ 427.475] (II) Quirked EDID physical size to 0x0 cm
    [ 427.475] (II) fglrx(0): Display0 EDID data ---------------------------
    [ 427.475] (II) fglrx(0): Manufacturer: SAM Model: 423 Serial#: 1415000628
    [ 427.475] (II) fglrx(0): Year: 2009 Week: 37
    [ 427.475] (II) fglrx(0): EDID Version: 1.3
    [ 427.475] (II) fglrx(0): Digital Display Input
    [ 427.475] (II) fglrx(0): Indeterminate output size
    [ 427.475] (II) fglrx(0): Gamma: 2.60
    [ 427.475] (II) fglrx(0): DPMS capabilities: Off
    [ 427.475] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 427.475] (II) fglrx(0): First detailed timing is preferred mode
    [ 427.475] (II) fglrx(0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.608
    [ 427.475] (II) fglrx(0): blueX: 0.150 blueY: 0.060 whiteX: 0.312 whiteY: 0.329
    [ 427.475] (II) fglrx(0): Supported established timings:
    [ 427.475] (II) fglrx(0): 640x480@60Hz
    [ 427.475] (II) fglrx(0): 800x600@56Hz
    [ 427.475] (II) fglrx(0): 800x600@60Hz
    [ 427.475] (II) fglrx(0): 1024x768@60Hz
    [ 427.475] (II) fglrx(0): Manufacturer's mask: 0
    [ 427.475] (II) fglrx(0): Supported standard timings:
    [ 427.475] (II) fglrx(0): #0: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 427.475] (II) fglrx(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 427.475] (II) fglrx(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 427.475] (II) fglrx(0): #3: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 427.475] (II) fglrx(0): #4: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 427.475] (II) fglrx(0): #5: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 427.475] (II) fglrx(0): Supported detailed timing:
    [ 427.475] (II) fglrx(0): clock: 154.0 MHz Image Size: 160 x 90 mm
    [ 427.475] (II) fglrx(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 427.475] (II) fglrx(0): v_active: 1200 v_sync: 1203 v_sync_end 1209 v_blanking: 1235 v_border: 0
    [ 427.475] (II) fglrx(0): Supported detailed timing:
    [ 427.475] (II) fglrx(0): clock: 148.5 MHz Image Size: 160 x 90 mm
    [ 427.475] (II) fglrx(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 427.475] (II) fglrx(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 427.475] (II) fglrx(0): Ranges: V min: 50 V max: 60 Hz, H min: 27 H max: 81 kHz, PixClock max 175 MHz
    [ 427.475] (II) fglrx(0): Monitor name: SyncMaster
    [ 427.475] (II) fglrx(0): Supported detailed timing:
    [ 427.475] (II) fglrx(0): clock: 74.2 MHz Image Size: 160 x 90 mm
    [ 427.475] (II) fglrx(0): h_active: 1280 h_sync: 1390 h_sync_end 1430 h_blank_end 1650 h_border: 0
    [ 427.475] (II) fglrx(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 427.475] (II) fglrx(0): Supported detailed timing:
    [ 427.475] (II) fglrx(0): clock: 74.2 MHz Image Size: 160 x 90 mm
    [ 427.475] (II) fglrx(0): h_active: 1280 h_sync: 1720 h_sync_end 1760 h_blank_end 1980 h_border: 0
    [ 427.475] (II) fglrx(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 427.475] (II) fglrx(0): Supported detailed timing:
    [ 427.475] (II) fglrx(0): clock: 74.2 MHz Image Size: 160 x 90 mm
    [ 427.475] (II) fglrx(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 427.475] (II) fglrx(0): v_active: 540 v_sync: 542 v_sync_end 547 v_blanking: 562 v_border: 0
    [ 427.475] (II) fglrx(0): Supported detailed timing:
    [ 427.475] (II) fglrx(0): clock: 74.2 MHz Image Size: 160 x 90 mm
    [ 427.475] (II) fglrx(0): h_active: 1920 h_sync: 2448 h_sync_end 2492 h_blank_end 2640 h_border: 0
    [ 427.475] (II) fglrx(0): v_active: 540 v_sync: 542 v_sync_end 547 v_blanking: 562 v_border: 0
    [ 427.475] (II) fglrx(0): Supported detailed timing:
    [ 427.475] (II) fglrx(0): clock: 27.0 MHz Image Size: 160 x 90 mm
    [ 427.475] (II) fglrx(0): h_active: 720 h_sync: 736 h_sync_end 798 h_blank_end 858 h_border: 0
    [ 427.475] (II) fglrx(0): v_active: 480 v_sync: 489 v_sync_end 495 v_blanking: 525 v_border: 0
    [ 427.475] (II) fglrx(0): Number of EDID sections to follow: 1
    [ 427.475] (II) fglrx(0): EDID (in hex):
    [ 427.475] (II) fglrx(0): 00ffffffffffff004c2d230434325754
    [ 427.475] (II) fglrx(0): 25130103801009a02aef91a3544c9b26
    [ 427.475] (II) fglrx(0): 0f5054230800a9408180814081009500
    [ 427.475] (II) fglrx(0): b30001010101283c80a070b023403020
    [ 427.476] (II) fglrx(0): 3600a05a0000001a023a801871382d40
    [ 427.476] (II) fglrx(0): 582c4500a05a0000001e000000fd0032
    [ 427.476] (II) fglrx(0): 3c1b5111000a202020202020000000fc
    [ 427.476] (II) fglrx(0): 0053796e634d61737465720a2020016e
    [ 427.476] (II) fglrx(0): End of Display0 EDID data --------------------
    [ 427.476] (II) fglrx(0): Dynamic Surface Resizing Enabled
    [ 427.476] (II) fglrx(0): EDID for output DFP1
    [ 427.476] (II) fglrx(0): EDID for output DFP2
    [ 427.476] (II) fglrx(0): EDID for output DFP3
    [ 427.476] (II) fglrx(0): EDID for output DFP4
    [ 427.476] (II) Quirked EDID physical size to 0x0 cm
    [ 427.476] (II) fglrx(0): EDID for output DFP5
    [ 427.476] (II) fglrx(0): Manufacturer: SAM Model: 423 Serial#: 1415000628
    [ 427.476] (II) fglrx(0): Year: 2009 Week: 37
    [ 427.476] (II) fglrx(0): EDID Version: 1.3
    [ 427.476] (II) fglrx(0): Digital Display Input
    [ 427.476] (II) fglrx(0): Indeterminate output size
    [ 427.476] (II) fglrx(0): Gamma: 2.60
    [ 427.476] (II) fglrx(0): DPMS capabilities: Off
    [ 427.476] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 427.476] (II) fglrx(0): First detailed timing is preferred mode
    [ 427.476] (II) fglrx(0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.608
    [ 427.476] (II) fglrx(0): blueX: 0.150 blueY: 0.060 whiteX: 0.312 whiteY: 0.329
    [ 427.476] (II) fglrx(0): Supported established timings:
    [ 427.476] (II) fglrx(0): 640x480@60Hz
    [ 427.476] (II) fglrx(0): 800x600@56Hz
    [ 427.476] (II) fglrx(0): 800x600@60Hz
    [ 427.476] (II) fglrx(0): 1024x768@60Hz
    [ 427.476] (II) fglrx(0): Manufacturer's mask: 0
    [ 427.476] (II) fglrx(0): Supported standard timings:
    [ 427.476] (II) fglrx(0): #0: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 427.476] (II) fglrx(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 427.476] (II) fglrx(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 427.476] (II) fglrx(0): #3: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 427.476] (II) fglrx(0): #4: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 427.476] (II) fglrx(0): #5: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 427.476] (II) fglrx(0): Supported detailed timing:
    [ 427.476] (II) fglrx(0): clock: 154.0 MHz Image Size: 160 x 90 mm
    [ 427.476] (II) fglrx(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 427.476] (II) fglrx(0): v_active: 1200 v_sync: 1203 v_sync_end 1209 v_blanking: 1235 v_border: 0
    [ 427.476] (II) fglrx(0): Supported detailed timing:
    [ 427.476] (II) fglrx(0): clock: 148.5 MHz Image Size: 160 x 90 mm
    [ 427.476] (II) fglrx(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 427.476] (II) fglrx(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 427.476] (II) fglrx(0): Ranges: V min: 50 V max: 60 Hz, H min: 27 H max: 81 kHz, PixClock max 175 MHz
    [ 427.476] (II) fglrx(0): Monitor name: SyncMaster
    [ 427.476] (II) fglrx(0): Supported detailed timing:
    [ 427.476] (II) fglrx(0): clock: 74.2 MHz Image Size: 160 x 90 mm
    [ 427.476] (II) fglrx(0): h_active: 1280 h_sync: 1390 h_sync_end 1430 h_blank_end 1650 h_border: 0
    [ 427.476] (II) fglrx(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 427.476] (II) fglrx(0): Supported detailed timing:
    [ 427.476] (II) fglrx(0): clock: 74.2 MHz Image Size: 160 x 90 mm
    [ 427.476] (II) fglrx(0): h_active: 1280 h_sync: 1720 h_sync_end 1760 h_blank_end 1980 h_border: 0
    [ 427.476] (II) fglrx(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 427.476] (II) fglrx(0): Supported detailed timing:
    [ 427.476] (II) fglrx(0): clock: 74.2 MHz Image Size: 160 x 90 mm
    [ 427.476] (II) fglrx(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 427.476] (II) fglrx(0): v_active: 540 v_sync: 542 v_sync_end 547 v_blanking: 562 v_border: 0
    [ 427.476] (II) fglrx(0): Supported detailed timing:
    [ 427.476] (II) fglrx(0): clock: 74.2 MHz Image Size: 160 x 90 mm
    [ 427.476] (II) fglrx(0): h_active: 1920 h_sync: 2448 h_sync_end 2492 h_blank_end 2640 h_border: 0
    [ 427.476] (II) fglrx(0): v_active: 540 v_sync: 542 v_sync_end 547 v_blanking: 562 v_border: 0
    [ 427.476] (II) fglrx(0): Supported detailed timing:
    [ 427.476] (II) fglrx(0): clock: 27.0 MHz Image Size: 160 x 90 mm
    [ 427.476] (II) fglrx(0): h_active: 720 h_sync: 736 h_sync_end 798 h_blank_end 858 h_border: 0
    [ 427.476] (II) fglrx(0): v_active: 480 v_sync: 489 v_sync_end 495 v_blanking: 525 v_border: 0
    [ 427.476] (II) fglrx(0): Number of EDID sections to follow: 1
    [ 427.476] (II) fglrx(0): EDID (in hex):
    [ 427.476] (II) fglrx(0): 00ffffffffffff004c2d230434325754
    [ 427.476] (II) fglrx(0): 25130103801009a02aef91a3544c9b26
    [ 427.476] (II) fglrx(0): 0f5054230800a9408180814081009500
    [ 427.476] (II) fglrx(0): b30001010101283c80a070b023403020
    [ 427.476] (II) fglrx(0): 3600a05a0000001a023a801871382d40
    [ 427.476] (II) fglrx(0): 582c4500a05a0000001e000000fd0032
    [ 427.476] (II) fglrx(0): 3c1b5111000a202020202020000000fc
    [ 427.476] (II) fglrx(0): 0053796e634d61737465720a2020016e
    [ 427.476] (II) fglrx(0): Printing probed modes for output DFP5
    [ 427.476] (II) fglrx(0): Modeline "1920x1200"x60.0 154.00 1920 1968 2000 2080 1200 1203 1209 1235 +hsync -vsync (74.0 kHz eP)
    [ 427.476] (II) fglrx(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1920x1080"x50.0 148.50 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1920x1080"x59.9 148.35 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1920x1080"x60.0 74.25 1920 2008 2052 2200 1080 1085 1095 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1920x1080"x50.0 74.25 1920 2448 2492 2640 1080 1085 1095 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1920x1080"x59.9 74.18 1920 2008 2052 2200 1080 1085 1095 1125 interlace +hsync +vsync (33.7 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1600x1200"x60.0 130.25 1600 1648 1680 1760 1200 1203 1207 1235 -hsync +vsync (74.0 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1776x1000"x50.0 148.50 1776 2304 2348 2640 1000 1004 1009 1125 +hsync +vsync (56.2 kHz ez)
    [ 427.476] (II) fglrx(0): Modeline "1776x1000"x59.9 148.35 1776 1864 1908 2200 1000 1004 1009 1125 +hsync +vsync (67.4 kHz ez)
    [ 427.476] (II) fglrx(0): Modeline "1776x1000"x50.0 74.25 1776 2304 2348 2640 1000 1005 1015 1125 interlace +hsync +vsync (28.1 kHz ez)
    [ 427.476] (II) fglrx(0): Modeline "1776x1000"x59.9 74.18 1776 1864 1908 2200 1000 1005 1015 1125 interlace +hsync +vsync (33.7 kHz ez)
    [ 427.476] (II) fglrx(0): Modeline "1680x1050"x60.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1400x1050"x60.0 130.25 1400 1648 1680 1760 1050 1203 1207 1235 -hsync +vsync (74.0 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1600x900"x60.0 130.25 1600 1648 1680 1760 900 1203 1207 1235 -hsync +vsync (74.0 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1360x1024"x60.0 130.25 1360 1648 1680 1760 1024 1203 1207 1235 -hsync +vsync (74.0 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1280x1024"x60.0 91.00 1280 1328 1360 1440 1024 1027 1034 1054 -hsync +vsync (63.2 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1440x900"x60.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1280x960"x60.0 85.25 1280 1328 1360 1440 960 963 967 988 -hsync +vsync (59.2 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1280x800"x60.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1280x768"x60.0 71.00 1280 1328 1360 1440 768 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1280x720"x60.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1280x720"x50.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1280x720"x59.9 74.18 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1024x768"x60.0 56.00 1024 1072 1104 1184 768 771 775 790 -hsync +vsync (47.3 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "1152x648"x50.0 74.25 1152 1592 1632 1980 648 653 658 750 +hsync +vsync (37.5 kHz ez)
    [ 427.476] (II) fglrx(0): Modeline "1152x648"x59.9 74.18 1152 1262 1302 1650 648 653 658 750 +hsync +vsync (45.0 kHz ez)
    [ 427.476] (II) fglrx(0): Modeline "800x600"x60.0 35.50 800 848 880 960 600 603 607 618 -hsync +vsync (37.0 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "800x600"x56.0 33.00 800 848 880 960 600 603 607 616 -hsync +vsync (34.4 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "720x480"x60.0 27.03 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "720x480"x59.9 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 427.476] (II) fglrx(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 427.476] (II) fglrx(0): EDID for output DFP6
    [ 427.476] (II) fglrx(0): EDID for output DFP7
    [ 427.476] (II) fglrx(0): EDID for output CRT1
    [ 427.476] (II) fglrx(0): Output DFP1 disconnected
    [ 427.476] (II) fglrx(0): Output DFP2 disconnected
    [ 427.476] (II) fglrx(0): Output DFP3 disconnected
    [ 427.476] (II) fglrx(0): Output DFP4 disconnected
    [ 427.476] (II) fglrx(0): Output DFP5 connected
    [ 427.476] (II) fglrx(0): Output DFP6 disconnected
    [ 427.476] (II) fglrx(0): Output DFP7 disconnected
    [ 427.476] (II) fglrx(0): Output CRT1 disconnected
    [ 427.476] (II) fglrx(0): Using exact sizes for initial modes
    [ 427.476] (II) fglrx(0): Output DFP5 using initial mode 1920x1200
    [ 427.476] (II) fglrx(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 427.476] (II) fglrx(0): DPI set to (96, 96)
    [ 427.476] (II) fglrx(0): Eyefinity capable adapter detected.
    [ 427.476] (II) fglrx(0): Adapter AMD Radeon HD 6900 Series has 6 configurable heads and 1 displays connected.
    [ 427.476] (==) fglrx(0): PseudoColor visuals disabled
    [ 427.476] (II) Loading sub module "ramdac"
    [ 427.476] (II) LoadModule: "ramdac"
    [ 427.476] (II) Module "ramdac" already built-in
    [ 427.476] (==) fglrx(0): NoDRI = NO
    [ 427.476] (==) fglrx(0): Capabilities: 0x00000000
    [ 427.476] (==) fglrx(0): CapabilitiesEx: 0x00000000
    [ 427.476] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
    [ 427.476] (==) fglrx(0): UseFastTLS=0
    [ 427.477] (II) fglrx(0): Shadow Primary option: ShadowPrimary is enabled
    [ 427.477] (--) Depth 24 pixmap format is 32 bpp
    [ 427.477] Loading extension ATIFGLRXDRI
    [ 427.477] (II) fglrx(0): doing swlDriScreenInit
    [ 427.477] (II) fglrx(0): swlDriScreenInit for fglrx driver
    [ 427.477] ukiDynamicMajor: found major device number 251
    [ 427.477] ukiDynamicMajor: found major device number 251
    [ 427.477] ukiDynamicMajor: found major device number 251
    [ 427.477] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 427.477] ukiOpenDevice: node name is /dev/ati/card0
    [ 427.477] ukiOpenDevice: open result is 12, (OK)
    [ 427.477] ukiOpenByBusid: ukiOpenMinor returns 12
    [ 427.477] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 427.477] (II) fglrx(0): [uki] DRM interface version 1.0
    [ 427.477] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:1:0:0"
    [ 427.477] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x335000
    [ 427.477] (II) fglrx(0): [uki] mapped SAREA 0x335000 to 0x7f0862c25000
    [ 427.477] (II) fglrx(0): [uki] framebuffer handle = 0x336000
    [ 427.477] (II) fglrx(0): [uki] added 1 reserved context for kernel
    [ 427.477] (II) fglrx(0): swlDriScreenInit done
    [ 427.477] (II) fglrx(0): Kernel Module Version Information:
    [ 427.477] (II) fglrx(0): Name: fglrx
    [ 427.477] (II) fglrx(0): Version: 13.20.5
    [ 427.477] (II) fglrx(0): Date: Sep 21 2013
    [ 427.477] (II) fglrx(0): Desc: AMD FireGL DRM kernel module
    [ 427.477] (II) fglrx(0): Kernel Module version matches driver.
    [ 427.477] (II) fglrx(0): Kernel Module Build Time Information:
    [ 427.477] (II) fglrx(0): Build-Kernel UTS_RELEASE: 3.11.4-1-ARCH
    [ 427.477] (II) fglrx(0): Build-Kernel MODVERSIONS: yes
    [ 427.477] (II) fglrx(0): Build-Kernel __SMP__: yes
    [ 427.477] (II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
    [ 427.477] (II) fglrx(0): [uki] register handle = 0x00337000
    [ 427.477] (II) fglrx(0): DRI initialization successfull
    [ 427.477] (II) fglrx(0): FBADPhys: 0xf800000000 FBMappedSize: 0x010e0000
    [ 427.477] (==) fglrx(0): Backing store disabled
    [ 427.477] Loading extension FGLRXEXTENSION
    [ 427.477] (**) fglrx(0): DPMS enabled
    [ 427.477] (II) fglrx(0): Initialized in-driver Xinerama extension
    [ 427.477] (**) fglrx(0): Textured Video is enabled.
    [ 427.477] (II) LoadModule: "glesx"
    [ 427.478] (II) Loading /usr/lib/xorg/modules/glesx.so
    [ 427.478] (II) Module glesx: vendor="X.Org Foundation"
    [ 427.478] compiled for 1.4.99.906, module version = 1.0.0
    [ 427.478] Loading extension GLESX
    [ 427.478] (II) fglrx(0): GLESX enableFlags = 592
    [ 427.478] (II) fglrx(0): GLESX is enabled
    [ 427.478] (II) LoadModule: "amdxmm"
    [ 427.478] (II) Loading /usr/lib/xorg/modules/amdxmm.so
    [ 427.478] (II) Module amdxmm: vendor="X.Org Foundation"
    [ 427.478] compiled for 1.4.99.906, module version = 2.0.0
    [ 427.488] Loading extension AMDXVOPL
    [ 427.488] Loading extension AMDXVBA
    [ 427.489] (II) fglrx(0): UVD feature is enabled(II) fglrx(0):
    [ 427.490] (II) fglrx(0): Enable composite support successfully
    [ 427.490] (WW) fglrx(0): Option "VendorName" is not used
    [ 427.490] (WW) fglrx(0): Option "ModelName" is not used
    [ 427.490] (II) fglrx(0): X context handle = 0xa
    [ 427.490] (II) fglrx(0): [DRI] installation complete
    [ 427.490] (==) fglrx(0): Silken mouse enabled
    [ 427.490] (==) fglrx(0): Using HW cursor of display infrastructure!
    [ 427.490] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 427.525] (--) RandR disabled
    [ 427.528] ukiDynamicMajor: found major device number 251
    [ 427.528] ukiDynamicMajor: found major device number 251
    [ 427.528] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 427.528] ukiOpenDevice: node name is /dev/ati/card0
    [ 427.528] ukiOpenDevice: open result is 13, (OK)
    [ 427.528] ukiOpenByBusid: ukiOpenMinor returns 13
    [ 427.528] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 427.528] (EE) AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or directory]
    [ 427.529] ukiDynamicMajor: found major device number 251
    [ 427.529] ukiDynamicMajor: found major device number 251
    [ 427.529] ukiDynamicMajor: found major device number 251
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card0
    [ 427.529] ukiOpenDevice: open result is 14, (OK)
    [ 427.529] ukiGetBusid returned 'PCI:1:0:0'
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card1
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card2
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card3
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card4
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card5
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card6
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card7
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card8
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card9
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card10
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card11
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card12
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card13
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card14
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card15
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: open result is -1, (No such device)
    [ 427.529] ukiOpenDevice: Open failed
    [ 427.529] ukiDynamicMajor: found major device number 251
    [ 427.529] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 427.529] ukiOpenDevice: node name is /dev/ati/card0
    [ 427.529] ukiOpenDevice: open result is 14, (OK)
    [ 427.529] ukiOpenByBusid: ukiOpenMinor returns 14
    [ 427.529] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 427.593] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
    [ 427.593] ukiDynamicMajor: found major device number 251
    [ 427.593] ukiDynamicMajor: found major device number 251
    [ 427.593] ukiDynamicMajor: found major device number 251
    [ 427.593] ukiOpenDevice: node name is /dev/ati/card0
    [ 427.593] ukiOpenDevice: open result is 15, (OK)
    [ 427.593] ukiGetBusid returned 'PCI:1:0:0'
    [ 427.593] ukiOpenDevice: node name is /dev/ati/card1
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: Open failed
    [ 427.593] ukiOpenDevice: node name is /dev/ati/card2
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: Open failed
    [ 427.593] ukiOpenDevice: node name is /dev/ati/card3
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: Open failed
    [ 427.593] ukiOpenDevice: node name is /dev/ati/card4
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: Open failed
    [ 427.593] ukiOpenDevice: node name is /dev/ati/card5
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: Open failed
    [ 427.593] ukiOpenDevice: node name is /dev/ati/card6
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: Open failed
    [ 427.593] ukiOpenDevice: node name is /dev/ati/card7
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: Open failed
    [ 427.593] ukiOpenDevice: node name is /dev/ati/card8
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: Open failed
    [ 427.593] ukiOpenDevice: node name is /dev/ati/card9
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: Open failed
    [ 427.593] ukiOpenDevice: node name is /dev/ati/card10
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: open result is -1, (No such device)
    [ 427.593] ukiOpenDevice: Open failed
    [ 427.594] ukiOpenDevice: node name is /dev/ati/card11
    [ 427.594] ukiOpenDevice: open result is -1, (No such device)
    [ 427.594] ukiOpenDevice: open result is -1, (No such device)
    [ 427.594] ukiOpenDevice: Open failed
    [ 427.594] ukiOpenDevice: node name is /dev/ati/card12
    [ 427.594] ukiOpenDevice: open result is -1, (No such device)
    [ 427.594] ukiOpenDevice: open result is -1, (No such device)
    [ 427.594] ukiOpenDevice: Open failed
    [ 427.594] ukiOpenDevice: node name is /dev/ati/card13
    [ 427.594] ukiOpenDevice: open result is -1, (No such device)
    [ 427.594] ukiOpenDevice: open result is -1, (No such device)
    [ 427.594] ukiOpenDevice: Open failed
    [ 427.594] ukiOpenDevice: node name is /dev/ati/card14
    [ 427.594] ukiOpenDevice: open result is -1, (No such device)
    [ 427.594] ukiOpenDevice: open result is -1, (No such device)
    [ 427.594] ukiOpenDevice: Open failed
    [ 427.594] ukiOpenDevice: node name is /dev/ati/card15
    [ 427.594] ukiOpenDevice: open result is -1, (No such device)
    [ 427.594] ukiOpenDevice: open result is -1, (No such device)
    [ 427.594] ukiOpenDevice: Open failed
    [ 427.594] ukiDynamicMajor: found major device number 251
    [ 427.594] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 427.594] ukiOpenDevice: node name is /dev/ati/card0
    [ 427.594] ukiOpenDevice: open result is 15, (OK)
    [ 427.594] ukiOpenByBusid: ukiOpenMinor returns 15
    [ 427.594] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 427.598] (II) fglrx(0): OverDrive5 Detected!
    [ 427.601] (II) fglrx(0): Setting screen physical size to 508 x 317
    [ 427.627] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 427.627] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 427.627] (II) LoadModule: "evdev"
    [ 427.627] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 427.627] (II) Module evdev: vendor="X.Org Foundation"
    [ 427.627] compiled for 1.14.3, module version = 2.8.2
    [ 427.627] Module class: X.Org XInput Driver
    [ 427.627] ABI class: X.Org XInput driver, version 19.1
    [ 427.627] (II) Using input driver 'evdev' for 'Power Button'
    [ 427.627] (**) Power Button: always reports core events
    [ 427.627] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 427.627] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 427.627] (--) evdev: Power Button: Found keys
    [ 427.627] (II) evdev: Power Button: Configuring as keyboard
    [ 427.627] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 427.627] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 427.627] (**) Option "xkb_rules" "evdev"
    [ 427.627] (**) Option "xkb_model" "pc104"
    [ 427.627] (**) Option "xkb_layout" "us"
    [ 427.637] (II) config/udev: Adding input device Video Bus (/dev/input/event18)
    [ 427.637] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 427.637] (II) Using input driver 'evdev' for 'Video Bus'
    [ 427.637] (**) Video Bus: always reports core events
    [ 427.637] (**) evdev: Video Bus: Device: "/dev/input/event18"
    [ 427.637] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 427.637] (--) evdev: Video Bus: Found keys
    [ 427.637] (II) evdev: Video Bus: Configuring as keyboard
    [ 427.637] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input18/event18"
    [ 427.637] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 427.637] (**) Option "xkb_rules" "evdev"
    [ 427.637] (**) Option "xkb_model" "pc104"
    [ 427.637] (**) Option "xkb_layout" "us"
    [ 427.637] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 427.637] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 427.637] (II) Using input driver 'evdev' for 'Power Button'
    [ 427.637] (**) Power Button: always reports core events
    [ 427.637] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 427.637] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 427.637] (--) evdev: Power Button: Found keys
    [ 427.637] (II) evdev: Power Button: Configuring as keyboard
    [ 427.637] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [ 427.637] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 427.637] (**) Option "xkb_rules" "evdev"
    [ 427.637] (**) Option "xkb_model" "pc104"
    [ 427.637] (**) Option "xkb_layout" "us"
    [ 427.638] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event12)
    [ 427.638] (II) No input driver specified, ignoring this device.
    [ 427.638] (II) This device may have been added with another device file.
    [ 427.638] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 427.638] (II) config/udev: Adding input device HDA Intel MID HDMI/DP,pcm=8 (/dev/input/event19)
    [ 427.638] (II) No input driver specified, ignoring this device.
    [ 427.638] (II) This device may have been added with another device file.
    [ 427.638] (II) config/udev: Adding input device HDA Intel MID HDMI/DP,pcm=7 (/dev/input/event20)
    [ 427.638] (II) No input driver specified, ignoring this device.
    [ 427.638] (II) This device may have been added with another device file.
    [ 427.638] (II) config/udev: Adding input device HDA Intel MID HDMI/DP,pcm=3 (/dev/input/event21)
    [ 427.638] (II) No input driver specified, ignoring this device.
    [ 427.638] (II) This device may have been added with another device file.
    [ 427.638] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event13)
    [ 427.638] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 427.638] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 427.638] (**) Logitech USB Receiver: always reports core events
    [ 427.638] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event13"
    [ 427.638] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc517
    [ 427.638] (--) evdev: Logitech USB Receiver: Found keys
    [ 427.638] (II) evdev: Logitech USB Receiver: Configuring as keyboard
    [ 427.638] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.1/3-9.1:1.0/input/input13/event13"
    [ 427.638] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 9)
    [ 427.638] (**) Option "xkb_rules" "evdev"
    [ 427.638] (**) Option "xkb_model" "pc104"
    [ 427.638] (**) Option "xkb_layout" "us"
    [ 427.638] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event14)
    [ 427.638] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 427.638] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 427.638] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 427.638] (**) Logitech USB Receiver: always reports core events
    [ 427.638] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event14"
    [ 427.638] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc517
    [ 427.638] (--) evdev: Logitech USB Receiver: Found 12 mouse buttons
    [ 427.638] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 427.638] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 427.638] (--) evdev: Logitech USB Receiver: Found x and y relative axes
    [ 427.638] (--) evdev: Logitech USB Receiver: Found absolute axes
    [ 427.638] (II) evdev: Logitech USB Receiver: Forcing absolute x/y axes to exist.
    [ 427.638] (--) evdev: Logitech USB Receiver: Found keys
    [ 427.638] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 427.638] (II) evdev: Logitech USB Receiver: Configuring as keyboard
    [ 427.638] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 427.638] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 427.638] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 427.638] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.1/3-9.1:1.1/input/input14/event14"
    [ 427.638] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 10)
    [ 427.638] (**) Option "xkb_rules" "evdev"
    [ 427.638] (**) Option "xkb_model" "pc104"
    [ 427.638] (**) Option "xkb_layout" "us"
    [ 427.639] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 427.639] (WW) evdev: Logitech USB Receiver: ignoring absolute axes.
    [ 427.639] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 427.639] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 427.639] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 427.639] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 427.639] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 427.639] (II) No input driver specified, ignoring this device.
    [ 427.639] (II) This device may have been added with another device file.
    [ 427.639] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/event15)
    [ 427.639] (**) Razer Razer BlackWidow Ultimate: Applying InputClass "evdev keyboard catchall"
    [ 427.639] (II) Using input driver 'evdev' for 'Razer Razer BlackWidow Ultimate'
    [ 427.639] (**) Razer Razer BlackWidow Ultimate: always reports core events
    [ 427.639] (**) evdev: Razer Razer BlackWidow Ultimate: Device: "/dev/input/event15"
    [ 427.639] (--) evdev: Razer Razer BlackWidow Ultimate: Vendor 0x1532 Product 0x10d
    [ 427.639] (--) evdev: Razer Razer BlackWidow Ultimate: Found keys
    [ 427.639] (II) evdev: Razer Razer BlackWidow Ultimate: Configuring as keyboard
    [ 427.639] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.2/3-9.2:1.0/input/input15/event15"
    [ 427.639] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate" (type: KEYBOARD, id 11)
    [ 427.639] (**) Option "xkb_rules" "evdev"
    [ 427.639] (**) Option "xkb_model" "pc104"
    [ 427.639] (**) Option "xkb_layout" "us"
    [ 427.639] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/event16)
    [ 427.639] (**) Razer Razer BlackWidow Ultimate: Applying InputClass "evdev keyboard catchall"
    [ 427.639] (II) Using input driver 'evdev' for 'Razer Razer BlackWidow Ultimate'
    [ 427.639] (**) Razer Razer BlackWidow Ultimate: always reports core events
    [ 427.639] (**) evdev: Razer Razer BlackWidow Ultimate: Device: "/dev/input/event16"
    [ 427.639] (II) evdev: Razer Razer BlackWidow Ultimate: Using mtdev for this device
    [ 427.639] (--) evdev: Razer Razer BlackWidow Ultimate: Vendor 0x1532 Product 0x10d
    [ 427.639] (--) evdev: Razer Razer BlackWidow Ultimate: Found 1 mouse buttons
    [ 427.639] (--) evdev: Razer Razer BlackWidow Ultimate: Found scroll wheel(s)
    [ 427.639] (--) evdev: Razer Razer BlackWidow Ultimate: Found relative axes
    [ 427.639] (II) evdev: Razer Razer BlackWidow Ultimate: Forcing relative x/y axes to exist.
    [ 427.639] (--) evdev: Razer Razer BlackWidow Ultimate: Found absolute axes
    [ 427.639] (--) evdev: Razer Razer BlackWidow Ultimate: Found absolute multitouch axes
    [ 427.639] (--) evdev: Razer Razer BlackWidow Ultimate: Found keys
    [ 427.639] (II) evdev: Razer Razer BlackWidow Ultimate: Configuring as mouse
    [ 427.639] (II) evdev: Razer Razer BlackWidow Ultimate: Configuring as keyboard
    [ 427.639] (II) evdev: Razer Razer BlackWidow Ultimate: Adding scrollwheel support
    [ 427.639] (**) evdev: Razer Razer BlackWidow Ultimate: YAxisMapping: buttons 4 and 5
    [ 427.639] (**) evdev: Razer Razer BlackWidow Ultimate: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 427.639] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.2/3-9.2:1.1/input/input16/event16"
    [ 427.639] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate" (type: KEYBOARD, id 12)
    [ 427.639] (**) Option "xkb_rules" "evdev"
    [ 427.639] (**) Option "xkb_model" "pc104"
    [ 427.639] (**) Option "xkb_layout" "us"
    [ 427.639] (II) evdev: Razer Razer BlackWidow Ultimate: initialized for relative axes.
    [ 427.639] (WW) evdev: Razer Razer BlackWidow Ultimate: ignoring absolute axes.
    [ 427.639] (**) Razer Razer BlackWidow Ultimate: (accel) keeping acceleration scheme 1
    [ 427.639] (**) Razer Razer BlackWidow Ultimate: (accel) acceleration profile 0
    [ 427.639] (**) Razer Razer BlackWidow Ultimate: (accel) acceleration factor: 2.000
    [ 427.639] (**) Razer Razer BlackWidow Ultimate: (accel) acceleration threshold: 4
    [ 427.640] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/event17)
    [ 427.640] (**) Razer Razer BlackWidow Ultimate: Applying InputClass "evdev pointer catchall"
    [ 427.640] (II) Using input driver 'evdev' for 'Razer Razer BlackWidow Ultimate'
    [ 427.640] (**) Razer Razer BlackWidow Ultimate: always reports core events
    [ 427.640] (**) evdev: Razer Razer BlackWidow Ultimate: Device: "/dev/input/event17"
    [ 427.640] (--) evdev: Razer Razer BlackWidow Ultimate: Vendor 0x1532 Product 0x10d
    [ 427.640] (--) evdev: Razer Razer BlackWidow Ultimate: Found 3 mouse buttons
    [ 427.640] (--) evdev: Razer Razer BlackWidow Ultimate: Found scroll wheel(s)
    [ 427.640] (--) evdev: Razer Razer BlackWidow Ultimate: Found relative axes
    [ 427.640] (--) evdev: Razer Razer BlackWidow Ultimate: Found x and y relative axes
    [ 427.640] (II) evdev: Razer Razer BlackWidow Ultimate: Configuring as mouse
    [ 427.640] (II) evdev: Razer Razer BlackWidow Ultimate: Adding scrollwheel support
    [ 427.640] (**) evdev: Razer Razer BlackWidow Ultimate: YAxisMapping: buttons 4 and 5
    [ 427.640] (**) evdev: Razer Razer BlackWidow Ultimate: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 427.640] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.2/3-9.2:1.2/input/input17/event17"
    [ 427.640] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate" (type: MOUSE, id 13)
    [ 427.640] (II) evdev: Razer Razer BlackWidow Ultimate: initialized for relative axes.
    [ 427.640] (**) Razer Razer BlackWidow Ultimate: (accel) keeping acceleration scheme 1
    [ 427.640] (**) Razer Razer BlackWidow Ultimate: (accel) acceleration profile 0
    [ 427.640] (**) Razer Razer BlackWidow Ultimate: (accel) acceleration factor: 2.000
    [ 427.640] (**) Razer Razer BlackWidow Ultimate: (accel) acceleration threshold: 4
    [ 427.640] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/mouse1)
    [ 427.640] (II) No input driver specified, ignoring this device.
    [ 427.640] (II) This device may have been added with another device file.
    [ 427.640] (II) config/udev: Adding input device UVC Camera (046d:081a) (/dev/input/event22)
    [ 427.640] (**) UVC Camera (046d:081a): Applying InputClass "evdev keyboard catchall"
    [ 427.640] (II) Using input driver 'evdev' for 'UVC Camera (046d:081a)'
    [ 427.640] (**) UVC Camera (046d:081a): always reports core events
    [ 427.640] (**) evdev: UVC Camera (046d:081a): Device: "/dev/input/event22"
    [ 427.640] (--) evdev: UVC Camera (046d:081a): Vendor 0x46d Product 0x81a
    [ 427.640] (--) evdev: UVC Camera (046d:081a): Found keys
    [ 427.640] (II) evdev: UVC Camera (046d:081a): Configuring as keyboard
    [ 427.640] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.4/3-9.4:1.0/input/input22/event22"
    [ 427.640] (II) XINPUT: Adding extended input device "UVC Camera (046d:081a)" (type: KEYBOARD, id 14)
    [ 427.640] (**) Option "xkb_rules" "evdev"
    [ 427.640] (**) Option "xkb_model" "pc104"
    [ 427.640] (**) Option "xkb_layout" "us"
    [ 427.640] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event3)
    [ 427.640] (II) No input driver specified, ignoring this device.
    [ 427.640] (II) This device may have been added with another device file.
    [ 427.640] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event10)
    [ 427.640] (II) No input driver specified, ignoring this device.
    [ 427.640] (II) This device may have been added with another device file.
    [ 427.640] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event11)
    [ 427.640] (II) No input driver specified, ignoring this device.
    [ 427.640] (II) This device may have been added with another device file.
    [ 427.640] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event4)
    [ 427.640] (II) No input driver specified, ignoring this device.
    [ 427.640] (II) This device may have been added with another device file.
    [ 427.641] (II) config/udev: Adding input device HDA Intel PCH Line Out Side (/dev/input/event5)
    [ 427.641] (II) No input driver specified, ignoring this device.
    [ 427.641] (II) This device may have been added with another device file.
    [ 427.641] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event6)
    [ 427.641] (II) No input driver specified, ignoring this device.
    [ 427.641] (II) This device may have been added with another device file.
    [ 427.641] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event7)
    [ 427.641] (II) No input driver specified, ignoring this device.
    [ 427.641] (II) This device may have been added with another device file.
    [ 427.641] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event8)
    [ 427.641] (II) No input driver specified, ignoring this device.
    [ 427.641] (II) This device may have been added with another device file.
    [ 427.641] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event9)
    [ 427.641] (II) No input driver specified, ignoring this device.
    [ 427.641] (II) This device may have been added with another device file.
    [ 427.641] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 427.641] (II) No input driver specified, ignoring this device.
    [ 427.641] (II) This device may have been added with another device file.
    [ 427.643] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
    [ 428.146] (II) Quirked EDID physical size to 0x0 cm
    [ 428.146] (II) fglrx(0): EDID vendor "SAM", prod id 1059
    [ 428.146] (II) fglrx(0): Using EDID range info for horizontal sync
    [ 428.146] (II) fglrx(0): Using EDID range info for vertical refresh
    [ 428.146] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 428.146] (II) fglrx(0): Modeline "1920x1200"x0.0 154.00 1920 1968 2000 2080 1200 1203 1209 1235 +hsync -vsync (74.0 kHz eP)
    [ 428.146] (II) fglrx(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 428.146] (II) fglrx(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 428.206] (II) Quirked EDID physical size to 0x0 cm
    [ 428.206] (II) fglrx(0): EDID vendor "SAM", prod id 1059
    [ 428.206] (II) fglrx(0): Using hsync ranges from config file
    [ 428.206] (II) fglrx(0): Using vrefresh ranges from config file
    [ 428.206] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 428.206] (II) fglrx(0): Modeline "1920x1200"x0.0 154.00 1920 1968 2000 2080 1200 1203 1209 1235 +hsync -vsync (74.0 kHz eP)
    [ 428.206] (II) fglrx(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 428.206] (II) fglrx(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 428.334] (II) Quirked EDID physical size to 0x0 cm
    [ 428.334] (II) fglrx(0): EDID vendor "SAM", prod id 1059
    [ 428.334] (II) fglrx(0): Using hsync ranges from config file
    [ 428.334] (II) fglrx(0): Using vrefresh ranges from config file
    [ 428.334] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 428.334] (II) fglrx(0): Modeline "1920x1200"x0.0 154.00 1920 1968 2000 2080 1200 1203 1209 1235 +hsync -vsync (74.0 kHz eP)
    [ 428.334] (II) fglrx(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 428.334] (II) fglrx(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 428.334] (II)

  • Issue Password-less SSH:  Sun OpenDS 2.0 as Naming Service

    We are in the final phase of a proof of concept for Sun OpenDS as the Naming service for an important customer and facing problem with password-less ssh. We narrowed the problem down to password policy specifying a value for password maximum age. SSH succeeds with ?0? (zero) but requires password if the value is different from 0.
    Any help in getting a resolution is greatly appreciated, as this is a road block now.
    The following information is gathered.
    The test is performed from a host thud which is setup as an ldapclient.
    thud 275 ssh thud -i .ssh/thud
    Password:
    Last login: Tue Oct 13 06:57:01 2009 from xxx
    Apparent reason (trimmed):
    debug3: authmethod_lookup publickey
    debug3: remaining preferred: keyboard-interactive,password
    debug3: authmethod_is_enabled publickey
    debug1: Next authentication method: publickey
    debug1: Trying public key: .ssh/thud
    debug3: send_pubkey_test
    debug2: we sent a publickey packet, wait for reply
    debug1: Server accepts key: pkalg ssh-dss blen 434 lastkey 1166d0 hint 0
    debug2: input_userauth_pk_ok: fp 07:15:b3:07:8d:da:b3:c8:34:d0:34:91:60:77:e0:39
    debug3: sign_and_send_pubkey
    debug1: read PEM private key done: type DSA
    debug1: Authentications that can continue: gssapi-keyex,gssapi-with-mic,publickey,password,keyboard-interactive
    debug2: we did not send a packet, disable method
    debug3: authmethod_lookup keyboard-interactive
    debug3: remaining preferred: password
    debug3: authmethod_is_enabled keyboard-interactive
    debug1: Next authentication method: keyboard-interactive
    Password:
    Corresponding debug info from server (thud):
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: userauth-request for user doejohn service ssh-connection method publickey
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: attempt 1 initial attempt 0 failures 1 initial failures 0
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: test whether pkalg/pkblob are acceptable
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: temporarily_use_uid: 6147/150 (e=0/1)
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: trying public key file /home/doejohn/.ssh/authorized_keys
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: matching key found: file /home/doejohn/.ssh/authorized_keys,
    line 2Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.info] Found matching DSA key: 07:15:b3:07:8d:da:b3:c8:34:d0:34:91:60:77:e0:39
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: restore_uid: 0/1
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: userauth-request for user doejohn service ssh-connection method publickey
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: attempt 2 initial attempt 0 failures 1 initial failures 0
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: temporarily_use_uid: 6147/150 (e=0/1)
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: trying public key file /home/doejohn/.ssh/authorized_keys
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: matching key found: file /home/doejohn/.ssh/authorized_keys, line 2
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.info] Found matching DSA key: 07:15:b3:07:8d:da:b3:c8:34:d0:34:91:60:77:e0:39
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: restore_uid: 0/1
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: ssh_dss_verify: signature correct
    Oct 13 07:29:36 thud sshd[21187]: [ID 966290 auth.debug] PAM[21187]: pam_start(sshd-pubkey,doejohn,0:179560) - debug = 1
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:service)
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:user)
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:conv)
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:rhost)
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:tty)
    Oct 13 07:29:36 thud sshd[21187]: [ID 665327 auth.debug] PAM[21187]: pam_acct_mgmt(179560, 0)
    Oct 13 07:29:36 thud sshd[21187]: [ID 118111 auth.debug] PAM[21187]: load_modules(179560, pam_sm_acct_mgmt)=/usr/lib/security/pam_roles.so.1
    Oct 13 07:29:36 thud sshd[21187]: [ID 143372 auth.debug] PAM[21187]: load_function: successful load of pam_sm_acct_mgmt
    Oct 13 07:29:36 thud sshd[21187]: [ID 118111 auth.debug] PAM[21187]: load_modules(179560, pam_sm_acct_mgmt)=/usr/lib/security/pam_projects.so.1
    Oct 13 07:29:36 thud sshd[21187]: [ID 143372 auth.debug] PAM[21187]: load_function: successful load of pam_sm_acct_mgmt
    Oct 13 07:29:36 thud sshd[21187]: [ID 118111 auth.debug] PAM[21187]: load_modules(179560, pam_sm_acct_mgmt)=/usr/lib/security/pam_unix_account.so.1
    Oct 13 07:29:36 thud sshd[21187]: [ID 143372 auth.debug] PAM[21187]: load_function: successful load of pam_sm_acct_mgmt
    Oct 13 07:29:36 thud sshd[21187]: [ID 118111 auth.debug] PAM[21187]: load_modules(179560, pam_sm_acct_mgmt)=/usr/lib/security/pam_ldap.so.1
    Oct 13 07:29:36 thud sshd[21187]: [ID 143372 auth.debug] PAM[21187]: load_function: successful load of pam_sm_acct_mgmt
    Oct 13 07:29:36 thud sshd[21187]: [ID 579461 auth.debug] pam_unix_account: entering pam_sm_acct_mgmt()
    Oct 13 07:29:36 thud sshd[21187]: [ID 267958 auth.debug] pam_unix_account: doejohn: Ignore module
    Oct 13 07:29:36 thud sshd[21187]: [ID 545954 auth.debug] libsldap: more_info is empty, using default values
    Oct 13 07:29:36 thud sshd[21187]: [ID 340006 auth.debug] PAM[21187]: pam_acct_mgmt(179560, 0): error Authentication failed
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.notice] Failed publickey for doejohn from 172.16.1.207 port 44363 ssh2
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: userauth-request for user doejohn service ssh-connection method keyboard-interactive
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: attempt 3 initial attempt 0 failures 3 initial failures 0
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: keyboard-interactive devs
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:conv)
    Oct 13 07:29:36 thud sshd[21187]: [ID 873394 auth.debug] PAM[21187]: pam_end(179560): status = Authentication failed
    Sending the Account Usability control on the server returns:
    ?The account is not usable?
    solaris-z1 487 # ldapsearch -D 'cn=directory manager' -w xxx -b 'dc=texas,dc=net' -J "accountUsability:true" uid=doejohn
    # Account Usability Response Control
    # The account is not usable
    dn: uid=doejohn,ou=eng,ou=People,dc=texas,dc=net
    uid: doejohn
    shadowLastChange: 14480
    loginShell: /bin/ksh
    userPassword: {CRYPT}GOUlmnz01bJbwcY69Btp2sIRJrLf+5RtAj4oug==
    objectClass: person
    objectClass: organizationalPerson
    objectClass: inetOrgPerson
    objectClass: shadowAccount
    objectClass: IEEPerson
    objectClass: posixAccount
    objectClass: top
    givenName: John
    cn: John Doe
    sn: Doe
    telephoneNumber: ...
    gecos: ...
    homeDirectory: /home/doejohn
    mail: [email protected]
    uidNumber: 6147
    gidNumber: 150
    manager: ...
    For someone with a different password policy (max age is 0) the account is usable.
    Ldapclient is running on a SPARC, Solaris 9 system; the Sun OpenDS 2.0 is running on Solaris 10 Sparc.
    Password-less ssh works as expected when using a system not using LDAP.

    See https://opends.dev.java.net/servlets/ProjectForumMessageView?messageID=31827&forumID=3292.
    Regards,
    Ludovic.

  • [SOLVED] Problem with GDM and Gnome3

    Okay, the Topic was more of a trick. Actually I'm havingt two seperate issues; I googled and such, but have not found anything that really answers my question.
    First Issue:
    I have my gdm.service enabled, so it starts on statup. I boot into runlevel 3. Now, whenever I type "startx" the screen becomes black, and after a while I come back into my TTY with something along the lines of "Stopping X server". But without any error, etc. It justs stops. When I know do a systemctl status on my gdm.service, I become that:
    gdm.service - GNOME Display Manager
    Loaded: loaded (/usr/lib/systemd/system/gdm.service; enabled)
    Active: inactive (dead)
    Feb 03 16:47:31 thunderlaptop gdm-simple-slave[475]: WARNING: Failed to give slave programs access to the display. Trying to proceed.
    Feb 03 16:48:22 thunderlaptop gdm-password][623]: pam_unix(gdm-password:auth): authentication failure; logname=(unknown) uid=0 euid=0 tty=:0 ruser= rhost= user=thunderuser
    Feb 03 16:48:33 thunderlaptop gdm-password][626]: pam_unix(gdm-password:session): session opened for user thunderuser by (unknown)(uid=0)
    Feb 03 16:48:33 thunderlaptop gdm-simple-slave[475]: WARNING: Failed to remove slave program access to the display. Trying to proceed.
    Feb 03 17:03:17 thunderlaptop systemd[1]: Stopping GNOME Display Manager...
    Feb 03 17:03:17 thunderlaptop gdm-simple-slave[475]: GLib-GObject-CRITICAL: g_object_ref: assertion `object->ref_count > 0' failed
    Feb 03 17:03:17 thunderlaptop gdm-simple-slave[475]: WARNING: Child process 626 was already dead.
    Feb 03 17:03:17 thunderlaptop gdm-simple-slave[475]: WARNING: Unable to kill session worker process
    Feb 03 17:03:18 thunderlaptop gdm-simple-slave[475]: GLib-GObject-CRITICAL: g_object_unref: assertion `object->ref_count > 0' failed
    Feb 03 17:03:18 thunderlaptop systemd[1]: Stopped GNOME Display Manager.
    After I start it, it puts me into the login screen and I can work just fine with Gnome3. I have no clue where the issuse might be.
    The second is simple to explain - I have no Network symbol in the upper right corner, and Gnome3 says the network service is not compatible with my system.
    Oh, and another issue. When I type something too long, the text does not start a new line in my console resulting in some Visual problems.
    Thanks in advance.
    Last edited by ThunderRush (2013-02-04 12:36:57)

    Blasphemist wrote:
    Isn't GDM starting X and Gnome as it should for you? You shouldn't need to start X unless you want more than one X session. Is that what you are trying to do? After installing Gnome and Gnome-extra, I just use this command to enable GDM. systemctl enable gdm
    What is your networking configuration. The beginners guide has been updated within the last week or two about this due to a change in network interface naming. Please give that a look.
    Which console and shell are you using? Does it have a line wrap configuration option. This is normally automatic but those are my first questions.
    Well, as I said, I start into runlevel 3 and want to start X by myself.
    Yes, I realise that it is not wlan0 anymore, and I know the name of my wlan-interface. It works awesomely fine via wifi-menu <interface>, but gnome3 seems to have struggles? Have not found anything about that.
    I'm using the gnome shell with bash. But the problem occours in a tty2 console as well. I guess it is a problem with .bashrc, but I have no idea what it might be.
    Edit:
    So, the fixes for the problems are...
    1. Reinstall Linux. My Pam was fucked up somewhoe.
    2. systemctl enable NetworkManager and not networkmanager. Please kill me.
    3. I wrote the Colorcodes and escape-characters in a variable and used that in the actual PS1. That fixed it, and the guys over at bash suggest that too.
    Last edited by ThunderRush (2013-02-04 12:36:42)

  • Sudo doesn't work anymore, not permitting me to enter password

    Since two days, sudo doesn't work for me anymore. When I do
    sudo any_command
    I get:
    Sorry, try again.
    Sorry, try again.
    Sorry, try again.
    sudo: 3 incorrect password attempts
    I updated my server two days ago, but I cannot say whether it's related to my problem.
    Here's the result of doing
    tail /var/log/sudolog
    as root (su works):
    Oct 13 12:35:33 : kalasusi : 3 incorrect password attempts ; TTY=pts/2 ; PWD=/etc; USER=root ; COMMAND=/bin/ls
    Here's the result of doing
    tail /var/log/auth.log
    as root (the last new lines after trying sudo again with my normal user):
    Oct 13 14:52:59 myserver sudo: pam_unix(sudo:auth): authentication failure; logname=kalasusi uid=0 euid=0 tty=/dev/pts/1 ruser=kalasusi rhost= user=kalasusi
    Oct 13 14:53:05 myserver sudo: kalasusi : 3 incorrect password attempts ; TTY=pts/1 ; PWD=/home/kalasusi ; USER=root ; COMMAND=/bin/ls
    For some background info, the sudo troubleshooting guide identifies such a problem (the third Q&A):
    Q) Sudo never gives me a chance to enter a password using PAM, it just
       says 'Sorry, try again.' three times and exits.
    A) You didn't setup PAM to work with sudo.  On Redhat Linux or Fedora
       Core this generally means installing sample.pam as /etc/pam.d/sudo.
       See the sample.pam file for hints on what to use for other Linux
       systems.
    The only problem is that I didn't change anything from the Arch stock configuration of /etc/pam.d/sudo, and it used to work. Here's the result of
    cat /etc/pam.d/sudo
    on my system:
    #%PAM-1.0
    auth required pam_unix.so
    auth required pam_nologin.so
    Something else that comes into my mind that might be connected with the problem is that at some point while doing maintenance on the server, I received the following error:
    Authentication token manipulation error.
    Unfortunately I don't remember in what context it was or whether the problem started afterwards. I believe though the problem is either that or the update, because those are the two extraordinary things that happened on the server since the problem started.
    Anyone have any ideas? Thanks in advance!
    Last edited by kalasusi (2010-10-13 23:20:14)

    [2010-10-11 22:08] Running 'pacman -Syu'
    [2010-10-11 22:08] synchronizing package lists
    [2010-10-11 22:10] starting full system upgrade
    [2010-10-11 22:12] Generating locales...
    [2010-10-11 22:12] en_US.UTF-8... done
    [2010-10-11 22:12] en_US.ISO-8859-1... done
    [2010-10-11 22:12] Generation complete.
    [2010-10-11 22:12] upgraded glibc (2.12.1-1 -> 2.12.1-2)
    [2010-10-11 22:12] upgraded binutils (2.20.1-3 -> 2.20.1-4)
    [2010-10-11 22:12] upgraded libmysqlclient (5.1.50-1 -> 5.1.51-1)
    [2010-10-11 22:12] upgraded logrotate (3.7.8-1 -> 3.7.9-1)
    [2010-10-11 22:12] upgraded mysql-clients (5.1.50-1 -> 5.1.51-1)
    [2010-10-11 22:13] upgraded mysql (5.1.50-1 -> 5.1.51-1)
    [2010-10-11 22:13] upgraded php (5.3.3-1 -> 5.3.3-2)
    [2010-10-11 22:13] upgraded php-cgi (5.3.3-1 -> 5.3.3-2)
    [2010-10-11 22:13] upgraded php-gd (5.3.3-1 -> 5.3.3-2)
    [2010-10-11 22:13] upgraded php-mcrypt (5.3.3-1 -> 5.3.3-2)
    [2010-10-11 14:19] Running 'pacman -S apache'
    [2010-10-11 14:21] installed apr (1.4.2-1)
    [2010-10-11 14:21] installed unixodbc (2.3.0-1)
    [2010-10-11 14:21] installed apr-util (1.3.10-1)
    [2010-10-11 14:21] installed apache (2.2.16-1)
    [2010-10-11 14:28] Running 'pacman -S php-apache'
    [2010-10-11 14:28] installed php-apache (5.3.3-2)
    [2010-10-12 19:46] Running 'pacman -Rns php-apache'
    [2010-10-12 19:48] removed php-apache (5.3.3-2)
    [2010-10-12 19:51] Running 'pacman -Rns apache'
    [2010-10-12 19:51] removed apache (2.2.16-1)
    [2010-10-12 19:51] removed apr-util (1.3.10-1)
    [2010-10-12 19:51] removed unixodbc (2.3.0-1)
    [2010-10-12 19:51] removed apr (1.4.2-1)
    [2010-10-12 19:52] Running 'pacman -S nginx'
    [2010-10-12 19:52] installed nginx (0.8.52-2)
    [2010-10-12 20:01] Running 'pacman -S php-fpm'
    [2010-10-12 20:01] installed libevent (1.4.14b-1)
    [2010-10-12 20:01] installed php-fpm (5.3.3-2)
    [2010-10-12 13:45] Running 'pacman -Rns nginx'
    [2010-10-12 13:45] removed nginx (0.8.52-2)
    [2010-10-12 13:46] Running 'pacman -Rns php-fpm'
    [2010-10-12 13:46] removed php-fpm (5.3.3-2)
    [2010-10-12 13:46] removed libevent (1.4.14b-1)
    As you can see, I installed (and removed) apache and nginx, as I was testing their performance. I don't think it's related to this issue, but I'm adding this here for the sake of completeness.
    Last edited by kalasusi (2010-10-13 23:26:13)

  • SSH - Failure to connect, does not prompt for password,

    I have been using SSH on this iMac with 10.5.4 for over a year, upgraded to Leopard when it came out, never a problem with SSH, but now for no apparent reason, SSH fails when trying to connect through VPN into work.
    I can still connect to other systems on the internet that are not through the VPN.
    I don't suspect this to be a VPN issue because no other employees are having this problem with the VPN, using Mac, Windows or Linux. I can connect vi putty on my windows from the same network... below is my config.
    Here is what I'm getting:
    I connect as- ssh me@hostname and it returns "Permission denied (publickey)." It makes to attempt to prompt me for a password. I do not use a key on this system so it should prompt me for a password. I changed nothing on the system to cause ssh to break, But it's possible that a apple security update caused something to break.
    I have added the following to my ~/.ssh/config file
    PasswordAuthentication yes
    My /etc/ssh_config file is as follows:
    cat /etc/ssh_config
    # $OpenBSD: ssh_config,v 1.22 2006/05/29 12:56:33 dtucker Exp $
    # This is the ssh client system-wide configuration file. See
    # ssh_config(5) for more information. This file provides defaults for
    # users, and the values can be changed in per-user configuration files
    # or on the command line.
    # Configuration data is parsed as follows:
    # 1. command line options
    # 2. user-specific file
    # 3. system-wide file
    # Any configuration value is only changed the first time it is set.
    # Thus, host-specific definitions should be at the beginning of the
    # configuration file, and defaults at the end.
    # Site-wide defaults for some commonly used options. For a comprehensive
    # list of available options, their meanings and defaults, please see the
    # ssh_config(5) man page.
    # Host *
    # ForwardAgent no
    # ForwardX11 no
    # RhostsRSAAuthentication no
    # RSAAuthentication yes
    PasswordAuthentication yes
    # HostbasedAuthentication no
    # GSSAPIAuthentication no
    # GSSAPIDelegateCredentials no
    # GSSAPIKeyExchange no
    # GSSAPITrustDNS no
    # BatchMode no
    # CheckHostIP yes
    # AddressFamily any
    # ConnectTimeout 0
    # StrictHostKeyChecking ask
    # IdentityFile ~/.ssh/identity
    # IdentityFile ~/.ssh/id_rsa
    # IdentityFile ~/.ssh/id_dsa
    # Port 22
    # Protocol 2,1
    # Cipher 3des
    # Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
    # EscapeChar ~
    # Tunnel no
    # TunnelDevice any:any
    PermitLocalCommand yes
    My /etc/sshd_config is:
    cat /etc/sshd_config
    # $OpenBSD: sshd_config,v 1.72 2005/07/25 11:59:40 markus Exp $
    # This is the sshd server system-wide configuration file. See
    # sshd_config(5) for more information.
    # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
    # The strategy used for options in the default sshd_config shipped with
    # OpenSSH is to specify options with their default value where
    # possible, but leave them commented. Uncommented options change a
    # default value.
    #Port 22
    #Protocol 2,1
    Protocol 2
    #AddressFamily any
    #ListenAddress 0.0.0.0
    #ListenAddress ::
    # HostKey for protocol version 1
    #HostKey /etc/sshhostkey
    # HostKeys for protocol version 2
    #HostKey /etc/sshhost_rsakey
    #HostKey /etc/sshhost_dsakey
    # Lifetime and size of ephemeral version 1 server key
    #KeyRegenerationInterval 1h
    #ServerKeyBits 768
    # Logging
    # obsoletes QuietMode and FascistLogging
    SyslogFacility AUTHPRIV
    #LogLevel INFO
    # Authentication:
    #LoginGraceTime 2m
    #PermitRootLogin yes
    PermitRootLogin no
    #StrictModes yes
    #MaxAuthTries 6
    #RSAAuthentication yes
    #PubkeyAuthentication yes
    #AuthorizedKeysFile .ssh/authorized_keys
    # For this to work you will also need host keys in /etc/sshknownhosts
    #RhostsRSAAuthentication no
    # similar for protocol version 2
    #HostbasedAuthentication no
    # Change to yes if you don't trust ~/.ssh/known_hosts for
    # RhostsRSAAuthentication and HostbasedAuthentication
    #IgnoreUserKnownHosts no
    # Don't read the user's ~/.rhosts and ~/.shosts files
    #IgnoreRhosts yes
    # To disable tunneled clear text passwords, change to no here!
    #PasswordAuthentication yes
    #PermitEmptyPasswords no
    # SACL options
    #SACLSupport yes
    # Change to no to disable s/key passwords
    #ChallengeResponseAuthentication yes
    # Kerberos options
    #KerberosAuthentication no
    #KerberosOrLocalPasswd yes
    #KerberosTicketCleanup yes
    #KerberosGetAFSToken no
    # GSSAPI options
    #GSSAPIStrictAcceptorCheck yes
    #GSSAPIKeyExchange yes
    # GSSAPI options
    #GSSAPIAuthentication yes
    #GSSAPICleanupCredentials yes
    # Set this to 'yes' to enable PAM authentication, account processing,
    # and session processing. If this is enabled, PAM authentication will
    # be allowed through the ChallengeResponseAuthentication mechanism.
    # Depending on your PAM configuration, this may bypass the setting of
    # PasswordAuthentication, PermitEmptyPasswords, and
    # "PermitRootLogin without-password". If you just want the PAM account and
    # session checks to run without PAM authentication, then enable this but set
    # ChallengeResponseAuthentication=no
    #UsePAM yes
    #AllowTcpForwarding yes
    #GatewayPorts no
    #X11Forwarding no
    #X11DisplayOffset 10
    #X11UseLocalhost yes
    #PrintMotd yes
    #PrintLastLog yes
    #TCPKeepAlive yes
    #UseLogin no
    #UsePrivilegeSeparation yes
    #PermitUserEnvironment no
    #Compression delayed
    #ClientAliveInterval 0
    #ClientAliveCountMax 3
    #UseDNS yes
    #PidFile /var/run/sshd.pid
    #MaxStartups 10
    #PermitTunnel no
    # no default banner path
    #Banner /some/path
    # override default of no subsystems
    Subsystem sftp /usr/libexec/sftp-server
    # Example of overriding settings on a per-user basis
    #Match User anoncvs
    # X11Forwarding no
    # AllowTcpForwarding no
    # ForceCommand cvs server

    Also I forgot to mention, I have nulled out the known_hosts file to eliminate any conflicts there, I have verified .ssh is 700 and files config and known_hosts are 600
    output using ssh -v
    debug1: Reading configuration data /Users/<me>/.ssh/config
    debug1: Reading configuration data /etc/ssh_config
    debug1: Connecting to pshx4105a [216.255.177.213] port 22.
    debug1: Connection established.
    debug1: identity file /Users/<me>/.ssh/identity type -1
    debug1: identity file /Users/<me>/.ssh/id_rsa type -1
    debug1: identity file /Users/<me>/.ssh/id_dsa type -1
    debug1: Remote protocol version 2.0, remote software version OpenSSH_4.5p1 FreeBSD-20061110
    debug1: match: OpenSSH_4.5p1 FreeBSD-20061110 pat OpenSSH*
    debug1: Enabling compatibility mode for protocol 2.0
    debug1: Local version string SSH-2.0-OpenSSH_4.7
    debug1: SSH2MSGKEXINIT sent
    debug1: SSH2MSGKEXINIT received
    debug1: kex: server->client aes128-cbc hmac-md5 none
    debug1: kex: client->server aes128-cbc hmac-md5 none
    debug1: SSH2MSG_KEX_DH_GEXREQUEST(1024<1024<8192) sent
    debug1: expecting SSH2MSG_KEX_DH_GEXGROUP
    debug1: SSH2MSG_KEX_DH_GEXINIT sent
    debug1: expecting SSH2MSG_KEX_DH_GEXREPLY
    debug1: Host 'pshx4105a' is known and matches the DSA host key.
    debug1: Found key in /Users/<me>/.ssh/known_hosts:3
    debug1: sshdssverify: signature correct
    debug1: SSH2MSGNEWKEYS sent
    debug1: expecting SSH2MSGNEWKEYS
    debug1: SSH2MSGNEWKEYS received
    debug1: SSH2MSG_SERVICEREQUEST sent
    debug1: SSH2MSG_SERVICEACCEPT received
    debug1: Authentications that can continue: publickey
    debug1: Next authentication method: publickey
    debug1: Trying private key: /Users/<me>/.ssh/identity
    debug1: Trying private key: /Users/<me>/.ssh/id_rsa
    debug1: Trying private key: /Users/<me>/.ssh/id_dsa
    debug1: No more authentication methods to try.

  • Rsh - connecting using user name that does not exist on remote computer

    hi
    is it possible to connect to a remote computer as, for example John, if user account John does not exist on the remote computer but is listed in .rhosts?
    this is what i have written in .rhosts on the remote computer ( Work ):
    home root
    home John
    when I connect as root:
    rlogin -l root Work
    everythings fine, but when I try to connect as John I get the incorrect login message
    I know the message above probably answers my question, but I want to be sure

    If the user id exists, you can bypass the authentication with .rhosts or /etc/hosts.equiv files; but you can't login to a remote machine as an anonymous user.

  • Xclock Error: Can't open display: - after upgrading to openSSH 5.2p1

    I have got two servers apssvrX and apssvrZ on OEL. Both were built by the same team using their standard build scripts.
    Having received the servers I had installed Oracle (ODI) product on it successfully.
    Then as a part of requirement and as per Oracle support's advise, I had upgraded the ssh version on apssvrX server from OpenSSH_4.3p2 To OpenSSH_5.2p1, so that, I can implement the chroot jailing.
    As per Oracle advise, I had downloaded the 3 RPMs from "_http://layer1.rack911.com/openssh/rhel5/x86_64/" to run them on my first server i.e., apssvrX and then configured the sshd services following the below steps:
    a) Modify /etc/ssh/sshd_config to comment the below line:
    #Subsystem sftp /usr/libexec/openssh/sftp-server
    b) Add below lines:
    Subsystem sftp internal-sftp
    Match Group sftponly
    ChrootDirectory %h
    X11Forwarding no
    AllowTcpForwarding no
    ForceCommand internal-sftp
    Then lastly, Restart sshd services complete the configuration
    # /etc/init.d/sshd restart
    apssvrX server current details are as below:
    apssvrX$ uname -a
    Linux apssvrX 2.6.18-128.el5 #1 SMP Wed Jan 21 08:45:05 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
    apssvrX$ ssh -V
    OpenSSH_5.2p1, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
    My problems started from this point onwards. I want to install another Oracle product using OUI, but when I try to execute xclock using the Exceed HummingBird tool on apssvrX server then it fails with the error - (xclock) Error: Can't open display:
    I tried the DISPLAY variable setup as well but to no use.
    Whereas I can successfully execute the xclock on apssvrZ and OUI as well. Its config details are as below:
    apssvrZ$ uname -a
    Linux apssvrZ 2.6.18-128.el5 #1 SMP Wed Jan 21 08:45:05 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
    apssvrZ$ ssh -V
    OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
    Please advise the way forward.

    Tried but still same error.
    Affected servers's sshd_config is as below:
    [root@apssvrX]# cat /etc/ssh/sshd_config
    # $OpenBSD: sshd_config,v 1.73 2005/12/06 22:38:28 reyk Exp $
    # This is the sshd server system-wide configuration file. See
    # sshd_config(5) for more information.
    # This sshd was compiled with PATH=/usr/local/bin:/bin:/usr/bin
    # The strategy used for options in the default sshd_config shipped with
    # OpenSSH is to specify options with their default value where
    # possible, but leave them commented. Uncommented options change a
    # default value.
    #Port 22
    Protocol 2
    Protocol 2
    #AddressFamily any
    #ListenAddress 0.0.0.0
    #ListenAddress ::
    # HostKey for protocol version 1
    #HostKey /etc/ssh/ssh_host_key
    # HostKeys for protocol version 2
    #HostKey /etc/ssh/ssh_host_rsa_key
    #HostKey /etc/ssh/ssh_host_dsa_key
    # Lifetime and size of ephemeral version 1 server key
    #KeyRegenerationInterval 1h
    #ServerKeyBits 768
    # Logging
    # obsoletes QuietMode and FascistLogging
    #SyslogFacility AUTH
    SyslogFacility AUTHPRIV
    #LogLevel INFO
    # Authentication:
    #LoginGraceTime 2m
    PermitRootLogin without-password
    #StrictModes yes
    #MaxAuthTries 6
    #RSAAuthentication yes
    #PubkeyAuthentication yes
    #AuthorizedKeysFile .ssh/authorized_keys
    # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
    #RhostsRSAAuthentication no
    # similar for protocol version 2
    #HostbasedAuthentication no
    # Change to yes if you don't trust ~/.ssh/known_hosts for
    # RhostsRSAAuthentication and HostbasedAuthentication
    #IgnoreUserKnownHosts no
    # Don't read the user's ~/.rhosts and ~/.shosts files
    #IgnoreRhosts yes
    # To disable tunneled clear text passwords, change to no here!
    #PasswordAuthentication yes
    #PermitEmptyPasswords no
    PasswordAuthentication yes
    # Change to no to disable s/key passwords
    #ChallengeResponseAuthentication yes
    ChallengeResponseAuthentication no
    # Kerberos options
    #KerberosAuthentication no
    #KerberosOrLocalPasswd yes
    #KerberosTicketCleanup yes
    #KerberosGetAFSToken no
    # GSSAPI options
    #GSSAPIAuthentication no
    GSSAPIAuthentication yes
    #GSSAPICleanupCredentials yes
    GSSAPICleanupCredentials yes
    # Set this to 'yes' to enable PAM authentication, account processing,
    # and session processing. If this is enabled, PAM authentication will
    # be allowed through the ChallengeResponseAuthentication mechanism.
    # Depending on your PAM configuration, this may bypass the setting of
    # PasswordAuthentication, PermitEmptyPasswords, and
    # "PermitRootLogin without-password". If you just want the PAM account and
    # session checks to run without PAM authentication, then enable this but set
    # ChallengeResponseAuthentication=no
    #UsePAM no
    UsePAM yes
    # Accept locale-related environment variables
    AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
    AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
    AcceptEnv LC_IDENTIFICATION LC_ALL
    #AllowTcpForwarding yes
    #GatewayPorts no
    #X11Forwarding no
    X11Forwarding yes
    #X11DisplayOffset 10
    #X11UseLocalhost yes
    #PrintMotd yes
    #PrintLastLog yes
    #TCPKeepAlive yes
    #UseLogin no
    #UsePrivilegeSeparation yes
    #PermitUserEnvironment no
    #Compression delayed
    #ClientAliveInterval 0
    #ClientAliveCountMax 3
    #ShowPatchLevel no
    #UseDNS yes
    #PidFile /var/run/sshd.pid
    #MaxStartups 10
    #PermitTunnel no
    # no default banner path
    #Banner /some/path
    # override default of no subsystems
    Subsystem sftp /usr/libexec/openssh/sftp-server
    ## Commented the sftp jailing configuration
    ##Subsystem sftp internal-sftp
    ##Match Group sftponly
    ## ChrootDirectory %h
    ## X11Forwarding no
    ## AllowTcpForwarding no
    ## ForceCommand internal-sftp

  • Since upgrading to OSX 10.6.8, I am unable to use scp on a remote machine to copy files into my iMac.

    Any suggestions?
    However, I can use scp to copy files out from my iMac (10.6.8) .
    I can ssh into the iMac OK.
    I created a .profile in my iMac home directory with the single line "export TERM=xterm-color".
    This makes a difference to how scp behaves when attempting to copy into the iMac, but it still fails.
    Thanks in advance for any help.  Peter R
    Here is the scp debug output (on the remote machine that I'm copying a file from, to the iMac):
    ===
    Executing: program /usr/bin/ssh host molika.ucsd.edu, user prowat, command scp -v -t Desktop/FromPelican/Outs201201.pdf
    Sun_SSH_1.1.3, SSH protocols 1.5/2.0, OpenSSL 0x0090704f
    debug1: Reading configuration data /etc/ssh/ssh_config
    debug1: Rhosts Authentication disabled, originating port will not be trusted.
    debug1: ssh_connect: needpriv 0
    debug1: Connecting to molika.ucsd.edu [137.110.243.133] port 22.
    debug1: Connection established.
    debug1: identity file /home/nona/.ssh/identity type -1
    debug1: identity file /home/nona/.ssh/id_rsa type -1
    debug1: identity file /home/nona/.ssh/id_dsa type -1
    debug1: Remote protocol version 1.99, remote software version OpenSSH_5.2
    debug1: match: OpenSSH_5.2 pat OpenSSH*
    debug1: Enabling compatibility mode for protocol 2.0
    debug1: Local version string SSH-2.0-Sun_SSH_1.1.3
    debug1: use_engine is 'yes'
    debug1: pkcs11 engine initialized, now setting it as default for RSA, DSA, and symmetric ciphers
    debug1: pkcs11 engine initialization complete
    debug1: Failed to acquire GSS-API credentials for any mechanisms (No credentials were supplied, or the credentials were unavailable or inaccessible
    Unknown code 0
    debug1: SSH2_MSG_KEXINIT sent
    debug1: SSH2_MSG_KEXINIT received
    debug1: kex: server->client aes128-ctr hmac-md5 none
    debug1: kex: client->server aes128-ctr hmac-md5 none
    debug1: Peer sent proposed langtags, ctos:
    debug1: Peer sent proposed langtags, stoc:
    debug1: We proposed langtags, ctos: i-default
    debug1: We proposed langtags, stoc: i-default
    debug1: SSH2_MSG_KEX_DH_GEX_REQUEST sent
    debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
    debug1: dh_gen_key: priv key bits set: 124/256
    debug1: bits set: 1007/2048
    debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
    debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
    debug1: Host 'molika.ucsd.edu' is known and matches the RSA host key.
    debug1: Found key in /home/nona/.ssh/known_hosts:1
    debug1: bits set: 1043/2048
    debug1: ssh_rsa_verify: signature correct
    debug1: newkeys: mode 1
    debug1: set_newkeys: setting new keys for 'out' mode
    debug1: SSH2_MSG_NEWKEYS sent
    debug1: expecting SSH2_MSG_NEWKEYS
    debug1: newkeys: mode 0
    debug1: set_newkeys: setting new keys for 'in' mode
    debug1: SSH2_MSG_NEWKEYS received
    debug1: done: ssh_kex2.
    debug1: send SSH2_MSG_SERVICE_REQUEST
    debug1: got SSH2_MSG_SERVICE_ACCEPT
    debug1: Authentications that can continue: publickey,keyboard-interactive
    debug1: Next authentication method: publickey
    debug1: Trying private key: /home/nona/.ssh/identity
    debug1: Trying private key: /home/nona/.ssh/id_rsa
    debug1: Trying private key: /home/nona/.ssh/id_dsa
    debug1: Next authentication method: keyboard-interactive
    *** Password requested & supplied
    debug1: Authentication succeeded (keyboard-interactive)
    debug1: fd 5 setting O_NONBLOCK
    debug1: fd 6 setting O_NONBLOCK
    debug1: fd 7 setting O_NONBLOCK
    debug1: channel 0: new [client-session]
    debug1: send channel open 0
    debug1: Entering interactive session.
    debug1: ssh_session2_setup: id 0
    debug1: channel request 0: env
    debug1: Sending command: scp -v -t Desktop/FromPelican/Outs201201.pdf
    debug1: channel request 0: exec
    debug1: channel 0: open confirm rwindow 0 rmax 32768
    ~
    debug1: channel 0: read<=0 rfd 5 len 0
    debug1: channel 0: read failed
    debug1: channel 0: close_read
    debug1: channel 0: input open -> drain
    debug1: channel 0: ibuf empty
    debug1: channel 0: send eof
    debug1: channel 0: input drain -> closed
    debug1: channel 0: write failed
    debug1: channel 0: close_write
    debug1: channel 0: output open -> closed
    debug1: channel 0: rcvd eof
    debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
    debug1: channel 0: rcvd close
    debug1: channel 0: almost dead
    debug1: channel 0: gc: notify user
    debug1: channel 0: gc: user detached
    debug1: channel 0: send close
    debug1: channel 0: is dead
    debug1: channel 0: garbage collecting
    debug1: channel_free: channel 0: client-session, nchannels 1
    debug1: fd 0 clearing O_NONBLOCK
    debug1: fd 1 clearing O_NONBLOCK
    debug1: fd 2 clearing O_NONBLOCK
    debug1: Transferred: stdin 0, stdout 0, stderr 0 bytes in 0.9 seconds
    debug1: Bytes per second: stdin 0.0, stdout 0.0, stderr 0.0
    debug1: Exit status 0

    On looking at the secure.log on the iMac with OSX10.6.8, I see these entries at each attempt to scp into the iMac:
    Dec 29 11:06:20 molika sshd[7248]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Dec 29 11:06:26 molika sshd[7246]: Accepted keyboard-interactive/pam for prowat from 137.110.243.132 port 35571 ssh2
    Dec 29 11:06:26 molika com.apple.SecurityServer[26]: Session 0x236a14 created
    Dec 29 11:06:26 molika com.apple.SecurityServer[26]: Session 0x236a14 attributes 0x20
    Dec 29 11:06:27 molika com.apple.SecurityServer[26]: Session 0x236a14 dead
    Dec 29 11:06:27 molika com.apple.SecurityServer[26]: Killing auth hosts
    Dec 29 11:06:27 molika com.apple.SecurityServer[26]: Session 0x236a14 destroyed
    I don't know what to make of this.
    Peter R

Maybe you are looking for

  • Exchange 2013 Mail Flow Through VPN

    I have 2 Exchange servers in 2 different AD sites. Is it possible to route mail flow between the 2 sites through a VPN tunnel? I want to force mail flow between the 2 servers to route externally through the internet. Appreciate any feedback.

  • Assign Transaction Code for Report Painter generated program

    I am trying to assign a transaction code for report painter generated program... I assigned the transaction code in Development for the generated program but the program name changes in every system and I get a runtime error... Can you please guide m

  • ATP check CRM R/3 for Third Party items

    CRM .0 does not support an ATP check for Third Party items. This is axplained in several notes and we also find it in practice in our system. Actually an ATP check does also not happen in R/3, if you create the order in R/3, but it takes the delivery

  • Date entry error in BI Integrated planning 2004s

    Hello, I am trying to fill a date field in BI Integrated Planning via mannual planning. The ratio was created as Dec type. When I introduce for example the value 01.01.2006 or 01/01/2006 and save the data, the new value is not saved in the infocube,

  • FCP 4.5 crashes when importing long clips

    After upgrading to a new computer (PowerMac G5 2.7 GHz), my FCP 4.5 has trouble importing DV footage from my Canon GL-1 camera. The program hangs after about 4 minutes of importing a single clip. I have seen that this issue may be related to upgradin