App is not running on server

Hi,
My lccs application is not running on server even server is supporting ssl.
php version on server is 5.2.14.
i tried to print lccs RTCAccount object on server its giving some fatal error.
i got response like .....
Array
    [wrapper_data] => Array
            [headers] => Array
                    [0] => HTTP/1.1 302 Moved Temporarily
                    [1] => Server: Apache-Coyote/1.1
                    [2] => X-Powered-By: Servlet 2.4; JBoss-4.2.1.GA (build: SVNTag=JBoss_4_2_1_GA date=200707131605)/Tomcat-5.5
                    [3] => Expires: Fri, 15 Oct 2010 15:23:37 GMT
                    [4] => Cache-Control: max-age=30
                    [5] => Set-Cookie: Whitcomb-Ident=vatrai:na2-sdk-9b17de0a-2188-4f2e-89b2-9453f6eb6be2; Domain=collaboration.adobelivecycle.com; Path=/vatrai
                    [6] => Location: https://na2.collaboration.adobelivecycle.com/vatrai?mode=xml&accountonly=true&
                    [7] => Content-Language: en-US
                    [8] => Content-Length: 0
                    [9] => Date: Fri, 15 Oct 2010 15:23:06 GMT
                    [10] => HTTP/1.1 200 OK
                    [11] => Server: Apache-Coyote/1.1
                    [12] => Set-Cookie: JSESSIONID=ZubjKocVM3rJinHDTxkN.22; Path=/
                    [13] => Cache-Control: max-age=0
                    [14] => Content-Type: text/xml;charset=UTF-8
                    [15] => Content-Length: 190
                    [16] => Date: Fri, 15 Oct 2010 15:23:08 GMT
            [readbuf] => Resource id #4
    [wrapper_type] => cURL
    [stream_type] => cURL
    [mode] => r
    [unread_bytes] => 0
    [seekable] =>
    [uri] => https://collaboration.adobelivecycle.com/vatrai?mode=xml&accountonly=true&
    [timed_out] =>
    [blocked] => 1
    [eof] =>
Array
    [0] =>
Fatal error:  Uncaught exception 'RTCError' in /home/myapp/public_html/videos/lccs.php:707 Stack trace: #0 /home/myapp/public_html/videos/lccs.php(587): RTC->http_get('https://collabo...', Array) #1 /home/myapp/public_html/videos/lccs.php(254): RTCAccount->do_initialize() #2 /home/myapp/public_html/videos/a.php(16): RTCAccount->__construct('https://collabo...') #3 {main}   thrown in
/home/myapp/public_html/videos/lccs.php on line
707

Sorry.... I am pasting here full code of lccs.php...
<?php
** Adobe LiveCycle Collaboration Service Account Management API
** Revision
**   $Revision: #1 $ - $Date: 2010/07/26 $
** Author
**   Raffaele Sena
** Copyright
**   ADOBE SYSTEMS INCORPORATED
**     Copyright 2007 Adobe Systems Incorporated
**     All Rights Reserved.
**   NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the
**   terms of the Adobe license agreement accompanying it.  If you have received this file from a
**   source other than Adobe, then your use, modification, or distribution of it requires the prior
**   written permission of Adobe.
* error thrown or generated by RTC API
class RTCError extends Exception {
* Constants for common user roles
interface RTCUserRole {
    const NONE = 0;
    const LOBBY = 5;
    const VIEWER = 10;
    const PUBLISHER = 50;
    const OWNER = 100;
* Constants for node configuration
interface NodeConfiguration {
    const STORAGE_SCHEME_SINGLE_ITEM = 0;
    const STORAGE_SCHEME_QUEUE       = 1;
    const STORAGE_SCHEME_MANUAL      = 2;
* a class that generates RTC authentication tokens
class RTCAuthenticator {
    private $authURL;
    function __construct($url) {
        $this->authURL = $url;
    // Get an RTC authentication token give login and password.
    function login($user, $password, & $retHeaders) {
        $headers = array (
            "Content-Type" => 'text/xml'
        $data = "<request><username>{$user}</username><password>{$password}</password></request>";
        $resp = RTC::http_post($this->authURL, $data, $headers);
        if (RTC::$DEBUG)
            echo "$resp\n";
        try {
            $result = new SimpleXMLElement($resp);
        } catch (Exception $e) {
            throw new RTCError("bad-response");
        if ($result['status'] == "ok") {
            $auth = $result->authtoken;
            if ($auth['type'] == "COOKIE") {
                $retHeaders["Cookie"] = (string) $auth;
                return null;
            } else {
                $gak = base64_encode($auth);
                return "gak={$gak}";
        } else
            throw new RTCError($resp);
    // Get a guest authentication token.
    function guestLogin($user) {
        $guk = base64_encode("g:{$user}:");
        return "guk={$guk}";
* a class that deals with meeting sessions and # external collaboration
class RTCSession {
    private $instance;
    private $account;
    private $room;
    private $secret;
    function __construct($instance, $account, $room) {
        $this->instance = str_replace("#room#", $room, $instance);
        $this->account = $account;
        $this->room = $room;
     * get an external authentication token
    function getAuthenticationToken($accountSecret, $name, $id, $role) {
        $role = (int) $role;
        if ($role < RTCUserRole::NONE || $role > RTCUserRole::OWNER)
            throw new RTCError("invalid-role");
        $utfname = utf8_encode($name);
        $token = "x:{$utfname}::{$this->account}:{$id}:{$this->room}:{$role}";
        $signature = $this->sign($accountSecret, $token);
        $signed = "{$token}:{$signature}";
        // unencoded
        // $ext = "ext={$signed}";
        // encoded
        $encoded = base64_encode($signed);
        $ext = "exx={$encoded}";
        return $ext;
     * get the userId that the server will generate for this user
    function getUserID($id) {
      return strtoupper("EXT-{$this->account}-{$id}");
    function getSecret($baseURL, $authToken, $authHeaders) {
        $data = RTC::http_get("{$baseURL}app/session?instance={$this->instance}&{$authToken}", $authHeaders);
        if (RTC::$DEBUG)
            echo $data;
        $response = new SimpleXMLElement($data);
        $this->secret = (string) $response-> {
            'session-secret' };
    function invalidate($baseURL, $authToken, $authHeaders) {
        $data = "action=delete&instance={$this->instance}&{$authToken}";
        $res = RTC::http_post("${baseURL}app/session", $data, $authHeaders);
        if (RTC::$DEBUG)
            echo $res;
        $this->instance = null;
        $this->account = null;
        $this->room = null;
        $this->secret = null;
    private function sign($acctSecret, $data) {
        $key = "{$acctSecret}:{$this->secret}";
        // Calculate HMAC-SHA1 according to RFC2104
        // http://www.ietf.org/rfc/rfc2104.txt
        $blocksize = 64;
        $hashfunc = 'sha1';
        if (strlen($key) > $blocksize)
            $key = pack('H*', $hashfunc ($key));
        $key = str_pad($key, $blocksize, chr(0x00));
        $ipad = str_repeat(chr(0x36), $blocksize);
        $opad = str_repeat(chr(0x5c), $blocksize);
        $hmac = pack('H*', $hashfunc (($key ^ $opad) .
        pack('H*', $hashfunc (($key ^ $ipad) . $data))));
        return bin2hex($hmac);
* A class that contains room or template item information.
class RTCItem {
    public $name;
    public $desc;
    public $created;
    function __construct($name, $desc, $created) {
        $this->name = $name;
        $this->desc = $desc;
        $this->created = date_create($created);
* a class that deals with account information and provisioning
class RTCAccount {
    const ROOM_ITEMS = "meetings";
    const TEMPLATE_ITEMS = "templates";
    public $url;
    private $authToken;
    private $uathHeaders;
    private $authenticator;
    private $baseURL;
    private $contentPath;
    function contentURL() {
        return "{$this->baseURL}app/content{$this->contentPath}";
    function __construct($url) {
        $this->url = $url;
        $this->authToken = null;
        $this->authHeaders = array ();
        $this->authenticator = null;
        $this->baseURL = null;
        $this->contentPath = null;
        $this->roomInstance = null;
        if (RTC::$DEBUG)
            echo RTC::$VERSION . "\n";
        $this->do_initialize();
    // Return the node configuration
    function getNodeConfiguration($room, $coll, $node) {
        $instance = str_replace("#room#", $room, $this->roomInstance);
        $path = "/{$coll}/nodes/{$node}/configuration";
        return RTC::http_get("{$this->baseURL}app/rtc?instance={$instance}&path={$path}&{$this->authToke n}", $this->authHeaders);
    // Return the RTC items given collection and node
    function fetchItems($room, $coll, $node, $items = null) {
        $instance = str_replace("#room#", $room, $this->roomInstance);
        $params = "instance={$instance}&collection=${coll}&node={$node}";
        if ($items != null) {
            if (!is_array($items))
                $items = array (
                    $items
            while (list ($i, $it) = each($items)) {
                $params .= "&item={$it}";
        $params .= "&{$this->authToken}";
        return RTC::http_get("{$this->baseURL}app/rtc?{$params}", $this->authHeaders);
    // Publish an item
    function publishItem($room, $collection, $node, $item, $overwrite = false) {
        $headers = array_merge($this->authHeaders, array ( "Content-Type" => 'text/xml' ));
        $instance = str_replace("#room#", $room, $this->roomInstance);
        $params = "instance={$instance}&action=publish&collection={$collection}&node={$node}";
        if ($overwrite) $params .= "&overwrite={$overwrite}";
        $params .= "&{$this->authToken}";
        $data = "<request>" . RTC::array_toXML($item, "item") . "</request>";
        return RTC::http_post("{$this->baseURL}app/rtc?{$params}", $data, $headers);
    // Retract an item
    function retractItem($room, $collection, $node, $itemID) {
        $instance = str_replace("#room#", $room, $this->roomInstance);
        $data = "instance={$instance}&collection={$collection}&node={$node}&item={$itemID}&{$this->authTo ken}";
        return RTC::http_post("{$this->baseURL}app/rtc", $data, $this->authHeaders);
    // Set user role
    function setUserRole($room, $userID, $role, $coll = null, $node = null) {
        $instance = str_replace("#room#", $room, $this->roomInstance);
    $data = "instance={$instance}&action=setrole&user={$userID}&role={$role}";
    if ($coll != null)
        $data .= "&collection={$coll}";
    if ($coll != null)
        $data .= "&node={$node}";
    $data .= "&{$this->authToken}";
        return RTC::http_post("{$this->baseURL}app/rtc", $data, $this->authHeaders);
    // Returns information about the account, if active
    function getAccountInfo() {
        $acctid = explode('/', $this->roomInstance);
        $acctid = $acctid[0];
        $data = RTC::http_get("{$this->baseURL}app/account?account={$acctid}&{$this->authToken}", $this->authHeaders);
        return $data;
    // Returns information about the room/instance, if active
    function getRoomInfo($room) {
        $instance = str_replace("#room#", $room, $this->roomInstance);
        $data = RTC::http_get("{$this->baseURL}app/account?instance={$instance}&{$this->authToken}", $this->authHeaders);
        return $data;
    private function do_initialize() {
        if ($this->contentPath)
            return true;
        $data = RTC::http_get("{$this->url}?mode=xml&accountonly=true&{$this->authToken}", $this->authHeaders);
        if (RTC::$DEBUG)
            echo $data;
        try {
            $xml = new SimpleXMLElement($data);
        } catch (Exception $e) {
            throw new RTCError("bad-response");
        if ($xml->getName() == "meeting-info") {
            $this->baseURL = '' . $xml->baseURL['href'];
            $this->url = rtrim($this->baseURL, '/') . parse_url($this->url, PHP_URL_PATH);
            $this->contentPath = '' . $xml->accountPath['href'];
            if ($xml->room)
                $this->roomInstance = '' . $xml->room['instance'];
            return true;
        if ($xml->getName() == "result") {
            if ($xml['code'] == "unauthorized") {
                if ($xml->baseURL) {
            $this->baseURL = '' . $xml->baseURL['href'];
            $this->url = rtrim($this->baseURL, '/') . parse_url($this->url, PHP_URL_PATH);
                $authURL = '' . $xml->authentication['href'];
                if (substr($authURL, 0, 1) == '/') {
                    $authURL = $this->baseURL . $authURL;
                $this->authenticator = new RTCAuthenticator($authURL);
                return false;
        throw new RTCError($data);
class RTC {
    public static $DEBUG = false;
    public static $USE_CURL = false;
    public static $VERSION = '$Revision: #1 $ - $Date: 2010/07/26 $';
    function http_get($url, $headers = null) {
        if (RTC::$DEBUG) {
            echo "http_get: {$url}\n";
            if ($headers != null)
                print_r($headers);
        if (RTC::$USE_CURL) {
             * use curl library
            $req = curl_init($url);
            //if (RTC::$DEBUG) curl_setopt($req, CURLOPT_VERBOSE, true);
            curl_setopt($req, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($req, CURLOPT_FOLLOWLOCATION, true);
            curl_setopt($req, CURLOPT_SSL_VERIFYPEER, false);
            if ($headers)
                curl_setopt($req, CURLOPT_HTTPHEADER, $headers);
            $resp = curl_exec($req);
            $error = curl_error($req);
            if ($error == "")
                $status = curl_getinfo($req, CURLINFO_HTTP_CODE);
            else
                $status = $error;
            curl_close($req);
            if ($error != "" && $status != 200)
                throw new RTCError($error);
            else
                return $resp;
        } else {
             * use streams
            if ($headers == null)
                $header = '';
            else {
                $header = "";
                foreach ($headers as $name => $value) {
                    if ($header != "")
                        $header .= "\r\n";
                    $header = $header . $name . ": " . $value;
            $opts = array (
                'http' => array (
                    'method' => 'GET',
                    'header' => $header
            $context = stream_context_create($opts);
            $fp = fopen($url, 'r', false, $context);
            if (!$fp)
                throw new RTCError("connection-failed");
            $meta = stream_get_meta_data($fp);
            $statusLine = explode(' ', $meta['wrapper_data'][0], 3);
            $resp = stream_get_contents($fp);
            fclose($fp);
           // printf("<pre>%s</pre>", print_r($meta, TRUE));
            //printf("<pre>%s</pre>", print_r($resp, TRUE));
            //printf("<pre>%s</pre>", print_r($statusLine, TRUE));
            if ($statusLine[1] == "200" | $statusLine[1] == "302")
                return $resp;
            else
                throw new RTCError($statusLine[1]);
    function http_post($url, $params, $headers = null) {
        if (is_array($params))
            $data = http_build_query($params);
        else
            $data = $params;
        if (RTC::$DEBUG) {
            echo "http_post: {$url} {$data}\n";
            if ($headers != null)
                print_r($headers);
            if ($root == 'configuration')
                $result .= '</field>';
            else
                $result .= '</property>';
        if ($root != null)
            $result .= "</{$root}>";
        return $result;
if (!isset($_SERVER['QUERY_STRING'])) {
  function usage($progname) {
    echo "usage: {$progname} [--debug] [--host=url] account user password command parameters...\n";
    echo "\n";
    echo "where <command> is:\n";
    echo "    --list\n";
    echo "    --create room [template]\n";
    echo "    --delete room\n";
    echo "    --delete-template template\n";
    echo "    --ext-auth secret room username userid role\n";
    echo "    --invalidate room\n";
    echo "\n";
    echo "    --get-node-configuration room collection node\n";
    echo "    --fetch-items room collection node\n";
    echo "    --register-hook endpoint [token]\n";
    echo "    --unregister-hook\n";
    echo "    --hook-info\n";
    echo "    --subscribe-collection room collection\n";
    echo "    --unsubscribe-collection room collection\n";
    echo "    --create-node room collection [node]\n";
    echo "    --remove-node room collection [node]\n";
    echo "    --set-user-role room userID role [collection [node]]\n";
    echo "    --publish-item room collection node itemID body\n";
    echo "    --retract-item room collection node itemID\n";
    exit(1);
  function getRole($role) {
    $role = strtolower($role);
    if ($role == "none")
      return RTCUserRole::NONE;
    else if ($role == "lobby")
      return RTCUserRole::LOBBY;
    else if ($role == "viewer")
      return RTCUserRole::VIEWER;
    else if ($role == "publisher")
      return RTCUserRole::PUBLISHER;
    else if ($role == "owner")
      return RTCUserRole::OWNER;
    else if (is_numeric($role))
      return intval($role);
    else
      throw new RTCError("invalid-role");
  // running from the command line
  $args = $_SERVER['argv'];
  $progname = array_shift($args);
  $host = "http://connectnow.acrobat.com";
  $accountName = "<YOUR DEVELOPER ACCOUNT NAME>";
  $username = "sdkuser";
  $password = "sdkpassword";
  while (count($args) > 0) {
    $arg = $args[0];
    if ($arg == "--debug")
      RTC::$DEBUG = true;
    else if (strncmp($arg, "--host=", 7) == 0)
      $host = substr($arg, 7);
    else if (strncmp($arg, "-", 1) == 0) {
      echo "invalid option: $arg\n";
      $args = array();
    else
      break;
    array_shift($args);
  if (count($args) < 3) {
    usage($progname);
  $accountName = array_shift($args);
  $username = array_shift($args);
  $password = array_shift($args);
  $host = rtrim($host, '/');
  $accountURL = "{$host}/${accountName}";
  try {
    $am = new RTCAccount($accountURL);
    $am->login($username, $password);
    if (count($args) == 0 || $args[0] == "--list") {
      echo "==== template list for {$accountName} ====\n";
      foreach ($am->listTemplates() as $t) {
        echo "{$t->name}:{$t->created->format(DATE_RFC822)}\n";
      echo "==== room list for {$accountName} ====\n";
      foreach ($am->listRooms() as $r) {
        echo "{$r->name}:{$r->desc}:{$r->created->format(DATE_RFC822)}\n";
    else if ($args[0] == "--create") {
      $am->createRoom($args[1], count($args) > 2 ? $args[2] : null);
    else if ($args[0] == "--delete") {
      $am->deleteRoom($args[1]);
    else if ($args[0] == "--delete-template") {
      $am->deleteTemplate($args[1]);
    else if ($args[0] == "--ext-auth") {
      if (count($args) >= 6)
        $role = getRole($args[5]);
      else
        $role = RTCUserRole::LOBBY;
      $session = $am->getSession($args[2]);
      $token = $session->getAuthenticationToken($args[1], $args[3], $args[4], $role);
      echo $token . "\n";
    else if ($args[0] == "--info") {
      if (count($args) == 1) {
        echo $am->getAccountInfo();
      } else {
        echo $am->getRoomInfo($args[1]);
    else if ($args[0] == "--get-node-configuration") {
      echo $am->getNodeConfiguration($args[1], $args[2], $args[3]);
    else if ($args[0] == "--fetch-items") {
      echo $am->fetchItems($args[1], $args[2], $args[3]);
    else if ($args[0] == "--register-hook") {
      if (count($args) > 2)
        echo $am->registerHook($args[1], $args[2]);
      else
        echo $am->registerHook($args[1]);
    else if ($args[0] == "--unregister-hook") {
      echo $am->unregisterHook();
    else if ($args[0] == "--hook-info") {
      echo $am->getHookInfo();
    else if ($args[0] == "--subscribe-collection") {
      if (count($args) > 3)
        echo $am->subscribeCollection($args[1], $args[2], $args[3]);
      else
        echo $am->subscribeCollection($args[1], $args[2]);
    else if ($args[0] == "--unsubscribe-collection") {
      if (count($args) > 3)
        echo $am->unsubscribeCollection($args[1], $args[2], $args[3]);
      else
        echo $am->unsubscribeCollection($args[1], $args[2]);
    else if ($args[0] == "--publish-item") {
      echo $am->publishItem($args[1], $args[2], $args[3],
        array( 'itemID' => $args[4], 'body' => $args[5] ));
    else if ($args[0] == "--retract-item") {
      echo $am->retractItem($args[1], $args[2], $args[3], $args[4]);
    else if ($args[0] == "--create-node") {
      echo $am->createNode($args[1], $args[2], $args[3]);
    else if ($args[0] == "--remove-node") {
      if (count($args) > 3)
        echo $am->removeNode($args[1], $args[2], $args[3]);
      else
        echo $am->removeNode($args[1], $args[2]);
    else if ($args[0] == "--set-user-role") {
      $role = getRole($args[3]);
      if (count($args) > 5)
        echo $am->setUserRole($args[1], $args[2], $role, $args[4], $args[5]);
      else if (count($args) > 4)
        echo $am->setUserRole($args[1], $args[2], $role, $args[4]);
      else
        echo $am->setUserRole($args[1], $args[2], $role);
    else {
      usage($progname);
  } catch(RTCError $e) {
    echo "Error: {$e}";
?>
Thanks,
Vishnu

Similar Messages

  • Servlet File Not running on Server

    Hi All,
    I have a servlet file named "TestServlet", when I run this file(http://mydomain.com/TestServlet) on server it won't run, but its running on my local machine. Am using Tomcat 5.5.9 and jdk1.5.0_05 and Server configuration also same as my local machine configuration. Please! let me know any suggestion that why its not running on server machine.
    *1. web.xml is:*
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
        PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
        <display-name>My Servlet</display-name>
        <description>
          My Test Servlet
        </description>
        <servlet>
            <servlet-name>TestServlet</servlet-name>
            <servlet-class>com.test.TestServlet</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>TestServlet</servlet-name>
            <url-pattern>/TestServlet</url-pattern>
        </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
              <welcome-file>index.htm</welcome-file>
              <welcome-file>index.jsp</welcome-file>
         </welcome-file-list>
    </web-app>*2. TestServlet.java file is:*
    package com.test;
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class TestServlet extends HttpServlet
         public void doPost (HttpServletRequest req, HttpServletResponse response)throws ServletException, IOException
              * Set the content type(MIME Type) of the response.
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              * Write the HTML to the response
              out.println("<html>");
              out.println("<head>");
              out.println("<title> A very simple servlet example</title>");
              out.println("</head>");
              out.println("<body>");
              out.println("<h1>Welcome To TestServlet</h1>");
              out.println("</body>");
              out.println("</html>");
              out.close();
        public void doGet(HttpServletRequest request, HttpServletResponse response)
        throws IOException, ServletException
            doPost(request, response);
    }Thanks in Advance,
    Prasath Arjunan.

    PrasathArjunan wrote:
    Yes, I can run my JSPs on my server without any error,
    I don't know which port it has listening in my Server(Tomcat),
    My server also have installed Apache HTTP server and my application is under ROOT directory only.If you don't know then it is most likely the default 8080 port.
    I ask because in your url example you do not provide a port number, so requests are going to port 80. If you have Apache HTTP running there then you must have a connector installed in Apache HTTP that forwards requests to Tomcat? Because then I'd say the mappings are not entirely correct and servlet requests do not reach Tomcat. Post the connector configuration if you are using one.

  • I was going to upgrade from 10.6.8 to mavericks 10.9.2, but the installer program notified me stating my appleworks 6 app will not run on the new set up. is there a procedure to keep or switch my documents in order to obtain the mavericks upgrade?

    i was going to upgrade from 10.6.8 to mavericks 10.9.2, but the installer program notified me stating my appleworks 6 app will not run on the new set up. is there a procedure to keep or switch my documents in order to obtain the mavericks upgrade?

    I can't say personally since I never used AW, but see if these articles help:
    http://www.macworld.com/article/1166370/open_old_docs.html
    http://www.cultofmac.com/248546/convert-system-os-9-appleworks-6-files-to-os-x-p ages-files-os-x-tips/
    I suggest that you clone your current drive with 10.6.8 to an external drive. If you have any issues after upgrading to Mavericks, you can boot back into 10.6.8.
    Both of these applications can be used to create a clone. If you need help creating your clone, let us know.
    SuperDuper! http://www.shirt-pocket.com/
    CCC http://www.bombich.com/download.html

  • After upgrading to iOS 7.0.2 earphones remote doesn't start playback if Music app is not running.

    After upgrading to iOS 7.0.2 music doesn't start playing if Music app is not running. Before the update it was common thing to plug earphones, click remote button and listen to your music without even unlocking your iPhone. Control Center controls doesn't work at all.

    iPhone required a proper restart. After restart both issues were gone.

  • Why is the process opendirectoryd running on my ML MBP?  I am not running any server software

    Lots of entries in the system log:
    Feb 10 13:50:55 MacBook-Pro.local authorizationhost[6960]: in pam_sm_authenticate(): OpenDirectory - The authtok is incorrect.
    Feb 10 13:50:59 MacBook-Pro.local authorizationhost[6960]: in pam_sm_authenticate(): OpenDirectory - The authtok is incorrect.
    This is a standard user MBP with 10.8.2. I've never installed Open Directory, it is not running any server, X10 or developer software.
    The search engines all tie OpenDirectory to OS X Server ML
    Thanks,
    J

    Open Directory is a server component.  However, opendirectoryd is a client-side component.  From the man page:
    opendirectoryd(8)         BSD System Manager's Manual        opendirectoryd(8)
    NAME
         opendirectoryd -- is a launchd(8) job for client access to local or
         remote directory systems
    Basically, this handles login information.  You log into your Mac so it will be running :-)

  • Is there a way to sync outlook calendars with Imac, Ipad, Iphone calendars.  I am not running exchange server.

    Is there a way to sync outlook calendars with Imac, Ipad, Iphone calendars?  I am not running exchange server.

    hello,
    BlackBerry devices do not support ActiveSync.
    you have several ways, from best to less good :
    1)
    if your company has set up Outlook Web Access, you can use the BIS connection of your device to connect to the Exchange server (email + Address book) through the url of the Outlook Web Access. The OWA needs to be accessible from outside the company.
    2)
    if your company has setup an external link to the exchange server (can be accessible from outside the company), you can configure your BIS directly to the Exchange server (email only if I recall correctly)
    3)
    if your company allows it, on your PC you can setup your email account to automatically forward all incoming emails to a third party email (like GMail or Hotmail), and then configure BIS to connect to that email provider. You will get push email. You can then setup a reply-to: field.
    4)
    use a Windows Mobile phone that has the ActiveSync feature.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Air 3.4 iOS Push Notification is not fired when app is not running and is not in background

    Hello,
    I'm making an Air iOS application which uses the iOS Push Notification from Air 3.4.
    All is working perfectly except when I receive notifications when the app is not running and is not in background (The app is killed).
    I suppose the RemoteNotificationEvent.NOTIFICATION must be dispatched when I receive a notification even if my app is not currently running or in background ?
    Do you have already get the same issue ? Do you know what can prevent the notification to be handled ?
    Thanks,
    Loïc

    issue has been fixed in the build available at http://labs.adobe.com/downloads/air3-5.html.
    You would now have to attach listener to InvokeEvent. For cases, when application is killed, InvokeEventReason will be InvokeEventReason.NOTIFICATION. The notification payload can be accessed by the following code
    protected function onInvokeEvent(event:InvokeEvent):void
         trace("Invokehandler called .... \n");
         trace("reason: " + event.reason + "\n");
         if( event.reason == InvokeEventReason.NOTIFICATION)
                        var payload:Object = Object(event.arguments[0]);
              for (var i:String in payload)
                    trace("Key:value pair " + i + ":" + payload[i] + "\n");
              // TODO: DO THE NEEDFUL ON RECIEVING A NOTIFICATION HERE

  • My apps will not run

    my apps will not run. no matter how many times i try n run them they just dont work, theyre apps that ive used throughout the day but now dont want to work, the screen flashes black as if the app is loading but then returns back to my home screen, the phone does not freeze or crash as i can do all other things on it barring runnin apps HELP!

    Try this...
    Close All Open Apps...  Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • App updates not running on ipad2 after upgrade to iOS 5 - anybody know or a solution or have same problem?

    App updates not running on ipad2 after upgrade to iOS 5 - anybody know or a solution or have same problem?

    Operator error! The mute button was on.

  • Xclock not running in server

    xclock is not running in server.i have changed the display options but it does not run the GUI application

    55256a65-45f6-4faf-afa7-c96c282ca628 wrote:
    xclock is not running in server.i have changed the display options but it does not run the GUI application
    Follow this little post for step by step
    http://neerajvasudeva.wordpress.com/2013/04/24/running-gui-via-putty/

  • Guitar Hero App is not running

    I upgraded my iPhone 3GS to iOS 6 and now my Guitar Hero App is not running,
    does anyone knows if this was caused by the upgrade?
    does anybody has the same problem?
    what should I do?
    thanks,

    Same problem here in my iPhone 4S and IPad 3
    What gives?

  • Facebook app is not running continuously

    Facebook App is not running properly in my iPad

    Perform a "reset" on the device by pressing down and holding the home button and the sleep/wake button for up to 30secs. until you see a black screen with the Apple logo, then release.
    Then test to see if it solved the problem.

  • Reporting & Analysis workspace9 server not running on server at port 6800

    Hi all,
    i installed hyperion 9 system them with reporting and essbase ..
    after configured all .. configure shows sucess but after shared services configuration failed in BI
    unable to open workspace
    when i tried to open Workspace
    "Could not find a Hyperion Reporting and Analysis in workspace9 server running on server at port 6800. Please verify your server connect string and confirm that the server is up."
    Please help...

    Restart order all serives in the below mentioned order:
    Hyperion S9 Shared Services
    Hyperion S9 OpenLDAP
    Hyperion S9 BI+ Analytic Services 9.3.1 - hypservice
    HyperionRMIRegistry
    Hyperion S9 Planning
    Hyperion S9 Administration Services ATS5
    Hyperion S9 Apache 2.0
    Hyperion S9 BI+ 9.3 Core Services 1
    Hyperion S9 BI+ 9.3 Financial Reporting Print Server
    Hyperion S9 BI+ 9.3 Financial Reporting Report Server
    Hyperion S9 BI+ 9.3 Financial Reporting Scheduler Server
    Hyperion S9 BI+ 9.3 Financial Reporting Java RMI Registry
    "Hyperion S9 BI+ 9.3 Financial Reporting Web application
    Hyperion S9 BI+ 9.3 Web Analysis
    Hyperion S9 Financial Management DME Listener
    Hyperion S9 BI+ 9.3 Workspace
    -Sasi

  • Problem after Update, mosts apps will not run

    After running some Apple updates this weekend, many applications on my machine no longer work. Everything ran fine before the updates. I have not installed any other new software or hardware for months.
    Any one know what's going on?
    The following apps do not work ... I click on them, they bounce, then I get a submit error
    Firefox
    Safari
    iPhoto (this gets to the point of showing photos)
    iTunes
    The following applications do work
    Mail
    Terminal
    System Preferences
    MS Word
    I have tried creating a new account and running the apps, and that does not work (in the new account, the menu bar keeps disappearing and reappearing implying the Finder keeps crashing.
    Mac OS X 10.3.9
    500 MHz PowerPC G3
    320MB SDRAM
    Running iTunes from terminal ...This appears in the terminal
    % /Applications/iTunes.app/Contents/MacOS/iTunes
    2006-06-19 21:21:28.548 iTunes[365] CFLog (0):
    CFPropertyListCreateFromXMLData(): plist parse failed; the
    data is not proper UTF-8. The file name for this data could be:
    Resources/Info-macos.plist --
    file://localhost/System/Library/Frameworks/CoreServices.framework/
    The parser will retry as in 10.2, but the problem should be
    corrected in the plist.
    Bus error
    Running iPhoto
    This from the terminal (note, it crashed already ... thus the
    'recovery')
    /Applications/iPhoto.app/Contents/MacOS/iPhoto
    2006-06-19 21:24:18.858 iPhoto[372] Using library:
    /Users/mikem/Pictures/iPhoto Library
    dbgetdatastore: shadow is un-clean. recovering.
    2006-06-19 21:24:25.647 iPhoto[372] CFLog (0):
    CFPropertyListCreateFromXMLData(): plist parse failed; the
    data is not proper UTF-8. The file name for this data could be:
    Resources/Info-macos.plist --
    file://localhost/System/Library/Frameworks/CoreServices.framework/
    The parser will retry as in 10.2, but the problem should be
    corrected in the plist.
    Bus error
    500 MHz PowerPC G3   Mac OS X (10.3.9)  

    if you are having system wide issues archive and install would be the best bet. http://docs.info.apple.com/article.html?artnum=107120 first however, you must do disk repair http://docs.info.apple.com/article.html?artnum=106214. hopefully you do not have severe directory damage. if disk utility finds errors it cannot fix, back up your info immediately. you can use a third party app like diskwarrior or techtool pro to attempt fixing the problem, and if it can't be fixed, you will have to erase and install your operating system. [ 8 ) ]

  • [SOLVED] I can not run X Server

    Hi there, I installed Arch Linux today, but I cannot run X server. I followed this tutorial: https://wiki.archlinux.org/index.php/Xorg
    My notebook has a SiS chipset. I installed xf86-video-sis and xf86-video-sisusb. I copied /etc/X11/xorg.conf from https://wiki.archlinux.org/index.php/SiS
    My /etc/X11/xorg.conf.d/10-monitor.conf looks like this:
    Section "Monitor"
    Identifier "Monitor0"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "sis"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 16
    SubSection "Display"
    Depth 16
    Modes "1024x768_75.00"
    EndSubSection
    EndSection
    When I try to execute startx, I get the following error (I don't run it as root):
    (EE) Server terminated with error (1). Closing file.
    xinit: giving up
    xinit: unable to connect to X server: Connection refused
    xinit: server error
    The file /var/log/Xorg.0.log looks like this:
    [ 13341.882]
    X.Org X Server 1.17.1
    Release Date: 2015-02-10
    [ 13341.965] X Protocol Version 11, Revision 0
    [ 13341.993] Build Operating System: Linux 3.17.6-1-ARCH i686
    [ 13342.048] Current Operating System: Linux antWorkstation 3.18.6-1-ARCH #1 SMP PREEMPT Sat Feb 7 08:59:29 CET 2015 i686
    [ 13342.049] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=4783374f-ae16-4753-a16e-deb121991926 rw quiet
    [ 13342.131] Build Date: 11 February 2015 08:29:54AM
    [ 13342.156]
    [ 13342.181] Current version of pixman: 0.32.6
    [ 13342.231] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 13342.232] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 13342.335] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 18 21:43:53 2015
    [ 13342.361] (==) Using config file: "/etc/X11/xorg.conf"
    [ 13342.388] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 13342.415] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 13342.416] (==) No Layout section. Using the first Screen section.
    [ 13342.416] (**) |-->Screen "Screen0" (0)
    [ 13342.416] (**) | |-->Monitor "Monitor0"
    [ 13342.416] (**) | |-->Device "Device0"
    [ 13342.416] (==) Automatically adding devices
    [ 13342.416] (==) Automatically enabling devices
    [ 13342.416] (==) Automatically adding GPU devices
    [ 13342.416] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF/".
    [ 13342.416] Entry deleted from font path.
    [ 13342.416] (Run 'mkfontdir' on "/usr/share/fonts/OTF/").
    [ 13342.416] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 13342.416] Entry deleted from font path.
    [ 13342.416] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 13342.416] Entry deleted from font path.
    [ 13342.416] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 13342.416] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 13342.416] Entry deleted from font path.
    [ 13342.416] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 13342.416] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 13342.416] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 13342.416] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 13342.416] (II) Loader magic: 0x829e6c0
    [ 13342.416] (II) Module ABI versions:
    [ 13342.416] X.Org ANSI C Emulation: 0.4
    [ 13342.416] X.Org Video Driver: 19.0
    [ 13342.416] X.Org XInput driver : 21.0
    [ 13342.416] X.Org Server Extension : 9.0
    [ 13342.419] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2
    [ 13342.420] (--) PCI:*(0:1:0:0) 1039:6351:1734:1125 rev 16, Mem @ 0xc0000000/268435456, 0xd4000000/131072, I/O @ 0x00009000/128
    [ 13342.420] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 13342.420] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 13342.420] (II) LoadModule: "dbe"
    [ 13342.420] (II) Module "dbe" already built-in
    [ 13342.420] (II) LoadModule: "i2c"
    [ 13342.420] (II) Module "i2c" already built-in
    [ 13342.420] (II) LoadModule: "ddc"
    [ 13342.420] (II) Module "ddc" already built-in
    [ 13342.420] (II) LoadModule: "dri"
    [ 13342.420] (II) Module "dri" already built-in
    [ 13342.420] (II) LoadModule: "extmod"
    [ 13342.420] (II) Module "extmod" already built-in
    [ 13342.420] (II) LoadModule: "glx"
    [ 13342.421] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 13342.422] (II) Module glx: vendor="X.Org Foundation"
    [ 13342.422] compiled for 1.17.1, module version = 1.0.0
    [ 13342.422] ABI class: X.Org Server Extension, version 9.0
    [ 13342.422] (==) AIGLX enabled
    [ 13342.422] (II) LoadModule: "int10"
    [ 13342.423] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 13342.423] (II) Module int10: vendor="X.Org Foundation"
    [ 13342.423] compiled for 1.17.1, module version = 1.0.0
    [ 13342.423] ABI class: X.Org Video Driver, version 19.0
    [ 13342.423] (II) LoadModule: "vbe"
    [ 13342.423] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 13342.423] (II) Module vbe: vendor="X.Org Foundation"
    [ 13342.423] compiled for 1.17.1, module version = 1.1.0
    [ 13342.423] ABI class: X.Org Video Driver, version 19.0
    [ 13342.423] (II) LoadModule: "sis"
    [ 13342.423] (II) Loading /usr/lib/xorg/modules/drivers/sis_drv.so
    [ 13342.423] (II) Module sis: vendor="X.Org Foundation"
    [ 13342.423] compiled for 1.17.0, module version = 0.10.7
    [ 13342.423] Module class: X.Org Video Driver
    [ 13342.423] ABI class: X.Org Video Driver, version 19.0
    [ 13342.423] (II) SIS: driver for SiS chipsets: SIS5597/5598, SIS530/620,
    SIS6326/AGP/DVD, SIS300/305, SIS630/730, SIS540, SIS315, SIS315H,
    SIS315PRO/E, SIS550, SIS650/M650/651/740, SIS330(Xabre),
    SIS660/[M]661[F|M]X/[M]670/[M]741[GX]/[M]760[GX]/[M]761[GX]/[M]770[GX],
    SIS340
    [ 13342.424] (II) SIS: driver for XGI chipsets: Volari Z7 (XG20),
    Volari V3XT/V5/V8/Duo (XG40)
    [ 13342.424] (++) using VT number 1
    [ 13342.424] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 13342.424] (WW) Falling back to old probe method for sis
    [ 13342.424] (EE) No devices detected.
    [ 13342.424] (EE)
    Fatal server error:
    [ 13342.424] (EE) no screens found(EE)
    [ 13342.424] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 13342.424] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 13342.424] (EE)
    I would be very greatful if anybody could help me.
    Last edited by amethystAnt (2015-02-20 21:03:15)

    thearcherblog wrote:
    We would like to help you but logs are necessary to do it.
    Please, post the xorg log and let see if we can find the error. I know that this vga was really tricky. I remember that gaves me a lot of problems but... fortunately, I changed my laptop
    I'm sorry, that was a mistake when I didn't post the log. Here is the log that was generated when I used he sis671 driver and my screen got black (it is pretty long):
    [ 161.864]
    X.Org X Server 1.17.1
    Release Date: 2015-02-10
    [ 161.876] X Protocol Version 11, Revision 0
    [ 161.882] Build Operating System: Linux 3.17.6-1-ARCH i686
    [ 161.898] Current Operating System: Linux antWorkstation 3.18.6-1-ARCH #1 SMP PREEMPT Sat Feb 7 08:59:29 CET 2015 i686
    [ 161.899] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=4783374f-ae16-4753-a16e-deb121991926 rw quiet
    [ 161.933] Build Date: 11 February 2015 08:29:54AM
    [ 161.945]
    [ 161.959] Current version of pixman: 0.32.6
    [ 161.989] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 161.990] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 162.066] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 20 09:16:57 2015
    [ 162.148] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 162.171] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 162.208] (==) No Layout section. Using the first Screen section.
    [ 162.208] (**) |-->Screen "Screen0" (0)
    [ 162.208] (**) | |-->Monitor "Monitor0"
    [ 162.209] (**) | |-->Device "Device0"
    [ 162.209] (==) Automatically adding devices
    [ 162.209] (==) Automatically enabling devices
    [ 162.209] (==) Automatically adding GPU devices
    [ 162.260] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF/".
    [ 162.260] Entry deleted from font path.
    [ 162.260] (Run 'mkfontdir' on "/usr/share/fonts/OTF/").
    [ 162.260] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 162.260] Entry deleted from font path.
    [ 162.260] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 162.260] Entry deleted from font path.
    [ 162.260] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 162.261] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 162.261] Entry deleted from font path.
    [ 162.261] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 162.261] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 162.261] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 162.261] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 162.261] (II) Loader magic: 0x829e6c0
    [ 162.261] (II) Module ABI versions:
    [ 162.261] X.Org ANSI C Emulation: 0.4
    [ 162.261] X.Org Video Driver: 19.0
    [ 162.261] X.Org XInput driver : 21.0
    [ 162.261] X.Org Server Extension : 9.0
    [ 162.264] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 162.265] (--) PCI:*(0:1:0:0) 1039:6351:1734:1125 rev 16, Mem @ 0xc0000000/268435456, 0xd4000000/131072, I/O @ 0x00009000/128
    [ 162.265] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 162.266] (II) LoadModule: "glx"
    [ 162.292] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 162.430] (II) Module glx: vendor="X.Org Foundation"
    [ 162.430] compiled for 1.17.1, module version = 1.0.0
    [ 162.430] ABI class: X.Org Server Extension, version 9.0
    [ 162.430] (==) AIGLX enabled
    [ 162.430] (II) LoadModule: "sisimedia"
    [ 162.442] (II) Loading /usr/lib/xorg/modules/drivers/sisimedia_drv.so
    [ 162.476] (II) Module sisimedia: vendor="X.Org Foundation"
    [ 162.476] compiled for 1.17.1, module version = 0.8.0
    [ 162.477] Module class: X.Org Video Driver
    [ 162.477] ABI class: X.Org Video Driver, version 19.0
    [ 162.478] (II) SIS: driver for SiS chipsets: SIS5597/5598, SIS530/620,
    SIS6326/AGP/DVD, SIS300/305, SIS630/730, SIS540, SIS315, SIS315H,
    SIS315PRO/E, SIS550, SIS650/M650/651/740, SIS330(Xabre),
    SIS[M]661[F|M]X/[M]741[GX]/[M]760[GX]/[M]761[GX]/662, SIS340,
    [M]670/[M]770[GX], [M]671/[M]771[GX]
    [ 162.478] (II) SIS: driver for XGI chipsets: Volari Z7 (XG20),
    Volari V3XT/V5/V8/Duo (XG40/XG42)
    [ 162.478] (++) using VT number 1
    [ 162.478] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 162.478] (II) SIS_pci_probe - begin, entity_num=0
    [ 162.478] (II) vendor_id=0x1039
    [ 162.478] (II) device_id=0x6351
    [ 162.478] (II) bus=1
    [ 162.478] (II) dev=0
    [ 162.478] (II) func=0
    [ 162.478] (II) SIS_pci_probe - ConfigPciEntity found
    [ 162.478] (II) SIS(0): SIS_pci_probe - GetEntityInfo chipset is 0x6351
    [ 162.478] (II) SIS(0): SIS_pci_probe - end
    [ 162.478] (II) SIS(0): SiS driver (2006/10/17-1, compiled for X.org 1.17.1.0)
    [ 162.478] (II) SIS(0): Copyright (C) 2001-2005 Thomas Winischhofer <[email protected]> and others
    [ 162.478] (II) SIS(0): *** See http://www.winischhofer.at/linuxsisvga.shtml
    [ 162.478] (II) SIS(0): *** for documentation, updates and a Premium Version.
    [ 162.478] (II) SIS(0): RandR rotation support not available in this version.
    [ 162.478] (II) SIS(0): Dynamic modelist support not available in this version.
    [ 162.478] (II) SIS(0): Screen growing support not available in this version.
    [ 162.478] (II) SIS(0): Advanced Xv video blitter not available in this version.
    [ 162.478] (II) SIS(0): Advanced MergedFB support not available in this version.
    [ 162.478] (--) SIS(0): sisfb not found
    [ 162.478] (--) SIS(0): Relocated I/O registers at 0x9000
    [ 162.480] (II) Loading sub module "ramdac"
    [ 162.480] (II) LoadModule: "ramdac"
    [ 162.480] (II) Module "ramdac" already built-in
    [ 162.480] (**) SIS(0): Depth 16, (--) framebuffer bpp 16
    [ 162.480] (==) SIS(0): RGB weight 565
    [ 162.480] (==) SIS(0): Default visual is TrueColor
    [ 162.481] (WW) SIS(0): Could not find/read video BIOS
    [ 162.481] (==) SIS(0): Color HW cursor is enabled
    [ 162.481] (II) SIS(0): Using VRAM command queue, size 512k
    [ 162.481] (==) SIS(0): Hotkey display switching is enabled
    [ 162.481] (==) SIS(0): SiSCtrl utility interface is disabled
    [ 162.481] (II) SIS(0): For information on SiSCtrl, see
    http://www.winischhofer.at/linuxsispart1.shtml#sisctrl
    [ 162.481] (==) SIS(0): X server will not keep DPI constant for all screen sizes
    [ 162.481] (--) SIS(0): 262144K shared video RAM (UMA)
    [ 162.481] (--) SIS(0): DRAM type: DDR SDRAM
    [ 162.481] (--) SIS(0): Memory clock: 596.582 MHz
    [ 162.481] (--) SIS(0): DRAM bus width: 64 bit
    [ 162.481] (--) SIS(0): Linear framebuffer at 0xC0000000
    [ 162.481] (--) SIS(0): MMIO registers at 0xD4000000 (size 64K)
    [ 162.481] (--) SIS(0): VideoRAM: 262144 KB
    [ 162.481] (II) SIS(0): Using 20480K of framebuffer memory at offset 0K
    [ 162.481] (II) Loading sub module "ddc"
    [ 162.481] (II) LoadModule: "ddc"
    [ 162.481] (II) Module "ddc" already built-in
    [ 162.481] (--) SIS(0): Detected SiS307LV video bridge (Charter/UMC-1, ID 7; Rev 0xe1)
    [ 164.398] (--) SIS(0): No CRT1/VGA detected
    [ 164.398] (--) SIS(0): Detected LCD/plasma panel (1280x800, 11, non-exp., RGB18 [ec2305])
    [ 164.398] (==) SIS(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 164.398] (II) SIS(0): CRT1 gamma correction is enabled
    [ 164.398] (II) SIS(0): Separate Xv gamma correction for CRT1 is disabled
    [ 164.399] (II) SIS(0): CRT2 gamma correction is enabled
    [ 164.399] (--) SIS(0): Memory bandwidth at 16 bpp is 2386.33 MHz
    [ 164.399] (--) SIS(0): Detected LCD PanelDelayCompensation 0x00 (for LCD=CRT2)
    [ 164.399] (--) SIS(0): Detected LCD PanelDelayCompensation 0x00 (for LCD=CRT1)
    [ 164.399] (--) SIS(0): 302LV/302ELV: Using EMI 0x6a0d7038 (LCD)
    [ 164.399] (--) SIS(0): CRT2 DDC probing failed
    [ 164.399] (==) SIS(0): Min pixel clock is 10 MHz
    [ 164.399] (--) SIS(0): Max pixel clock is 340 MHz
    [ 164.399] (II) SIS(0): Replaced entire mode list with built-in modes
    [ 164.399] (II) SIS(0): Correcting missing CRT2 monitor HSync range
    [ 164.399] (II) SIS(0): Correcting missing CRT2 monitor VRefresh range
    [ 164.399] (II) SIS(0): "Unknown reason" in the following list means that the mode
    [ 164.399] (II) SIS(0): is not supported on the chipset/bridge/current output device.
    [ 164.399] (II) SIS(0): Monitor0: Using hsync range of 30.00-80.00 kHz
    [ 164.399] (II) SIS(0): Monitor0: Using vrefresh range of 59.00-61.00 Hz
    [ 164.399] (II) SIS(0): Monitor0: Using vrefresh value of 71.00 Hz
    [ 164.399] (II) SIS(0): Clock range: 10.00 to 340.00 MHz
    [ 164.399] (II) SIS(0): Not using default mode "800x600" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "800x600" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "800x600" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "800x600" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "800x600" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "800x600" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "800x600" (hsync out of range)
    [ 164.399] (II) SIS(0): Not using default mode "640x480" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "640x480" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "640x480" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "640x480" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "640x480" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "640x480" (hsync out of range)
    [ 164.399] (II) SIS(0): Not using default mode "640x480" (hsync out of range)
    [ 164.399] (II) SIS(0): Not using default mode "1024x768" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "1024x768" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "1024x768" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "1024x768" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "1024x768" (hsync out of range)
    [ 164.399] (II) SIS(0): Not using default mode "1024x768" (hsync out of range)
    [ 164.399] (II) SIS(0): Not using default mode "1280x1024" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1280x1024" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1280x1024" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1280x1024" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1600x1200" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1600x1200" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1600x1200" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1600x1200" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1600x1200" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1600x1200" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1600x1200" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1920x1440" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1920x1440" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1920x1440" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1920x1440" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1920x1440" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
    [ 164.399] (II) SIS(0): Not using default mode "2048x1536" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "2048x1536" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "2048x1536" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
    [ 164.399] (II) SIS(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
    [ 164.399] (II) SIS(0): Not using default mode "1400x1050" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1400x1050" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1280x800" (vrefresh out of range)
    [ 164.399] (II) SIS(0): Not using default mode "1280x800" (hsync out of range)
    [ 164.399] (II) SIS(0): Not using default mode "1440x900" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1440x900" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1440x900" (unknown reason)
    [ 164.399] (II) SIS(0): Not using default mode "1366x768" (unknown reason)
    [ 164.399] (II) SIS(0): Not using mode "1024x768_75.00" (no mode of this name)
    [ 164.399] (--) SIS(0): Virtual size is 1280x800 (pitch 1280)
    [ 164.399] (**) SIS(0): Default mode "1280x800" (1280x800) (For CRT device: 107.9 MHz, 63.9 kHz, 59.9 Hz)
    [ 164.399] (**) SIS(0): Default mode "1024x768" (1024x768) (For CRT device: 65.1 MHz, 48.5 kHz, 60.1 Hz)
    [ 164.399] (**) SIS(0): Default mode "800x600" (800x600) (For CRT device: 40.0 MHz, 37.9 kHz, 60.3 Hz)
    [ 164.399] (**) SIS(0): Default mode "640x480" (640x480) (For CRT device: 25.1 MHz, 31.3 kHz, 59.7 Hz)
    [ 164.399] (==) SIS(0): DPI set to (96, 96)
    [ 164.399] (II) Loading sub module "fb"
    [ 164.399] (II) LoadModule: "fb"
    [ 164.400] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 164.445] (II) Module fb: vendor="X.Org Foundation"
    [ 164.445] compiled for 1.17.1, module version = 1.0.0
    [ 164.445] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 164.445] (II) Loading sub module "exa"
    [ 164.445] (II) LoadModule: "exa"
    [ 164.445] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 164.453] (II) Module exa: vendor="X.Org Foundation"
    [ 164.453] compiled for 1.17.1, module version = 2.6.0
    [ 164.453] ABI class: X.Org Video Driver, version 19.0
    [ 164.453] (II) Loading sub module "vbe"
    [ 164.453] (II) LoadModule: "vbe"
    [ 164.453] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 164.465] (II) Module vbe: vendor="X.Org Foundation"
    [ 164.465] compiled for 1.17.1, module version = 1.1.0
    [ 164.465] ABI class: X.Org Video Driver, version 19.0
    [ 164.465] (II) Loading sub module "int10"
    [ 164.465] (II) LoadModule: "int10"
    [ 164.465] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 164.471] (II) Module int10: vendor="X.Org Foundation"
    [ 164.471] compiled for 1.17.1, module version = 1.0.0
    [ 164.471] ABI class: X.Org Video Driver, version 19.0
    [ 164.471] (II) SIS(0): initializing int10
    [ 164.474] (EE) SIS(0): Cannot read int vect
    [ 164.474] (WW) SIS(0): Failed to load/initialize vbe module
    [ 164.481] (II) SIS(0): Setting standard mode 0x15
    [ 165.753] (II) EXA(0): Offscreen pixmap area of 18923520 bytes
    [ 165.753] (II) EXA(0): Driver registered support for the following operations:
    [ 165.753] (II) Solid
    [ 165.753] (II) Copy
    [ 165.753] (II) UploadToScreen
    [ 165.753] (II) DownloadFromScreen
    [ 165.753] (--) SIS(0): CPU frequency 1999.99Mhz
    [ 165.765] (II) SIS(0): Benchmarking system RAM to video RAM memory transfer methods:
    [ 165.814] (--) SIS(0): Checked libc memcpy()... 53.4 MiB/s
    [ 165.909] (--) SIS(0): Checked built-in-1 memcpy()... 26.7 MiB/s
    [ 166.024] (--) SIS(0): Checked built-in-2 memcpy()... 22.0 MiB/s
    [ 166.072] (--) SIS(0): Checked MMX memcpy()... 53.5 MiB/s
    [ 166.119] (--) SIS(0): Checked SSE memcpy()... 53.5 MiB/s
    [ 166.167] (--) SIS(0): Checked MMX2 memcpy()... 53.5 MiB/s
    [ 166.167] (--) SIS(0): Using MMX2 method for aligned data transfers to video RAM
    [ 166.167] (--) SIS(0): Using MMX2 method for unaligned data transfers to video RAM
    [ 166.167] (--) SIS(0): CPU frequency 1999.99Mhz
    [ 166.179] (II) SIS(0): Benchmarking video RAM to system RAM memory transfer methods:
    [ 166.241] (--) SIS(0): Checked libc memcpy()... 43.2 MiB/s
    [ 166.346] (--) SIS(0): Checked built-in-1 memcpy()... 24.9 MiB/s
    [ 166.451] (--) SIS(0): Checked built-in-2 memcpy()... 25.1 MiB/s
    [ 166.509] (--) SIS(0): Checked MMX memcpy()... 46.7 MiB/s
    [ 166.569] (--) SIS(0): Checked SSE memcpy()... 44.3 MiB/s
    [ 166.637] (--) SIS(0): Checked MMX2 memcpy()... 39.0 MiB/s
    [ 166.637] (--) SIS(0): Using MMX method for aligned data transfers from video RAM
    [ 166.637] (--) SIS(0): Using MMX method for unaligned data transfers from video RAM
    [ 166.637] (==) SIS(0): Backing store enabled
    [ 166.637] (==) SIS(0): Silken mouse enabled
    [ 166.640] (==) SIS(0): DPMS enabled
    [ 166.641] (--) SIS(0): Hardware supports one video overlay
    [ 166.641] (II) SIS(0): Using SiS300/315/330/340/350 series HW Xv by default on CRT2
    [ 166.641] PCI: CNF00 - CNF1B:
    [ 166.641] 00: 00000000:00000000000000000000000000000000
    [ 166.641] 04: 42004200:01000010000000000100001000000000
    [ 166.641] 08: ffffffff:11111111111111111111111111111111
    [ 166.641] 0c: ffffffff:11111111111111111111111111111111
    [ 166.641] 10: b7143c00:10110111000101000011110000000000
    [ 166.641] 14: 00008e0d:00000000000000001000111000001101
    [ 166.641] 18: ffffffff:11111111111111111111111111111111
    [ 166.641] PCI: CNF2C - CNF47:
    [ 166.641] 2c: ffffffff:11111111111111111111111111111111
    [ 166.641] 30: ffffffff:11111111111111111111111111111111
    [ 166.641] 34: ffffffff:11111111111111111111111111111111
    [ 166.641] 38: ffffffff:11111111111111111111111111111111
    [ 166.641] 3c: ffffffff:11111111111111111111111111111111
    [ 166.641] 40: 01100420:00000001000100000000010000100000
    [ 166.641] 44: 00ff4407:00000000111111110100010000000111
    [ 166.641] AGP: CNF50 - CNF5B:
    [ 166.641] 50: 40134013:01000000000100110100000000010011
    [ 166.641] 54: 40134013:01000000000100110100000000010011
    [ 166.641] 58: 00000000:00000000000000000000000000000000
    [ 166.641] CRT1: SR05 - SR12:
    [ 166.641] 05: a1:10100001
    [ 166.641] 06: 42:01000010
    [ 166.641] 07: 44:01000100
    [ 166.641] 08: e0:11100000
    [ 166.641] 09: 07:00000111
    [ 166.641] 0a: 01:00000001
    [ 166.641] 0b: 00:00000000
    [ 166.641] 0c: 07:00000111
    [ 166.641] 0d: 00:00000000
    [ 166.641] 0e: 01:00000001
    [ 166.641] 0f: 08:00001000
    [ 166.641] 10: 29:00101001
    [ 166.641] 11: 03:00000011
    [ 166.641] 12: 00:00000000
    [ 166.641] CRT1: SR13 - SR16 (reserved):
    [ 166.641] 13: 00:00000000
    [ 166.641] 14: 00:00000000
    [ 166.641] 15: 00:00000000
    [ 166.641] 16: 00:00000000
    [ 166.641] CRT1: SR19 - SR1A (reserved)
    [ 166.641] CRT1: SR1B - SR3A:
    [ 166.641] 1b: 00:00000000
    [ 166.641] 1c: 8f:10001111
    [ 166.641] 1d: 00:00000000
    [ 166.641] 1e: 7a:01111010
    [ 166.641] 1f: c0:11000000
    [ 166.641] 20: a1:10100001
    [ 166.641] 21: a3:10100011
    [ 166.641] 22: f3:11110011
    [ 166.641] 23: 00:00000000
    [ 166.641] 24: 00:00000000
    [ 166.641] 25: 00:00000000
    [ 166.641] 26: 40:01000000
    [ 166.641] 27: 1f:00011111
    [ 166.641] 28: 7c:01111100
    [ 166.641] 29: 05:00000101
    [ 166.641] 2a: 82:10000010
    [ 166.641] 2b: 1b:00011011
    [ 166.641] 2c: e1:11100001
    [ 166.641] 2d: 01:00000001
    [ 166.641] 2e: 29:00101001
    [ 166.641] 2f: 01:00000001
    [ 166.641] 30: 82:10000010
    [ 166.641] 31: 00:00000000
    [ 166.641] 32: 50:01010000
    [ 166.641] 33: 20:00100000
    [ 166.641] 34: 00:00000000
    [ 166.641] 35: 00:00000000
    [ 166.641] 36: 00:00000000
    [ 166.642] 37: 04:00000100
    [ 166.642] 38: 86:10000110
    [ 166.642] 39: 40:01000000
    [ 166.642] 3a: 00:00000000
    [ 166.642] CRT1: SR3B (reserved)
    [ 166.642] CRT1: SR3C - SR3F:
    [ 166.642] 3c: 08:00001000
    [ 166.642] 3d: 01:00000001
    [ 166.642] 3e: 00:00000000
    [ 166.642] 3f: 00:00000000
    [ 166.642] CRT1: CR19 - CR1A:
    [ 166.642] 19: 00:00000000
    [ 166.642] 1a: 00:00000000
    [ 166.642] CRT1: CR1B - CR27 (undocumented?)
    [ 166.642] CRT1: CR28 - CR2E:
    [ 166.642] 28: 04:00000100
    [ 166.642] 29: e0:11100000
    [ 166.642] 2a: 00:00000000
    [ 166.642] 2b: 00:00000000
    [ 166.642] 2c: 00:00000000
    [ 166.642] 2d: 00:00000000
    [ 166.642] 2e: 00:00000000
    [ 166.642] CRT1: CR2F (reserved)
    [ 166.642] VGA BIOS: CR30 - CR3F:
    [ 166.642] 30: 21:00100001
    [ 166.642] 31: 40:01000000
    [ 166.642] 32: 08:00001000
    [ 166.642] 33: 00:00000000
    [ 166.642] 34: 15:00010101
    [ 166.642] 35: 00:00000000
    [ 166.642] 36: ec:11101100
    [ 166.642] 37: 23:00100011
    [ 166.642] 38: 20:00100000
    [ 166.642] 39: 30:00110000
    [ 166.642] 3a: 00:00000000
    [ 166.642] 3b: 08:00001000
    [ 166.642] 3c: 80:10000000
    [ 166.642] 3d: 20:00100000
    [ 166.642] 3e: 00:00000000
    [ 166.642] 3f: 00:00000000
    [ 166.642] CRT1: CR40 - CR43:
    [ 166.642] 40: 00:00000000
    [ 166.642] 41: 00:00000000
    [ 166.642] 42: 00:00000000
    [ 166.642] 43: 00:00000000
    [ 166.642] CRT1: CR44 - CR45 (reserved)
    [ 166.642] CRT1: CR46 - CR67:
    [ 166.642] 46: 00:00000000
    [ 166.642] 47: fe:11111110
    [ 166.642] 48: c0:11000000
    [ 166.642] 49: 08:00001000
    [ 166.642] 4a: bf:10111111
    [ 166.642] 4b: 88:10001000
    [ 166.642] 4c: 00:00000000
    [ 166.642] 4d: 10:00010000
    [ 166.642] 4e: 10:00010000
    [ 166.642] 4f: 20:00100000
    [ 166.642] 50: 00:00000000
    [ 166.642] 51: 00:00000000
    [ 166.642] 52: 30:00110000
    [ 166.642] 53: 40:01000000
    [ 166.642] 54: 00:00000000
    [ 166.642] 55: 00:00000000
    [ 166.642] 56: 00:00000000
    [ 166.642] 57: 00:00000000
    [ 166.642] 58: 00:00000000
    [ 166.642] 59: 00:00000000
    [ 166.642] 5a: 00:00000000
    [ 166.642] 5b: 00:00000000
    [ 166.642] 5c: 00:00000000
    [ 166.642] 5d: 00:00000000
    [ 166.642] 5e: 00:00000000
    [ 166.642] 5f: 00:00000000
    [ 166.642] 60: 00:00000000
    [ 166.642] 61: 00:00000000
    [ 166.642] 62: 00:00000000
    [ 166.642] 63: 00:00000000
    [ 166.642] 64: 00:00000000
    [ 166.642] 65: 00:00000000
    [ 166.642] 66: 00:00000000
    [ 166.642] 67: 00:00000000
    [ 166.642] CRT1: CR68 - CR6F (DRAM registers reserved for backward compatibility with 760)
    [ 166.642] CRT1: CR70 - CR77 (undocumented?)
    [ 166.642] SMA BIOS: CR78 - CR7F:
    [ 166.642] 78: 66:01100110
    [ 166.642] 79: 80:10000000
    [ 166.642] 7a: 90:10010000
    [ 166.642] 7b: 02:00000010
    [ 166.642] 7c: a2:10100010
    [ 166.642] 7d: 05:00000101
    [ 166.642] 7e: a3:10100011
    [ 166.642] 7f: 03:00000011
    [ 166.642] CRT1: CR80 - CR9B:
    [ 166.642] 80: ffffffff:11111111111111111111111111111111
    [ 166.642] 84: ffffffff:11111111111111111111111111111111
    [ 166.642] 88: ffffffff:11111111111111111111111111111111
    [ 166.642] 8c: ffffffff:11111111111111111111111111111111
    [ 166.642] 90: ffffffff:11111111111111111111111111111111
    [ 166.642] 94: ffffffff:11111111111111111111111111111111
    [ 166.642] 98: ffffffff:11111111111111111111111111111111
    [ 166.642] 9c: ffffffff:11111111111111111111111111111111
    [ 166.642] a0: ffffffff:11111111111111111111111111111111
    [ 166.642] a4: ffffffff:11111111111111111111111111111111
    [ 166.642] a8: ffffffff:11111111111111111111111111111111
    [ 166.642] ac: ffffffff:11111111111111111111111111111111
    [ 166.642] b0: ffffffff:11111111111111111111111111111111
    [ 166.642] CRT1: CRC0 - CRF3:
    [ 166.642] c0: ffffffff:11111111111111111111111111111111
    [ 166.642] c4: ffffffff:11111111111111111111111111111111
    [ 166.642] c8: ffffffff:11111111111111111111111111111111
    [ 166.642] cc: ffffffff:11111111111111111111111111111111
    [ 166.642] d0: ffffffff:11111111111111111111111111111111
    [ 166.642] d4: ffffffff:11111111111111111111111111111111
    [ 166.642] d8: ffffffff:11111111111111111111111111111111
    [ 166.642] dc: ffffffff:11111111111111111111111111111111
    [ 166.642] e0: ffffffff:11111111111111111111111111111111
    [ 166.642] e4: ffffffff:11111111111111111111111111111111
    [ 166.642] e8: ffffffff:11111111111111111111111111111111
    [ 166.642] ec: ffffffff:11111111111111111111111111111111
    [ 166.643] f0: ffffffff:11111111111111111111111111111111
    [ 166.643] CRT2: SIGNAL REGISTERS, PART1 00 - 45:
    [ 166.643] 00: 42:01000010
    [ 166.643] 01: 58:01011000
    [ 166.643] 02: 52:01010010
    [ 166.643] 03: 29:00101001
    [ 166.643] 04: 00:00000000
    [ 166.643] 05: 00:00000000
    [ 166.643] 06: 00:00000000
    [ 166.643] 07: 40:01000000
    [ 166.643] 08: 7f:01111111
    [ 166.643] 09: 51:01010001
    [ 166.643] 0a: 10:00010000
    [ 166.643] 0b: 20:00100000
    [ 166.643] 0c: 55:01010101
    [ 166.643] 0d: 30:00110000
    [ 166.643] 0e: 2f:00101111
    [ 166.643] 0f: 1f:00011111
    [ 166.643] 10: 28:00101000
    [ 166.643] 11: 3a:00111010
    [ 166.643] 12: 1b:00011011
    [ 166.643] 13: 00:00000000
    [ 166.643] 14: a2:10100010
    [ 166.643] 15: 06:00000110
    [ 166.643] 16: 00:00000000
    [ 166.643] 17: a0:10100000
    [ 166.643] 18: 22:00100010
    [ 166.643] 19: 25:00100101
    [ 166.643] 1a: d8:11011000
    [ 166.643] 1b: 2f:00101111
    [ 166.643] 1c: 1f:00011111
    [ 166.643] 1d: 1b:00011011
    [ 166.643] 1e: 20:00100000
    [ 166.643] 1f: ff:11111111
    [ 166.643] 20: 1c:00011100
    [ 166.643] 21: 1f:00011111
    [ 166.643] 22: 80:10000000
    [ 166.643] 23: 00:00000000
    [ 166.643] 24: 00:00000000
    [ 166.643] 25: 00:00000000
    [ 166.643] 26: 10:00010000
    [ 166.643] 27: 04:00000100
    [ 166.643] 28: 00:00000000
    [ 166.643] 29: 00:00000000
    [ 166.643] 2a: 03:00000011
    [ 166.643] 2b: 00:00000000
    [ 166.643] 2c: 30:00110000
    [ 166.643] 2d: 03:00000011
    [ 166.643] 2e: 8e:10001110
    [ 166.643] 2f: 05:00000101
    [ 166.643] 30: 01:00000001
    [ 166.643] 31: b5:10110101
    [ 166.643] 32: ed:11101101
    [ 166.643] 33: 92:10010010
    [ 166.643] 34: 80:10000000
    [ 166.643] 35: 22:00100010
    [ 166.643] 36: 65:01100101
    [ 166.643] 37: e3:11100011
    [ 166.643] 38: 62:01100010
    [ 166.643] 39: 0a:00001010
    [ 166.643] 3a: 00:00000000
    [ 166.643] 3b: 00:00000000
    [ 166.643] 3c: 00:00000000
    [ 166.643] 3d: 00:00000000
    [ 166.643] 3e: 01:00000001
    [ 166.643] 3f: 01:00000001
    [ 166.643] 40: 00:00000000
    [ 166.643] 41: 00:00000000
    [ 166.643] 42: 00:00000000
    [ 166.643] 43: 00:00000000
    [ 166.643] 44: 00:00000000
    [ 166.643] 45: 00:00000000
    [ 166.643] CRT2: TV SIGNAL REGISTERS, PART2 00 - 4d:
    [ 166.643] 00: 3c:00111100
    [ 166.643] 01: 34:00110100
    [ 166.643] 02: 1b:00011011
    [ 166.643] 03: 1f:00011111
    [ 166.643] 04: 21:00100001
    [ 166.643] 05: 2f:00101111
    [ 166.643] 06: 1f:00011111
    [ 166.643] 07: 0c:00001100
    [ 166.643] 08: 0c:00001100
    [ 166.643] 09: 90:10010000
    [ 166.643] 0a: 40:01000000
    [ 166.643] 0b: 01:00000001
    [ 166.643] 0c: 0b:00001011
    [ 166.643] 0d: 06:00000110
    [ 166.643] 0e: 0d:00001101
    [ 166.643] 0f: 04:00000100
    [ 166.643] 10: 0a:00001010
    [ 166.643] 11: 06:00000110
    [ 166.643] 12: 14:00010100
    [ 166.643] 13: 0d:00001101
    [ 166.643] 14: 04:00000100
    [ 166.643] 15: 0a:00001010
    [ 166.643] 16: 00:00000000
    [ 166.643] 17: 81:10000001
    [ 166.643] 18: 1b:00011011
    [ 166.643] 19: 2f:00101111
    [ 166.643] 1a: 68:01101000
    [ 166.643] 1b: 7e:01111110
    [ 166.643] 1c: 28:00101000
    [ 166.643] 1d: 55:01010101
    [ 166.644] 1e: da:11011010
    [ 166.644] 1f: 08:00001000
    [ 166.644] 20: 07:00000111
    [ 166.644] 21: 68:01101000
    [ 166.644] 22: 75:01110101
    [ 166.644] 23: 08:00001000
    [ 166.644] 24: 0b:00001011
    [ 166.644] 25: 35:00110101
    [ 166.644] 26: e2:11100010
    [ 166.644] 27: a2:10100010
    [ 166.644] 28: 52:01010010
    [ 166.644] 29: 33:00110011
    [ 166.644] 2a: aa:10101010
    [ 166.644] 2b: 45:01000101
    [ 166.644] 2c: ff:11111111
    [ 166.644] 2d: 58:01011000
    [ 166.644] 2e: 7f:01111111
    [ 166.644] 2f: 1e:00011110
    [ 166.644] 30: c5:11000101
    [ 166.644] 31: 21:00100001
    [ 166.644] 32: f0:11110000
    [ 166.644] 33: 7b:01111011
    [ 166.644] 34: d6:11010110
    [ 166.644] 35: 00:00000000
    [ 166.644] 36: 00:00000000
    [ 166.644] 37: 00:00000000
    [ 166.644] 38: 00:00000000
    [ 166.644] 39: 92:10010010
    [ 166.644] 3a: 8f:10001111
    [ 166.644] 3b: 40:01000000
    [ 166.644] 3c: 60:01100000
    [ 166.644] 3d: 80:10000000
    [ 166.644] 3e: 14:00010100
    [ 166.644] 3f: ff:11111111
    [ 166.644] 40: ff:11111111
    [ 166.644] 41: ff:11111111
    [ 166.644] 42: 14:00010100
    [ 166.644] 43: 4d:01001101
    [ 166.644] 44: 00:00000000
    [ 166.644] 45: 60:01100000
    [ 166.644] 46: 78:01111000
    [ 166.644] 47: 1d:00011101
    [ 166.644] 48: 1e:00011110
    [ 166.644] 49: 11:00010001
    [ 166.644] 4a: 82:10000010
    [ 166.644] 4b: 69:01101001
    [ 166.644] 4c: 61:01100001
    [ 166.644] 4d: 03:00000011
    [ 166.644] CRT2: TV COPY PROTECTION, PART3 00 - 40:
    [ 166.644] 00: 00:00000000
    [ 166.644] 01: 04:00000100
    [ 166.644] 02: c0:11000000
    [ 166.644] 03: 39:00111001
    [ 166.644] 04: 07:00000111
    [ 166.644] 05: 6f:01101111
    [ 166.644] 06: 0a:00001010
    [ 166.644] 07: 75:01110101
    [ 166.644] 08: 01:00000001
    [ 166.644] 09: ad:10101101
    [ 166.644] 0a: 20:00100000
    [ 166.644] 0b: 40:01000000
    [ 166.644] 0c: 60:01100000
    [ 166.644] 0d: 44:01000100
    [ 166.644] 0e: c2:11000010
    [ 166.644] 0f: f2:11110010
    [ 166.644] 10: 71:01110001
    [ 166.644] 11: 64:01100100
    [ 166.644] 12: d1:11010001
    [ 166.644] 13: f5:11110101
    [ 166.644] 14: b7:10110111
    [ 166.644] 15: 59:01011001
    [ 166.644] 16: 84:10000100
    [ 166.644] 17: 80:10000000
    [ 166.644] 18: 36:00110110
    [ 166.644] 19: 00:00000000
    [ 166.644] 1a: 42:01000010
    [ 166.644] 1b: 9c:10011100
    [ 166.644] 1c: 9f:10011111
    [ 166.644] 1d: 2a:00101010
    [ 166.644] 1e: 52:01010010
    [ 166.644] 1f: 7e:01111110
    [ 166.644] 20: 24:00100100
    [ 166.645] 21: 6f:01101111
    [ 166.645] 22: 16:00010110
    [ 166.645] 23: 4c:01001100
    [ 166.645] 24: e6:11100110
    [ 166.645] 25: 89:10001001
    [ 166.645] 26: c4:11000100
    [ 166.645] 27: 1b:00011011
    [ 166.645] 28: bf:10111111
    [ 166.645] 29: a1:10100001
    [ 166.645] 2a: 83:10000011
    [ 166.645] 2b: 7e:01111110
    [ 166.645] 2c: 81:10000001
    [ 166.645] 2d: 4b:01001011
    [ 166.645] 2e: d0:11010000
    [ 166.645] 2f: e4:11100100
    [ 166.645] 30: 61:01100001
    [ 166.645] 31: 91:10010001
    [ 166.645] 32: 1f:00011111
    [ 166.645] 33: f9:11111001
    [ 166.645] 34: d4:11010100
    [ 166.645] 35: 45:01000101
    [ 166.645] 36: c4:11000100
    [ 166.645] 37: 67:01100111
    [ 166.645] 38: b9:10111001
    [ 166.645] 39: 41:01000001
    [ 166.645] 3a: 2d:00101101
    [ 166.645] 3b: 1b:00011011
    [ 166.645] 3c: eb:11101011
    [ 166.645] 3d: f5:11110101
    [ 166.645] 3e: 40:01000000
    [ 166.645] 3f: a6:10100110
    [ 166.645] 40: 01:00000001
    [ 166.645] CRT2: SIGNAL REGISTERS, PART4 00 - 3A:
    [ 166.645] 00: 07:00000111
    [ 166.645] 01: e1:11100001
    [ 166.645] 02: 01:00000001
    [ 166.645] 03: 4f:01001111
    [ 166.645] 04: 00:00000000
    [ 166.645] 05: 00:00000000
    [ 166.645] 06: 00:00000000
    [ 166.645] 07: ef:11101111
    [ 166.645] 08: 3f:00111111
    [ 166.645] 09: 00:00000000
    [ 166.645] 0a: 9c:10011100
    [ 166.645] 0b: 62:01100010
    [ 166.645] 0c: 83:10000011
    [ 166.645] 0d: 8e:10001110
    [ 166.645] 0e: 60:01100000
    [ 166.645] 0f: 03:00000011
    [ 166.645] 10: 80:10000000
    [ 166.645] 11: 00:00000000
    [ 166.645] 12: 08:00001000
    [ 166.645] 13: 01:00000001
    [ 166.645] 14: 01:00000001
    [ 166.645] 15: 2b:00101011
    [ 166.645] 16: 7f:01111111
    [ 166.645] 17: 2a:00101010
    [ 166.645] 18: 32:00110010
    [ 166.645] 19: 40:01000000
    [ 166.645] 1a: 00:00000000
    [ 166.645] 1b: 00:00000000
    [ 166.645] 1c: 28:00101000
    [ 166.645] 1d: 3f:00111111
    [ 166.645] 1e: 10:00010000
    [ 166.645] 1f: f6:11110110
    [ 166.645] 20: aa:10101010
    [ 166.645] 21: d0:11010000
    [ 166.645] 22: be:10111110
    [ 166.645] 23: c7:11000111
    [ 166.645] 24: 0e:00001110
    [ 166.645] 25: 10:00010000
    [ 166.645] 26: 06:00000110
    [ 166.645] 27: 8c:10001100
    [ 166.645] 28: 62:01100010
    [ 166.645] 29: d2:11010010
    [ 166.645] 2a: 00:00000000
    [ 166.645] 2b: a0:10100000
    [ 166.645] 2c: 02:00000010
    [ 166.645] 2d: 3f:00111111
    [ 166.645] 2e: 02:00000010
    [ 166.645] 2f: 3f:00111111
    [ 166.645] 30: 68:01101000
    [ 166.645] 31: 0d:00001101
    [ 166.646] 32: 70:01110000
    [ 166.646] 33: 38:00111000
    [ 166.646] 34: 10:00010000
    [ 166.646] 35: c8:11001000
    [ 166.646] 36: 10:00010000
    [ 166.646] 37: c0:11000000
    [ 166.646] 38: 8b:10001011
    [ 166.646] 39: ff:11111111
    [ 166.646] 3a: fd:11111101
    [ 166.646] CRT2: PALETTE SIGNAL REGISTERS, PART5 00 - 00 (?):
    [ 166.646] 00: 00:00000000
    [ 166.646] (II) SIS(0): Default Xv adaptor is Video Overlay
    [ 166.715] (II) SIS(0): Initialized SISCTRL extension version 0.1
    [ 166.715] (II) SIS(0): Registered screen 0 with SISCTRL extension version 0.1
    [ 166.715] (==) RandR enabled
    [ 166.726] (II) AIGLX: Screen 0 is not DRI2 capable
    [ 166.726] (EE) AIGLX: reverting to software rendering
    [ 167.717] (II) AIGLX: Loaded and initialized swrast
    [ 167.717] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 168.007] (II) config/udev: Adding input device Power Button (/dev/input/event5)
    [ 168.007] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 168.007] (II) LoadModule: "evdev"
    [ 168.007] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 168.029] (II) Module evdev: vendor="X.Org Foundation"
    [ 168.029] compiled for 1.16.2, module version = 2.9.1
    [ 168.029] Module class: X.Org XInput Driver
    [ 168.029] ABI class: X.Org XInput driver, version 21.0
    [ 168.030] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 12 paused 0
    [ 168.030] (II) Using input driver 'evdev' for 'Power Button'
    [ 168.030] (**) Power Button: always reports core events
    [ 168.030] (**) evdev: Power Button: Device: "/dev/input/event5"
    [ 168.030] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 168.030] (--) evdev: Power Button: Found keys
    [ 168.030] (II) evdev: Power Button: Configuring as keyboard
    [ 168.030] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input9/event5"
    [ 168.030] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 168.030] (**) Option "xkb_rules" "evdev"
    [ 168.030] (**) Option "xkb_model" "pc104"
    [ 168.030] (**) Option "xkb_layout" "us"
    [ 168.064] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
    [ 168.064] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 168.064] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 13 paused 0
    [ 168.065] (II) Using input driver 'evdev' for 'Video Bus'
    [ 168.065] (**) Video Bus: always reports core events
    [ 168.065] (**) evdev: Video Bus: Device: "/dev/input/event2"
    [ 168.065] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 168.065] (--) evdev: Video Bus: Found keys
    [ 168.065] (II) evdev: Video Bus: Configuring as keyboard
    [ 168.065] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/device:00/LNXVIDEO:00/input/input6/event2"
    [ 168.065] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 168.065] (**) Option "xkb_rules" "evdev"
    [ 168.065] (**) Option "xkb_model" "pc104"
    [ 168.065] (**) Option "xkb_layout" "us"
    [ 168.065] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 168.065] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 168.066] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 14 paused 0
    [ 168.066] (II) Using input driver 'evdev' for 'Power Button'
    [ 168.066] (**) Power Button: always reports core events
    [ 168.066] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 168.066] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 168.066] (--) evdev: Power Button: Found keys
    [ 168.066] (II) evdev: Power Button: Configuring as keyboard
    [ 168.066] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input7/event3"
    [ 168.066] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 168.066] (**) Option "xkb_rules" "evdev"
    [ 168.066] (**) Option "xkb_model" "pc104"
    [ 168.067] (**) Option "xkb_layout" "us"
    [ 168.067] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 168.067] (II) No input driver specified, ignoring this device.
    [ 168.067] (II) This device may have been added with another device file.
    [ 168.068] (II) config/udev: Adding input device Sleep Button (/dev/input/event4)
    [ 168.068] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 168.068] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 15 paused 0
    [ 168.068] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 168.068] (**) Sleep Button: always reports core events
    [ 168.068] (**) evdev: Sleep Button: Device: "/dev/input/event4"
    [ 168.068] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 168.068] (--) evdev: Sleep Button: Found keys
    [ 168.068] (II) evdev: Sleep Button: Configuring as keyboard
    [ 168.068] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input8/event4"
    [ 168.069] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 168.069] (**) Option "xkb_rules" "evdev"
    [ 168.069] (**) Option "xkb_model" "pc104"
    [ 168.069] (**) Option "xkb_layout" "us"
    [ 168.069] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
    [ 168.069] (II) No input driver specified, ignoring this device.
    [ 168.069] (II) This device may have been added with another device file.
    [ 168.070] (II) config/udev: Adding input device HDA SIS966 Mic (/dev/input/event7)
    [ 168.070] (II) No input driver specified, ignoring this device.
    [ 168.070] (II) This device may have been added with another device file.
    [ 168.070] (II) config/udev: Adding input device HDA SIS966 Headphone (/dev/input/event8)
    [ 168.070] (II) No input driver specified, ignoring this device.
    [ 168.070] (II) This device may have been added with another device file.
    [ 168.070] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 168.070] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 168.071] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 16 paused 0
    [ 168.071] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 168.071] (**) AT Translated Set 2 keyboard: always reports core events
    [ 168.071] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 168.071] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 168.071] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 168.071] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 168.071] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 168.071] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
    [ 168.071] (**) Option "xkb_rules" "evdev"
    [ 168.071] (**) Option "xkb_model" "pc104"
    [ 168.071] (**) Option "xkb_layout" "us"
    [ 168.072] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event10)
    [ 168.072] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 168.072] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 168.072] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 168.072] (II) LoadModule: "synaptics"
    [ 168.072] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 168.091] (II) Module synaptics: vendor="X.Org Foundation"
    [ 168.091] compiled for 1.16.0, module version = 1.8.1
    [ 168.091] Module class: X.Org XInput Driver
    [ 168.091] ABI class: X.Org XInput driver, version 21.0
    [ 168.092] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 17 paused 0
    [ 168.092] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 168.092] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 168.092] (**) Option "Device" "/dev/input/event10"
    [ 168.133] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472 (res 68)
    [ 168.133] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448 (res 93)
    [ 168.133] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 168.133] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 168.133] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 168.133] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 168.133] (**) Option "TapButton1" "1"
    [ 168.133] (**) Option "TapButton2" "2"
    [ 168.133] (**) Option "TapButton3" "3"
    [ 168.133] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 168.133] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 168.133] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input17/event10"
    [ 168.133] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 11)
    [ 168.133] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 168.133] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 168.133] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.040
    [ 168.133] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 168.134] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 168.134] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 168.134] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 168.134] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 168.134] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 168.134] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 168.134] (II) config/udev: Adding input device PC Speaker (/dev/input/event9)
    [ 168.134] (II) No input driver specified, ignoring this device.
    [ 168.134] (II) This device may have been added with another device file.
    [ 169.913] (EE)
    [ 169.914] (EE) Backtrace:
    [ 169.944] (EE) 0: /usr/lib/xorg-server/Xorg (xorg_backtrace+0x52) [0x81db3f2]
    [ 169.944] (EE) 1: /usr/lib/xorg-server/Xorg (0x8048000+0x197612) [0x81df612]
    [ 169.944] (EE) 2: linux-gate.so.1 (__kernel_rt_sigreturn+0x0) [0xb778bb94]
    [ 169.944] (EE) 3: /usr/lib/xorg/modules/drivers/sisimedia_drv.so (0xb6ae1000+0x44676) [0xb6b25676]
    [ 169.944] (EE) 4: /usr/lib/xorg/modules/drivers/sisimedia_drv.so (0xb6ae1000+0x37592) [0xb6b18592]
    [ 169.944] (EE) 5: /usr/lib/xorg/modules/drivers/sisimedia_drv.so (0xb6ae1000+0x27217) [0xb6b08217]
    [ 169.944] (EE) 6: /usr/lib/xorg/modules/libexa.so (0xb6aa2000+0x4df7) [0xb6aa6df7]
    [ 169.944] (EE) 7: /usr/lib/xorg/modules/libexa.so (0xb6aa2000+0x527f) [0xb6aa727f]
    [ 169.944] (EE) 8: /usr/lib/xorg/modules/libexa.so (0xb6aa2000+0x5344) [0xb6aa7344]
    [ 169.944] (EE) 9: /usr/lib/xorg/modules/libexa.so (0xb6aa2000+0x5cf5) [0xb6aa7cf5]
    [ 169.944] (EE) 10: /usr/lib/xorg/modules/libexa.so (0xb6aa2000+0x3af8) [0xb6aa5af8]
    [ 169.944] (EE) 11: /usr/lib/xorg/modules/libexa.so (0xb6aa2000+0x8a41) [0xb6aaaa41]
    [ 169.944] (EE) 12: /usr/lib/xorg/modules/libexa.so (0xb6aa2000+0x9401) [0xb6aab401]
    [ 169.944] (EE) 13: /usr/lib/xorg-server/Xorg (miCopyRegion+0x18d) [0x81bae9d]
    [ 169.944] (EE) 14: /usr/lib/xorg-server/Xorg (miDoCopy+0x48d) [0x81bb46d]
    [ 169.944] (EE) 15: /usr/lib/xorg/modules/libexa.so (0xb6aa2000+0x7ab9) [0xb6aa9ab9]
    [ 169.944] (EE) 16: /usr/lib/xorg-server/Xorg (0x8048000+0x11b6b5) [0x81636b5]
    [ 169.944] (EE) 17: /usr/lib/xorg-server/Xorg (0x8048000+0x2e794) [0x8076794]
    [ 169.944] (EE) 18: /usr/lib/xorg-server/Xorg (0x8048000+0x32a06) [0x807aa06]
    [ 169.944] (EE) 19: /usr/lib/xorg-server/Xorg (0x8048000+0x36bdf) [0x807ebdf]
    [ 169.944] (EE) 20: /usr/lib/xorg-server/Xorg (0x8048000+0x20a1a) [0x8068a1a]
    [ 169.944] (EE) 21: /usr/lib/libc.so.6 (__libc_start_main+0xde) [0xb730764e]
    [ 169.944] (EE) 22: /usr/lib/xorg-server/Xorg (0x8048000+0x20a48) [0x8068a48]
    [ 169.944] (EE)
    [ 169.944] (EE) Segmentation fault at address 0x0
    [ 169.945] (EE)
    Fatal server error:
    [ 169.945] (EE) Caught signal 11 (Segmentation fault). Server aborting
    [ 169.945] (EE)
    [ 169.945] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 169.945] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 169.945] (EE)
    [ 169.953] (II) SIS(0): Restoring by setting old mode 0x62
    [ 172.262] (EE) Server terminated with error (1). Closing log file.

Maybe you are looking for

  • Significant of key field in Info cube table

    Hi, what is significant of key field in Info cube table? Best regards, dushyant.

  • Can Output Designer be used without installing Output server?

    Hi, Is it possible to use Output Designer independently of Output Server? I cannot find any detailed documentation on the Adobe site and it is not possible to download a trial version. I want to create a form that we ensure users entered mandatory fi

  • Best place for the sub.

    Hi, I have a 2.1 speaker system (I-trigue 3400) and was wondering if anybody knows the best place to put the sub so you can hear the deep bass more, it is infront of my legs now, and when i bend down i can hear more, but when i put it above my head i

  • Group Cost  - Additive cost for mark-ups

    Dear Experts: Here's my scenario: a) Group Costing activated with 10 and 31 views in OB22. b) Plant A, Company Code A sells to Plant B, Company Code B via inter-company STO c) Cross-company costing active for legal valuation I'm looking to cost a mat

  • Third Party to convert files...!?

    I've read through other topics regarding the lack of audio files in video clips. I am having that same problem, so I read through the topics. People mentioned using a "third party" to convert the audio files. My question is, how do you do that, and w