[Solved] Postfixadmin, can't run setup.php

First time for me to try setting up any server stuff with arch, so forgive if I come across as clueless
The story is I followed this page from the arch wiki:  https://wiki.archlinux.org/index.php/SO … #SMTP-AUTH to setup postfix, dovecot and postfixadmin (without smtp-auth as I have to use my isp's server for outgoing mail) and have a few issues but I think the first place I need to start is postfixadmin.  Haven't been able to get it to run the setup.php file which as far a I can see will create the mysql tables mapped in postfix's main.cf file
When I try running http://mydomain/postfixadmin/setup.php I get this error:
Please edit config.inc.php - change $CONF['configured'] to true after setting your database settings
In my /srv/http/postfixadmin/config_inc.php file I have already set this like so:
$CONF['configured'] = true;
I'm thinking maybe I did something wrong in the config_inc.php file, I'm able to use phpmyadmin so I don't think it's an issue with my apache/php installation, here's my full /srv/http/postfixadmin/config_inc.php file in case anyone can spot anything:
<?php
* You have to set $CONF['configured'] = true; before the application will run!
$CONF['configured'] = true;
// In order to setup Postfixadmin, you MUST specify a hashed password here.
// To create the hash, visit setup.php in a browser and type a password into the field,
// on submission it will be echoed out to you as a hashed value.
$CONF['setup_password'] = '';
// Postfix Admin Path
$CONF['postfix_admin_url'] = '[url]http://mydomain.com/postfixadmin[/url]';
// shouldn't need changing.
$CONF['postfix_admin_path'] = dirname(__FILE__);
$CONF['default_language'] = 'en';
// Database Config
// mysql = MySQL 3.23 and 4.0, 4.1 or 5
// mysqli = MySQL 4.1+
// pgsql = PostgreSQL
$CONF['database_type'] = 'mysqli';
$CONF['database_host'] = 'localhost';
$CONF['database_user'] = 'my_db_user';
$CONF['database_password'] = 'my_db_password';
$CONF['database_name'] = 'postfix';
// If you need to specify a different port for a MYSQL database connection, use e.g.
// $CONF['database_host'] = '172.30.33.66:3308';
// Here, if you need, you can customize table names.
$CONF['database_prefix'] = '';
$CONF['database_tables'] = array (
'admin' => 'admin',
'alias' => 'alias',
'alias_domain' => 'alias_domain',
'config' => 'config',
'domain' => 'domain',
'domain_admins' => 'domain_admins',
'fetchmail' => 'fetchmail',
'log' => 'log',
'mailbox' => 'mailbox',
'vacation' => 'vacation',
'vacation_notification' => 'vacation_notification',
'quota' => 'quota',
'quota2' => 'quota2',
// Site Admin
// Define the Site Admins email address below.
// This will be used to send emails from to create mailboxes.
$CONF['admin_email'] = '[email protected]';
// Mail Server
// Hostname (FQDN) of your mail server.
// This is used to send email to Postfix in order to create mailboxes.
$CONF['smtp_server'] = 'localhost';
$CONF['smtp_server'] = 'mydomain.com';
$CONF['smtp_port'] = '25';
// Encrypt
// In what way do you want the passwords to be crypted?
// md5crypt = internal postfix admin md5
// md5 = md5 sum of the password
// system = whatever you have set as your PHP system default
// cleartext = clear text passwords (ouch!)
// mysql_encrypt = useful for PAM integration
// authlib = support for courier-authlib style passwords
// dovecot:CRYPT-METHOD = use dovecotpw -s 'CRYPT-METHOD'. Example: dovecot:CRAM-MD5
$CONF['encrypt'] = 'md5crypt';
// In what flavor should courier-authlib style passwords be enrypted?
// md5 = {md5} + base64 encoded md5 hash
// md5raw = {md5raw} + plain encoded md5 hash
// SHA = {SHA} + base64-encoded sha1 hash
// crypt = {crypt} + Standard UNIX DES-enrypted with 2-character salt
$CONF['authlib_default_flavor'] = 'md5raw';
// If you use the dovecot encryption method: where is the dovecotpw binary located?
$CONF['dovecotpw'] = "/usr/sbin/dovecotpw";
// Minimum length required for passwords. Postfixadmin will not
// allow users to set passwords which are shorter than this value.
$CONF['min_password_length'] = 5;
// Generate Password
// Generate a random password for a mailbox or admin and display it.
// If you want to automagically generate paswords set this to 'YES'.
$CONF['generate_password'] = 'NO';
// Show Password
// Always show password after adding a mailbox or admin.
// If you want to always see what password was set set this to 'YES'.
$CONF['show_password'] = 'NO';
// Page Size
// Set the number of entries that you would like to see
// in one page.
$CONF['page_size'] = '10';
// Default Aliases
// The default aliases that need to be created for all domains.
$CONF['default_aliases'] = array (
'abuse' => '[email protected]',
'hostmaster' => '[email protected]',
'postmaster' => '[email protected]',
'webmaster' => '[email protected]'
// Mailboxes
// If you want to store the mailboxes per domain set this to 'YES'.
// Examples:
// YES: /usr/local/virtual/domain.tld/[email protected]
// NO: /usr/local/virtual/[email protected]
$CONF['domain_path'] = 'NO';
// If you don't want to have the domain in your mailbox set this to 'NO'.
// Examples:
// YES: /usr/local/virtual/domain.tld/[email protected]
// NO: /usr/local/virtual/domain.tld/username
// Note: If $CONF['domain_path'] is set to NO, this setting will be forced to YES.
$CONF['domain_in_mailbox'] = 'YES';
// If you want to define your own function to generate a maildir path set this to the name of the function.
// Notes:
// - this configuration directive will override both domain_path and domain_in_mailbox
// - the maildir_name_hook() function example is present below, commented out
// - if the function does not exist the program will default to the above domain_path and domain_in_mailbox settings
$CONF['maildir_name_hook'] = 'NO';
maildir_name_hook example function
Called by create-mailbox.php if $CONF['maildir_name_hook'] == '<name_of_the_function>'
- allows for customized maildir paths determined by a custom function
- the example below will prepend a single-character directory to the
beginning of the maildir, splitting domains more or less evenly over
36 directories for improved filesystem performance with large numbers
of domains.
Returns: maildir path
ie. I/example.com/user/
function maildir_name_hook($domain, $user) {
$chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
$dir_index = hexdec(substr(md5($domain), 28)) % strlen($chars);
$dir = substr($chars, $dir_index, 1);
return sprintf("%s/%s/%s/", $dir, $domain, $user);
// Default Domain Values
// Specify your default values below. Quota in MB.
$CONF['aliases'] = '10';
$CONF['mailboxes'] = '10';
$CONF['maxquota'] = '10';
// Quota
// When you want to enforce quota for your mailbox users set this to 'YES'.
$CONF['quota'] = 'NO';
// You can either use '1024000' or '1048576'
$CONF['quota_multiplier'] = '1024000';
// Transport
// If you want to define additional transport options for a domain set this to 'YES'.
// Read the transport file of the Postfix documentation.
$CONF['transport'] = 'NO';
// Transport options
// If you want to define additional transport options put them in array below.
$CONF['transport_options'] = array (
'virtual', // for virtual accounts
'local', // for system accounts
'relay' // for backup mx
// Transport default
// You should define default transport. It must be in array above.
$CONF['transport_default'] = 'virtual';
// Virtual Vacation
// If you want to use virtual vacation for you mailbox users set this to 'YES'.
// NOTE: Make sure that you install the vacation module. (See VIRTUAL-VACATION/)
$CONF['vacation'] = 'NO';
// This is the autoreply domain that you will need to set in your Postfix
// transport maps to handle virtual vacations. It does not need to be a
// real domain (i.e. you don't need to setup DNS for it).
$CONF['vacation_domain'] = 'autoreply.change-this-to-your.domain.tld';
// Vacation Control
// If you want users to take control of vacation set this to 'YES'.
$CONF['vacation_control'] ='YES';
// Vacation Control for admins
// Set to 'YES' if your domain admins should be able to edit user vacation.
$CONF['vacation_control_admin'] = 'YES';
// Alias Control
// Postfix Admin inserts an alias in the alias table for every mailbox it creates.
// The reason for this is that when you want catch-all and normal mailboxes
// to work you need to have the mailbox replicated in the alias table.
// If you want to take control of these aliases as well set this to 'YES'.
// Alias control for superadmins
$CONF['alias_control'] = 'NO';
// Alias Control for domain admins
$CONF['alias_control_admin'] = 'NO';
// Special Alias Control
// Set to 'NO' if your domain admins shouldn't be able to edit the default aliases
// as defined in $CONF['default_aliases']
$CONF['special_alias_control'] = 'NO';
// Alias Goto Field Limit
// Set the max number of entries that you would like to see
// in one 'goto' field in overview, the rest will be hidden and "[and X more...]" will be added.
// '0' means no limits.
$CONF['alias_goto_limit'] = '0';
// Alias Domains
// Alias domains allow to "mirror" aliases and mailboxes to another domain. This makes
// configuration easier if you need the same set of aliases on multiple domains, but
// also requires postfix to do more database queries.
// Note: If you update from 2.2.x or earlier, you will have to update your postfix configuration.
// Set to 'NO' to disable alias domains.
$CONF['alias_domain'] = 'YES';
// Backup
// If you don't want backup tab set this to 'NO';
$CONF['backup'] = 'YES';
// Send Mail
// If you don't want sendmail tab set this to 'NO';
$CONF['sendmail'] = 'YES';
// Logging
// If you don't want logging set this to 'NO';
$CONF['logging'] = 'YES';
// Fetchmail
// If you don't want fetchmail tab set this to 'NO';
$CONF['fetchmail'] = 'YES';
// fetchmail_extra_options allows users to specify any fetchmail options and any MDA
// (it will even accept 'rm -rf /' as MDA!)
// This should be set to NO, except if you *really* trust *all* your users.
$CONF['fetchmail_extra_options'] = 'NO';
// Header
$CONF['show_header_text'] = 'NO';
$CONF['header_text'] = ':: Postfix Admin ::';
// link to display under 'Main' menu when logged in as a user.
$CONF['user_footer_link'] = "[url]http://change-this-to-your.domain.tld/main[/url]";
// link to display under 'Main' menu when logged in as a user.
$CONF['user_footer_link'] = "[url]http://change-this-to-your.domain.tld/main[/url]";
// Footer
// Below information will be on all pages.
// If you don't want the footer information to appear set this to 'NO'.
$CONF['show_footer_text'] = 'YES';
$CONF['footer_text'] = 'Return to change-this-to-your.domain.tld';
$CONF['footer_link'] = '[url]http://change-this-to-your.domain.tld[/url]';
// Welcome Message
// This message is send to every newly created mailbox.
// Change the text between EOM.
$CONF['welcome_text'] = <<<EOM
Hi,
Welcome to your new account.
EOM;
// When creating mailboxes or aliases, check that the domain-part of the
// address is legal by performing a name server look-up.
$CONF['emailcheck_resolve_domain']='YES';
// Optional:
// color names available on most browsers
//set to YES to enable this feature
$CONF['show_status']='YES';
//display a guide to what these colors mean
$CONF['show_status_key']='YES';
// 'show_status_text' will be displayed with the background colors
// associated with each status, you can customize it here
$CONF['show_status_text']='&nbsp;&nbsp;';
// show_undeliverable is useful if most accounts are delivered to this
// postfix system. If many aliases and mailboxes are forwarded
// elsewhere, you will probably want to disable this.
$CONF['show_undeliverable']='NO';
$CONF['show_undeliverable_color']='tomato';
// mails to these domains will never be flagged as undeliverable
$CONF['show_undeliverable_exceptions']=array("unixmail.domain.ext","exchangeserver.domain.ext","gmail.com");
$CONF['show_popimap']='NO';
$CONF['show_popimap_color']='darkgrey';
// you can assign special colors to some domains. To do this,
// - add the domain to show_custom_domains
// - add the corresponding color to show_custom_colors
$CONF['show_custom_domains']=array("subdomain.domain.ext","domain2.ext");
$CONF['show_custom_colors']=array("lightgreen","lightblue");
// If you use a recipient_delimiter in your postfix config, you can also honor it when aliases are checked.
// Example: $CONF['recipient_delimiter'] = "+";
// Set to "" to disable this check.
$CONF['recipient_delimiter'] = "";
// Optional:
// Script to run after creation of mailboxes.
// Note that this may fail if PHP is run in "safe mode", or if
// operating system features (such as SELinux) or limitations
// prevent the web-server from executing external scripts.
// Parameters: (1) username (2) domain (3) maildir (4) quota
// $CONF['mailbox_postcreation_script']='sudo -u courier /usr/local/bin/postfixadmin-mailbox-postcreation.sh';
// Optional:
// Script to run after alteration of mailboxes.
// Note that this may fail if PHP is run in "safe mode", or if
// operating system features (such as SELinux) or limitations
// prevent the web-server from executing external scripts.
// Parameters: (1) username (2) domain (3) maildir (4) quota
// $CONF['mailbox_postedit_script']='sudo -u courier /usr/local/bin/postfixadmin-mailbox-postedit.sh';
// Optional:
// Script to run after deletion of mailboxes.
// Note that this may fail if PHP is run in "safe mode", or if
// operating system features (such as SELinux) or limitations
// prevent the web-server from executing external scripts.
// Parameters: (1) username (2) domain
// $CONF['mailbox_postdeletion_script']='sudo -u courier /usr/local/bin/postfixadmin-mailbox-postdeletion.sh';
// Optional:
// Script to run after creation of domains.
// Note that this may fail if PHP is run in "safe mode", or if
// operating system features (such as SELinux) or limitations
// prevent the web-server from executing external scripts.
// Parameters: (1) domain
//$CONF['domain_postcreation_script']='sudo -u courier /usr/local/bin/postfixadmin-domain-postcreation.sh';
// Optional:
// Script to run after deletion of domains.
// Note that this may fail if PHP is run in "safe mode", or if
// operating system features (such as SELinux) or limitations
// prevent the web-server from executing external scripts.
// Parameters: (1) domain
// $CONF['domain_postdeletion_script']='sudo -u courier /usr/local/bin/postfixadmin-domain-postdeletion.sh';
// Optional:
// Sub-folders which should automatically be created for new users.
// The sub-folders will also be subscribed to automatically.
// Will only work with IMAP server which implement sub-folders.
// Will not work with POP3.
// If you define create_mailbox_subdirs, then the
// create_mailbox_subdirs_host must also be defined.
// $CONF['create_mailbox_subdirs']=array('Spam');
// $CONF['create_mailbox_subdirs_host']='localhost';
// Specify '' for Dovecot and 'INBOX.' for Courier.
$CONF['create_mailbox_subdirs_prefix']='INBOX.';
// Optional:
// Show used quotas from Dovecot dictionary backend in virtual
// mailbox listing.
// See: DOCUMENTATION/DOVECOT.txt
// [url]http://wiki.dovecot.org/Quota/Dict[/url]
$CONF['used_quotas'] = 'NO';
// if you use dovecot >= 1.2, set this to yes.
// Note about dovecot config: table "quota" is for 1.0 & 1.1, table "quota2" is for dovecot 1.2 and newer
$CONF['new_quota_table'] = 'NO';
// Normally, the TCP port number does not have to be specified.
// $CONF['create_mailbox_subdirs_hostport']=143;
// If you have trouble connecting to the IMAP-server, then specify
// a value for $CONF['create_mailbox_subdirs_hostoptions']. These
// are some examples to experiment with:
// $CONF['create_mailbox_subdirs_hostoptions']=array('notls');
// $CONF['create_mailbox_subdirs_hostoptions']=array('novalidate-cert','norsh');
// See also the "Optional flags for names" table at
// [url]http://www.php.net/manual/en/function.imap-open.php[/url]
// Theme Config
// Specify your own logo and CSS file
$CONF['theme_logo'] = 'images/logo-default.png';
$CONF['theme_css'] = 'css/default.css';
// XMLRPC Interface.
// This should be only of use if you wish to use e.g the
// Postfixadmin-Squirrelmail package
// change to boolean true to enable xmlrpc
$CONF['xmlrpc_enabled'] = false;
// If you want to keep most settings at default values and/or want to ensure
// that future updates work without problems, you can use a separate config
// file (config.local.php) instead of editing this file and override some
// settings there.
if (file_exists(dirname(__FILE__) . '/config.local.php')) {
include(dirname(__FILE__) . '/config.local.php');
// END OF CONFIG FILE
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
Any suggestions on what I can try to get postfixadmin's setup.php to run will be much appreciated
Last edited by Ecky (2012-09-14 23:23:24)

Just worked out I had an errant dns sending me to a postfixadmin on another machine which I'd never used ... god do I feel stupid!
Now that the url is sendng me to the correct machine (and copy of postfixadmin) I'm getting a 403 permissions errors when I try to open setup.php, the config.inc.php I posted btw is the correct one
When following the arch wiki page I put a symlink called postfixadmin in /srv/http which points to /usr/share/webapps/postfixAdmin and then followed this part of the wiki to set permissions:
chown -R nobody:nobody /home/httpd/html/postfixadmin-2.1.0/
cd /home/httpd/html/postfixadmin/
chmod 640 *.php
cd /home/httpd/html/postfixadmin/admin/
chmod 640 *.php
cd /home/httpd/html/postfixadmin/images/
chmod 640 *.png
cd /home/httpd/html/postfixadmin/languages/
chmod 640 *.lang
cd /home/httpd/html/postfixadmin/templates/
chmod 640 *.php
cd /home/httpd/html/postfixadmin/users/
chmod 640 *.php
That's directly from the wiki, obviously in my case I changed the paths from /home/httpd/html to /srv//http so as to reflect my setup. Assuming the permissions on the wiki are correct I don't know why I get the 403 error when I try opening the setup.php file
Access forbidden!
You don't have permission to access the requested object. It is either read-protected or not readable by the server.
If you think this is a server error, please contact the webmaster.
Error 403
Any ideas?
Last edited by Ecky (2012-09-14 11:39:52)

Similar Messages

  • [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.

  • [SOLVED] Dropbox - can't run as normal user, but as root

    I have problems with running dropbox as normal user. I installed dropbox from AUR. It is successfully installed. But when I type in terminal dropboxd I get:
    WARNING: Cannot write to "/home/USERNAME/.dropbox/dropbox.pid"
    I can run dropboxd as root from terminal, but that way default Dropbox folder is created with root permissions in my /home directory. Is there some way to run dropbox as normal user and having Dropbox folder with permissions for my user?
    Last edited by archiebald (2010-02-18 22:50:33)

    Thanks toad and pickboy87 for advices. It's my fault, and lack of concetration after long hours of staring at screen.
    Solution is this:
    sudo chown -R USERNAME /home/USERNAME/.dropbox
    Btw. Ubuntu do all automatically, with Dropbox install, all I need is to follow on screen directions, and next, next.:lol:
    edit:
    everything works out of the box with dropbox install on other Arch machine i tried, probably I messed something with configuration somewhere before.
    Last edited by archiebald (2010-02-18 23:05:13)

  • How can I run local PHP websites on OS X Maverick?

    Should I install a web server? If yes, which one do you suggest?

    XAMPP seems to be better supported then MAMP. The problem with these standalone installers is that they literally include everything. If you actually use some of the more unusual modules, you may have problems if you want to deploy onto a shared web hosting service. They may not have those modules and it may not be possible to add them. Even if it is possible to add them, don't assume it will be easy. Those services run Linux and even in 2014, setting up something as basic as a web server may still require modifying source code in C. I kid you not.
    If you want to enable the built-in web server in OS X, I have a User Tip that explains how: https://discussions.apple.com/docs/DOC-3083

  • I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.  I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion.

    I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.
    I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion. I now want to fix the underlying problem.
    I'm not running any weird background processes and in my energy saver settings I've tagged "put the hard disk to sleep when possible:, "allow power button to put computer to sleep" and "automatically reduce brigthness". All pretty standard.
    Is there anyone who can give me some pointers ?

    Today I solved the same problem for my iMac running Snow Leopard. See https://discussions.apple.com/thread/3008791#15947706. The method may help you, too.
    For me it was the DynDNS Updater preventing my iMac from automatically entering sleep mode.
    To my knowledge the cause of this sleep problem can only be a peripheral device or a process. So I suggest to first unplug all peripherals and test whether that's the cause. If not, I suggest to terminate one process after another and to test automatic entering of sleep mode after each. Start with user processes; continue with system process if necessary.
    At least that's the way I found the offending process. Fortunately, I was able to change the configuration of that process to allow again automatic entering of sleep mode.
    Good luck!

  • [Solved]Can't run sublime-text

    Hey,
    maybe I am just stupid today but I can't run sublime-text.
    I just installed it from the AUR (no errors) and when I try to run it in my Terminal all I get is:
    [user@ArchPad ~]$ sublime-text
    bash: sublime-text: command not found
    Sublime seems to be installed correctly:
    [user@ArchPad ~]$ pacman -Qi sublime-text
    Name : sublime-text
    Version : 2.0.2-1
    Description : sophisticated text editor for code, html and prose
    Architecture : x86_64
    URL : [url]http://www.sublimetext.com/2[/url]
    Licenses : custom
    Groups : None
    Provides : None
    Depends On : libpng gtk2 xdg-utils desktop-file-utils
    Optional Deps : None
    Required By : None
    Optional For : None
    Conflicts With : None
    Replaces : None
    Installed Size : 14270.00 KiB
    Packager : Unknown Packager
    Build Date : Sun Oct 20 14:48:43 2013
    Install Date : Sun Oct 20 14:50:39 2013
    Install Reason : Explicitly installed
    Install Script : Yes
    Validated By : None
    I tried rebooting and reinstalling it but without any success.
    Ty for helping me out!
    Edit: I'm feeling really stupid now Thanks for your help!
    Last edited by 4814 (2013-10-20 13:45:23)

    https://wiki.archlinux.org/index.php/FA … tart_it.3F
    When posting configs, code or command output, please use [ code ] tags, not [ quote ] tags https://bbs.archlinux.org/help.php#bbcode
    like this

  • Can I stop Migration assistant and run setup instead?

    While running setup on my new iMac, I was prompted to transfer data from my old computer using Migration assistant.  I thought I was just transferring the user profiles but it seems to be transferring all the associated documents and downloads.  It's taking a long time and I'd rather stop the process and just setup the new computer from scratch. Is this possible? I dont actually want all the crap my kids downloaded over the last few years clogging up my new system ...

    If you were transferring files during the initial setup, you were using Setup Assistant. Migration Assistant can be run later; however, it will automatically create a new user account (because you've already set up an account during the setup), so you'll wind up with two accounts and duplicate folders which will take a while to sort.
    If you just want to drag over certain files, best to use target disk mode (you need a firewire cable):
    http://support.apple.com/kb/PH10725
    If you want to use that, you can just erase your drive using the recovery option and then download/reinstall your OS again.

  • Setup.exe "This app can't run on your PC"

    Hello, I've been trying to install Windows 8 on my macbook pro (mid 2012) using boot camp. I was using a windows 8 .iso file with a flash drive. I got Windows 8 installed and running, but when I tried to install the boot camp drivers off of the flash drive (setup.exe) I keep getting a fullscreen error message saying "This app can't run on your PC. To find a version for your PC, check with the software publisher." I've tried redownloading the windows support drivers to the flash drive but it didn't work. I'm having trouble finding any instance of this on all of the forums I checked and it is geting very frustrating. If anyone can help with this it would be much appreciated.

    I think I found the problem, I discovered that I had installed a 32 bit windows 8 instead of the 64 bit one. Based on some other threads I've seen I'm guessing this is the problem and will post again when I'm finished reinstalling the 64 bit version in case anyone is curious.

  • Just found out that I can't run microsoft word or adobe photo shop with Mavericks, any way to solve this?

    Just found out that I can't run microsoft word or adobe photo shop with Mavericks, is there a way to make this work?

    You must be using very old versions (Office 2004 or older, Photoshop CS2 or older).
    Upgrade to newer, or current versions.

  • Can you run dreamweaver 11.5 with older versions of php?

    I believe I understand from this group that dreamweaver 11.5 needs to run with php 5.3.  I have version 5.1.6.  Is there a way to edit a config file and run with an  older version of php?  And is so, could you please name the config file?
    Thanks!!

    So i have code that was stripped down to 3 print statements.  Inside the print statements there is some html code.  With the dreamweaver 8, i see the output from the html code only as expected.  When I run with dreamweaver 11.5, I see the html code and all the "; print \n that was also in the statements like it is not interpreting the php correctly.  I backed out to dreamweaver 8 and it works again.  I'm at a loss as to why it stopped working with the upgrade.  Here's the code that's run on submit from the html page with the php in bold.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/template.dwt" codeOutsideHTMLIsLocked="false" -->
    <!-- DW6 -->
    <head>
    <!-- Copyright 2005 Macromedia, Inc. All rights reserved. -->
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Texas Ethics Commission - Results of Query:</title>
    <!-- InstanceEndEditable -->
    <link rel="stylesheet" href="../3col_leftNav.css" type="text/css" />
    <link rel="stylesheet" href="../print.css" type="text/css" media="print" />
    <style type="text/css">
    <!--
    .style2 {
        font-size: 12px;
        color: #000000;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
    .style32 {
        color: #990000;
        font-weight: bold;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
    .style9 {
        color: #660000;
        font-family: "Times New Roman", Times, serif;
        font-size: small;
    .style25 {
        color: #000000;
        font-size: 12px;
        font-family: Arial, Helvetica, sans-serif;
    .style16 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        color: #990000;
        font-weight: bold;
    -->
    </style>
    <script language="JavaScript">
    <!--
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
    var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
       var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
       if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    <!-- InstanceBeginEditable name="head" --><!-- InstanceEndEditable -->
    </head>
    <body onLoad="MM_preloadImages('../images/texas_banner_r2_c2_f2.jpg','../images/texas_banner_r2 _c4_f2.jpg','../images/texas_banner_r2_c6_f2.jpg','../images/texas_banner_r2_c8_f2.jpg','. ./images/texas_banner_r2_c10_f2.jpg','../images/texas_banner_r2_c12_f2.jpg');">
    <div id="masthead">
    <!--masthead-->
    <table border="0" cellpadding="0" cellspacing="0" width="763">
    <!-- fwtable fwsrc="../images/texas_banner.png" fwbase="../images/texas_banner.gif" fwstyle="Dreamweaver" fwdocid = "1577967612" fwnested="0" -->
      <tr>
       <td><img src="../images/spacer.gif" width="178" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="86" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="12" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="91" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="7" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="85" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="9" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="71" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="8" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="59" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="10" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="42" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="105" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="1" height="1" border="0" alt=""></td>
      </tr>
      <tr>
       <td colspan="13"><img name="../images/texas_banner_r1_c1" src="../images/texas_banner_r1_c1.gif" width="763" height="117" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="1" height="117" border="0" alt=""></td>
      </tr>
      <tr>
       <td rowspan="3"><img name="../images/texas_banner_r2_c1" src="../images/texas_banner_r2_c1.gif" width="178" height="26" border="0" alt=""></td>
       <td rowspan="2"><a href="../tec/about.htm" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage('../images/texas_banner_r2_c2','','../images/texas_banner_r2_c2 _f2.gif',1);"><img name="../images/texas_banner_r2_c2" src="../images/texas_banner_r2_c2.gif" width="86" height="23" border="0" alt=""></a></td>
       <td rowspan="3"><img name="../images/texas_banner_r2_c3" src="../images/texas_banner_r2_c3.gif" width="12" height="26" border="0" alt=""></td>
       <td rowspan="2"><a href="../tec/whatsnew.htm" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage('../images/texas_banner_r2_c4','','../images/texas_banner_r2_c4 _f2.gif',1);"><img name="../images/texas_banner_r2_c4" src="../images/texas_banner_r2_c4.gif" width="91" height="23" border="0" alt=""></a></td>
       <td rowspan="3"><img name="../images/texas_banner_r2_c5" src="../images/texas_banner_r2_c5.gif" width="7" height="26" border="0" alt=""></td>
       <td rowspan="2"><a href="../tec/contact.htm" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage('../images/texas_banner_r2_c6','','../images/texas_banner_r2_c6 _f2.gif',1);"><img name="../images/texas_banner_r2_c6" src="../images/texas_banner_r2_c6.gif" width="85" height="23" border="0" alt=""></a></td>
       <td rowspan="3"><img name="../images/texas_banner_r2_c7" src="../images/texas_banner_r2_c7.gif" width="9" height="26" border="0" alt=""></td>
       <td rowspan="2"><a href="../tec/sitemap.htm" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage('../images/texas_banner_r2_c8','','../images/texas_banner_r2_c8 _f2.gif',1);"><img name="../images/texas_banner_r2_c8" src="../images/texas_banner_r2_c8.gif" width="71" height="23" border="0" alt=""></a></td>
       <td rowspan="3"><img name="../images/texas_banner_r2_c9" src="../images/texas_banner_r2_c9.gif" width="8" height="26" border="0" alt=""></td>
       <td rowspan="2"><a href="../tec/links.htm" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage('../images/texas_banner_r2_c10','','../images/texas_banner_r2_c 10_f2.gif',1);"><img name="../images/texas_banner_r2_c10" src="../images/texas_banner_r2_c10.gif" width="59" height="23" border="0" alt=""></a></td>
       <td colspan="3"><img name="../images/texas_banner_r2_c11" src="../images/texas_banner_r2_c11.gif" width="157" height="1" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="1" height="1" border="0" alt=""></td>
      </tr>
      <tr>
       <td rowspan="2"><img name="../images/texas_banner_r3_c11" src="../images/texas_banner_r3_c11.gif" width="10" height="25" border="0" alt=""></td>
       <td><a href="../tec/help.htm" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage('../images/texas_banner_r3_c12','','../images/texas_banner_r3_c 12_f2.gif',1);"><img name="../images/texas_banner_r3_c12" src="../images/texas_banner_r3_c12.gif" width="42" height="22" border="0" alt=""></a></td>
       <td rowspan="2"><img name="../images/texas_banner_r3_c13" src="../images/texas_banner_r3_c13.gif" width="105" height="25" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="1" height="22" border="0" alt=""></td>
      </tr>
      <tr>
       <td><img name="../images/texas_banner_r4_c2" src="../images/texas_banner_r4_c2.gif" width="86" height="3" border="0" alt=""></td>
       <td><img name="../images/texas_banner_r4_c4" src="../images/texas_banner_r4_c4.gif" width="91" height="3" border="0" alt=""></td>
       <td><img name="../images/texas_banner_r4_c6" src="../images/texas_banner_r4_c6.gif" width="85" height="3" border="0" alt=""></td>
       <td><img name="../images/texas_banner_r4_c8" src="../images/texas_banner_r4_c8.gif" width="71" height="3" border="0" alt=""></td>
       <td><img name="../images/texas_banner_r4_c10" src="../images/texas_banner_r4_c10.gif" width="59" height="3" border="0" alt=""></td>
       <td><img name="../images/texas_banner_r4_c12" src="../images/texas_banner_r4_c12.gif" width="42" height="3" border="0" alt=""></td>
       <td><img src="../images/spacer.gif" width="1" height="3" border="0" alt=""></td>
      </tr>
    </table>
    </div>
    <!--end masthead-->
    <div id="pagecell1">
    <!--pagecell-->
    <div id="navBar">   
    <!--navBar-->
    <div id="sectionLinks">   
    <!--sectionLinks-->
            <ul>
              <li>
                <div align="left"><a href = "../index.html"><span class="style2">Home</span></a></div>
              </li><li>
                  <div align="left"><a href = "../main/search.htm"><span class="style2">Search Campaign Finance and Lobby Reports</span></a></div>
              </li>
              <li>
                <div align="left"><a href = "../main/file.htm"><span class="style2">File Reports Electronically</span></a></div>
              </li>
              <li>
              <div align="left"><a href="../main/forms.htm"><span class="style2">Forms and Instructions </span></a></div>
              </li>
              <li>
              <div align="left"><a href="../main/research.htm"><span class="style2">Opinions, Statutes
                    &amp; Rules </span></a></div>
              </li>
              <li>
              <div align="left"><a href="../main/guides.htm"><span class="style2">Publications and Guides</span></a></div>
              </li>         
              <li>           
                <div align="left"><a href="../main/training.htm"><span class="style2">Online Ethics Training </span></a>
                </div><hr />
              </li><li><div align="center">
            <span class="style32">Filing Information For:</span>
            <table width="78%" border="0" cellpadding="0">
              <tr>
                <th scope="row"><div align="left"><a href="../main/coh.htm"><span class="style25">Candidates and Officeholders</span></a></div></th>
              </tr>
              <tr>
                <th scope="row"><div align="left"><a href="../main/lobbyist.htm"><span class="style25">Lobbyists</span></a></div></th>
              </tr>
              <tr>
                <th scope="row"><div align="left"><a href="../filinginfo/pfsforms&amp;ins.html"><span class="style25">Personal Financial Statement Filers</span></a></div></th>
              </tr>
              <tr>
                <th scope="row"><div align="left"><a href = "../main/pac.htm"><span class="style25">Political Committees</span></a></div></th>
              </tr>
              <tr>
                <th scope="row"><div align="left"><a href = "../main/party.htm"><span class="style25">Political Parties</span></a></div></th>
              </tr>
              <tr>
                <th scope="row"><div align="left"><a href = "../main/local.htm"><span class="style25">Local Filers and Filing Authorities</span></a></div></th>
              </tr>
              <tr>
                <th scope="row"><div align="left"><a href = "../main/officers.htm"><span class="style25">State Officers/ Employees </span></a></div></th>
              </tr>
              <tr>
                <th scope="row"><div align="left"><a href = "../main/other.htm"><span class="style25">Other Filers</span></a> </div></th>
              </tr>
            </table>
            </div></li>
              <li>
                <div align="left"><a href="../main/enforcement.htm"><span class="style2">Enforcement/Sworn Complaints</span> </a></div>
              </li>
            </ul>       
      </div>
      <!--end sectionLinks--> 
    </div>
    <!--end navBar-->
    <div id="content">
    <!-- InstanceBeginEditable name="EditRegion3" -->
    <?php
       print "<P align=\"left\"><strong><a href=\"cesearchSimple.html\">New Simple Search</a></strong>";
       print "<br><strong><a href=\"cesearchAdvanced.html\">New Advanced Search</a></strong>\n";
       print "<br> </P>\n";
    ?>
    <!-- InstanceEndEditable -->    </div>
    <div id="siteInfo">
      <div align="center"><span class="style9"><a href="http://www.texas.gov">Texas.gov </a>|
          <a href="http://www.texashomelandsecurity.com/">Texas Homeland Security</a> |
          <a href="http://www.tsl.state.tx.us/trail">Statewide Search</a> |
          <a href="../tec/policies.htm">Site Policies</a></span>  </div>
      <!--end siteInfo-->
    </div>
    <!--end content-->
    </div>
    <!--end pagecell1-->
    <br>
    </body>
    <!-- InstanceEnd --></html>

  • [Solved] Installed grsecurity, can't run shell scripts. :|

    Fixed, it was TPE.
    For anyone else with this issue, either add your users to the TPE trusted group, or disable TPE altogether.
    https://wiki.gentoo.org/wiki/Hardened/G … _Execution
    Last edited by TheReverend403 (2014-04-14 13:05:28)

    Please remember to mark the thread as solved https://bbs.archlinux.org/viewtopic.php?id=130309

  • Downloaded Discoverer4.1: can't install (setup.exe won't run)

    Hi,
    Just downloaded Discoverer 4.1 (admin4133f.zip) and unzip files in directory c:\temp (along with Oracle Forms and Report and Oracle 8i zip files) but whenever i run setup.exe nothing happens.
    I've already got Oracle Personal Edition 8i and Developer 6i installed in my pc.
    thanks

    I've already got Oracle Personal Edition 8i and Developer 6i installed in my pc.
    ^^^^^^^^^^^^^^
    I've eccounted the similar installation problem - Oracle Discoverer installation at the OracleHome that already has Oracle Reports lead to setup.exe fail. This is noted since Discoverer 3.1.+ and Reports 3+
    Try to install Discoverer into another OracleHome.
    If installing in the same Home - Discoverer must be the first, Reports - the second...
    (By the way - watch for the 9iAS EE installation - you'll see Discoverer goes first :) )

  • URGENT PLEASE:How can I run a a class file on the Apache server?

    Hi Guys and Gurus,
    I am seeking some favor all of experienced gurus, i.e.
    How can I run a a class file on the Apache server? Can I run through an Applet?
    How can I set Environment variables in Windows2000 Professional Environment?
    Actually, I want to extract some records from a MySQL Database running on Apache Server. I wrote a program just to select the columns and show them. It is now a Class file, Now how can I run this class file from the Server???
    The code is here
    import java.sql.*;
    public class RecordShow {
    public static void main(String args[]) {
    String url = "jdbc:mysql://localhost/myhost";
    Connection con;
    String query = "select mytable.column," +
    "from mytable " +
    "where mytable.column = 1";
    Statement stmt;
    try {
    Class.forName("com.mysql.jdbc.Driver");
    } catch(java.lang.ClassNotFoundException e) {
    System.err.print("ClassNotFoundException: ");
    System.err.println(e.getMessage());
    try {
    con = DriverManager.getConnection(url,
    "myuser", "mypassword");
    stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery(query);
    ResultSetMetaData rsmd = rs.getMetaData();
    int numberOfColumns = rsmd.getColumnCount();
    int rowCount = 1;
    while (rs.next()) {
    System.out.println("Row " + rowCount + ": ");
    for (int i = 1; i <= numberOfColumns; i++) {
    System.out.print(" Column " + i + ": ");
    System.out.println(rs.getString(i));
    System.out.println("");
    rowCount++;
    stmt.close();
    con.close();
    } catch(SQLException ex) {
    System.err.print("SQLException: ");
    System.err.println(ex.getMessage());
    Please advise... THANKS
    VJ

    Ehm, I wasn't referring to you at all... read up,
    there's a comment by jschell saying that CGI might be
    easier/better for his purposes.
    Yep.
    I know PHP/Perl/whatever might be easier for some
    purposes, but only if you happen to know them and want
    to/are able to use them. Ok. But you aren't the one asking the question are you. And the person who asked the question seems to have absolutely no familiarity with Apache or applets.
    So whatever they do they are going to have to learn a lot.
    And that does indeed suggest that in all likelyhood they have not investigated the alternatives.
    And for the vast majority of internet applications, especially with smaller projects (obvious this person is not working with a large team), using perl, or something besides java, is going to be the best business solution. It is simpler, and more secure (probably due to the fact that it is simpler.)
    Since this is a Java forum, I
    answer under the assumption that people have made a
    choice one way or another to use a Java solution to
    their problem, so I try to solve it in Java first, and
    only when that fails (very seldom) do I turn to other
    solutions.You approach problems by arbritrarily deciding to try to solve it in java first and only if you fail do you then look to other solutions?
    My first step is to try to figure out which of the various avenues is going to cost less. (And a secondary, but non-trivial concern, is then to convince the customer that just because they have heard of a buzz word like 'enterprise bean' that it doesn't mean that is a cost effective solution.) We must come from different worlds.

  • New 2015 MacBook Pro 13 Iris 6100 - can it run single 5k display?

    Hello.  I'm thinking about buying the new 2015 MacBook Pro 13-in with Retina Display with the new Intel Iris 6100 and pairing it with a Dell UP2715K 5k monitor to run 2560x1440 in retina mode.
    The specs on the Apple.com website for the new MacBook say the following:
    Dual display and video mirroring: Simultaneously supports full native resolution on the built-in display and up to 3840 by 2160 pixels on up to two external displays, both at millions of colors.
    Although there's no mention of 5120 by 2880 support it can successfully run two 4k monitors simultaneously, which I would think is more demanding than a single 5k monitor.
    Can anyone offer any insight?
    Thank you.

    Allright, it took me some time to figure out why the write and read speeds were lagging compared to numerous speed tests of rMBP 13" of same year and build.
    During the setup process, when starting up your new rMBP the first time, you'll be asked whether you want to activate FileVault. I activated it.
    As soon as you turn off FileVault and restart your mac and do the speedtest again, it should give better results. As shown in the screenshot you can see that my write and read speeds are now on par with the other speedtests on the internet. Both 1080p50 and 1080p59.94 formats at 12 Bit RGB are now checked.
    Turning off FileVault solved this issue.
    P.S. the whole thing about the NVMExpress only applies to the early 2015 12" MacBook. http://www.macrumors.com/2015/04/11/nvme-mac-os-x/

  • How can we run and control live images form a camera plz help

    hi
    i want to now how can we run and control live images form a camera on to a aaplet.what technologyi used for this project . u can check the url http://www.jal.co.jp/en/live/ as a demo.plz can anyone guide me.how to start and which technologies to use,
    regards
    sheetal

    Hi,
    You can try a package named: JTwain, which is available at http://asprise.com/product/jtwain.
    JTwain supports all kinds of digital cameras and scanners. You can use Java to access, contorl digital cameras and scanners, and of course, to acquire images with flexible settings.
    The developers' guide is available @ http://asprise.com/product/jtwain/devGuide.php
    In the simplest case, one line of Java code can solve your problem.
    Good luck!

Maybe you are looking for