[SOLVED] Running cupsd without root permission.

Hello,
This is a newbie question about running the CUPS daemon as a regular user.
The Arch Wiki page on CUPS said to "start the cups ... daemon" but did not say how.
I searched the web and found that you can start it as a root user with the following command:
# cupsd
At this point, I can setup a printer, and everythings prints properly. However, I have to restart cupsd each time I reboot. Being a root only command, I can't add it to my startup script.
What do I do?
Here are some more details:
I installed 64 bit arch a few days ago.
I'm not using a desktop environment, just openbox window manager. The startup script I am using is the openbox-session autostart script.
If I run the command "cupsd" as a regular user, I get bash: /usr/bin/cupsd: Permission denied. This is how I know it will not work. This rules out a typo in the startup script.
Here is a list of all the steps/commands used to install cups:
Turn printer on
$ su
enter root password
# pacman -S cups
# pacman -S cups-filters
# pacman -S ghostscript
# pacman -S gsfonts
# pacman -S gutenprint
# cupsd
# exit
$ firefox -new-window http://localhost:631
Adding Printers and Classes
Add Printer
Login as root with the root password
Select the local printer detected
Default Name, Description, Location
Select the model: Canon PIXMA MP510
Default options
Printed a test page.
Got excited.
Spent 4 hours trying to run cupsd in a startup script.
I tried to add my regular user to the lp group.
$ su
enter root password
# gpasswd -a michael lp
$ exit
$ groups michael
confirmed that I'm added to lp
$ cupsd
I tried to chmod /usr/bin/cupsd, but got a weird error message "Child exited on signal 15". I used pacman to uninstall then reinstall cups undo this attempt.
$ su
enter root password
# chmod a+rwx /usr/bin/cupsd
# exit
$ cupsd
Some sites said to edit /etc/cups/cupsd.conf and comment out some lines. However, none of the lines mentioned exist in my /etc/cups/cupsd.conf file. I tried to comment out a few that looked close, but no success. I ended up commenting out everything and still no success. I used pacman to uninstall then reinstall cups undo this attempt, returning /etc/cups/cupsd.conf to it's original condition. Here is the file:
# "$Id: cupsd.conf.in 7888 2008-08-29 21:16:56Z mike $"
# Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a
# complete description of this file.
# Log general information in error_log - change "warn" to "debug"
# for troubleshooting...
LogLevel warn
# Only listen for connections from the local machine.
Listen localhost:631
Listen /run/cups/cups.sock
# Show shared printers on the local network.
Browsing On
BrowseLocalProtocols dnssd
# Default authentication type, when authentication is required...
DefaultAuthType Basic
# Web interface setting...
WebInterface Yes
# Restrict access to the server...
<Location />
Order allow,deny
</Location>
# Restrict access to the admin pages...
<Location /admin>
Order allow,deny
</Location>
# Restrict access to configuration files...
<Location /admin/conf>
AuthType Default
Require user @SYSTEM
Order allow,deny
</Location>
# Set the default printer/job policies...
<Policy default>
# Job/subscription privacy...
JobPrivateAccess default
JobPrivateValues default
SubscriptionPrivateAccess default
SubscriptionPrivateValues default
# Job-related operations must be done by the owner or an administrator...
<Limit Create-Job Print-Job Print-URI Validate-Job>
Order deny,allow
</Limit>
<Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
# All administration operations require an administrator to authenticate...
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
# All printer operations require a printer operator to authenticate...
<Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
# Only the owner or an administrator can cancel or authenticate a job...
<Limit Cancel-Job CUPS-Authenticate-Job>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit All>
Order deny,allow
</Limit>
</Policy>
# Set the authenticated printer/job policies...
<Policy authenticated>
# Job/subscription privacy...
JobPrivateAccess default
JobPrivateValues default
SubscriptionPrivateAccess default
SubscriptionPrivateValues default
# Job-related operations must be done by the owner or an administrator...
<Limit Create-Job Print-Job Print-URI Validate-Job>
AuthType Default
Order deny,allow
</Limit>
<Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
AuthType Default
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
# All administration operations require an administrator to authenticate...
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
# All printer operations require a printer operator to authenticate...
<Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
# Only the owner or an administrator can cancel or authenticate a job...
<Limit Cancel-Job CUPS-Authenticate-Job>
AuthType Default
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit All>
Order deny,allow
</Limit>
</Policy>
# End of "$Id: cupsd.conf.in 7888 2008-08-29 21:16:56Z mike $".
Thanking those in advance that can help.
Last edited by mrallaire (2013-10-20 05:37:52)

Well, the problem is now resolved. After using my wife's printer for 1.5 months I finally had the time to try it again. I got it working. I entered a lot of different commands, but the following is what finally did the trick. The ideas came from ThomasR on another forum post: https://bbs.archlinux.org/viewtopic.php?id=35567
<code>
# killall cupsd
# groupadd printadmin
# usermod -aG printadmin myusername
# nano /etc/cups/cupsd.conf
Add the following to the bottom of the file and save:
   SystemGroup printadmin
# cupsd
Add the printer using the web-based administration interface (in the web browser, go to URL http://localhost:631)
</code>
I looks like the lp group stuff that I entered in my first post was a few commands short of being effective. The printadmin group commands worked wonderfully. After rebooting the computer the change stuck, so I never had to restart the cups daemon each time I rebooted the computer.
I don't know what way is better to start the cups daemon, cupsd or systemctl.
<code>
# cupsd
vs.
# systemctl enable cups.service
# systemctl start cups.service
</code>

Similar Messages

  • [Solved] Running XBMC without the GUI

    Hi,
    I'm using XBMC as a way to stream all my video and music to my xbox 360, which works really well. The problem is when i want to use my desktop while xbmc is on, because the gui doesnt let me get back to my desktop. I would like to be able to use my computer while at the same time its streaming to my xbox. Am I just being an idiot and theres a simple command to minimise the program?
    Thanks
    Last edited by unreal_robbo (2011-05-04 16:18:09)

    Thanks for the reply, also while mashing the keyboard i found ' \ ' lets u switch between fullscreen and windowed.
    Last edited by unreal_robbo (2011-05-03 14:34:05)

  • How to install from existing linux without root privilege?

    We have a ubuntu server for develop in our company and I have a account. I am more familiar with archlinux. However, I can't just tell the system administrator to replace ubuntu with arch, since that would break everything. And I do not have root privilege. So I am wondering would it possible to install archlinux in the home directory, and use it like a virtual machine?

    DSpider wrote:
    Pacman needs root privileges (sudo) to work.
    So if sudo works for you, then you have root privileges.
    Maybe fakeroot or fakechroot?
    Trilby wrote:
    Ubuntu + pacman != arch.
    If you are able/allowed to reboot the machine, you certainly can install arch on a flash drive and have your portable system that you would run on their hardware.
    I am asking something different. I want to run arch on another linux.
    ewaller wrote:
    So, as a user on the system, you should be able to install anything you want to your home directory.
    What, specifically, would you like to install to your home directory that you can run with plain user permissions without causing impact to other users.  I am confused as to what you think you want to do..
    Something like, install software (including pacman) to home directory via pacman. Start a server by rc.d (I think in this case, sys-V is better than systemd).
    For example, I could run this command in ubuntu without root permission, and that ubuntu server didn't install mysql.
    $ pacman -S mysql
    $ rc.d start mysqld
    $ #Or "systemstl start mysqld.service"

  • [Solved] Running mpd as user mpd with systemd without using mpd.conf

    Maybe this is tivial, but I searched about an hour without any results. I want to run mpd as user mpd. I cant use the mpd config file since mpd set the UID and GID explicitely resulting in mpd not having the necessary supplementary groups to access the locally shared music on my pc. Well I tried to run mpd with systemd by
    # systemctl start mpd
    and  the systemd contains the user mpd
    $ cat /etc/systemd/system/default.target.wants/mpd.service
    [Unit]
    Description=Music Player Daemon
    After=network.target sound.target
    [Service]
    User=mpd
    ExecStart=/usr/bin/mpd --no-daemon
    # allow MPD to use real-time priority 50
    LimitRTPRIO=50
    LimitRTTIME=-1
    # move MPD to a top-level cgroup, as real-time budget assignment fails
    # in cgroup /system/mpd.service, because /system has a zero real-time
    # budget; see
    # http://www.freedesktop.org/wiki/Software/systemd/MyServiceCantGetRealtime/
    ControlGroup=cpu:/mpd
    # assign a real-time budget
    ControlGroupAttribute=cpu.rt_runtime_us 500000
    [Install]
    WantedBy=default.target
    but it did not run as mpd.
    Well how can I run mpd as mpd? Is there a way to do it like with dropbox: dropbox@<user>.service
    Last edited by manuelschneid3r (2015-03-25 12:52:52)

    Glad you solved it. Was just typing a response and I'll still add two remarks:
    The ps|grep output showed that you run grep as root, not mpd itself (which won't have a space in the command -- the second time it only worked because the mpd group is preceded by a space).
    It sounds like it took you a while to find the drop-in configuration snippet in the mpd.service.d directory. These drop-in are shown in `systemctl status`, which is something you'd normally check in situations like these, and that might help to discover them more quickly.
    Last edited by Raynman (2015-03-25 12:58:36)

  • Need to run fmsedge process without root access

    1937396
    On Linux, the fmsedge process needed to run without root access.

    I see that in the release notes
    new in this release:
    1937396
    On Linux, the fmsedge process needed to run without root access.
    However I have not found any documentaion on how to do this?
    I would love to run the fmsedge process run as non-root so tht root does not own the 1935 listening port.
    fmsedge   26837  root   19u  IPv4  4007676       TCP localhost:19350 (LISTEN)
    fmsedge   26837  root   24u  IPv4  4007679       TCP *:1935 (LISTEN)
    fmsedge   26837  root   35u  IPv4  4007717       TCP localhost:19350->localhost:59625 (ESTABLISHED)
    fmsedge   26837  root   57u  IPv4 26532589       TCP localhost:19350->localhost:58913 (ESTABLISHED)
    This appear to not be the default setup.
    Thanks in advance if anyone has tackled this!

  • [Solved] Dolphin won't show video thumbnailer without root privileges

    Hi, I have this issue that the video thumbnailer thing doesn't work if I dont run dolphin with root settings ('kdesu dolphin').
    There is some difference in my settings but I dunno what it is.
    Here's a screenshot:
    Edit: Looks like none of my thumbnailers work with my user settings.
    Last edited by algorythm (2009-09-30 12:34:17)

    Well here's screenie of my settings too:
    E: and a bigger one: http://img29.imageshack.us/img29/7638/snapshot3y.png
    E: Solved by deleting old settings.
    Last edited by algorythm (2009-09-30 12:33:55)

  • Running networked labview apps without root permissions

    I noticed that it is not possible to use the tcp vi's, i.e. tcp create listener or tcp open (I even tried the supplied examples dataserver.vi and dataclient.vi in tcp.llb) without running them as root, any body has an idea, no one would like to let the end user use root to run the application!. Is it a labview configuration or a unix one?.
    Thanks,
    mike_lachaine

    I found a defora core 1 release and verified your problem (on LabVIEW 7.0). It's because the fedora kernel uses native posix threads instead of pthreads. This changes the behavior of signals.
    If you recompile your kernel and use pthreads the problem should go away. (Although I have not done this myself).
    We have fixed this for the next release of LabVIEW (I did verify this). It required a change in the architecture, and therefore there is no patch available for it.
    What I meant by usinc nc and telnet for testing (without LabVIEW) is to "echo hi | nc -l -p 2000" in one window, and "telnet localhost 2000" in another. If your networking is working, you should see "hi" in the telnet window. But, telnet and nc are not affected by
    the npt kernel as LabVIEW currently is.
    For now, use a non NPT kernel.

  • Su vs sudo : run dolphin as root[SOLVED]

    Hi,
    I am trying to understand the difference in how su and sudo work.
    I tried to run dolphin as root to add a mount point at /media/drivex
    with su :
    I type dolphin at the prompt
    and I get this error
    <unknown program name>(2348)/: KUniqueApplication: Cannot find the D-Bus session server: "Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken."
    <unknown program name>(2347)/: KUniqueApplication: Pipe closed unexpectedly.
    dolphin doesnt work
    however,
    when I use sudo dolphin from a regular user,
    dolphin works even though I get a number of errs
    Error: "/var/tmp/kdecache-myx" is owned by uid 1000 instead of uid 0.
    kdeinit4: preparing to launch /usr/lib/libkdeinit4_kbuildsycoca4.so
    kbuildsycoca4 running...
    this is repeated a few times, as though it keeps retrying.
    1.Anyway why does su not work when sudo does?
    2. So when does one use su vs sudo?
    3. I did this yesterday and was able to add a mnt point for my esata drive. Today, I had to do it again. The mount point had disappeared. what may have happened?
    thanks
    Last edited by myxolam (2009-10-16 11:27:15)

    The only reason I use "su" (as "su -") is to create a new, clean session, just as logging in with that user.
    Using "sudo", or "su" without the dash creates a new environment inheriting the session variables from the current user, thus GUI apps can work fine (as they have inherited the $DISPLAY, $DBUS_SESSION_BUS_ADDRESS and other variables used by X applications).
    Anyway, as an alternative to "su", you could use "sudo -i".
    Another difference which is applicable to Ubuntu and maybe Arch, is that "su"ing to root you are asked for the root password, while using "sudo" you are asked for your password, not the "root" one.

  • [SOLVED] [sudo] allow user to run commands as root

    Hello,
    I want to run programs like netctl and vpnc as normal user without typing in my password. This is what I've come up with for /etc/sudoers:
    myusername ALL = (root) NOPASSWD: /usr/bin/netctl, /usr/bin/vpnc, /usr/bin/vpnc-disconnect
    But running e.g. "netctl start someprofile" fails because access to the file `someprofile' is denied -- the file is owned by root and only root may read it.
    Doesn't running programs as root also mean that these programs can read files owned by root? Or is this a misconception and I should change permissions to the corresponding files?
    Thanks & Regards
    Edit:
    I just realized, that, with the setup above, "sudo netctl start someprofile" does work without demanding a password. This is nice. But can it be tuned further so that I don't have to prepend "sudo"?
    Last edited by ball (2013-05-23 19:22:17)

    @qinohe:
    I am in group wheel and I already have
    %wheel ALL=(ALL) ALL
    myusername ALL=NOPASSWD: /usr/bin/netctl, /usr/bin/vpnc, /usr/bin/vpnc-disconnect
    So this would be same, wouldn't it?
    I just realized, that "sudo netctl start someprofile" does work without demanding a password. This is nice. But can it be tuned further so that I don't have to prepend "sudo"?
    Last edited by ball (2013-05-23 18:50:46)

  • [SOLVED] load VirtualBox modules without root pw

    Hi,
    i want to write a wrapper script for virtualbox to load the modules when virtualbox starts and unload them when it exits.
    is there a way to load those specific modules without root password? i could teach sudo to allow modprobe without password but that would be a security problem.
    Last edited by jnhieber (2013-07-13 16:42:19)

    I'm experiencing some problems with suspend to ram on my x230t. since kernel 3.10 i often get a kernel panic when i suspend.
    i use an up to date system (no testing) with linux-ck-ivybridge and intel graphics. i wrote systemd scripts to unload third party modules before suspend (like vboxdrv).
    that actually doesn't solve the problem but i thought it might be a good idea if only loading such modules when they are really needed, i don't use virtualbox often.
    thanks for the reply, i think this can work. the script can only be changed by root so this would be no security problem.
    so this is solved, i'm thinking about a new topic regarding my kernel panics, do you know where to get the kernel logs of the panic?
    when i go to suspend the sleep led blinks fast and the screen is blank, so i have to rely on log files.

  • [SOLVED]Home directory confusion when running Emacs as root

    Hi, just set up my first Arch system.  I've installed emacs-nox, and it insists on using the .emacs file of the one normal user I have set up, even when I'm not logged in as that user.  Bits in that .emacs file which use a tilde to signify $HOME do point to /root when I'm logged in as root, causing various weirdnesses.
    Here's what --debug-init says when I run emacs as root; if there's anything apart from the complaint about the "missing" (not in /root) haskell-mode files, I'm afraid it means nothing to me
    edit: nope, all of that junk really was about the haskell-mode stuff, so I'm deleting it since that's "fixed" by copying that stuff to /root/.emacs.d.  Now --debug-init tells me nothing and I still have no idea why emacs insists on using the dotfile in /home/j
    Last edited by cuns (2011-12-25 23:21:06)

    I have this issue, too if starting emacs after doing a "su" - when logging in as root it works as expecte. Googling brought the emacs changelog:
    1987-05-12  Richard M. Stallman  (rms at prep)
        * startup.el (command-line): If running under `su',
        use user's original login name to get init file.
        Otherwise use $HOME.
    A workaround would be to define an alias like
    alias emacs='emacs -u root'
    in your root's ".bashrc" (/root/.bashrc).
    Hope that helps,
    greetings
    matse

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

  • My macbook air keeps opening ad websites without my permission. I've removed all website data various times which hasn't worked. this is making it very difficult for me to browse. please help?

    I'm scared i have a virus. safari keeps opening windows/tabs without my permission. these are normally ads. i have removed website data various times which hasn't worked.

    There is no need to download anything to solve this problem.
    You may have installed one or more of the common types of ad-injection malware. Follow the instructions on this Apple Support page to remove it. It's been reported that some variants of the "VSearch" malware block access to the page. If that happens, start in safe mode by holding down the shift key at the startup chime, then try again.
    Back up all data before making any changes.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, ask for further instructions.
    Make sure you don't repeat the mistake that led you to install the malware. It may have come from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    Malware is also found on websites that traffic in pirated content such as video. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • Oracle 11gR2 RAC: Running the script root.sh problem

    Folks,
    Hello. I am installing Oracle 11gR2 RAC using 2 Virtual Machines (rac1 and rac2 whose OS are Oracle Linux 5.6) in VMPlayer and according to the tutorial
    http://appsdbaworkshop.blogspot.com/2011/10/11gr2-rac-on-linux-56-using-vmware.html
    I have been installing Grid Infrastructure using runInstaller from step 1 to step 9 of 10 in both VM rac1 and rac2.
    Now, I am running the script root.sh in VM rac1 and rac2 as below:
    [root@rac1 /]# /u01/app/grid/root.sh
    Output:
    CRS-4123: ohasd is starting
    FATAL: Module oracleoks not found
    FATAL: Module oracleadvm not found
    FATAL: Module oracleacfs not found
    ACFS-9121: Failed to detect /dev/asm/.asm_ctl_spec
    ACFS-9310: ADVM/ACFS installation failed.
    ACFS-9311: not all components were detected after installation
    'UpdateNodeList' was successful.
    [root@rac1 /]#
    [root@rac2 /]# /u01/app/grid/root.sh
    Output:
    CRS-4123: ohasd is starting
    FATAL: Module oracleoks not found
    FATAL: Module oracleadvm not found
    FATAL: Module oracleacfs not found
    ACFS-9121: Failed to detect /dev/asm/.asm_ctl_spec
    ACFS-9310: ADVM/ACFS installation failed.
    ACFS-9311: not all components were detected after installation
    Start of resource "ora.asm_init" failed.
    Failed to start ASM.
    Failed to start Oracle Clusterware Stack.
    [root@rac2 /]#
    As we see the output above, rac1 and rac2 get the same problems. in addition, rac2 fails to start ASM and Clusterware stack. Thus, I have 2 questions:
    First, the common problem for rac1 and rac2 :
    1)Module "oracleoks, oracleadvm, oracleacfs" not found
    2)/dev/asm/.asm_ctl_spec not detected
    3)ADVM/ACFS installation failed
    Do the above 3 factors affect Grid and DataBase Installation later ? If yes, how to solve these problems ?
    Second, how to start ASM and Clusterware stack in rac2 ?
    Thanks.

    you have 2 options:
    1. OEL 5.6 comes with 2 kernels, the original Red Hat, and Oracle UEK, you can choose not to use UEK
    or the one i would recommend:
    2. Upgrade Grid Infrastructure,
    *11.2.0.3.1* (patch 13348650, released about a 1 month ago) supports ACFS on UEK (starting with 2.6.32.200 IIRC)

  • If my Ipad was stolen, I had erased all the data, but keep the Ipad on my account - nobody can use it without my permission?

    If my Ipad was stolen, I had erased all the data, but keep the Ipad on my account - nobody can use it without my permission?

    If the iPad was running iOS 7, the thief/finder will not ever be able to use it.
    iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    Apple (and no one else) can not assist (with serial number or iCloud) in finding a lost or stolen iPad.
    Report to police along with serial number. Change all your passwords.
    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    What to do if your iOS device is lost or stolen
    http://support.apple.com/kb/HT5668
    How to Find a Missing iPad with FindMyiPad
    http://www.dummies.com/how-to/content/how-to-find-a-missing-ipad-with-findmyipad .html
    iCloud: Locate your device on a map
    http://support.apple.com/kb/PH2698
    iCloud: Lost Mode - Lock and Trace
    http://support.apple.com/kb/PH2700
    iCloud: Remotely Erase your device
    http://support.apple.com/kb/PH2701
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    General steps to follow for a Stolen iPad
    http://stolen-ipad.com/
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    What NOT to do if your iPhone or iPad is lost or stolen
    http://www.tomahaiku.com/what-not-to-do-if-your-iphone-or-ipad-lost-or-stolen/
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st Len
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
    Check the serial number (located on back/bottom) in this lost/stolen iPad database. However, most owners are not aware of this database and don’t enter the serial number.
    Stolen iPad Database
    http://www.stolenlostfound.org/online-stolen-ipad-database
    Also do a search, using the serial number, on your local Craig’s List. Some users list the serial number of a stolen iPad to thwart the sale of a stolen device.
     Cheers, Tom

Maybe you are looking for

  • Can download iTunes, but won't install

    I get the following error in the iTunes + QuickTime box: The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personn

  • Disk utility. start up disk

    Trying to run disk utility from the start up disk. I insert install disk #1. Restart while pressing C key. I just get the language thing then the installer. There is no disk utility or installer menu. If I press continue, it's a dead end only install

  • WLS Support

    Hi I want to know does WLS Support these : IBM WebSphere Application Server Version 6.1.0.13, Build Level cf130745.06 Oracle Application Server Version Oracle 10g R2 AS 10.1.2.0.2 J2EE, Forms & Reports/Discoverer Or Oracle 10g R2 AS 10.1.0.4.2 J2EE,

  • DNS using command line

    Hi, We're trying to simplify a few in-house processes and one of them would require adding & removing dns zone automagically. I would to write a script that can add & remove dns records.. I looked at the Apple command line doc for leopard server but

  • Aperure slideshows on Apple TV

    Hi, I am contemplating purchasing an Apple TV but would like to be sure I can run slideshows from Aperture 3 on my HDTV, using Apple TV. I am not sure it can do it. When I try Front row, it shows I Photo slideshows and Apertures projects, so pictures