Ajax jsf - 'Permission denied to set propertyXULElement.selectedIndex'  exc

Hello,
Hope someone can help me on this.
I am using JSF, ajax,JPA-toplink and MySQL.(netbeans-glassfish) I get the following error when I try to create a new record for the second time , but not the first time as soon as I have logged into my application. Every time I logout and then login I will be able to create a record, but not for a second time in the same session.
I get this error in firefox. But in IE it just stops working, and does not throw any error.
Error: [Exception... "'Permission denied to set propertyXULElement.selectedIndex' when calling method:[nsIAutoCompletePopup::selectedIndex]" nsresult: "0x8057001e(NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame ::http://localhost:8080/PurchaseOrderTracking_1/faces/login.jsp;jsessionid=6f1a8fb53d03602888eca6f69020:: onfocus :: line 1" data: no]
The page has many UI components each of which fire an ajax transaction.
Pages with just a single ajax transaction work without any problem.
Hoping to get a solution for this please.
I can give you my scripts in detail.
Thank you for your kind help in advance.
nitharc

Hi Frank,
Indeed, the master template has a PageDef. I've set the appropriate rights and now it works.
Thanks a lot for your help!
Mircea

Similar Messages

  • Error: Permission denied for (document.domain has not been set) to call method Location.toString on (document.domain=).

    Why am I getting these errors Error: Permission denied for (document.domain has not been set) to call method Location.toString on (document.domain=).
    == URL of affected sites ==
    http://

    HOW DO YOU SET THIS??? I'M FRUSTRATED OVER THIS. ITS BEEN 2 MONTHS SINCE I HAVE BEEN ABLE TO PLAY ANY GAMES IN FACEBOOK DUE TO THIS PROBLEM! IT DOES NOT MATTER WHAT BROWSER I USE I STILL GET THIS SAME MESSAGE.

  • Navigate / Ajax / Permission Denied

    Greetings ...
    I am attempting to get an Ajax control working with
    Coldfusion.Navigate (see code below ) . I simply want to enter in
    data in a form, submit the form and have the output of the form
    submission in an Ajax control. I am getting a "Permission denied to
    call method XMLHttpRequest.open". I understand that this happens if
    you try to make an Ajax connection to a site that is not in your
    domain ... but this connection *is* in my domain ... so I don't
    understand what the problem is.
    I have a 3 tiered system - cold fusion is tier 2 - I hope
    that does not matter...
    -thank you for your assistance
    ------------------------------------------------------------------

    are you sure use can use js in form's ACTION attribute?
    use Coldfusion.navigate() function instead in, for example, a
    button's
    onClick event... you can also use
    ColdFusion.Ajax.submitForm() to submit
    the form asynchronously, whithout removing the form from the
    view...
    not sure though if any of this is related to your particular
    error...
    but this might:
    - is your form on a secure page? you need to make all ajax
    calls to urls
    to use full https://.... URIs.
    - are you viewing your form page through your http server or
    just by
    opening it as a file in your browser? you must use http
    server to open
    the url - ajax calls will not work if a page is opened as a
    file.
    - also make sure you are not accessing the page through
    http://127.0.0.1/... while the
    website is configured to use
    http://localhost/... - the 2 url
    will be considered by ajax to be 2
    different namespaces and it will fail.
    in general, though you are probably aware of this, if you use
    CFFORM
    inside an cf layout element (like cfdiv or cfwindow), it will
    submit to
    and show results in that element, while if you use a regular
    FORM, it
    will reload the whole page.
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • 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?

  • WebCache Failed to start : Failed to assign port 80: Permission denied

    Hi All,
    I have three server running IAS 10.1.2.0.2, running forms and reports application. One Infra and two Midtier.
    Suddenly Midtier1 is crashed, but before it happen I have already backup with TAR : OracleHome and all its related configuration files.
    After the crash, I reinstall the RH Linux same version and update and then restore ( TAR -xvf ) the backup that I have.
    When I run opmnctl startall, all ias-component started, EXCEPT one : WEB CACHE.
    When I look at Webcache event Log, here is the error :
    [11/May/2004:17:29:05 +0700] [notification 9612] [ecid: -] OracleAS Web Cache 10g (10.1.2), Build 10.1.2.0.2 050802
    [11/May/2004:17:29:05 +0700] [notification 9612] [ecid: -] OracleAS Web Cache 10g (10.1.2), Build 10.1.2.0.2 050802
    [11/May/2004:17:29:05 +0700] [notification 9403] [ecid: -] Maximum number of file/socket descriptors set to 900.
    [11/May/2004:17:29:05 +0700] [notification 9403] [ecid: -] Maximum number of file/socket descriptors set to 900.
    [11/May/2004:17:29:05 +0700] [notification 13002] [ecid: -] Maximum allowed incoming connections are 700
    [11/May/2004:17:29:05 +0700] [notification 13002] [ecid: -] Maximum allowed incoming connections are 700
    [11/May/2004:17:29:05 +0700] [alert 13305] [ecid: -] Failed to assign port 80: Permission denied
    [11/May/2004:17:29:05 +0700] [alert 9707] [ecid: -] Failed to start the server.
    [11/May/2004:17:29:05 +0700] [alert 9609] [ecid: -] The server process could not initialize.
    [11/May/2004:17:29:05 +0700] [notification 9610] [ecid: -] The server is exiting.
    [11/May/2004:17:29:05 +0700] [alert 9000] [ecid: -] Process 3268 exit(1) at 890:main.c [Build 10.1.2.0.2 050802]
    [11/May/2004:17:29:05 +0700] [warning 11917] [ecid: -] SSL wallet Origin Server Wallet file /etc/ORACLE/WALLETS/oraias/ewallet.p12 does not exist.
    [11/May/2004:17:29:05 +0700] [warning 11917] [ecid: -] SSL wallet Origin Server Wallet file /etc/ORACLE/WALLETS/oraias/ewallet.der does not exist.
    [11/May/2004:17:29:05 +0700] [warning 11919] [ecid: -] The SSL wallet autologin file /etc/ORACLE/WALLETS/oraias/cwallet.sso does not exist. Wallet does not appear to be autologin wallet.
    [11/May/2004:17:29:05 +0700] [warning 11921] [ecid: -] The origin server wallet did not open. Operating without wallet for backend. Only Diffie-Hellman anonymous connections supported to origin servers.
    [11/May/2004:17:29:05 +0700] [warning 11922] [ecid: -] Origin Server Wallet wallet fails to open at location /etc/ORACLE/WALLETS/oraias, NZE-28759, as user oraias
    [11/May/2004:17:29:06 +0700] [notification 9607] [ecid: -] The admin server started successfully.
    How can I solve this problem ?
    Thank you for your help,
    xtanto

    Hi xtanto,
    You may not have set up the privileges for running on a port less than 1024 (i.e. port 80) in your old back-uped tar-file.
    Please check Chapter 8 "Running webcached with Root Privilege" in the Web Cache Admin document.
    http://download-east.oracle.com/docs/cd/B14099_19/caching.1012/b14046/basics.htm#sthref1060
    Regards,
    Martin

  • "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)

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

  • Receiver File adapter - FTPEx: 550 Permission denied

    Hi all,
    We are getting the following error from a File receiver comm. channel:
    Delivery of the message to the application using connection AFW failed, due to: com.sap.aii.adapter.file.ftp.FTPEx: 550 Permission denied to "inbound"..
    The FTP connection is anonymous so anyone (within our network) can login on this server, folder rights are also set to all i.e. anonymous user can create, read, delete files on the target folder.
    I have tested to the target folder using IE browser, I was able to logon the server, read, create and delete files.
    Has anyone of you an idea why the adapter engine still cannot create a file?
    Regards,
    Roberto

    > Hi Roberto,
    > 'Anonymous' is a default user that exists in Unix
    > nix layer. But for this user also you need to provide
    > the file write/read/delete permissions into the
    > folder. Then only you can write a file evenif you are
    > using 'Anonymous' User.
    >
    > Cheers
    > JK
    Hi there,
    As explained before; we have tested the same FTP connection (using the same anonymous account) via a DOS session and also via IE (from the XI server), both tests were successful and we were able to create/delete files without any problem.
    So again, the problem is only with the File/FTP adapter which for some unexplained reason cannot get access to this folder.
    Are there any special (not mentioned in the SAP documentation?) prerequisites to establish a FTP connection using the file adapter?
    Any help is highly appreciated!
    Thanks, Roberto
    BTW; we are on SP14 and the XI server runs under a Windows Server machine.
    Message was edited by: Roberto Viana

  • FTP exception: Can't open passive connection: Permission Denied

    I have a File sender adapter, with FTP as transport protocol.
    The adapter polls a directory each 60 seconds.
    All works perfectly but <b>sometimes</b> I get the following error :
    Channel CC_GBL_FlatFileSender: Error connecting to ftp server ...: com.sap.aii.adapter.file.ftp.FTPEx: 425 Can't open passive connection: Permission denied.
    And 60 seconds after, no more error.
    Any idee of why I get this error occasionally ?
    In the sender file adapte, data connection is set to Passive.  Do I have to set it to Active ?
    Thanks in advance,
    Laurence

    Hi
    Data Connection
         -  Active
    In active mode, the server establishes a data connection from its data port, port 20, to an end point chosen by the client.
         -  Passive
    In passive mode, the client establishes a data connection to the port required by the server.
    The default setting is a passive data connection. Only change this setting if you have a specific reason. This is what is recommended by SAP.
    It is possible that Passive FTP mode may terminate session.
    In this mode the server "listen" on a data port (which is not its default data port) and to wait for a connection rather than initiate one upon receipt of a transfer command. The response to this command includes the host and port address this server is listening on.
    In the FTP protocol two ports are normally used, 20 and 21.
    Port 21 is the control channel in which requests such as PUT, GET, and PWD are sent to the server.
    Port 20 is the data channel in which actual files, folders and directory
    listings are sent.
    Normally, when you connect to an FTP site, the site establishes the data
    connection to your PC (the client) on Port 20. However, if the site allows
    passive transfers, you can have your PC establish the data connection. It is
    recommended that you use passive mode for most transfers.
    Regards
      Sumit Jain
    **Reward with points if you find it useful.

  • ERROR = e=13 semget(20046,1,1023) (13: Permission denied) [semux.c   93]

    Hi Everybody,
    Dispatcher is not running . The following error found in dev_disp file
    ERROR => e=13 semget(20046,1,1023) (13: Permission denied) [semux.c      939]
    In dev_ms
    [Thr  1] *** ERROR => MsSClientHandle: no server provides service ENQ  (4), requested from eccr3sox_TU2_00 [msxxserv_mt. 4681]
    in stderr2
    ERROR => e=13 semget(20046,1,1023) (13: Permission denied) [semux.c      939]
    ERROR => DpShmPrfCreate : SemInit SEM_PROFILE [dpxxprf.c    402]
    Any idea??
    Regards
    Santanu

    Hi,
    dev_w0
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      00
    M sid        TU2
    M systemid   274 (HP (IA-64) with HP-UX)
    M relno      7000
    M patchlevel 0
    M patchno    185
    M intno      20050900
    M make:      single threaded, Unicode, 64 bit, optimized
    M pid        16542
    M
    M
    M Tue Sep  8 16:05:21 2009
    M  kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q01=> ThInit, WPStart (Workproc 0 1 16542) [thxxhead.c   1290]
    M  ThInit: running on host eccr3sox
    M  calling db_connect ...
    C  Oracle Client Version: '10.2.0.1.0'
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TU2 on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 0x60000000035969b0 0x600000000359e350 0x60000000035aeb28
    C  Attaching to DB Server TU2 (con_hdl=0,svchp=0x60000000035aea58,srvhp=0x60000000035b0dc8)
    C
    C Tue Sep  8 16:05:23 2009
    C  Starting user session (con_hdl=0,svchp=0x60000000035aea58,srvhp=0x60000000035b0dc8,usrhp=0x600000000359eb68)
    C
    C Tue Sep  8 16:05:24 2009
    C  Now '/@TU2' is connected: con_hdl=0, nls_hdl=0, session_id=1177.
    C  Got SAPR3's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=0x60000000035aea58,usrhp=0x600000000359eb68)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPR3/<pwd>@TU2 on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 0x60000000035969b0 0x600000000359e350 0x60000000035aeb28
    C  Starting user session (con_hdl=0,svchp=0x60000000035aea58,srvhp=0x60000000035b0dc8,usrhp=0x600000000359eb68)
    C  Now 'SAPR3/<pwd>@TU2' is connected: con_hdl=0, nls_hdl=0, session_id=1177.
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  DB instance TU2 is running on eccr3sox with ORACLE version 10.2.0.2.0 since SEP 08, 2009, 15:58:27
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20090908 160521 eccr3sox
    C  build_stmt: reallocating stmt buffer: 256 -> 2000 characters
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,*
    .sar,*.gif
    I
    I Tue Sep  8 16:05:29 2009
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF                 (addr: 0xc000000028000000, size: 20000768)
    M  SHM_ROLL_AREA                (addr: 0xc00000002a000000, size: 134217728)
    M  SHM_PAGING_AREA              (addr: 0xc000000032000000, size: 67108864)
    M  SHM_ROLL_ADM                 (addr: 0xc000000017975000, size: 2672386)
    M  SHM_PAGING_ADM               (addr: 0xc000000010640000, size: 656416)
    M  ThCreateNoBuffer             allocated 560152 bytes for 1000 entries at 0xc000000036002000
    M  ThCreateNoBuffer             index size: 3000 elems
    M  ThCreateVBAdm                allocated 12176 bytes (50 server) at 0xc000000007081000
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation std
    X  <ES> Info: use normal pages (no huge table support available)
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    B  dbntab: NTAB buffers attached
    B  dbntab: Buffer FTAB(hash header)  (addr: 0xc00000003608c090, size: 584)
    B  dbntab: Buffer FTAB(anchor array) (addr: 0xc00000003608c2e0, size: 319864)
    B  dbntab: Buffer FTAB(item array)   (addr: 0xc0000000360da460, size: 1279360)
    B  dbntab: Buffer FTAB(data area)    (addr: 0xc0000000362129e0, size: 30722048)
    B  dbntab: Buffer IREC(hash header)  (addr: 0xc000000037f61090, size: 584)
    B  dbntab: Buffer IREC(anchor array) (addr: 0xc000000037f612e0, size: 319864)
    B  dbntab: Buffer IREC(item array)   (addr: 0xc000000037faf460, size: 319808)
    B  dbntab: Buffer IREC(data area)    (addr: 0xc000000037ffd5a0, size: 6144000)
    B  dbntab: Buffer STAB(hash header)  (addr: 0xc0000000385db090, size: 584)
    B  dbntab: Buffer STAB(anchor array) (addr: 0xc0000000385db2e0, size: 319864)
    B  dbntab: Buffer STAB(item array)   (addr: 0xc000000038629460, size: 319808)
    B  dbntab: Buffer STAB(data area)    (addr: 0xc0000000386775a0, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 0xc000000038967090, size: 2872)
    B  dbntab: Buffer TTAB(anchor array) (addr: 0xc000000038967bd0, size: 319864)
    B  dbntab: Buffer TTAB(item array)   (addr: 0xc0000000389b5d50, size: 799600)
    B  dbntab: Buffer TTAB(data area)    (addr: 0xc000000038a790c0, size: 5837080)
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 22, CON_ID = -1
    B  dbstat: TABSTAT buffer attached (addr: 0xc00000003d010820)
    B  dbtbxbuf: Buffer TABL  (addr: 0xc0000003c2000110, size: 50000896, end: 0xc0000003c4faf510)
    B  dbtbxbuf: Buffer TABLP (addr: 0xc0000003c5000110, size: 20480000, end: 0xc0000003c6388110)
    B  dbexpbuf: Buffer EIBUF (addr: 0xc00000001b800120, size: 4194304, end: 0xc00000001bc00120)
    B  dbexpbuf: Buffer ESM   (addr: 0xc00000001d400120, size: 4194304, end: 0xc00000001d800120)
    B  dbexpbuf: Buffer CUA   (addr: 0xc000000039010120, size: 3072000, end: 0xc0000000392fe120)
    B  dbexpbuf: Buffer OTR   (addr: 0xc000000027800120, size: 4194304, end: 0xc000000027c00120)
    B  dbcalbuf: Buffer CALE  (addr: 0xc000000017c03000, size: 500000, end: 0xc000000017c7d120)
    B  db_register_param_funcs failed
    M  *** ERROR => ThCallHooks: event handler db_init for event CREATE_SHM failed [thxxtool3.c  259]
    M  *** ERROR => ThIPCInit: hook failed [thxxhead.c   2105]
    M  ***LOG R19=> ThInit, ThIPCInit ( TSKH-IPC-000001) [thxxhead.c   1527]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: ThIPCInit (step 1, th_errno 17, action 3, level 1) [thxxhead.c   10521]
    M
    M  Info for wp 0
    M
    M    pid = 16542
    M    severity = 0
    M    status = 0
    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM
    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   723]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  259]
    M  ThCallHooks: call hook >BtcCallLgCl< for event BEFORE_DUMP
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 16542) [dpuxtool.c   268]
    END -
    Regards
    Santanu

  • Errno 13: Permission Denied in DB13 check db

    In DB13 for check db I get the following error:
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000422, user ID MCCARTJX)
    No application server found on database host - rsh/Gateway will be used
    Execute logical command BRCONNECT On host RP20-DB-PUB
    Parameters: -u / -jid CHECK20080922094820 -c -f check
    BR0801I BRCONNECT 7.00 (16)
    BR0252E Function fopen() failed for 'K:\oracle\RP2\sapcheck\cdywigan.chk' at location main-9
    BR0253E errno 13: Permission denied
    BR0121E Processing of log file K:\oracle\RP2\sapcheck\cdywigan.chk failed
    BR0806I End of BRCONNECT processing: cdywigan.chk2008-09-22 09.48.22
    BR0280I BRCONNECT time stamp: 2008-09-22 09.48.22
    BR0804I BRCONNECT terminated with errors
    External program terminated with exit code 3
    BRCONNECT returned error status E
    Job finished
    I've checked and seen that SAPSERVICE<SID> and <SID>adm do indeed have full access to the K:\oracle\RP2\sapcheck directory. What else could be wrong?

    try to run brconnect manually at OS level with user [sid]adm.
    but first, run this comand:
    for sh:
    set BR_TRACE = 15 ; export BR_TRACE
    you wil lhavea lot more information on what it is trying to do. I suspect that brconnect is trying to run on an application server which, obviously, does not have Oracle installed.

  • [SOLVED] mpd: Failed to stat /var/lib/mpd/music: Permission denied

    I've set up mpd according to the wiki.
    /etc/mpd.conf:
    music_directory "/var/lib/mpd/music"
    playlist_directory "/var/lib/mpd/playlists"
    db_file "/var/lib/mpd/mpd.db"
    log_file "/var/log/mpd/mpd.log"
    pid_file "/run/mpd/mpd.pid
    state_file "/var/lib/mpd/mpdstate"
    user "mpd"
    audio_output {
    type "pulse"
    name "My Pulse Output"
    # server "remote_server" # optional
    # sink "remote_server_sink" # optional
    /var/lib/mpd/music is a symlink to /home/dennis/Musik/mpd/. I've given the mpd user recursive ownership to both /var/lib/mpd/ and /home/dennis/Musik/mpd/.
    When I try to update the database (I've tried both mpc and Sonata), the log says
    Failed to stat /var/lib/mpd/music: Permission denied
    What permission am I missing?
    SOLUTION:
    I used the script config instead and it worked flawlessly.
    Last edited by snufkin (2013-01-03 00:18:44)

    I returned this:
    ene 17 21:00:55 ddich systemd[1]: Starting Music Player Daemon...
    ene 17 21:00:55 ddich systemd[1]: Started Music Player Daemon.
    ene 17 21:00:55 ddich mpd[14061]: output: No 'audio_output' defined in config file
    ene 17 21:00:55 ddich mpd[14061]: output: Attempt to detect audio output device
    ene 17 21:00:55 ddich mpd[14061]: output: Attempting to detect a alsa audio device
    ene 17 21:00:55 ddich mpd[14061]: ALSA lib confmisc.c:768:(parse_card) cannot find card '0'
    ene 17 21:00:55 ddich mpd[14061]: ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_card_dri...ctory
    ene 17 21:00:55 ddich mpd[14061]: ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
    ene 17 21:00:55 ddich mpd[14061]: ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_concat r...ctory
    ene 17 21:00:55 ddich mpd[14061]: ALSA lib confmisc.c:1251:(snd_func_refer) error evaluating name
    ene 17 21:00:55 ddich mpd[14061]: ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer re...ctory
    ene 17 21:00:55 ddich mpd[14061]: ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file ...ctory
    ene 17 21:00:55 ddich mpd[14061]: ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM default
    ene 17 21:00:55 ddich systemd[1]: mpd.service: main process exited, code=killed, status=6/ABRT
    ene 17 21:00:55 ddich systemd[1]: Unit mpd.service entered failed state.

  • Make: execvp: /usr/bin: Permission denied[SOLVED]

    hey, I'm trying to install an app called jconv.
    I get this error:
    make: execvp: /usr/bin: Permission denied
    here is the make file..(don't have the first clue on making a PKGBUILD)
    #  Copyright (C) 2005-2007 Fons Adriaensen <[email protected]>
    #  This program is free software; you can redistribute it and/or modify
    #  it under the terms of the GNU General Public License as published by
    #  the Free Software Foundation; either version 2 of the License, or
    #  (at your option) any later version.
    #  This program is distributed in the hope that it will be useful,
    #  but WITHOUT ANY WARRANTY; without even the implied warranty of
    #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    #  GNU General Public License for more details.
    #  You should have received a copy of the GNU General Public License
    #  along with this program; if not, write to the Free Software
    #  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    PREFIX = /usr
    SUFFIX := $(shell uname -m | sed -e 's/^unknown/$//' -e 's/^i.86/$//' -e 's/^x86_64/$/64/')
    LIBDIR = lib$(SUFFIX)
    DISTDIR = jconv-$(VERSION)
    VERSION = 0.2.0
    LDFLAGS += -L$(PREFIX)/$(LIBDIR)
    CPPFLAGS += -O3 -Wall -MMD -MP -DVERSION=\"$(VERSION)\"
    #CPPFLAGS += -march=i686 -mtune=pentium4 -msse -msse2 -m3dnow -O3 -ffast-math
    # Uncomment if you use a libsndfile version without support for setting/getting the Ambisonic flags.
    CPPFLAGS += -DNOAMBIS=1
    all:    jconv fconv mkwavex
    JCONV_O =    jconv.o config.o jconfig.o jclient.o
    jconv:    LDLIBS += -lzita-convolver -lfftw3f -lsndfile -lclthreads -ljack -lpthread -lrt
    jconv:    $(JCONV_O)
        g++ $(LDFLAGS) -o $@ $(JCONV_O) $(LDLIBS)
    $(JCONV_O):
    -include $(JCONV_O:%.o=%.d)
    FCONV_O =    fconv.o config.o fconfig.o
    fconv:    LDLIBS += -lzita-convolver -lfftw3f -lsndfile -lpthread -lrt
    fconv:    $(FCONV_O)
        g++ $(LDFLAGS) -o $@ $(FCONV_O) $(LDLIBS)
    $(FCONV_O):
    -include $(FCONV_O:%.o=%.d)
    MKWAVEX_O =    mkwavex.o impdata.o
    mkwavex : LDLIBS += -lsndfile -lrt
    mkwavex:    $(MKWAVEX_O)
        g++ $(LDFLAGS) -o $@ $(MKWAVEX_O) $(LDLIBS)
    install:    jconv fconv mkwavex
        /usr/bin/install -m 755 jconv $(PREFIX)/bin
        /usr/bin/install -m 755 fconv $(PREFIX)/bin
        /usr/bin/install -m 755 mkwavex $(PREFIX)/bin
    clean:
        /bin/rm -f *~ *.o *.a *.d *.so jconv fconv
    Last edited by funkmuscle (2008-10-23 21:51:15)

    Thanx Chok. I know that. That's why I'm posting this. This app was make for debian so it's something to do with:
    install:    jconv fconv mkwavex
        /usr/bin/install -m 755 jconv $(PREFIX)/bin
        /usr/bin/install -m 755 fconv $(PREFIX)/bin
        /usr/bin/install -m 755 mkwavex $(PREFIX)/bin
    solved...I removed [/usr/bin/install -m 755] and replaced with [install]
    so it looked like this:
    install $(PREFIX)/bin
    Last edited by funkmuscle (2008-10-23 21:50:26)

  • Permission Denied on Solaris 10 NFS share, shared trough Windows Server 2008R2

    Hello, 
    We have a NFS share on Windows Server 2008 R2 setup the following way, 
    NTFS permissions for ANONYMOUS LOGON and Everyone groups are set to Full control.
    When mounting this share on our Solaris workstation, it mounts and we can view files in that mount but cannot edit or write to it.
    mount -f nfs 10.0.0.2:/Folder/ /test
    permissions are set as:
    drwxrwxrwx 2 nobody nobody 4096 Mar 4 08:57 test/
    when in test direcorie, trying to copy a file gives this error:
    cp gp.txt gp_1.txt
    cp: cannot create gp_1.txt: Permission denied
    Please help,
    Thanks

    Hi,
    Is there any error message in the Event Log on Windows Server 2008 R2? Please try to install the hotfix in the KB article below.
    "Permission Denied" error when a UNIX user accesses files on an NFS share in Windows Server 2008 R2
    http://support.microsoft.com/kb/2485529
    Best Regards,
    Mandy 
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Executing window.opener.FunName from Web IC pop-up = Permission Denied

    Hello,
    I have modified a copy of the BuPaCreate view and controller.  When the user hits save, I open a child window to perform some validation using an external system.  I want to write the corrected values back to the form on the BuPaCreate view and then submit the form.  I created a JavaScript function within BuPaCreate to do this.  I'm running into problems when I try to execute this function from the pop-up window.   It is giving a permission denied error.  I made certain my domain and server names are the same. 
    Has anyone else been able to execute a function within a Web IC view in this manner before?  Is there an alternate method for returning the corrected values.
    Thank you for any help you may be able to provide.  I promise to reward all usefull answers.
    Thank you,
    John

    <i>If I leave the method setting out completely, it defaults to POST.</i>
    -->Yes if you dont use anything, then default value will be "Post". But it will give error when you mention explicitly in case of child window usage.
    -->In your code instead of using "element.innerText = val;", you can use
    "element.innerHTML = val;
    --> You need to use the below code get the value from child to main window:
                <script language="javascript" event="onLoad()">
                       opener.document.htmlb_form_1.fieldID.value = <%= your_value %>;
                       window.self.close();
          </script>
    Here is the sample code which handles the child & parent window..Have a look..
    Here is the similar example. I used MVC concept:
    <b>Note:</b> But instead of Model class i used APplication class. You can change ito MODEL Class where ever applicaable.
    Let me know if you have any issue:
    <b>Main.htm:</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2002+design2003" >
      <htmlb:page title="Add Employee Details " >
        <htmlb:form action="POST" >
          Account Number:
          <htmlb:inputField id          = "Account"
                            showHelp    = "true"
                            value       = "<%= Account %>"
                            onValueHelp = "javascript:window.open('acctpop.do?showppopup=true', '_blank', 'Account Details','width=100,height=300');" />
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>Page attribute:</b>
    account TYPE string
    <b>Acctpop.htm</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2003" >
      <htmlb:page title="Test" >
        <htmlb:form id="my_window" >
          <%
      data TV_ITERATOR Type Ref To zcl_itr." - Iterator Function
      data iterator type ref to IF_HTMLB_TABLEVIEW_ITERATOR.
      create object tv_iterator exporting appl_cons = application.
      iterator = tv_iterator.
          %>
          <htmlb:tableView id               = "pop"
                           width            = "200"
                           headerVisible    = "true"
                           design           = "alternating"
                           visibleRowCount  = "10"
                           fillUpEmptyRows  = "true"
                           selectionMode    = "SINGLESELECT"
                           selectedRowIndex = "<%= row_index %>"
                           onRowSelection   = "MyEventRowSelection"
                           showNoMatchText  = "true"
                           filter           = "server"
                           sort             = "server"
                           onHeaderClick    = "MyEventHeaderClick"
                           table            = "<%= it_account %>"
                           iterator         = "<%= iterator %>" >
          </htmlb:tableView>
          <%
      if account is not initial.
          %>
          <htmlb:inputField id      = "checked"
                            visible = "FALSE"
                            value   = "<%= lv_checked %>" />
                <script for="checked" language="javascript" even="onLoad()">
                       opener.document.htmlb_form_1.account.value = <%= account %>;
                       window.self.close();
          </script>
          <%
      endif.
          %>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>Controller Class:</b>
    METHOD DO_INIT.
      CREATE OBJECT APPL.
      SELECT * FROM SFLIGHT INTO TABLE APPL->ITAB.
    ENDMETHOD
    METHOD DO_REQUEST.
      DATA: POPVIEW TYPE REF TO IF_BSP_PAGE.
      DISPATCH_INPUT( ).
      DATA: LV_FIELD TYPE STRING.
    * Get the value of Page level variables.
      LV_FIELD = REQUEST->GET_FORM_FIELD( 'showppopup' ).
      IF LV_FIELD IS NOT INITIAL .
        APPL->VIEW_NAME = 'acctpop.htm'.
      ENDIF.
      IF APPL->VIEW_NAME IS INITIAL.
        APPL->VIEW_NAME = 'main.htm'.
      ENDIF.
      POPVIEW = CREATE_VIEW( VIEW_NAME = APPL->VIEW_NAME ).
      IF APPL->VIEW_NAME = 'acctpop.htm'.
        POPVIEW->SET_ATTRIBUTE( NAME = 'it_account' VALUE = APPL->ITAB ).
        POPVIEW->SET_ATTRIBUTE( NAME = ' accout' VALUE = APPL->account ).
      ENDIF.
      CALL_VIEW( POPVIEW ).
    ENDMETHOD.
    METHOD DO_HANDLE_DATA.
    data: FIELD TYPE IHTTPNVP.
      READ TABLE FORM_FIELDS WITH TABLE KEY
      NAME = ' Account ' INTO FIELD.
      ME-> Account = FIELD-VALUE.
    ENDMETHOD.
    METHOD DO_HANDLE_EVENT.
      DATA: IND TYPE I.
      DATA: TV TYPE REF TO CL_HTMLB_TABLEVIEW.
      DATA: EVENT1 TYPE REF TO CL_HTMLB_EVENT.
      EVENT1 = CL_HTMLB_MANAGER=>GET_EVENT( RUNTIME->SERVER->REQUEST ).
      TV ?= CL_HTMLB_MANAGER=>GET_DATA(
      REQUEST = RUNTIME->SERVER->REQUEST
      NAME = 'tableView'
      ID = 'pop' ).
      IF TV IS NOT INITIAL.
        DATA: TV_DATA TYPE REF TO CL_HTMLB_EVENT_TABLEVIEW.
        TV_DATA = TV->DATA.
        IF TV_DATA->SELECTEDROWINDEX IS NOT INITIAL.
          DATA: ROW LIKE LINE OF APPL->ITAB.
          READ TABLE APPL->ITAB INDEX TV_DATA->SELECTEDROWINDEX INTO ROW.
          DATA VALUE TYPE STRING.
          APPL-> Account = ROW- Account.
        ENDIF.
      ENDIF.
    ENDMETHOD.
    Hope this will help you.
    Let me know if you have any queries.
    Raja T

Maybe you are looking for

  • Kernel Panic Issue - mid 2010 MacBook Pro

    I need some help with this kernel panic situation I'm experiencing. The number of panics have progressively gotten worse in the past couple months, and had increased to a panic about every half hour. Today I went to see the Apple Geniuses and they di

  • Creating a scrapbook in ps elements 11

    When I create a new blank file, the window that opens for the project, is suppose to have a preset for scrapbook,like in the other versions, or it has changed for something else. I do see one that says clipboard, but is not highlighted, so it does no

  • Selecting Multiple fields from fillable form in Adobe Reader

    I created a form in Adobe Pro, and want to be able to select multiple fields to cut and paste the results in other parts of the form. Does anyone know of a way to do this? I would appreciate any help! Thankyou

  • How to arrange checkbox in layout as shown in the link

    I need to arrange my checkbox in the layout shown in link below. http://picasaweb.google.com/lh/photo/3U2T_tiUB0bo71SNL9N8MQ?feat=directlink By any chance we can make this happen ?

  • Oracle AQ vs Weblogic JMS

    Hello, I have option to use Oracle AQ or Weblogic JMS for message persistence. Appreciate any one provide information or link for usability/comparative analysis of AQ and Weblogic JMS. i.e. Features of AQ Vs Features of Weblogic JMS. pro's and con's