Apache user dir (13)Permission denied: access to /~simha/ denied

I am getting Access forbidden! when I am trying to connect to http://localhost/~simha/ where simha is my user name
my /var/log/httpd/error_log says
[Thu Jul 08 17:44:30 2010] [error] [client 127.0.0.1] (13)Permission denied: access to /~simha/ denied
I tried a lot and gave up. Can any one help me in this in regard
The following are the permisions of my home dir simha and public_html
drwx--x--x 130 simha users 16384 Jul 8 17:04 simha
drwxr-xr-x 2 simha users 4096 Jul 8 17:02 public_html
The following are my httpd.conf
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "/var/log/httpd/foo_log"
# with ServerRoot set to "/etc/httpd" will be interpreted by the
# server as "/etc/httpd//var/log/httpd/foo_log".
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
# Do not add a slash at the end of the directory path. If you point
# ServerRoot at a non-local disk, be sure to point the LockFile directive
# at a local disk. If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.
ServerRoot "/etc/httpd"
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#Listen 12.34.56.78:80
Listen 80
# Dynamic Shared Object (DSO) Support
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
# Example:
# LoadModule foo_module modules/mod_foo.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_anon_module modules/mod_authn_anon.so
LoadModule authn_dbd_module modules/mod_authn_dbd.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule cache_module modules/mod_cache.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule dbd_module modules/mod_dbd.so
LoadModule dumpio_module modules/mod_dumpio.so
LoadModule ext_filter_module modules/mod_ext_filter.so
LoadModule include_module modules/mod_include.so
LoadModule filter_module modules/mod_filter.so
LoadModule substitute_module modules/mod_substitute.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule log_forensic_module modules/mod_log_forensic.so
LoadModule logio_module modules/mod_logio.so
LoadModule env_module modules/mod_env.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule expires_module modules/mod_expires.so
LoadModule headers_module modules/mod_headers.so
LoadModule ident_module modules/mod_ident.so
LoadModule usertrack_module modules/mod_usertrack.so
#LoadModule unique_id_module modules/mod_unique_id.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule version_module modules/mod_version.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule ssl_module modules/mod_ssl.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule asis_module modules/mod_asis.so
LoadModule info_module modules/mod_info.so
LoadModule suexec_module modules/mod_suexec.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule cgid_module modules/mod_cgid.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule imagemap_module modules/mod_imagemap.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule php5_module modules/libphp5.so
<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_module>
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
User http
Group http
</IfModule>
</IfModule>
# 'Main' server configuration
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition. These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. [email protected]
ServerAdmin [email protected]
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
# If your host doesn't have a registered DNS name, enter its IP address here.
#ServerName www.example.com:80
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
DocumentRoot "/srv/http"
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
# First, we configure the "default" to be a very restrictive set of
# features.
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
# This should be changed to whatever you set DocumentRoot to.
<Directory "/srv/http">
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
Options Indexes FollowSymLinks includes
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
AllowOverride None
# Controls who can get stuff from this server.
Order allow,deny
Allow from all
</Directory>
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
ErrorLog "/var/log/httpd/error_log"
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
<IfModule log_config_module>
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
CustomLog "/var/log/httpd/access_log" common
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#CustomLog "/var/log/httpd/access_log" combined
</IfModule>
<IfModule alias_module>
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client. The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
</IfModule>
<IfModule cgid_module>
# ScriptSock: On threaded servers, designate the path to the UNIX
# socket used to communicate with the CGI daemon of mod_cgid.
#Scriptsock /var/run/httpd/cgisock
</IfModule>
# "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
<Directory "/srv/http/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
# DefaultType: the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
DefaultType text/plain
<IfModule mime_module>
# TypesConfig points to the file containing the list of mappings from
# filename extension to MIME-type.
TypesConfig conf/mime.types
# AddType allows you to add to or override the MIME configuration
# file specified in TypesConfig for specific file types.
#AddType application/x-gzip .tgz
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#AddHandler cgi-script .cgi
# For type maps (negotiated resources):
#AddHandler type-map var
# Filters allow you to process content before it is sent to the client.
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml
</IfModule>
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#MIMEMagicFile conf/magic
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall is used to deliver
# files. This usually improves server performance, but must
# be turned off when serving from networked-mounted
# filesystems or if support for these functions is otherwise
# broken on your system.
#EnableMMAP off
#EnableSendfile off
# Supplemental configuration
# The configuration files in the conf/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary.
# Server-pool management (MPM specific)
#Include conf/extra/httpd-mpm.conf
# Multi-language error messages
Include conf/extra/httpd-multilang-errordoc.conf
# Fancy directory listings
Include conf/extra/httpd-autoindex.conf
# Language settings
Include conf/extra/httpd-languages.conf
# User home directories
Include conf/extra/httpd-userdir.conf
# Real-time info on requests and configuration
#Include conf/extra/httpd-info.conf
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
# Local access to the Apache HTTP Server Manual
#Include conf/extra/httpd-manual.conf
# Distributed authoring and versioning (WebDAV)
#Include conf/extra/httpd-dav.conf
# phpMyAdmin configuration
Include conf/extra/httpd-phpmyadmin.conf
# Various default settings
Include conf/extra/httpd-default.conf
# Secure (SSL/TLS) connections
#Include conf/extra/httpd-ssl.conf
Include conf/extra/php5_module.conf
# Note: The following must must be present to support
# starting without SSL on platforms with no /dev/random equivalent
# but a statically compiled-in mod_ssl.
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
The following are my /etc/httpd/conf/extra/httpd-userdir.conf
# Settings for user home directories
# Required module: mod_userdir
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received. Note that you must also set
# the default access control for these directories, as in the example below.
UserDir public_html
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
<Directory /home/*/public_html>
AllowOverride FileInfo AuthConfig Limit Indexes
Options MultiViews Indexes SymLinksIfOwnerMatch ExecCGI
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
I also tried adding user to the group http. BUt nothing is working.

Do you have [or more like lack] +x on the user folder?

Similar Messages

  • Job scheduling failed because the user has no permission to access this rep

    Hi. I've OBIP 10.1.3.4.1.
    When I launch a print with the scheduler I see this error:
    oracle.apps.xdo.servlet.scheduler.ProcessingException: Job scheduling failed because the user has no permission to access this report. [REPORT_URL]=[folderreport/report/report.xdo], [USERNAME]=[administrator]
         at oracle.apps.xdo.servlet.ui.scheduler.SchedulerServlet.scheduleJob(SchedulerServlet.java:1140)
         at oracle.apps.xdo.servlet.ui.scheduler.SchedulerServlet.doPost(SchedulerServlet.java:295)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:100)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    In this env. I've a LDAP Security Model and all the report and all the users work.

    Please check whether you have assigned below responsibility to the user trying to schedule report.
    XMLP_SCHEDULER

  • [Solved] Apache user dir access forbidded

    I am getting Access forbidden! when I am trying to connect to http://localhost/~simha/ where simha is my user name
    my /var/log/httpd/error_log says
    [Thu Jul 08 17:44:30 2010] [error] [client 127.0.0.1] (13)Permission denied: access to /~simha/ denied
    I tried a lot and gave up. Can any one help me in this in regard
    The following are the permisions of my home dir simha and public_html
    drwx--x--x 130 simha users 16384 Jul 8 17:04 simha
    drwxr-xr-x 2 simha users 4096 Jul 8 17:02 public_html
    The following are my httpd.conf
    # This is the main Apache HTTP server configuration file. It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
    # In particular, see
    # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
    # for a discussion of each configuration directive.
    # Do NOT simply read the instructions in here without understanding
    # what they do. They're here only as hints or reminders. If you are unsure
    # consult the online docs. You have been warned.
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path. If the filenames do *not* begin
    # with "/", the value of ServerRoot is prepended -- so "/var/log/httpd/foo_log"
    # with ServerRoot set to "/etc/httpd" will be interpreted by the
    # server as "/etc/httpd//var/log/httpd/foo_log".
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # Do not add a slash at the end of the directory path. If you point
    # ServerRoot at a non-local disk, be sure to point the LockFile directive
    # at a local disk. If you wish to share the same ServerRoot for multiple
    # httpd daemons, you will need to change at least LockFile and PidFile.
    ServerRoot "/etc/httpd"
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    # Change this to Listen on specific IP addresses as shown below to
    # prevent Apache from glomming onto all bound IP addresses.
    #Listen 12.34.56.78:80
    Listen 80
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available _before_ they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    LoadModule authn_file_module modules/mod_authn_file.so
    LoadModule authn_dbm_module modules/mod_authn_dbm.so
    LoadModule authn_anon_module modules/mod_authn_anon.so
    LoadModule authn_dbd_module modules/mod_authn_dbd.so
    LoadModule authn_default_module modules/mod_authn_default.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_user_module modules/mod_authz_user.so
    LoadModule authz_dbm_module modules/mod_authz_dbm.so
    LoadModule authz_owner_module modules/mod_authz_owner.so
    LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    LoadModule authz_default_module modules/mod_authz_default.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    LoadModule auth_digest_module modules/mod_auth_digest.so
    LoadModule file_cache_module modules/mod_file_cache.so
    LoadModule cache_module modules/mod_cache.so
    LoadModule disk_cache_module modules/mod_disk_cache.so
    LoadModule mem_cache_module modules/mod_mem_cache.so
    LoadModule dbd_module modules/mod_dbd.so
    LoadModule dumpio_module modules/mod_dumpio.so
    LoadModule ext_filter_module modules/mod_ext_filter.so
    LoadModule include_module modules/mod_include.so
    LoadModule filter_module modules/mod_filter.so
    LoadModule substitute_module modules/mod_substitute.so
    LoadModule deflate_module modules/mod_deflate.so
    LoadModule ldap_module modules/mod_ldap.so
    LoadModule log_config_module modules/mod_log_config.so
    LoadModule log_forensic_module modules/mod_log_forensic.so
    LoadModule logio_module modules/mod_logio.so
    LoadModule env_module modules/mod_env.so
    LoadModule mime_magic_module modules/mod_mime_magic.so
    LoadModule cern_meta_module modules/mod_cern_meta.so
    LoadModule expires_module modules/mod_expires.so
    LoadModule headers_module modules/mod_headers.so
    LoadModule ident_module modules/mod_ident.so
    LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    LoadModule setenvif_module modules/mod_setenvif.so
    LoadModule version_module modules/mod_version.so
    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_connect_module modules/mod_proxy_connect.so
    LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    LoadModule ssl_module modules/mod_ssl.so
    LoadModule mime_module modules/mod_mime.so
    LoadModule dav_module modules/mod_dav.so
    LoadModule status_module modules/mod_status.so
    LoadModule autoindex_module modules/mod_autoindex.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule info_module modules/mod_info.so
    LoadModule suexec_module modules/mod_suexec.so
    LoadModule cgi_module modules/mod_cgi.so
    LoadModule cgid_module modules/mod_cgid.so
    LoadModule dav_fs_module modules/mod_dav_fs.so
    LoadModule vhost_alias_module modules/mod_vhost_alias.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule dir_module modules/mod_dir.so
    LoadModule imagemap_module modules/mod_imagemap.so
    LoadModule actions_module modules/mod_actions.so
    LoadModule speling_module modules/mod_speling.so
    LoadModule userdir_module modules/mod_userdir.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule rewrite_module modules/mod_rewrite.so
    LoadModule php5_module modules/libphp5.so
    <IfModule !mpm_netware_module>
    <IfModule !mpm_winnt_module>
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch.
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # It is usually good practice to create a dedicated user and group for
    # running httpd, as with most system services.
    User http
    Group http
    </IfModule>
    </IfModule>
    # 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition. These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed. This address appears on some server-generated pages, such
    # as error documents. e.g. [email protected]
    ServerAdmin [email protected]
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    #ServerName www.example.com:80
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "/srv/http"
    # Each directory to which Apache has access can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories).
    # First, we configure the "default" to be a very restrictive set of
    # features.
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # This should be changed to whatever you set DocumentRoot to.
    <Directory "/srv/http">
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    # The Options directive is both complicated and important. Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    Options Indexes FollowSymLinks includes
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    # Options FileInfo AuthConfig Limit
    AllowOverride None
    # Controls who can get stuff from this server.
    Order allow,deny
    Allow from all
    </Directory>
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    <IfModule dir_module>
    DirectoryIndex index.html
    </IfModule>
    # The following lines prevent .htaccess and .htpasswd files from being
    # viewed by Web clients.
    <FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
    </FilesMatch>
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here. If you *do* define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog "/var/log/httpd/error_log"
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    <IfModule log_config_module>
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
    # You need to enable mod_logio.c to use %I and %O
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    CustomLog "/var/log/httpd/access_log" common
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog "/var/log/httpd/access_log" combined
    </IfModule>
    <IfModule alias_module>
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL. You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client. The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
    </IfModule>
    <IfModule cgid_module>
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #Scriptsock /var/run/httpd/cgisock
    </IfModule>
    # "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "/srv/http/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    # DefaultType: the default MIME type the server will use for a document
    # if it cannot otherwise determine one, such as from filename extensions.
    # If your server contains mostly text or HTML documents, "text/plain" is
    # a good value. If most of your content is binary, such as applications
    # or images, you may want to use "application/octet-stream" instead to
    # keep browsers from trying to display binary files as though they are
    # text.
    DefaultType text/plain
    <IfModule mime_module>
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    TypesConfig conf/mime.types
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #AddType application/x-gzip .tgz
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #AddHandler cgi-script .cgi
    # For type maps (negotiated resources):
    #AddHandler type-map var
    # Filters allow you to process content before it is sent to the client.
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
    </IfModule>
    # The mod_mime_magic module allows the server to use various hints from the
    # contents of the file itself to determine its type. The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    #MIMEMagicFile conf/magic
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://www.example.com/subscription_info.html
    # EnableMMAP and EnableSendfile: On systems that support it,
    # memory-mapping or the sendfile syscall is used to deliver
    # files. This usually improves server performance, but must
    # be turned off when serving from networked-mounted
    # filesystems or if support for these functions is otherwise
    # broken on your system.
    #EnableMMAP off
    #EnableSendfile off
    # Supplemental configuration
    # The configuration files in the conf/extra/ directory can be
    # included to add extra features or to modify the default configuration of
    # the server, or you may simply copy their contents here and change as
    # necessary.
    # Server-pool management (MPM specific)
    #Include conf/extra/httpd-mpm.conf
    # Multi-language error messages
    Include conf/extra/httpd-multilang-errordoc.conf
    # Fancy directory listings
    Include conf/extra/httpd-autoindex.conf
    # Language settings
    Include conf/extra/httpd-languages.conf
    # User home directories
    Include conf/extra/httpd-userdir.conf
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
    # phpMyAdmin configuration
    Include conf/extra/httpd-phpmyadmin.conf
    # Various default settings
    Include conf/extra/httpd-default.conf
    # Secure (SSL/TLS) connections
    #Include conf/extra/httpd-ssl.conf
    Include conf/extra/php5_module.conf
    # Note: The following must must be present to support
    # starting without SSL on platforms with no /dev/random equivalent
    # but a statically compiled-in mod_ssl.
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>
    The following are my /etc/httpd/conf/extra/httpd-userdir.conf
    # Settings for user home directories
    # Required module: mod_userdir
    # UserDir: The name of the directory that is appended onto a user's home
    # directory if a ~user request is received. Note that you must also set
    # the default access control for these directories, as in the example below.
    UserDir public_html
    # Control access to UserDir directories. The following is an example
    # for a site where these directories are restricted to read-only.
    <Directory /home/*/public_html>
    AllowOverride FileInfo AuthConfig Limit Indexes
    Options MultiViews Indexes SymLinksIfOwnerMatch ExecCGI
    <Limit GET POST OPTIONS PROPFIND>
    Order allow,deny
    Allow from all
    </Limit>
    <LimitExcept GET POST OPTIONS PROPFIND>
    Order deny,allow
    Deny from all
    </LimitExcept>
    </Directory>
    I also tried adding user to the group http. BUt nothing is working.
    Last edited by sant527 (2010-07-12 04:23:51)

    I finally found the solution.
    http://ubuntuforums.org/showthread.php?t=1476965&page=1
    I found that even my /home directory permisions also to be changed to by chmod 711
    the following shoul be final permissions for the directories of /home /home/user and public_html to work
    $ ls -ld /home ~ public_html
    drwx--x--x 3 root users 4096 Nov 1 2009 /home
    drwx--x--x 130 simha users 16384 Jul 12 09:33 /home/simha
    drwxr-xr-x 2 simha users 4096 Jul 8 17:02 public_html
    I think in the wiki of LAMP should also mention of changing the permission of /home directory.
    $ chmod o+x ~
    $ chmod o+x ~/public_html
    additionally
    $sudo chmod o+x /home

  • New to Netweaver : User has no permission to access SLD.

    Hello friends,
    I am developing a application using webdynpro using JAVA.
    I installed J2EE engine with SAP netweaver Developer Studio. I am facing problem with following Prerequisites:
    "The SAP System Landscape Directory (SLD) and the SLD bridge are configured and running."
    I checked http://sparrow:50000/sld but it gives.....error...
    403   Forbidden
    You are not authorized to view the requested resource.
    So, anybody can tell me how to give permission to username?
    where to give permission and how to open it? Please let me know in detail. (Directory structure/Path)
    I am a newbie in SNDS.
    Regards
    Ronny

    Hi Ronny,
    In order to access SLD, you should have SLD roles like SAP_SLD_GUEST etc.
    Check this [link|http://help.sap.com/saphelp_nwce711/helpdata/en/48/b7b38fecf26745e10000000a421937/content.htm]
    Thanks
    Sunny

  • [SOLVED]xinit as user - dri permission denied

    I've tried to launch a game in a separate X instance with:
    xinit /usr/bin/ufo -- :1.0 vt2
    xinit /usr/bin/ufo -- :1
    xinit /usr/bin/env ufo -- :1
    etc
    but I get very slow rendering and strange output.
    X.Org X Server 1.15.0
    Release Date: 2013-12-27
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.12.5-1-ARCH i686
    Current Operating System: Linux archdesk 3.12.9-1-ARCH #1 SMP PREEMPT Sun Jan 26 09:15:23 CET 2014 i686
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=99a6d650-3886-4252-8ded-db4a892400e2 rw quiet
    Build Date: 09 January 2014 09:32:33AM
    Current version of pixman: 0.32.4
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.1.log", Time: Sun Jan 26 15:16:22 2014
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    setversion 1.4 failed: Permission denied
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension Present
    Initializing built-in extension DRI3
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    (II) [KMS] Kernel modesetting enabled.
    setversion 1.4 failed: Permission denied
    ---- endianness initialization -----
    found little endian system
    ---- filesystem initialization -----
    Adding game dir: /usr/share/ufoai/base
    Added packfile /usr/share/ufoai/base/0base.pk3 (15 files)
    Added packfile /usr/share/ufoai/base/0maps.pk3 (932 files)
    Added packfile /usr/share/ufoai/base/0materials.pk3 (54 files)
    Added packfile /usr/share/ufoai/base/0media.pk3 (19 files)
    Added packfile /usr/share/ufoai/base/0models.pk3 (2801 files)
    Added packfile /usr/share/ufoai/base/0music.pk3 (64 files)
    Added packfile /usr/share/ufoai/base/0pics.pk3 (1059 files)
    Added packfile /usr/share/ufoai/base/0shaders.pk3 (37 files)
    Added packfile /usr/share/ufoai/base/0snd.pk3 (362 files)
    Added packfile /usr/share/ufoai/base/0textures.pk3 (2721 files)
    Added packfile /usr/share/ufoai/base/0ufos.pk3 (137 files)
    Could not load '/usr/share/ufoai/base/0videos.pk3'
    Adding game dir: ./base
    Adding game dir: /home/dok/.ufoai/2.6-dev/base
    using /home/dok/.ufoai/2.6-dev/base for writing
    executing filesystem.cfg
    executing default.cfg
    executing config.cfg
    ----- network initialization -------
    libcurl/7.34.0 OpenSSL/1.0.1f zlib/1.2.8 libssh2/1.4.3 initialized.
    ------ server initialization -------
    added 12 maps to the mapcycle
    ----- console initialization -------
    Console initialized.
    ------- video initialization -------
    libGL error: failed to load driver: r300
    libGL error: Try again with LIBGL_DEBUG=verbose for more details.
    SDL version: 2.0.1
    I: setting mode 21
    I: disable multisample buffers
    I: set swap control to 0
    available driver: x11
    available driver: dummy
    current desktop mode: 1600x900@60Hz (SDL_PIXELFORMAT_RGB888)
    libGL error: failed to load driver: r300
    libGL error: Try again with LIBGL_DEBUG=verbose for more details.
    driver: x11
    found 1 display(s)
    I: 1440x900 (fullscreen: yes)
    I: got 0 bits of stencil
    I: got 24 bits of depth buffer
    I: got double buffer
    I: got 8 bits for red
    I: got 8 bits for green
    I: got 8 bits for blue
    I: got 0 bits for alpha
    I: got multisample disabled
    I: got 0 multisample buffers
    GL_VENDOR: VMware, Inc.
    GL_RENDERER: Gallium 0.4 on llvmpipe (LLVM 3.4, 128 bits)
    GL_VERSION: 2.1 Mesa 10.0.2
    GL_EXTENSIONS: GL_ARB_multisample GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_minmax
    GL_EXT_blend_subtract GL_EXT_copy_texture GL_EXT_polygon_offset GL_EXT_subtexture GL_EXT_texture_object
    GL_EXT_vertex_array GL_EXT_compiled_vertex_array GL_EXT_texture GL_EXT_texture3D GL_IBM_rasterpos_clip
    GL_ARB_point_parameters GL_EXT_draw_range_elements GL_EXT_packed_pixels GL_EXT_point_parameters
    GL_EXT_rescale_normal GL_EXT_separate_specular_color GL_EXT_texture_edge_clamp GL_SGIS_generate_mipmap
    GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_ARB_framebuffer_sRGB
    GL_ARB_multitexture GL_EXT_framebuffer_sRGB GL_IBM_multimode_draw_arrays GL_IBM_texture_mirrored_repeat
    GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_transpose_matrix GL_EXT_blend_func_separate GL_EXT_fog_coord
    GL_EXT_multi_draw_arrays GL_EXT_secondary_color GL_EXT_texture_env_add GL_EXT_texture_lod_bias
    GL_INGR_blend_func_separate GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texgen_reflection
    GL_NV_texture_env_combine4 GL_S3_s3tc GL_SUN_multi_draw_arrays GL_ARB_texture_border_clamp
    GL_ARB_texture_compression GL_EXT_framebuffer_object GL_EXT_texture_compression_s3tc GL_EXT_texture_env_combine
    GL_EXT_texture_env_dot3 GL_MESA_window_pos GL_NV_packed_depth_stencil GL_NV_texture_rectangle GL_ARB_depth_texture
    GL_ARB_occlusion_query GL_ARB_shadow GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3
    GL_ARB_texture_mirrored_repeat GL_ARB_window_pos GL_EXT_stencil_two_side GL_EXT_texture_cube_map GL_NV_depth_clamp
    GL_NV_fog_distance GL_APPLE_packed_pixels GL_APPLE_vertex_array_object GL_ARB_draw_buffers GL_ARB_fragment_program
    GL_ARB_fragment_shader GL_ARB_shader_objects GL_ARB_vertex_program GL_ARB_vertex_shader GL_ATI_draw_buffers
    GL_ATI_texture_env_combine3 GL_ATI_texture_float GL_EXT_shadow_funcs GL_EXT_stencil_wrap GL_MESA_pack_invert
    GL_MESA_ycbcr_texture GL_NV_primitive_restart GL_ARB_depth_clamp GL_ARB_fragment_program_shadow
    GL_ARB_half_float_pixel GL_ARB_occlusion_query2 GL_ARB_point_sprite GL_ARB_shading_language_100 GL_ARB_sync
    GL_ARB_texture_non_power_of_two GL_ARB_vertex_buffer_object GL_ATI_blend_equation_separate
    GL_EXT_blend_equation_separate GL_OES_read_format GL_ARB_color_buffer_float GL_ARB_pixel_buffer_object
    GL_ARB_texture_compression_rgtc GL_ARB_texture_float GL_ARB_texture_rectangle GL_ATI_texture_compression_3dc
    GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc
    GL_EXT_texture_mirror_clamp GL_EXT_texture_rectangle GL_EXT_texture_sRGB GL_EXT_texture_shared_exponent
    GL_ARB_framebuffer_object GL_EXT_framebuffer_blit GL_EXT_packed_depth_stencil GL_ARB_vertex_array_object
    GL_ATI_separate_stencil GL_ATI_texture_mirror_once GL_EXT_draw_buffers2 GL_EXT_draw_instanced
    GL_EXT_gpu_program_parameters GL_EXT_texture_array GL_EXT_texture_compression_latc GL_EXT_texture_integer
    GL_EXT_texture_sRGB_decode GL_EXT_timer_query GL_OES_EGL_image GL_MESA_texture_array GL_ARB_copy_buffer
    GL_ARB_depth_buffer_float GL_ARB_draw_instanced GL_ARB_half_float_vertex GL_ARB_instanced_arrays
    GL_ARB_map_buffer_range GL_ARB_texture_rg GL_ARB_texture_swizzle GL_ARB_vertex_array_bgra GL_EXT_texture_swizzle
    GL_EXT_vertex_array_bgra GL_NV_conditional_render GL_AMD_conservative_depth GL_AMD_draw_buffers_blend
    GL_AMD_seamless_cubemap_per_texture GL_ARB_ES2_compatibility GL_ARB_blend_func_extended GL_ARB_debug_output
    GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_explicit_attrib_location
    GL_ARB_fragment_coord_conventions GL_ARB_provoking_vertex GL_ARB_sampler_objects GL_ARB_seamless_cube_map
    GL_ARB_shader_texture_lod GL_ARB_texture_rgb10_a2ui GL_ARB_uniform_buffer_object GL_ARB_vertex_type_2_10_10_10_rev
    GL_EXT_provoking_vertex GL_EXT_texture_snorm GL_MESA_texture_signed_rgba GL_ARB_get_program_binary
    GL_ARB_robustness GL_ARB_shader_bit_encoding GL_ARB_timer_query GL_ARB_transform_feedback2
    GL_ARB_transform_feedback3 GL_NV_vdpau_interop GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5
    GL_ARB_conservative_depth GL_ARB_internalformat_uery GL_ARB_shading_language_420pack
    GL_ARB_shading_language_packing GL_ARB_texture_storage GL_ARB_transform_feedback_instanced
    GL_EXT_transform_feedback GL_ARB_invalidate_subdata GL_ARB_vertex_attrib_binding GL_KHR_debug
    GL_ARB_texture_mirror_clamp_to_edge GL_ARB_vertex_type_10f_11f_11f_rev
    OpenGL version detected: 2.1found GL_ARB_multitexture
    found GL_ARB_texture_compression
    found GL_ARB_texture_non_power_of_two
    using GL_ARB_texture_non_power_of_two
    GL_EXT_texture_filter_anisotropic not found
    found GL_EXT_texture_lod_bias
    found GL_ARB_vertex_buffer_object
    using GL_ARB_vertex_buffer_object
    max vertex buffer size: 3000
    found GL_ARB_fragment_shader
    found GL_ARB_shading_language_100
    GLSL version guaranteed to be supported by OpenGL implementation postfixed by vender supplied info: 1.30
    found GL_###_framebuffer_object
    using GL_ARB_framebuffer_object
    max draw buffers: 8
    max render buffer size: 8192
    max color attachments: 8
    found GL_###_draw_buffers
    using GL_ARB_draw_buffers
    max supported vertex texture units: 16
    max supported lights: 8
    max texture units: 8
    max texture coords: 8
    max vertex attributes: 16
    max varying floats: 128
    max fragment uniform components: 16384
    max vertex uniform components: 16384
    max texture size: detected 8192
    ...but using 2048 as requested
    Using low resolution globe textures as requested.
    R_LoadProgram: 'world_low' loaded.
    R_LoadProgram: 'model_low' loaded.
    R_LoadProgram: 'warp' loaded.
    R_LoadProgram: 'geoscape' loaded.
    R_LoadProgram: 'combine2' loaded.
    R_LoadProgram: 'convolve3' loaded.
    R_LoadProgram: 'atmosphere' loaded.
    R_LoadProgram: 'simple_glow' loaded.
    SDL_ttf version 2.0.12 - we need at least 2.0.7
    ------- sound initialization -------
    Failed to create secure directory (/run/user/1000/pulse): Permission denied
    SDL_mixer version: 2.0.0
    ... requested audio rate: 44100
    Failed to create secure directory (/run/user/1000/pulse): Permission denied
    ... available audio driver pulseaudio
    ... available audio driver alsa
    ... available audio driver dsp
    ... available audio driver disk
    ... available audio driver dummy
    ... actual audio driver: alsa
    ... audio rate: 44100
    ... audio channels: 2
    ... loaded ogg vorbis support
    ------- input initialization -------
    0 possible joysticks
    no joystick found.
    Allocate 3 megabytes for the ui hunk
    ------- web initialization ---------
    ... web access not yet configured
    ----------- parse scripts ----------
    60 script files
    59 ui script files
    UI_ParseNodeBody: Command name for confunc
    'hud_default.soldier.soldier_opts.soldier_buttons.headgear_bg.deselect_headgear' already registered
    UI_ParseNodeBody: Command name for confunc
    'hud_default.soldier.soldier_opts.soldier_buttons.headgear_bg.disable_headgear' already registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.soldier_opts.soldier_buttons.deselect_stand'
    already registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.soldier_opts.soldier_buttons.deselect_crouch'
    already registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.soldier_opts.soldier_buttons.disable_stand' already
    registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.soldier_opts.soldier_buttons.disable_crouch'
    already registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.weapon.deselect_primaryleft' already registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.weapon.deselect_primaryright' already registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.weapon.deselect_reloadleft' already registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.weapon.deselect_reloadright' already registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.weapon.disable_primaryleft' already registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.weapon.disable_primaryright' already registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.weapon.disable_reloadleft' already registered
    UI_ParseNodeBody: Command name for confunc 'hud_default.soldier.weapon.disable_reloadright' already registered
    UI_ParseNodeBody: Command name for confunc 'singleplayermission.check_if_in_campaign_mode' already registered
    Shared Client/Server Info loaded
    ...123 items parsed
    ... 32 damage types parsed
    ... 32 equipment definitions parsed
    ... 10 inventory definitions parsed
    ... 25 team definitions parsed
    executing keys.cfg
    UI_SetKeyBinding: node "employees.employee_list@pageUp" not found.
    UI_SetKeyBinding: node "employees.employee_list@pageDown" not found.
    UI_SetKeyBinding: node "employees.employee_list@moveUp" not found.
    UI_SetKeyBinding: node "employees.employee_list@moveDown" not found.
    UI_SetKeyBinding: node "employees.employee_list@moveHome" not found.
    UI_SetKeyBinding: node "employees.employee_list@moveEnd" not found.
    UI_SetKeyBinding: node "sequence.next" not found.
    Music: track changed from to van_theme.
    executing autoexec.cfg
    "version" is "UFO: Alien Invasion 2.6-dev IA-32 Jan 25 2014 Linux RELEASE"
    79 static models loaded
    CL_LanguageInit: language settings are stored in configuration: en
    ...using language: en_GB.utf8
    SDL_ttf version 2.0.12 - we need at least 2.0.7
    ...registering 14 fonts
    ----------- parse msgids -----------
    18 msgid files
    no translation for ufo_carrier_txt
    no translation for ufo_ripper_txt
    no translation for ufo_mothership_txt
    no translation for mail_ufocarrier
    no translation for ugv_phoenix_txt
    no translation for ugv_ares_w_txt
    no translation for ugv_chaingun_txt
    no translation for ugv_chaingun_belt_txt
    no translation for ugv_weapon_autocannon_txt
    no translation for ugv_weapon_autocannon_pre_txt
    no translation for vhs_assault_txt
    no translation for xaw95_txt
    no translation for bombkit1_txt
    no translation for chaingun_txt
    ----------- game modes -------------
    added _Multiplayer
    added _Campaign
    added _Skirmish
    added 3 game modes
    ====== UFO Initialized ======
    =============================
    Switch grab input off
    Wrote config.cfg.
    Wrote keys.cfg
    recursive shutdown
    Error: Received signal 11.
    xinit: connection to X server lost
    waiting for X server to shut down (EE) Server terminated successfully (0). Closing log file.
    libGL error: failed to load driver: r300
    libGL error: Try again with LIBGL_DEBUG=verbose for more details.
    caught my eye so I ran
    LIBGL_DEBUG=verbose xinit /usr/bin/xterm -- :1
    and in the resulting terminal a
    glxinfo | grep render
    which gave me:
    libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/tls/r300_dri.so
    libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/r300_dri.so
    libGL: driver does not expose __driDriverGetExtensions_r300():
    /usr/lib/xorg/modules/dri/r300_dri.so: undefined symbol:
    __driDriverGetExtensions_r300
    libGL error: failed to open drm device: Permission denied
    libGL error: failed to load driver: r300
    libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/tls/swrast_dri.so
    libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/swrast_dri.so
    libGL: driver does not expose __driDriverGetExtensions_swrast():
    /usr/lib/xorg/modules/dri/swrast_dri.so: undefined symbol:
    __driDriverGetExtensions_swrast
    libGL: Can't open configuration file /home/dok/.drirc: No such file or
    directory.
    libGL: Can't open configuration file /home/dok/.drirc: No such file or
    directory.
    direct rendering: Yes
    GLX_MESA_multithread_makecurrent, GLX_MESA_query_renderer,
    OpenGL renderer string: Gallium 0.4 on llvmpipe (LLVM 3.4, 128 bits)
    GL_NV_conditional_render, GL_NV_depth_clamp, GL_NV_fog_distance,
    and an Xorg.0.log
    [ 2185.905]
    X.Org X Server 1.15.0
    Release Date: 2013-12-27
    [ 2185.905] X Protocol Version 11, Revision 0
    [ 2185.906] Build Operating System: Linux 3.12.5-1-ARCH i686
    [ 2185.906] Current Operating System: Linux archdesk 3.12.9-1-ARCH #1 SMP PREEMPT Sun Jan 26 09:15:23 CET 2014 i686
    [ 2185.906] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=99a6d650-3886-4252-8ded-db4a892400e2 rw quiet
    [ 2185.907] Build Date: 09 January 2014 09:32:33AM
    [ 2185.907]
    [ 2185.907] Current version of pixman: 0.32.4
    [ 2185.907] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2185.907] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2185.908] (==) Log file: "/var/log/Xorg.1.log", Time: Sun Jan 26 16:35:29 2014
    [ 2185.909] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 2185.909] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 2185.909] (==) No Layout section. Using the first Screen section.
    [ 2185.909] (==) No screen section available. Using defaults.
    [ 2185.909] (**) |-->Screen "Default Screen Section" (0)
    [ 2185.909] (**) | |-->Monitor "<default monitor>"
    [ 2185.911] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 2185.911] (==) Automatically adding devices
    [ 2185.911] (==) Automatically enabling devices
    [ 2185.911] (==) Automatically adding GPU devices
    [ 2185.911] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 2185.911] Entry deleted from font path.
    [ 2185.912] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2185.912] Entry deleted from font path.
    [ 2185.912] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2185.912] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2185.912] Entry deleted from font path.
    [ 2185.912] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2185.912] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 2185.912] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2185.912] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2185.912] (II) Loader magic: 0x8265660
    [ 2185.912] (II) Module ABI versions:
    [ 2185.912] X.Org ANSI C Emulation: 0.4
    [ 2185.912] X.Org Video Driver: 15.0
    [ 2185.912] X.Org XInput driver : 20.0
    [ 2185.912] X.Org Server Extension : 8.0
    [ 2185.913] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 2185.915] setversion 1.4 failed: Permission denied
    [ 2185.918] (--) PCI:*(0:1:0:0) 1002:7280:17af:2172 rev 154, Mem @ 0xe0000000/268435456, 0xfdff0000/65536, I/O @ 0x0000bc00/256, BIOS @ 0x????????/131072
    [ 2185.918] (--) PCI: (0:1:0:1) 1002:72a0:17af:2173 rev 154, Mem @ 0xfdfe0000/65536
    [ 2185.918] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 2185.926] Initializing built-in extension Generic Event Extension
    [ 2185.927] Initializing built-in extension SHAPE
    [ 2185.927] Initializing built-in extension MIT-SHM
    [ 2185.927] Initializing built-in extension XInputExtension
    [ 2185.927] Initializing built-in extension XTEST
    [ 2185.927] Initializing built-in extension BIG-REQUESTS
    [ 2185.927] Initializing built-in extension SYNC
    [ 2185.927] Initializing built-in extension XKEYBOARD
    [ 2185.927] Initializing built-in extension XC-MISC
    [ 2185.928] Initializing built-in extension SECURITY
    [ 2185.928] Initializing built-in extension XINERAMA
    [ 2185.928] Initializing built-in extension XFIXES
    [ 2185.928] Initializing built-in extension RENDER
    [ 2185.928] Initializing built-in extension RANDR
    [ 2185.928] Initializing built-in extension COMPOSITE
    [ 2185.928] Initializing built-in extension DAMAGE
    [ 2185.928] Initializing built-in extension MIT-SCREEN-SAVER
    [ 2185.928] Initializing built-in extension DOUBLE-BUFFER
    [ 2185.928] Initializing built-in extension RECORD
    [ 2185.929] Initializing built-in extension DPMS
    [ 2185.929] Initializing built-in extension Present
    [ 2185.929] Initializing built-in extension DRI3
    [ 2185.929] Initializing built-in extension X-Resource
    [ 2185.929] Initializing built-in extension XVideo
    [ 2185.929] Initializing built-in extension XVideo-MotionCompensation
    [ 2185.929] Initializing built-in extension XFree86-VidModeExtension
    [ 2185.929] Initializing built-in extension XFree86-DGA
    [ 2185.929] Initializing built-in extension XFree86-DRI
    [ 2185.930] Initializing built-in extension DRI2
    [ 2185.930] (II) "glx" will be loaded by default.
    [ 2185.930] (II) LoadModule: "dri2"
    [ 2185.930] (II) Module "dri2" already built-in
    [ 2185.930] (II) LoadModule: "glamoregl"
    [ 2185.930] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 2185.948] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 2185.949] compiled for 1.15.0, module version = 0.6.0
    [ 2185.949] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2185.949] (II) LoadModule: "glx"
    [ 2185.949] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2185.950] (II) Module glx: vendor="X.Org Foundation"
    [ 2185.950] compiled for 1.15.0, module version = 1.0.0
    [ 2185.950] ABI class: X.Org Server Extension, version 8.0
    [ 2185.950] (==) AIGLX enabled
    [ 2185.950] Loading extension GLX
    [ 2185.950] (==) Matched ati as autoconfigured driver 0
    [ 2185.950] (==) Matched modesetting as autoconfigured driver 1
    [ 2185.950] (==) Matched fbdev as autoconfigured driver 2
    [ 2185.950] (==) Matched vesa as autoconfigured driver 3
    [ 2185.950] (==) Assigned the driver to the xf86ConfigLayout
    [ 2185.950] (II) LoadModule: "ati"
    [ 2185.951] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 2185.951] (II) Module ati: vendor="X.Org Foundation"
    [ 2185.951] compiled for 1.15.0, module version = 7.3.0
    [ 2185.951] Module class: X.Org Video Driver
    [ 2185.951] ABI class: X.Org Video Driver, version 15.0
    [ 2185.951] (II) LoadModule: "radeon"
    [ 2185.951] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 2185.952] (II) Module radeon: vendor="X.Org Foundation"
    [ 2185.952] compiled for 1.15.0, module version = 7.3.0
    [ 2185.952] Module class: X.Org Video Driver
    [ 2185.952] ABI class: X.Org Video Driver, version 15.0
    [ 2185.952] (II) LoadModule: "modesetting"
    [ 2185.958] (WW) Warning, couldn't open module modesetting
    [ 2185.958] (II) UnloadModule: "modesetting"
    [ 2185.958] (II) Unloading modesetting
    [ 2185.958] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 2185.958] (II) LoadModule: "fbdev"
    [ 2185.958] (WW) Warning, couldn't open module fbdev
    [ 2185.958] (II) UnloadModule: "fbdev"
    [ 2185.958] (II) Unloading fbdev
    [ 2185.958] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 2185.958] (II) LoadModule: "vesa"
    [ 2185.958] (WW) Warning, couldn't open module vesa
    [ 2185.958] (II) UnloadModule: "vesa"
    [ 2185.958] (II) Unloading vesa
    [ 2185.958] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 2185.958] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, HAINAN, HAINAN, HAINAN,
    HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII
    [ 2185.974] (--) using VT number 2
    [ 2186.554] (II) [KMS] Kernel modesetting enabled.
    [ 2186.554] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 2186.554] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 2186.554] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 2186.554] (==) RADEON(0): Default visual is TrueColor
    [ 2186.554] (==) RADEON(0): RGB weight 888
    [ 2186.554] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 2186.554] (--) RADEON(0): Chipset: "ATI Radeon X1950" (ChipID = 0x7280)
    [ 2186.554] (II) Loading sub module "dri2"
    [ 2186.554] (II) LoadModule: "dri2"
    [ 2186.554] (II) Module "dri2" already built-in
    [ 2186.554] (II) Loading sub module "exa"
    [ 2186.554] (II) LoadModule: "exa"
    [ 2186.555] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 2186.555] (II) Module exa: vendor="X.Org Foundation"
    [ 2186.555] compiled for 1.15.0, module version = 2.6.0
    [ 2186.555] ABI class: X.Org Video Driver, version 15.0
    [ 2186.555] (II) RADEON(0): KMS Color Tiling: enabled
    [ 2186.555] (II) RADEON(0): KMS Color Tiling 2D: disabled
    [ 2186.555] (II) RADEON(0): KMS Pageflipping: enabled
    [ 2186.555] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 2186.596] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 2186.636] (II) RADEON(0): Output S-video has no monitor section
    [ 2186.672] (II) RADEON(0): Output DVI-1 has no monitor section
    [ 2186.713] (II) RADEON(0): EDID for output DVI-0
    [ 2186.753] (II) RADEON(0): EDID for output S-video
    [ 2186.789] (II) RADEON(0): EDID for output DVI-1
    [ 2186.789] (II) RADEON(0): Manufacturer: HWP Model: 2827 Serial#: 16843009
    [ 2186.789] (II) RADEON(0): Year: 2009 Week: 20
    [ 2186.789] (II) RADEON(0): EDID Version: 1.3
    [ 2186.789] (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    [ 2186.789] (II) RADEON(0): Sync: Separate
    [ 2186.789] (II) RADEON(0): Max Image Size [cm]: horiz.: 44 vert.: 25
    [ 2186.789] (II) RADEON(0): Gamma: 2.20
    [ 2186.789] (II) RADEON(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 2186.789] (II) RADEON(0): Default color space is primary color space
    [ 2186.789] (II) RADEON(0): First detailed timing is preferred mode
    [ 2186.789] (II) RADEON(0): redX: 0.650 redY: 0.335 greenX: 0.295 greenY: 0.605
    [ 2186.790] (II) RADEON(0): blueX: 0.145 blueY: 0.075 whiteX: 0.313 whiteY: 0.329
    [ 2186.790] (II) RADEON(0): Supported established timings:
    [ 2186.790] (II) RADEON(0): 720x400@70Hz
    [ 2186.790] (II) RADEON(0): 640x480@60Hz
    [ 2186.790] (II) RADEON(0): 800x600@60Hz
    [ 2186.790] (II) RADEON(0): 1024x768@60Hz
    [ 2186.790] (II) RADEON(0): Manufacturer's mask: 0
    [ 2186.790] (II) RADEON(0): Supported standard timings:
    [ 2186.790] (II) RADEON(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 2186.790] (II) RADEON(0): #1: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 2186.790] (II) RADEON(0): Supported detailed timing:
    [ 2186.790] (II) RADEON(0): clock: 108.0 MHz Image Size: 442 x 249 mm
    [ 2186.790] (II) RADEON(0): h_active: 1600 h_sync: 1624 h_sync_end 1704 h_blank_end 1800 h_border: 0
    [ 2186.790] (II) RADEON(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 1000 v_border: 0
    [ 2186.790] (II) RADEON(0): Ranges: V min: 48 V max: 76 Hz, H min: 24 H max: 85 kHz, PixClock max 175 MHz
    [ 2186.790] (II) RADEON(0): Monitor name: HP 2009
    [ 2186.790] (II) RADEON(0): Serial No: CNC9200VZ4
    [ 2186.790] (II) RADEON(0): EDID (in hex):
    [ 2186.790] (II) RADEON(0): 00ffffffffffff0022f0272801010101
    [ 2186.790] (II) RADEON(0): 14130103682c1978eeb815a6554b9b25
    [ 2186.790] (II) RADEON(0): 135054a1080081809500010101010101
    [ 2186.790] (II) RADEON(0): 010101010101302a40c8608464301850
    [ 2186.790] (II) RADEON(0): 1300baf91000001e000000fd00304c18
    [ 2186.790] (II) RADEON(0): 5511000a202020202020000000fc0048
    [ 2186.790] (II) RADEON(0): 5020323030390a2020202020000000ff
    [ 2186.790] (II) RADEON(0): 00434e4339323030565a340a202000a2
    [ 2186.790] (II) RADEON(0): Printing probed modes for output DVI-1
    [ 2186.790] (II) RADEON(0): Modeline "1600x900"x60.0 108.00 1600 1624 1704 1800 900 901 904 1000 +hsync +vsync (60.0 kHz eP)
    [ 2186.790] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 2186.790] (II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz e)
    [ 2186.791] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 2186.791] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 2186.791] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 2186.791] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 2186.791] (II) RADEON(0): Output DVI-0 disconnected
    [ 2186.791] (II) RADEON(0): Output S-video disconnected
    [ 2186.791] (II) RADEON(0): Output DVI-1 connected
    [ 2186.791] (II) RADEON(0): Using exact sizes for initial modes
    [ 2186.791] (II) RADEON(0): Output DVI-1 using initial mode 1600x900
    [ 2186.791] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 2186.791] (II) RADEON(0): mem size init: gart size :7dff000 vram size: s:20000000 visible:1fa41000
    [ 2186.791] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 2186.791] (==) RADEON(0): DPI set to (96, 96)
    [ 2186.791] (II) Loading sub module "fb"
    [ 2186.791] (II) LoadModule: "fb"
    [ 2186.792] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 2186.792] (II) Module fb: vendor="X.Org Foundation"
    [ 2186.792] compiled for 1.15.0, module version = 1.0.0
    [ 2186.793] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2186.793] (II) Loading sub module "ramdac"
    [ 2186.793] (II) LoadModule: "ramdac"
    [ 2186.793] (II) Module "ramdac" already built-in
    [ 2186.793] (--) Depth 24 pixmap format is 32 bpp
    [ 2186.793] (II) RADEON(0): [DRI2] Setup complete
    [ 2186.793] (II) RADEON(0): [DRI2] DRI driver: r300
    [ 2186.793] (II) RADEON(0): [DRI2] VDPAU driver: r300
    [ 2186.793] (II) RADEON(0): Front buffer size: 5700K
    [ 2186.793] (II) RADEON(0): VRAM usage limit set to 461404K
    [ 2186.794] (==) RADEON(0): Backing store enabled
    [ 2186.794] (II) RADEON(0): Direct rendering enabled
    [ 2186.794] (II) RADEON(0): Render acceleration enabled for R300/R400/R500 type cards.
    [ 2186.794] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 2186.794] (II) EXA(0): Driver registered support for the following operations:
    [ 2186.794] (II) Solid
    [ 2186.794] (II) Copy
    [ 2186.794] (II) Composite (RENDER acceleration)
    [ 2186.794] (II) UploadToScreen
    [ 2186.794] (II) DownloadFromScreen
    [ 2186.794] (II) RADEON(0): Acceleration enabled
    [ 2186.794] (==) RADEON(0): DPMS enabled
    [ 2186.794] (==) RADEON(0): Silken mouse enabled
    [ 2186.794] (II) RADEON(0): Set up textured video
    [ 2186.794] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 2186.794] (II) RADEON(0): [XvMC] Extension initialized.
    [ 2186.794] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 2186.797] (--) RandR disabled
    [ 2186.840] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 2186.840] (II) AIGLX: enabled GLX_ARB_create_context
    [ 2186.840] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 2186.840] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 2186.840] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 2186.840] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 2186.840] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 2186.840] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 2186.840] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 2186.841] (II) AIGLX: Loaded and initialized r300
    [ 2186.841] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 2186.842] (II) RADEON(0): Setting screen physical size to 423 x 238
    [ 2186.916] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 2186.916] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2186.916] (II) LoadModule: "evdev"
    [ 2186.916] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 2186.916] (II) Module evdev: vendor="X.Org Foundation"
    [ 2186.916] compiled for 1.15.0, module version = 2.8.2
    [ 2186.916] Module class: X.Org XInput Driver
    [ 2186.916] ABI class: X.Org XInput driver, version 20.0
    [ 2186.916] (II) Using input driver 'evdev' for 'Power Button'
    [ 2186.916] (**) Power Button: always reports core events
    [ 2186.916] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 2186.916] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2186.916] (--) evdev: Power Button: Found keys
    [ 2186.916] (II) evdev: Power Button: Configuring as keyboard
    [ 2186.916] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
    [ 2186.916] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 2186.916] (**) Option "xkb_rules" "evdev"
    [ 2186.916] (**) Option "xkb_model" "pc104"
    [ 2186.916] (**) Option "xkb_layout" "us"
    [ 2186.955] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 2186.955] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2186.955] (II) Using input driver 'evdev' for 'Power Button'
    [ 2186.955] (**) Power Button: always reports core events
    [ 2186.955] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 2186.955] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2186.955] (--) evdev: Power Button: Found keys
    [ 2186.955] (II) evdev: Power Button: Configuring as keyboard
    [ 2186.955] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3/event2"
    [ 2186.955] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 2186.955] (**) Option "xkb_rules" "evdev"
    [ 2186.955] (**) Option "xkb_model" "pc104"
    [ 2186.955] (**) Option "xkb_layout" "us"
    [ 2186.956] (II) config/udev: Adding input device Afatech DVB-T 2 (/dev/input/event1)
    [ 2186.956] (**) Afatech DVB-T 2: Applying InputClass "evdev keyboard catchall"
    [ 2186.956] (II) Using input driver 'evdev' for 'Afatech DVB-T 2'
    [ 2186.956] (**) Afatech DVB-T 2: always reports core events
    [ 2186.956] (**) evdev: Afatech DVB-T 2: Device: "/dev/input/event1"
    [ 2186.956] (--) evdev: Afatech DVB-T 2: Vendor 0x1b80 Product 0xe399
    [ 2186.956] (--) evdev: Afatech DVB-T 2: Found keys
    [ 2186.956] (II) evdev: Afatech DVB-T 2: Configuring as keyboard
    [ 2186.956] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.2/usb2/2-5/2-5:1.1/input/input2/event1"
    [ 2186.956] (II) XINPUT: Adding extended input device "Afatech DVB-T 2" (type: KEYBOARD, id 8)
    [ 2186.956] (**) Option "xkb_rules" "evdev"
    [ 2186.956] (**) Option "xkb_model" "pc104"
    [ 2186.956] (**) Option "xkb_layout" "us"
    [ 2186.957] (II) config/udev: Adding input device KWorld PlusTV Dual DVB-T Stick (DVB-T 399U) (/dev/input/event6)
    [ 2186.957] (**) KWorld PlusTV Dual DVB-T Stick (DVB-T 399U): Applying InputClass "evdev keyboard catchall"
    [ 2186.957] (II) Using input driver 'evdev' for 'KWorld PlusTV Dual DVB-T Stick (DVB-T 399U)'
    [ 2186.957] (**) KWorld PlusTV Dual DVB-T Stick (DVB-T 399U): always reports core events
    [ 2186.957] (**) evdev: KWorld PlusTV Dual DVB-T Stick (DVB-T 399U): Device: "/dev/input/event6"
    [ 2186.957] (--) evdev: KWorld PlusTV Dual DVB-T Stick (DVB-T 399U): Vendor 0x1b80 Product 0xe399
    [ 2186.957] (--) evdev: KWorld PlusTV Dual DVB-T Stick (DVB-T 399U): Found keys
    [ 2186.957] (II) evdev: KWorld PlusTV Dual DVB-T Stick (DVB-T 399U): Configuring as keyboard
    [ 2186.957] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.2/usb2/2-5/rc/rc0/input7/event6"
    [ 2186.957] (II) XINPUT: Adding extended input device "KWorld PlusTV Dual DVB-T Stick (DVB-T 399U)" (type: KEYBOARD, id 9)
    [ 2186.957] (**) Option "xkb_rules" "evdev"
    [ 2186.957] (**) Option "xkb_model" "pc104"
    [ 2186.957] (**) Option "xkb_layout" "us"
    [ 2186.957] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 2186.957] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 2186.958] setversion 1.4 failed: Permission denied
    [ 2186.958] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 2186.958] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 2186.958] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 2186.958] (**) AT Translated Set 2 keyboard: always reports core events
    [ 2186.958] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 2186.958] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 2186.958] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 2186.958] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 2186.958] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 2186.958] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
    [ 2186.958] (**) Option "xkb_rules" "evdev"
    [ 2186.958] (**) Option "xkb_model" "pc104"
    [ 2186.958] (**) Option "xkb_layout" "us"
    [ 2186.959] (II) config/udev: Adding input device ImPS/2 Generic Wheel Mouse (/dev/input/event5)
    [ 2186.959] (**) ImPS/2 Generic Wheel Mouse: Applying InputClass "evdev pointer catchall"
    [ 2186.959] (II) Using input driver 'evdev' for 'ImPS/2 Generic Wheel Mouse'
    [ 2186.959] (**) ImPS/2 Generic Wheel Mouse: always reports core events
    [ 2186.959] (**) evdev: ImPS/2 Generic Wheel Mouse: Device: "/dev/input/event5"
    [ 2186.959] (--) evdev: ImPS/2 Generic Wheel Mouse: Vendor 0x2 Product 0x5
    [ 2186.959] (--) evdev: ImPS/2 Generic Wheel Mouse: Found 3 mouse buttons
    [ 2186.959] (--) evdev: ImPS/2 Generic Wheel Mouse: Found scroll wheel(s)
    [ 2186.959] (--) evdev: ImPS/2 Generic Wheel Mouse: Found relative axes
    [ 2186.959] (--) evdev: ImPS/2 Generic Wheel Mouse: Found x and y relative axes
    [ 2186.959] (II) evdev: ImPS/2 Generic Wheel Mouse: Configuring as mouse
    [ 2186.959] (II) evdev: ImPS/2 Generic Wheel Mouse: Adding scrollwheel support
    [ 2186.959] (**) evdev: ImPS/2 Generic Wheel Mouse: YAxisMapping: buttons 4 and 5
    [ 2186.959] (**) evdev: ImPS/2 Generic Wheel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 2186.959] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event5"
    [ 2186.959] (II) XINPUT: Adding extended input device "ImPS/2 Generic Wheel Mouse" (type: MOUSE, id 11)
    [ 2186.959] (II) evdev: ImPS/2 Generic Wheel Mouse: initialized for relative axes.
    [ 2186.959] (**) ImPS/2 Generic Wheel Mouse: (accel) keeping acceleration scheme 1
    [ 2186.959] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration profile 0
    [ 2186.959] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration factor: 2.000
    [ 2186.959] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration threshold: 4
    [ 2186.960] (II) config/udev: Adding input device ImPS/2 Generic Wheel Mouse (/dev/input/mouse0)
    [ 2186.960] (II) No input driver specified, ignoring this device.
    [ 2186.960] (II) This device may have been added with another device file.
    [ 2186.960] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 2186.960] (II) No input driver specified, ignoring this device.
    [ 2186.960] (II) This device may have been added with another device file.
    [ 2192.987] (II) evdev: ImPS/2 Generic Wheel Mouse: Close
    [ 2192.987] (II) UnloadModule: "evdev"
    [ 2192.987] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 2192.987] (II) UnloadModule: "evdev"
    [ 2192.987] (II) evdev: KWorld PlusTV Dual DVB-T Stick (DVB-T 399U): Close
    [ 2192.987] (II) UnloadModule: "evdev"
    [ 2192.987] (II) evdev: Afatech DVB-T 2: Close
    [ 2192.987] (II) UnloadModule: "evdev"
    [ 2192.987] (II) evdev: Power Button: Close
    [ 2192.987] (II) UnloadModule: "evdev"
    [ 2192.987] (II) evdev: Power Button: Close
    [ 2192.987] (II) UnloadModule: "evdev"
    [ 2193.034] (EE) Server terminated successfully (0). Closing log file.
    when I run those xinit commands as root I get good screens with proper outputs.
    I've tried to run the script from https://wiki.archlinux.org/index.php/Ru … _X_display
    and another script which I've used in the past
    #!/bin/bash
    xinit /dev/stdin -- :1 vt8 -ac -depth 24 <<EOF
    xrandr --output LVDS1 --mode 1400x900 -d :1
    /usr/bin/ufo
    EOF
    I have to say that I'm stuck.
    pacman -Ss xf86-video | grep installed
    gives:
    extra/xf86-video-ati 1:7.3.0-1 (xorg-drivers xorg) [installed]
    If I run the game on an established screen, there is no problem. What can I do? Is it safe to run xinit as root?
    Thanks
    EDIT SOLVED:
    Ok, so it seems I was close.  This is what works for me:
    Go to a virtual terminal, let's say vt1 and login as your user:
    xinit /usr/bin/ufo -- :1 vt1
    The command can be run from an existing session or from the vt itself. The "trick" is to do with session permissions, it's important to be logged in to the virtual terminal as a user with X permissions. This is info missing from the wiki pages.
    Last edited by jackwild (2014-01-28 03:20:26)

    tomk wrote:Directories have to be executable - yours wasn't.
    Thanks. Hadn't thought about that.
    ngoonee wrote:You probably ran (or had a bad package/script run) chmod 666 -R on your ~/
    Maybe. Tried to retrace my steps to figure out what I did, but because I did it at work I did everything in like five-minute-pieces, getting distracted all the time. The only thing I can think of that actually touched the folder at installation time was the "sakura" community package, though I don't believe that it would do something like that. I'll try to do it again when I'm at work though. Just to make sure.
    Thanks anyway for your input.

  • Access security denied user.dir and jaxp.debug

    Hi all,
    I have a big problem. I must provide an applet at lots of clients but I can't set their java.policy file.
    The process must be transparency of them.
    Then I can't use signed applet.
    When I launch my applet, I have a exception :
    access security denied user.dir and jaxp.debug
    My exception came when I use the class XPathAPI from jakarta.
    Thanks.

    Did you ever find a solution? I am having the same problem and would really appreciate any help that you can give.
    Thanks in advance.

  • How to fix permission denied for home folder with Apache in Mavericks?

    I recently activated the apache that ships with OS X Mavericks. I followed some tutorial to set up the web-server, however. When I browse to my home-filter at http://localhost/~nazeem, I get the following error: You don't have permission to access /~nazeem/ on this server.
    Installation steps
    To set up the webserver, I took the following steps:
    1. activated the webserver with command: apachectl start
    2. enabled PHP by checking if the module is loaded
    3. checked if the home folder module is loaded
    4. made the user based configuration file, in /etc/apache2/users/nazeem.conf The content is as follows:
    <Directory "/Users/nazeem/Development/Websites/">
    Options Indexes MultiViews FollowSymLinks AllowOverride All
    </Directory>
    Permissions
    ~/nazeem : drwxr-xr-x+ ~/nazeem/Development : drwxr-xr-x ~/nazeem/Development/Websites : drwxr-xr-x
    Log
    The apache log says the following:
    [Mon May 19 21:22:57 2014] [error] [client ::1] client denied by server configuration: /Users/nazeem/Sites
    In my opinion this is remarkable, as the path /Users/nazeem/Sites is nog what I defined in my user configuration.
    Versions
    OS X Mavericks 10.9.3
    Apache 2.2.26
    Does anybody know how to solve this?

    nzm_aak wrote:
    I recently activated the apache that ships with OS X Mavericks. I followed some tutorial to set up the web-server, however. When I browse to my home-filter at http://localhost/~nazeem, I get the following error: You don't have permission to access /~nazeem/ on this server.
    Does anybody know how to solve this?
    You will have to contact the author of that tutorial and ask. Apache can be configured an infinite number of ways. You seem to be attempting to configure it in two conflicting methods. You can define specific directories on your web server or you can use mod_userdir. You can't hack up a combination of the two.
    I posted my own User Tip on how to configure Apache: https://discussions.apple.com/docs/DOC-3083
    This user tip only covers mod_userdir and will serve content out of $(HOME)/Sites. I strongly suggest starting there and only trying a custom location later, if you see the need.

  • "Permission denied" while accessing Canon 550D with libgphoto2

    I have followed the Wiki for access problems but I just can't get it to work, the camera is seen but I cannot transfer anything from it, I'm getting "libusb couldn't open USB device /dev/bus/usb/002/003: Permission denied. libusb requires write access to USB device nodes." all the time
    gphoto2 --summary:
    Camera summary:
    Manufacturer: Canon Inc.
    Model: Canon EOS 500D
    Version: 3-1.1.0
    Serial Number: 8486ab29c68547159242370d5563101a
    Vendor Extension ID: 0xb (2.0)
    Capture Formats: JPEG
    Display Formats: Association/Directory, Script, DPOF, MS AVI, MS Wave, JPEG, CRW, Unknown(b103), Unknown(bf02), Defined Type, Unknown(b104)
    Supported MTP Object Properties:
    Association/Directory/3001: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    Script/3002: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    DPOF/3006: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    MS AVI/300a: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified dc87/Width dc88/Height dc89/Duration de97/ScanDepth de9b/VideoFourCCCodec de9c/VideoBitRate de9a/AudioBitRate de93/SampleRate de94/NumberOfChannels
    MS Wave/3008: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified dc89/Duration de9a/AudioBitRate de93/SampleRate de94/NumberOfChannels
    JPEG/3801: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified dc87/Width dc88/Height dcd3/ImageBitDepth
    CRW/b101: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    Unknown(b103)/b103: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    Unknown(bf02)/bf02: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    Defined Type/3800: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified dc87/Width dc88/Height dcd3/ImageBitDepth
    Unknown(b104)/b104: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified dc87/Width dc88/Height dc89/Duration de97/ScanDepth de9b/VideoFourCCCodec de9c/VideoBitRate de9a/AudioBitRate de93/SampleRate de94/NumberOfChannels
    Device Capabilities:
    File Download, File Deletion, File Upload
    No Image Capture, No Open Capture, Canon EOS Capture
    Storage Devices Summary:
    store_00020001:
    StorageDescription: SD
    VolumeLabel: None
    Storage Type: Removable RAM (memory card)
    Filesystemtype: Digital Camera Layout (DCIM)
    Access Capability: Read-Write
    Maximum Capability: 8160542720 (7782 MB)
    Free Space (Bytes): 698908672 (666 MB)
    Free Space (Images): -1
    Device Property Summary:
    Property 0xd402:(read only) (type=0xffff) 'Canon EOS 500D'
    Property 0xd407:(read only) (type=0x6) 1
    Property 0xd406:(readwrite) (type=0xffff) 'Unknown Initiator'
    and the debug file from gphoto
    0.000030 main(2): ALWAYS INCLUDE THE FOLLOWING LINES WHEN SENDING DEBUG MESSAGES TO THE MAILING LIST:
    0.000086 main(2): gphoto2 2.4.10
    0.000101 main(2): gphoto2 has been compiled with the following options:
    0.000115 main(2): + gcc (C compiler used)
    0.000126 main(2): + popt (mandatory, for handling command-line parameters)
    0.000138 main(2): + exif (for displaying EXIF information)
    0.000150 main(2): + no cdk (for accessing configuration options)
    0.000162 main(2): + aa (for displaying live previews)
    0.000174 main(2): + jpeg (for displaying live previews in JPEG format)
    0.000185 main(2): + readline (for easy navigation in the shell)
    0.000201 main(2): libgphoto2 2.4.10.1
    0.000215 main(2): libgphoto2 has been compiled with the following options:
    0.000228 main(2): + gcc (C compiler used)
    0.000242 main(2): + ltdl (for portable loading of camlibs)
    0.000254 main(2): + EXIF (for special handling of EXIF files)
    0.000268 main(2): libgphoto2_port 0.8.0
    0.000283 main(2): libgphoto2_port has been compiled with the following options:
    0.000296 main(2): + gcc (C compiler used)
    0.000307 main(2): + ltdl (for portable loading of camlibs)
    0.000321 main(2): + USB (libusb, for USB cameras)
    0.000333 main(2): + serial (for serial cameras)
    0.000345 main(2): + no resmgr (serial port access and locking)
    0.000357 main(2): + no baudboy (serial port locking)
    0.000368 main(2): + no ttylock (serial port locking)
    0.000380 main(2): + no lockdev (serial port locking)
    0.000392 main(2): CAMLIBS env var not set, using compile-time default instead
    0.000404 main(2): IOLIBS env var not set, using compile-time default instead
    0.000433 setting/gphoto2-setting.c(2): Creating $HOME/.gphoto
    0.000487 setting/gphoto2-setting.c(2): Loading settings from file "/home/david/.gphoto/settings"
    0.000724 main(2): The user has not specified both a model and a port. Try to figure them out.
    0.000749 gphoto2-port-info-list(2): Using ltdl to load io-drivers from '/usr/lib/libgphoto2_port/0.8.0'...
    0.000841 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/disk'.
    0.003838 gphoto2-port/disk(2): found fstab fsname tmpfs
    0.003872 gphoto2-port/disk(2): found fstab fsname tmps
    0.003896 gphoto2-port/disk(2): found fstab fsname UUID=5a94d96e-0fdd-425a-91c5-6fe96da349f0
    0.003912 gphoto2-port/disk(2): found fstab fsname UUID=ce706691-4517-477c-a42d-417ab8ffef38
    0.003931 gphoto2-port/disk(2): found fstab fsname UUID=eca58c28-a738-4567-a57e-d30d04d2fc69
    0.003951 gphoto2-port/disk(2): found fstab fsname UUID=10bc0f7b-5677-4a4b-9a20-678037ca06ff
    0.003972 gphoto2-port/disk(2): found fstab fsname 192.168.0.10:/Data
    0.004082 gphoto2-port/disk(2): found mtab fsname rootfs
    0.004103 gphoto2-port/disk(2): found mtab fsname proc
    0.004125 gphoto2-port/disk(2): found mtab fsname /sys
    0.004148 gphoto2-port/disk(2): found mtab fsname udev
    0.004170 gphoto2-port/disk(2): found mtab fsname /run
    0.004192 gphoto2-port/disk(2): found mtab fsname /dev/sda1
    0.004209 gphoto2-port/disk(2): found mtab fsname devpts
    0.004231 gphoto2-port/disk(2): found mtab fsname shm
    0.004252 gphoto2-port/disk(2): found mtab fsname tmpfs
    0.004274 gphoto2-port/disk(2): found mtab fsname tmps
    0.004294 gphoto2-port/disk(2): found mtab fsname /dev/sda3
    0.004313 gphoto2-port/disk(2): found mtab fsname /dev/sdc1
    0.004331 gphoto2-port/disk(2): found mtab fsname rpc_pipefs
    0.004356 gphoto2-port/disk(2): found mtab fsname 192.168.0.10:/Data/
    0.004408 gphoto2-port-info-list(2): Could not load port driver list: 'Unspecified error'.
    0.004425 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/ptpip'.
    0.004540 gphoto2-port-info-list(2): Loaded 'PTP/IP Connection' ('ptpip:') from '/usr/lib/libgphoto2_port/0.8.0/ptpip'.
    0.004560 gphoto2-port-info-list(2): Loaded '' ('^ptpip') from '/usr/lib/libgphoto2_port/0.8.0/ptpip'.
    0.004576 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004778 gphoto2-port-info-list(2): Loaded 'Serial Port 0' ('serial:/dev/ttyS0') from '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004797 gphoto2-port-info-list(2): Loaded 'Serial Port 1' ('serial:/dev/ttyS1') from '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004819 gphoto2-port-info-list(2): Loaded 'Serial Port 2' ('serial:/dev/ttyS2') from '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004835 gphoto2-port-info-list(2): Loaded 'Serial Port 3' ('serial:/dev/ttyS3') from '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004850 gphoto2-port-info-list(2): Loaded '' ('^serial') from '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004865 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/usb'.
    0.189309 gphoto2-port-info-list(2): Loaded '' ('^usb:') from '/usr/lib/libgphoto2_port/0.8.0/usb'.
    0.189349 gphoto2-port-info-list(2): Loaded 'Universal Serial Bus' ('usb:001,005') from '/usr/lib/libgphoto2_port/0.8.0/usb'.
    0.189364 gphoto2-port-info-list(2): Loaded 'Universal Serial Bus' ('usb:002,003') from '/usr/lib/libgphoto2_port/0.8.0/usb'.
    0.189380 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/usbdiskdirect'.
    0.189702 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/usbscsi'.
    0.189845 gphoto2-port-info-list(2): Counting entries (11 available)...
    0.189864 gphoto2-port-info-list(2): 7 regular entries available.
    0.190025 gphoto2-abilities-list(2): Using ltdl to load camera libraries from '/usr/lib/libgphoto2/2.4.10.1'...
    0.190458 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/adc65'.
    0.190478 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/agfa_cl20'.
    0.190491 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/aox'.
    0.190505 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/ax203'.
    0.190520 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/barbie'.
    0.190533 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/canon'.
    0.190546 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/casio_qv'.
    0.190558 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/clicksmart310'.
    0.190571 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/digigr8'.
    0.190584 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/digita'.
    0.190597 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/dimagev'.
    0.190609 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/dimera3500'.
    0.190622 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/directory'.
    0.190634 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/enigma13'.
    0.190647 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/fuji'.
    0.190660 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/gsmart300'.
    0.190672 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/hp215'.
    0.190685 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/iclick'.
    0.190698 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/jamcam'.
    0.190710 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/jd11'.
    0.190723 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/jl2005a'.
    0.190736 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/jl2005c'.
    0.190748 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/kodak_dc120'.
    0.190761 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/kodak_dc210'.
    0.190774 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/kodak_dc240'.
    0.190786 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/kodak_dc3200'.
    0.190799 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/kodak_ez200'.
    0.190812 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/konica'.
    0.190825 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/konica_qm150'.
    0.190837 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/largan'.
    0.190850 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/lg_gsm'.
    0.190862 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/mars'.
    0.190875 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/mustek'.
    0.190888 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/panasonic_coolshot'.
    0.190910 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/panasonic_dc1000'.
    0.190923 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/panasonic_dc1580'.
    0.190936 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/panasonic_l859'.
    0.190948 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/pccam300'.
    0.190961 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/pccam600'.
    0.190973 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/polaroid_pdc320'.
    0.190986 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/polaroid_pdc640'.
    0.190999 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/polaroid_pdc700'.
    0.191012 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/ptp2'.
    0.191024 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/ricoh'.
    0.191037 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/ricoh_g3'.
    0.191050 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/samsung'.
    0.191063 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sierra'.
    0.191076 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sipix_blink2'.
    0.191088 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sipix_web2'.
    0.191101 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/smal'.
    0.191113 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sonix'.
    0.191126 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sony_dscf1'.
    0.191138 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sony_dscf55'.
    0.191151 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/soundvision'.
    0.191164 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/spca50x'.
    0.191176 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sq905'.
    0.191189 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/st2205'.
    0.191202 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/stv0674'.
    0.191214 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/stv0680'.
    0.191227 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sx330z'.
    0.191240 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/topfield'.
    0.191252 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/toshiba_pdrm11'.
    0.191269 gp-abilities-list(2): Found 62 camera drivers.
    0.210941 gphoto2-port-info-list(2): Counting entries (11 available)...
    0.210974 gphoto2-port-info-list(2): 7 regular entries available.
    0.210984 gphoto2-port(2): Creating new device...
    0.210996 gphoto2-port-info-list(2): Getting info of entry 0 (11 available)...
    0.211082 gphoto2-port(2): Setting settings...
    0.211095 gphoto2-port-info-list(2): Getting info of entry 1 (11 available)...
    0.211176 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
    0.211189 gphoto2-port(2): Setting settings...
    0.211199 gphoto2-port-info-list(2): Getting info of entry 2 (11 available)...
    0.211273 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
    0.211286 gphoto2-port(2): Setting settings...
    0.211295 gphoto2-port-info-list(2): Getting info of entry 3 (11 available)...
    0.211371 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
    0.211383 gphoto2-port(2): Setting settings...
    0.211393 gphoto2-port-info-list(2): Getting info of entry 4 (11 available)...
    0.211466 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
    0.211479 gphoto2-port(2): Setting settings...
    0.211488 gphoto2-port-info-list(2): Getting info of entry 5 (11 available)...
    0.213264 gphoto2-port(2): Setting timeout to 5000 millisecond(s)...
    0.213278 gphoto2-port(2): Setting settings...
    0.213287 libusb(2): gp_port_usb_update(old int=0, conf=-1, alt=-1), (new int=0, conf=-1, alt=-1)
    0.213296 gphoto2-abilities-list.c(1): Auto-detecting USB cameras...
    0.213330 gphoto2-port-usb(1): Looking for USB device (vendor 0x4a9, product 0x31cf)... found.
    0.213340 gphoto2-port-usb(2): inep to look for is 81
    0.213348 gphoto2-port-usb(1): Detected defaults: config 1, interface 0, altsetting 0, inep 81, outep 02, intep 83, class 06, subclass 01
    0.213365 gphoto2-abilities-list.c(2): Found 'Canon EOS 500D' (0x4a9,0x31cf)
    0.213376 gphoto2-port-info-list(2): Getting info of entry 6 (11 available)...
    0.215043 gphoto2-port(2): Setting timeout to 5000 millisecond(s)...
    0.215056 gphoto2-port(2): Setting settings...
    0.215065 libusb(2): gp_port_usb_update(old int=0, conf=-1, alt=-1), (new int=0, conf=-1, alt=-1)
    0.215075 gphoto2-abilities-list.c(1): Auto-detecting USB cameras...
    0.215353 gphoto2-port(2): Freeing port...
    0.215365 gphoto2-port(2): Closing port...
    0.215411 gphoto2-camera(2): Setting abilities ('Canon EOS 500D')...
    0.215424 gphoto2-setting(2): Setting key 'model' to value 'Canon EOS 500D' (gphoto2)
    0.215435 gphoto2-setting(2): Saving 4 setting(s) to file "/home/david/.gphoto/settings"
    0.215589 gphoto2-port-info-list(2): Looking for path 'usb:001,005' (11 entries available)...
    0.215603 gphoto2-port-info-list(2): Getting info of entry 5 (11 available)...
    0.215613 gphoto2-camera(2): Setting port info for port 'Universal Serial Bus' at 'usb:001,005'...
    0.217304 gphoto2-port(2): Setting timeout to 5000 millisecond(s)...
    0.217318 gphoto2-port(2): Setting settings...
    0.217327 libusb(2): gp_port_usb_update(old int=0, conf=-1, alt=-1), (new int=0, conf=-1, alt=-1)
    0.217336 gphoto2-setting(2): Setting key 'port' to value 'usb:001,005' (gphoto2)
    0.217345 gphoto2-setting(2): Saving 4 setting(s) to file "/home/david/.gphoto/settings"
    0.217489 gphoto2-camera(2): Initializing camera...
    0.217506 gphoto2-port-usb(1): Looking for USB device (vendor 0x4a9, product 0x31cf)... found.
    0.217518 gphoto2-port-usb(2): inep to look for is 81
    0.217526 gphoto2-port-usb(1): Detected defaults: config 1, interface 0, altsetting 0, inep 81, outep 02, intep 83, class 06, subclass 01
    0.217535 gphoto2-camera(2): Loading '/usr/lib/libgphoto2/2.4.10.1/ptp2'...
    0.217732 gphoto2-port(2): Opening USB port...
    0.217744 libusb(2): gp_port_usb_open()
    0.217771 libusb(2): claiming interface 0
    0.217793 ptp2(2): maxpacketsize 512
    0.218546 gphoto2-port(2): Setting timeout to 1500 millisecond(s)...
    0.218560 ptp(2): PTP: Opening session
    0.218572 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.218583 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 02 10-00 00 00 00 01 00 00 00 ................
    0.218678 ptp2/ptp_usb_getresp(2): reading response
    0.218690 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.218700 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.220052 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.220069 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-00 00 00 00 ....... ....
    0.220081 gphoto2-port(2): Setting timeout to 20000 millisecond(s)...
    0.220092 gphoto2-port(2): Writing 12=0xc byte(s) to port...
    0.220102 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 01 00 01 10-01 00 00 00 ............
    0.220169 ptp2/ptp_usb_getdata(2): reading data
    0.220179 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.220188 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.222673 gphoto2-port(2): Could only read 383 out of 512 byte(s)
    0.222689 gphoto2-port(3): Hexdump of 383 = 0x17f bytes follows:
    0000 7f 01 00 00 02 00 01 10-01 00 00 00 64 00 06 00 ............d...
    0010 00 00 c8 00 00 00 00 4f-00 00 00 14 10 15 10 16 .......O........
    0020 10 01 10 02 10 03 10 06-10 04 10 01 91 05 10 02 ................
    0030 91 07 10 08 10 03 91 09-10 04 91 0a 10 1b 10 07 ................
    0040 91 0c 10 0d 10 0b 10 05-91 0f 10 06 91 10 91 27 ...............'
    0050 91 0b 91 08 91 09 91 0c-91 0e 91 0f 91 25 91 26 .............%.&
    0060 91 15 91 14 91 13 91 16-91 17 91 20 91 f0 91 18 ........... ....
    0070 91 21 91 f1 91 1d 91 0a-91 1b 91 1c 91 1e 91 1a .!..............
    0080 91 53 91 54 91 60 91 55-91 57 91 58 91 59 91 5a .S.T.`.U.W.X.Y.Z
    0090 91 1f 91 fe 91 ff 91 28-91 29 91 2d 91 2e 91 2f .......(.).-.../
    00a0 91 01 98 02 98 03 98 04-98 05 98 52 90 53 90 57 ...........R.S.W
    00b0 90 58 90 59 90 5a 90 5f-90 07 00 00 00 09 40 04 .X.Y.Z._......@.
    00c0 40 05 40 03 40 02 40 07-40 01 c1 03 00 00 00 02 @.@.@.@.@.......
    00d0 d4 07 d4 06 d4 01 00 00-00 01 38 0b 00 00 00 01 ..........8.....
    00e0 30 02 30 06 30 0a 30 08-30 01 38 01 b1 03 b1 02 0.0.0.0.0.8.....
    00f0 bf 00 38 04 b1 0b 43 00-61 00 6e 00 6f 00 6e 00 ..8...C.a.n.o.n.
    0100 20 00 49 00 6e 00 63 00-2e 00 00 00 0f 43 00 61 .I.n.c......C.a
    0110 00 6e 00 6f 00 6e 00 20-00 45 00 4f 00 53 00 20 .n.o.n. .E.O.S.
    0120 00 35 00 30 00 30 00 44-00 00 00 08 33 00 2d 00 .5.0.0.D....3.-.
    0130 31 00 2e 00 31 00 2e 00-30 00 00 00 21 38 00 34 1...1...0...!8.4
    0140 00 38 00 36 00 61 00 62-00 32 00 39 00 63 00 36 .8.6.a.b.2.9.c.6
    0150 00 38 00 35 00 34 00 37-00 31 00 35 00 39 00 32 .8.5.4.7.1.5.9.2
    0160 00 34 00 32 00 33 00 37-00 30 00 64 00 35 00 35 .4.2.3.7.0.d.5.5
    0170 00 36 00 33 00 31 00 30-00 31 00 61 00 00 00 .6.3.1.0.1.a...
    0.222715 ptp2/ptp_usb_getresp(2): reading response
    0.222724 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.222732 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.223419 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.223431 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-01 00 00 00 ....... ....
    0.223452 PTP2/ptp2/library.c(2): Device info:
    0.223461 PTP2/ptp2/library.c(2): Manufacturer: Canon Inc.
    0.223469 PTP2/ptp2/library.c(2): Model: Canon EOS 500D
    0.223477 PTP2/ptp2/library.c(2): device version: 3-1.1.0
    0.223485 PTP2/ptp2/library.c(2): serial number: '8486ab29c68547159242370d5563101a'
    0.223494 PTP2/ptp2/library.c(2): Vendor extension ID: 0x0000000b
    0.223502 PTP2/ptp2/library.c(2): Vendor extension version: 200
    0.223510 PTP2/ptp2/library.c(2): Vendor extension description: (null)
    0.223520 PTP2/ptp2/library.c(2): Functional Mode: 0x0000
    0.223528 PTP2/ptp2/library.c(2): PTP Standard Version: 100
    0.223536 PTP2/ptp2/library.c(2): Supported operations:
    0.223544 PTP2/ptp2/library.c(2): 0x1014
    0.223552 PTP2/ptp2/library.c(2): 0x1015
    0.223560 PTP2/ptp2/library.c(2): 0x1016
    0.223568 PTP2/ptp2/library.c(2): 0x1001
    0.223576 PTP2/ptp2/library.c(2): 0x1002
    0.223584 PTP2/ptp2/library.c(2): 0x1003
    0.223592 PTP2/ptp2/library.c(2): 0x1006
    0.223600 PTP2/ptp2/library.c(2): 0x1004
    0.223608 PTP2/ptp2/library.c(2): 0x9101
    0.223617 PTP2/ptp2/library.c(2): 0x1005
    0.223625 PTP2/ptp2/library.c(2): 0x9102
    0.223633 PTP2/ptp2/library.c(2): 0x1007
    0.223641 PTP2/ptp2/library.c(2): 0x1008
    0.223649 PTP2/ptp2/library.c(2): 0x9103
    0.223657 PTP2/ptp2/library.c(2): 0x1009
    0.223665 PTP2/ptp2/library.c(2): 0x9104
    0.223673 PTP2/ptp2/library.c(2): 0x100a
    0.223681 PTP2/ptp2/library.c(2): 0x101b
    0.223689 PTP2/ptp2/library.c(2): 0x9107
    0.223697 PTP2/ptp2/library.c(2): 0x100c
    0.223705 PTP2/ptp2/library.c(2): 0x100d
    0.223713 PTP2/ptp2/library.c(2): 0x100b
    0.223721 PTP2/ptp2/library.c(2): 0x9105
    0.223729 PTP2/ptp2/library.c(2): 0x100f
    0.223737 PTP2/ptp2/library.c(2): 0x9106
    0.223745 PTP2/ptp2/library.c(2): 0x9110
    0.223753 PTP2/ptp2/library.c(2): 0x9127
    0.223761 PTP2/ptp2/library.c(2): 0x910b
    0.223769 PTP2/ptp2/library.c(2): 0x9108
    0.223777 PTP2/ptp2/library.c(2): 0x9109
    0.223785 PTP2/ptp2/library.c(2): 0x910c
    0.223793 PTP2/ptp2/library.c(2): 0x910e
    0.223801 PTP2/ptp2/library.c(2): 0x910f
    0.223809 PTP2/ptp2/library.c(2): 0x9125
    0.223817 PTP2/ptp2/library.c(2): 0x9126
    0.223825 PTP2/ptp2/library.c(2): 0x9115
    0.223834 PTP2/ptp2/library.c(2): 0x9114
    0.223841 PTP2/ptp2/library.c(2): 0x9113
    0.223849 PTP2/ptp2/library.c(2): 0x9116
    0.223857 PTP2/ptp2/library.c(2): 0x9117
    0.223865 PTP2/ptp2/library.c(2): 0x9120
    0.223874 PTP2/ptp2/library.c(2): 0x91f0
    0.223882 PTP2/ptp2/library.c(2): 0x9118
    0.223890 PTP2/ptp2/library.c(2): 0x9121
    0.223898 PTP2/ptp2/library.c(2): 0x91f1
    0.223906 PTP2/ptp2/library.c(2): 0x911d
    0.223914 PTP2/ptp2/library.c(2): 0x910a
    0.223922 PTP2/ptp2/library.c(2): 0x911b
    0.223930 PTP2/ptp2/library.c(2): 0x911c
    0.223938 PTP2/ptp2/library.c(2): 0x911e
    0.223945 PTP2/ptp2/library.c(2): 0x911a
    0.223959 PTP2/ptp2/library.c(2): 0x9153
    0.223967 PTP2/ptp2/library.c(2): 0x9154
    0.223975 PTP2/ptp2/library.c(2): 0x9160
    0.223983 PTP2/ptp2/library.c(2): 0x9155
    0.223991 PTP2/ptp2/library.c(2): 0x9157
    0.223999 PTP2/ptp2/library.c(2): 0x9158
    0.224007 PTP2/ptp2/library.c(2): 0x9159
    0.224015 PTP2/ptp2/library.c(2): 0x915a
    0.224023 PTP2/ptp2/library.c(2): 0x911f
    0.224031 PTP2/ptp2/library.c(2): 0x91fe
    0.224039 PTP2/ptp2/library.c(2): 0x91ff
    0.224046 PTP2/ptp2/library.c(2): 0x9128
    0.224054 PTP2/ptp2/library.c(2): 0x9129
    0.224062 PTP2/ptp2/library.c(2): 0x912d
    0.224070 PTP2/ptp2/library.c(2): 0x912e
    0.224078 PTP2/ptp2/library.c(2): 0x912f
    0.224086 PTP2/ptp2/library.c(2): 0x9801
    0.224094 PTP2/ptp2/library.c(2): 0x9802
    0.224102 PTP2/ptp2/library.c(2): 0x9803
    0.224110 PTP2/ptp2/library.c(2): 0x9804
    0.224117 PTP2/ptp2/library.c(2): 0x9805
    0.224125 PTP2/ptp2/library.c(2): 0x9052
    0.224133 PTP2/ptp2/library.c(2): 0x9053
    0.224141 PTP2/ptp2/library.c(2): 0x9057
    0.224149 PTP2/ptp2/library.c(2): 0x9058
    0.224157 PTP2/ptp2/library.c(2): 0x9059
    0.224165 PTP2/ptp2/library.c(2): 0x905a
    0.224173 PTP2/ptp2/library.c(2): 0x905f
    0.224180 PTP2/ptp2/library.c(2): Events Supported:
    0.224188 PTP2/ptp2/library.c(2): 0x4009
    0.224196 PTP2/ptp2/library.c(2): 0x4004
    0.224204 PTP2/ptp2/library.c(2): 0x4005
    0.224212 PTP2/ptp2/library.c(2): 0x4003
    0.224220 PTP2/ptp2/library.c(2): 0x4002
    0.224228 PTP2/ptp2/library.c(2): 0x4007
    0.224235 PTP2/ptp2/library.c(2): 0xc101
    0.224243 PTP2/ptp2/library.c(2): Device Properties Supported:
    0.224251 PTP2/ptp2/library.c(2): 0xd402
    0.224259 PTP2/ptp2/library.c(2): 0xd407
    0.224267 PTP2/ptp2/library.c(2): 0xd406
    0.224329 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.224340 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-02 00 00 00 01 30 00 00 .............0..
    0.224419 ptp2/ptp_usb_getdata(2): reading data
    0.224429 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.224439 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.226419 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.226433 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-02 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.226443 ptp2/ptp_usb_getresp(2): reading response
    0.226452 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.226461 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.226669 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.226681 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-02 00 00 00 ....... ....
    0.226699 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.226710 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-03 00 00 00 02 30 00 00 .............0..
    0.227041 ptp2/ptp_usb_getdata(2): reading data
    0.227051 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.227060 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.228175 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.228193 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-03 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.228209 ptp2/ptp_usb_getresp(2): reading response
    0.228221 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.228235 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.228553 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.228574 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-03 00 00 00 ....... ....
    0.228599 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.228614 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-04 00 00 00 06 30 00 00 .............0..
    0.228923 ptp2/ptp_usb_getdata(2): reading data
    0.228943 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.228957 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.230051 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.230070 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-04 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.230086 ptp2/ptp_usb_getresp(2): reading response
    0.230099 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.230112 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.230426 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.230443 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-04 00 00 00 ....... ....
    0.230467 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.230483 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-05 00 00 00 0a 30 00 00 .............0..
    0.230673 ptp2/ptp_usb_getdata(2): reading data
    0.230688 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.230702 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.231800 gphoto2-port(2): Could only read 54 out of 512 byte(s)
    0.231818 gphoto2-port(3): Hexdump of 54 = 0x36 bytes follows:
    0000 36 00 00 00 02 00 01 98-05 00 00 00 13 00 00 00 6...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc 87 dc 88 dc-89 dc 97 de 9b de 9c de ................
    0030 9a de 93 de 94 de - ......
    0.231833 ptp2/ptp_usb_getresp(2): reading response
    0.231846 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.231859 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.232175 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.232192 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-05 00 00 00 ....... ....
    0.232220 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.232236 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-06 00 00 00 08 30 00 00 .............0..
    0.232547 ptp2/ptp_usb_getdata(2): reading data
    0.232563 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.232578 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.233674 gphoto2-port(2): Could only read 44 out of 512 byte(s)
    0.233697 gphoto2-port(3): Hexdump of 44 = 0x2c bytes follows:
    0000 2c 00 00 00 02 00 01 98-06 00 00 00 0e 00 00 00 ,...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc 89 dc 9a de-93 de 94 de ............
    0.233713 ptp2/ptp_usb_getresp(2): reading response
    0.233725 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.233739 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.234052 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.234071 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-06 00 00 00 ....... ....
    0.234097 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.234112 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-07 00 00 00 01 38 00 00 .............8..
    0.234298 ptp2/ptp_usb_getdata(2): reading data
    0.234313 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.234327 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.235425 gphoto2-port(2): Could only read 42 out of 512 byte(s)
    0.235443 gphoto2-port(3): Hexdump of 42 = 0x2a bytes follows:
    0000 2a 00 00 00 02 00 01 98-07 00 00 00 0d 00 00 00 *...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc 87 dc 88 dc-d3 dc ..........
    0.235458 ptp2/ptp_usb_getresp(2): reading response
    0.235471 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.235484 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.235800 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.235817 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-07 00 00 00 ....... ....
    0.235848 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.235900 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-08 00 00 00 01 b1 00 00 ................
    0.236047 ptp2/ptp_usb_getdata(2): reading data
    0.236062 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.236076 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.237175 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.237193 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-08 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.237209 ptp2/ptp_usb_getresp(2): reading response
    0.237222 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.237235 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.237550 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.237567 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-08 00 00 00 ....... ....
    0.237591 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.237606 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-09 00 00 00 03 b1 00 00 ................
    0.237923 ptp2/ptp_usb_getdata(2): reading data
    0.237938 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.237952 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.239050 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.239067 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-09 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.239083 ptp2/ptp_usb_getresp(2): reading response
    0.239095 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.239109 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.239427 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.239446 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-09 00 00 00 ....... ....
    0.239470 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.239485 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-0a 00 00 00 02 bf 00 00 ................
    0.239673 ptp2/ptp_usb_getdata(2): reading data
    0.239688 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.239702 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.240802 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.240820 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-0a 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.240835 ptp2/ptp_usb_getresp(2): reading response
    0.240848 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.240861 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.241174 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.241192 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0a 00 00 00 ....... ....
    0.241215 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.241230 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-0b 00 00 00 00 38 00 00 .............8..
    0.241548 ptp2/ptp_usb_getdata(2): reading data
    0.241563 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.241577 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.242675 gphoto2-port(2): Could only read 42 out of 512 byte(s)
    0.242694 gphoto2-port(3): Hexdump of 42 = 0x2a bytes follows:
    0000 2a 00 00 00 02 00 01 98-0b 00 00 00 0d 00 00 00 *...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc 87 dc 88 dc-d3 dc ..........
    0.242710 ptp2/ptp_usb_getresp(2): reading response
    0.242729 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.242743 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.243051 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.243069 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0b 00 00 00 ....... ....
    0.243093 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.243108 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-0c 00 00 00 04 b1 00 00 ................
    0.243298 ptp2/ptp_usb_getdata(2): reading data
    0.243313 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.243327 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.244426 gphoto2-port(2): Could only read 54 out of 512 byte(s)
    0.244447 gphoto2-port(3): Hexdump of 54 = 0x36 bytes follows:
    0000 36 00 00 00 02 00 01 98-0c 00 00 00 13 00 00 00 6...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc 87 dc 88 dc-89 dc 97 de 9b de 9c de ................
    0030 9a de 93 de 94 de - ......
    0.244463 ptp2/ptp_usb_getresp(2): reading response
    0.244475 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.244489 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.244801 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.244820 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0c 00 00 00 ....... ....
    0.244858 gphoto2-port(2): Writing 12=0xc byte(s) to port...
    0.244874 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 01 00 04 10-0d 00 00 00 ............
    0.245047 ptp2/ptp_usb_getdata(2): reading data
    0.245062 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.245076 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.246174 gphoto2-port(2): Could only read 20 out of 512 byte(s)
    0.246193 gphoto2-port(3): Hexdump of 20 = 0x14 bytes follows:
    0000 14 00 00 00 02 00 04 10-0d 00 00 00 01 00 00 00 ................
    0010 01 00 02 00 - ....
    0.246208 ptp2/ptp_usb_getresp(2): reading response
    0.246220 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.246233 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.246924 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.246942 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0d 00 00 00 ....... ....
    0.246962 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.246977 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 05 10-0e 00 00 00 01 00 02 00 ................
    0.247048 ptp2/ptp_usb_getdata(2): reading data
    0.247063 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.247077 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.248424 gphoto2-port(2): Could only read 48 out of 512 byte(s)
    0.248442 gphoto2-port(3): Hexdump of 48 = 0x30 bytes follows:
    0000 30 00 00 00 02 00 05 10-0e 00 00 00 04 00 03 00 0...............
    0010 00 00 00 00 68 e6 01 00-00 00 00 80 a8 29 00 00 ....h........)..
    0020 00 00 ff ff ff ff 03 53-00 44 00 00 00 00 00 00 .......S.D......
    0.248457 ptp2/ptp_usb_getresp(2): reading response
    0.248470 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.248483 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.249178 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.249204 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0e 00 00 00 ....... ....
    0.249241 gphoto2-port(2): Writing 12=0xc byte(s) to port...
    0.249257 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 01 00 01 10-0f 00 00 00 ............
    0.249424 ptp2/ptp_usb_getdata(2): reading data
    0.249439 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.249454 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.251051 gphoto2-port(2): Could only read 383 out of 512 byte(s)
    0.251075 gphoto2-port(3): Hexdump of 383 = 0x17f bytes follows:
    0000 7f 01 00 00 02 00 01 10-0f 00 00 00 64 00 06 00 ............d...
    0010 00 00 c8 00 00 00 00 4f-00 00 00 14 10 15 10 16 .......O........
    0020 10 01 10 02 10 03 10 06-10 04 10 01 91 05 10 02 ................
    0030 91 07 10 08 10 03 91 09-10 04 91 0a 10 1b 10 07 ................
    0040 91 0c 10 0d 10 0b 10 05-91 0f 10 06 91 10 91 27 ...............'
    0050 91 0b 91 08 91 09 91 0c-91 0e 91 0f 91 25 91 26 .............%.&
    0060 91 15 91 14 91 13 91 16-91 17 91 20 91 f0 91 18 ........... ....
    0070 91 21 91 f1 91 1d 91 0a-91 1b 91 1c 91 1e 91 1a .!..............
    0080 91 53 91 54 91 60 91 55-91 57 91 58 91 59 91 5a .S.T.`.U.W.X.Y.Z
    0090 91 1f 91 fe 91 ff 91 28-91 29 91 2d 91 2e 91 2f .......(.).-.../
    00a0 91 01 98 02 98 03 98 04-98 05 98 52 90 53 90 57 ...........R.S.W
    00b0 90 58 90 59 90 5a 90 5f-90 07 00 00 00 09 40 04 .X.Y.Z._......@.
    00c0 40 05 40 03 40 02 40 07-40 01 c1 03 00 00 00 02 @.@.@.@.@.......
    00d0 d4 07 d4 06 d4 01 00 00-00 01 38 0b 00 00 00 01 ..........8.....
    00e0 30 02 30 06 30 0a 30 08-30 01 38 01 b1 03 b1 02 0.0.0.0.0.8.....
    00f0 bf 00 38 04 b1 0b 43 00-61 00 6e 00 6f 00 6e 00 ..8...C.a.n.o.n.
    0100 20 00 49 00 6e 00 63 00-2e 00 00 00 0f 43 00 61 .I.n.c......C.a
    0110 00 6e 00 6f 00 6e 00 20-00 45 00 4f 00 53 00 20 .n.o.n. .E.O.S.
    0120 00 35 00 30 00 30 00 44-00 00 00 08 33 00 2d 00 .5.0.0.D....3.-.
    0130 31 00 2e 00 31 00 2e 00-30 00 00 00 21 38 00 34 1...1...0...!8.4
    0140 00 38 00 36 00 61 00 62-00 32 00 39 00 63 00 36 .8.6.a.b.2.9.c.6
    0150 00 38 00 35 00 34 00 37-00 31 00 35 00 39 00 32 .8.5.4.7.1.5.9.2
    0160 00 34 00 32 00 33 00 37-00 30 00 64 00 35 00 35 .4.2.3.7.0.d.5.5
    0170 00 36 00 33 00 31 00 30-00 31 00 61 00 00 00 .6.3.1.0.1.a...
    0.251101 ptp2/ptp_usb_getresp(2): reading response
    0.251113 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.251127 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.251801 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.251819 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0f 00 00 00 ....... ....
    0.251843 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.251859 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 14 10-10 00 00 00 02 d4 00 00 ................
    0.251923 ptp2/ptp_usb_getdata(2): reading data
    0.251938 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.251952 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.253300 gphoto2-port(2): Could only read 80 out of 512 byte(s)
    0.253320 gphoto2-port(3): Hexdump of 80 = 0x50 bytes follows:
    0000 50 00 00 00 02 00 14 10-10 00 00 00 02 d4 ff ff P...............
    0010 00 0f 43 00 61 00 6e 00-6f 00 6e 00 20 00 45 00 ..C.a.n.o.n. .E.
    0020 4f 00 53 00 20 00 35 00-30 00 30 00 44 00 00 00 O.S. .5.0.0.D...
    0030 0f 43 00 61 00 6e 00 6f-00 6e 00 20 00 45 00 4f .C.a.n.o.n. .E.O
    0040 00 53 00 20 00 35 00 30-00 30 00 44 00 00 00 00 .S. .5.0.0.D....
    0.253336 ptp2/ptp_usb_getresp(2): reading response
    0.253348 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.253362 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.254051 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.254069 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-10 00 00 00 ....... ....
    0.254106 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.254122 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 14 10-11 00 00 00 07 d4 00 00 ................
    0.254174 ptp2/ptp_usb_getdata(2): reading data
    0.254188 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.254203 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.255551 gphoto2-port(2): Could only read 26 out of 512 byte(s)
    0.255571 gphoto2-port(3): Hexdump of 26 = 0x1a bytes follows:
    0000 1a 00 00 00 02 00 14 10-11 00 00 00 07 d4 06 00 ................
    0010 00 01 00 00 00 01 00 00-00 00 ..........
    0.255586 ptp2/ptp_usb_getresp(2): reading response
    0.255599 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.255612 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.256304 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.256326 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-11 00 00 00 ....... ....
    0.256357 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.256372 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 14 10-12 00 00 00 06 d4 00 00 ................
    0.256421 ptp2/ptp_usb_getdata(2): reading data
    0.256436 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.256450 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.257925 gphoto2-port(2): Could only read 92 out of 512 byte(s)
    0.257944 gphoto2-port(3): Hexdump of 92 = 0x5c bytes follows:
    0000 5c 00 00 00 02 00 14 10-12 00 00 00 06 d4 ff ff \...............
    0010 01 12 55 00 6e 00 6b 00-6e 00 6f 00 77 00 6e 00 ..U.n.k.n.o.w.n.
    0020 20 00 49 00 6e 00 69 00-74 00 69 00 61 00 74 00 .I.n.i.t.i.a.t.
    0030 6f 00 72 00 00 00 12 55-00 6e 00 6b 00 6e 00 6f o.r....U.n.k.n.o
    0040 00 77 00 6e 00 20 00 49-00 6e 00 69 00 74 00 69 .w.n. .I.n.i.t.i
    0050 00 61 00 74 00 6f 00 72-00 00 00 00 .a.t.o.r....
    0.257961 ptp2/ptp_usb_getresp(2): reading response
    0.257974 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.257988 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.258674 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.258691 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-12 00 00 00 ....... ....
    0.259716 gp-camera(2): Freeing camera...
    0.259735 gphoto2-camera(2): Exiting camera ('Canon EOS 500D')...
    0.259758 gphoto2-port(2): Writing 12=0xc byte(s) to port...
    0.259774 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 01 00 03 10-13 00 00 00 ............
    0.259926 ptp2/ptp_usb_getresp(2): reading response
    0.259944 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.259959 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.261177 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.261195 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-13 00 00 00 ....... ....
    0.261213 gphoto2-port(2): Clear halt...
    0.261301 gphoto2-port(2): Clear halt...
    0.261425 gphoto2-port(2): Clear halt...
    0.261548 gphoto2-port(2): Closing port...
    0.261631 gphoto2-filesystem(2): resetting filesystem
    0.261647 libgphoto2/gphoto2-filesys.c(2): Clearing fscache LRU list...
    0.261658 libgphoto2/gphoto2-filesys.c(2): fscache LRU list already empty
    0.261670 gphoto2-filesystem(2): Internally deleting all folders from '/'...
    0.261683 gphoto2-filesystem(2): Lookup folder '/'...
    0.261695 gphoto2-filesystem(2): Found! / is 0xe263e0
    0.261710 gphoto2-filesystem(2): Recurse delete folder 0xe263e0//
    0.261726 gphoto2-port(2): Freeing port...
    0.261741 gphoto2-port(2): Closing port...
    0.261798 gphoto2-filesystem(2): resetting filesystem
    0.261813 libgphoto2/gphoto2-filesys.c(2): Clearing fscache LRU list...
    0.261825 libgphoto2/gphoto2-filesys.c(2): fscache LRU list already empty
    0.261836 gphoto2-filesystem(2): Internally deleting all folders from '/'...
    0.261848 gphoto2-filesystem(2): Lookup folder '/'...
    0.261860 gphoto2-filesystem(2): Found! / is 0xe263e0
    0.261872 gphoto2-filesystem(2): Recurse delete folder 0xe263e0//
    lsusb | grep Canon
    Bus 001 Device 005: ID 04a9:31cf Canon, Inc.
    ls -lR of /dev/bus/usb/001
    total 0
    drwxr-xr-x 2 root root 80 Dec 25 12:54 .
    drwxr-xr-x 10 root root 200 Dec 25 12:19 ..
    crw-rw-r-- 1 root root 189, 0 Dec 25 12:19 001
    crw-rw----+ 1 root camera 189, 4 Dec 25 13:13 005
    [root@dreki 001]# ls -lR
    total 0
    crw-rw-r-- 1 root root 189, 0 Dec 25 12:19 001
    crw-rw----+ 1 root camera 189, 4 Dec 25 13:13 005
    I am member of group "camera"

    Have you tried 'sudo gphoto2 --get-all-files' as a user or were you doing this as root?
    The errors mentions /dev/bus/usb/002/003 and your camera seems to be /dev/bus/usb/001/005. If I'm on the right track, check what device is this /dev/bus/usb/002/003.
    Last edited by karol (2011-12-25 14:48:40)

  • 'Unable to check credentials of user. Permission denied...'

    Hi everyone, i have this problem when i try to login in a jsp that connects with WCC to check user and password.
    oracle.stellent.ridc.protocol.ServiceException: Unable to check credentials of user. Permission denied. Address 'xx.xx.xx.xx' is not an allowable remote socket address.
         at oracle.stellent.ridc.protocol.ServiceResponse.getResponseAsBinder(ServiceResponse.java:142)
         at oracle.stellent.ridc.protocol.ServiceResponse.getResponseAsBinder(ServiceResponse.java:108)
         at wcc.WccConnection.checkUser(WccConnection.java:597)
    The Address 'xx.xx.xx.xx' is a the IP Address of the VM where i mounted the WCC Server.
    I can access from another machine to the Control panel of the WCC with http://xx.xxx.xx.xx/cs so it has connectivity.
    Somebody said i had to change the file config.cfg in the WCC and add that address to the "SocketHostAddressSecurityFilter" variable, but it still doesnt work.
    Anyone has idea about this error?
    Thanks a lot!

    Check how Incoming Socket Connection Address Security Filter is configured. For more info see http://docs.oracle.com/cd/E23943_01/doc.1111/e14495/config.htm#INECM1695
    (don't forget to restart the server after changing the value)

  • Permission Denied in Terminal (Apache version check)

    I'm trying to chek the version of Apache in my system using Terminal entry: httpd ~v
    Each time it returns the statement: fopen: Permission denied
    httpd: could not open error log file /private/var/log/httpd/error_log.
    I know I have admin access to the system. What would be causing this error?

    Apache can't write its log to the default location under /var/log when it's executed with your permissions.
    Try "apachectl -v" at the command line.

  • Search account got - Insufficient sql database permissions for user. EXECUTE permission was denied on the object proc_Gettimerrunningjobs

    Dear all,
    I am troubleshooting a critical error showed up on Event log.  It said:
    Insufficient sql database permissions for user 'Name:domain\wss_search ....... EXECUTE permission was denied on the object 'proc_GetTimerRunningJobs', database 'SharePoint_Config', schema 'dbo'
    domain\wss_search is the default content access account. According to
    http://technet.microsoft.com/en-us/library/cc678863.aspx I should not grant it the Farm Administrators permission.
    In the Search Center I am able to search out documents as expected so I think the search service is fine.   However I have no clue why this account is trying to access 'proc_GetTimerRunningJobs'.
    Mark

    Hi Mark,
    This issue was caused by the search account’s permission. For resolving your issue, please do as the followings:
    Expand your SharePoint Configuration database 'SharePoint_Config' and navigate to ‘proc_GetTimerRunningJobs’ under Programmability ->Stored Procedures
    Right-click proc_GetTimerRunningJobs and choose Properties
    Click on Permission on the left launch
    Select the Search button and browse for ‘WSS_Content_Application_Pools’
    Provide ‘Execute’ permissions for ‘WSS_Content_Application_Pools’
    Click OK
    Here are some similar posts for you to take a look at:
    http://adammcewen.wordpress.com/2013/03/01/execute-permission-denied-on-sharepoint-config-db/
    http://technet.microsoft.com/en-us/library/ee513067(v=office.14).aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • I want to use icacls to deny a user's 'delete' permission on some folder

    when I use  icacls D:\test /deny user:D  the user can not access the folder, and the user do not have any permissions. I want to only deny the "delete" permission on this folder. what should  I do ?

    Hi,
    Firstly, you could use use icacls D:\test /grant user:F to grant the user “full control” permissons on the folder, then use  icacls D:\test /deny user:D to only deny the "delete" permission on this folder.
    Icacls
    http://technet.microsoft.com/en-us/library/cc753525.aspx
    Best Regards,
    Mandy 
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Hello I am on a macbook pro (retina IOS 9) i have installed xcodes and command line tools but codeblocks does not compile, terminal gives this message /Users/MacPc/Desktop/Untitled1: Permission denied      any one has a solution

    Hello I am on a macbook pro (retina IOS 9) i have installed xcodes and command line tools but codeblocks does not compile, terminal gives this message /Users/MacPc/Desktop/Untitled1: Permission denied      any one has a solution?? please...

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • After logging into facebook, I get an "access denied" message. It says I don't have permission to access facebook on this server but this is my home computer.

    Recently I've had trouble either when I try to login to facebook or after I've logged in. Usually, it's a page that says "access denied" and follows with a statement similar to not having permission to access facebook on this server. It doesn't happen every time but when it does I try various ways to get back to my facebook page...usually I can google facebook and login that way. Today it won't let me do that either. Does anyone know what this means? I don't know hardly a thing about computer technology so I don't even know where to start. Thanks!

    .usually I can google facebook and login that way.
    Create a Bookmark for Facebook. Don't go via Google.
    If you are using Safari... go to the Safari menu bar click Safari / Preferences then select the Security tab.
    Click: Show Cookies
    Delete all Facebook cookies.
    Now from the menu bar again click Safari / Empty Cache.
    Restart your Mac, launch Safari, try Facebook.
    If you still have problems, quit Safari.
    Open Keychain Access  /Applications/Utilities
    Select Passwords on the left.
    Delete the Facebook and Safari Forms Autofill keychains. Now go to the menu bar top of your screen click Keychain Access / Keychain First Aid. Enter your admin password on the left then click Verify and Repair if necessary.
    Relaunch Safari. Go to Facebook. Login with your user name and password. You should be prompted to save that data to a new keychain. Click Yes.

  • Can't access/mount hard drive, Permission denied message in Disk Utility.

    Hello,
    Need some help here. I was upgrading from 10.4 to 10.5. I got an error message when I tried to upgrade from the DVD. My hard drive had an exclamation mark by it and I was told I would need to erase it in order to install. When I tried quitting the installer, I had to go through startup disk to pick my Hard drive, which showed it had 10.4 installed. When I tried restarting, it would only boot off of the DVD. I checked startup disk again, but my hard drive was now not visible. I have a tower with a back-up system on it. When I picked it, it started up fine. I went under disk utility and the hard drive is listed, but is ghosted/grayed out. Repair & Verify Disk permissions are ghosted back as well.When I try to repair or verify disk, it says it can't it gives me the disk number and sector number and Permission Denied. I poked around on disk utility for info, and it looks like it doesn't have a mount point anymore and under permissions, it says that they are not enabled. So, apparently the access privileges have been erased & I don't know how to mount my disk again. I'm assuming I need some sort of commmand line in Terminal to restore my priveleges or get it to auto-mount. I do not want to erase my drive to upgrade. All my applications are on that drive. Please help!
    Message was edited by: koobiak

    See if Niel's User Tip can help you: I accidentally set a disk's permissions to No Access .

Maybe you are looking for