[SOLVED] JAZN log out not working

Hi,
I'm having a problem with JAZN security in an ADF Faces application, particularly with logging out. I'll minimize the set of pages involved in order to explain the problem, it is as follows:
The application has HTML form authentication managed by a JAZN XML file. The pages involved are
- Login.jspx (login page)
- Main.jspx (secured page with a "log out" button)
When the log out button is clicked the session is terminated and the user is redirected to the login page. After this, when I try to log in again nothing happens so I can't log in again.
Here is the code:
<< Login.jspx >>
<?xml version='1.0' encoding='windows-1252'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0" xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces"
          xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
  <jsp:output omit-xml-declaration="true" doctype-root-element="HTML" doctype-system="http://www.w3.org/TR/html4/loose.dtd"
              doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
  <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <html>
      <head>
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
        <title>login</title>
      </head>
      <body><form action="j_security_check" method="post">
          <table cellspacing="3" cellpadding="2" border="0" width="100%">
            <tr>
              <td width="120">
                <b style="whitespace:nowrap">User</b>
              </td>
              <td>
                <input type="text" name="j_username"/>
              </td>
            </tr>
            <tr>
              <td width="120">
                <b>Password</b>
              </td>
              <td>
                <input type="password" name="j_password"/>
              </td>
            </tr>
            <tr>
              <td><jsp:text><![CDATA[ ]]></jsp:text></td>
              <td>
                <input type="submit" name="logon" value="Sign On"/>
              </td>
            </tr>           
          </table>
        </form></body>
    </html>
</jsp:root><< Main.jspx >>
<?xml version='1.0' encoding='windows-1252'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0" xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces"
          xmlns:afh="http://xmlns.oracle.com/adf/faces/html" xmlns:cust="http://xmlns.oracle.com/adf/faces/customizable">
  <jsp:output omit-xml-declaration="true" doctype-root-element="HTML" doctype-system="http://www.w3.org/TR/html4/loose.dtd"
              doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
  <jsp:directive.page contentType="text/html;charset=windows-1252"/>
  <f:view>
    <afh:html>
      <afh:head title="Main">
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
      </afh:head>
      <afh:body>
        <h:form>
          <af:commandButton text="Logout" action="#{login.logout}"/>
        </h:form>
      </afh:body>
    </afh:html>
  </f:view>
</jsp:root><< jazn-data.xml >>
<?xml version = '1.0' encoding = 'windows-1252' standalone = 'yes'?>
<jazn-data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/jazn-data-10_0.xsd" filepath="" OC4J_INSTANCE_ID="">
    <jazn-realm>
        <realm>
            <name>jazn.com</name>
            <users>
                <user>
                    <name>user</name>
                    <credentials>{903}dn3x1m8PHXf4z1+aLjhNH3+9HIVSWd3l</credentials>
                </user>
                <user>
                    <name>anotherUser</name>
                    <credentials>{903}nhz/q14H8m4cmZ2KRBDBSDzCgFn4EQ3nA/b788Egorg=</credentials>
                </user>
            </users>
            <roles>
                <role>
                    <name>authenticatedUsers</name>
                    <members>
                        <member>
                            <type>user</type>
                            <name>user</name>
                        </member>
                        <member>
                            <type>user</type>
                            <name>anotherUser</name>
                        </member>
                    </members>
                </role>
            </roles>
        </realm>
    </jazn-realm>
    <jazn-policy/>
</jazn-data><< web.xml >>
<?xml version = '1.0' encoding = 'windows-1252'?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"
         xmlns="http://java.sun.com/xml/ns/j2ee">
    <description>web.xml file for Web Application</description>
    <filter>
        <filter-name>adfFaces</filter-name>
        <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>adfFaces</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
        <servlet-name>adfAuthentication</servlet-name>
        <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
        <init-param>
            <param-name>success_url</param-name>
            <param-value>faces/Main.jspx</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
        <servlet-name>resources</servlet-name>
        <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>adfAuthentication</servlet-name>
        <url-pattern>/adfAuthentication/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
        <extension>html</extension>
        <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>txt</extension>
        <mime-type>text/plain</mime-type>
    </mime-mapping>
    <jsp-config/>
    <security-constraint>
        <web-resource-collection>
            <web-resource-name>adfAuthentication</web-resource-name>
            <url-pattern>/adfAuthentication</url-pattern>
        </web-resource-collection>
        <auth-constraint>
            <role-name>oc4j-administrators</role-name>
        </auth-constraint>
    </security-constraint>
    <security-constraint>
        <web-resource-collection>
            <web-resource-name>Secure Zone</web-resource-name>
            <url-pattern>/faces/*</url-pattern>
        </web-resource-collection>
        <auth-constraint>
            <role-name>authenticatedUsers</role-name>
        </auth-constraint>
    </security-constraint>
    <login-config>
        <auth-method>FORM</auth-method>
        <form-login-config>
            <form-login-page>login.jspx</form-login-page>
            <form-error-page>error.html</form-error-page>
        </form-login-config>
    </login-config>
    <security-role>
        <role-name>authenticatedUsers</role-name>
    </security-role>
</web-app><< orion-application.xml >>
<?xml version = '1.0' encoding = 'windows-1252'?>
<orion-application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/orion-application-10_0.xsd">
  <jazn provider="XML" location="./jazn-data.xml" default-realm="jazn.com" jaas-mode="doAsPrivileged"/>
</orion-application><< faces-config.xml >>
<?xml version="1.0" encoding="windows-1252"?>
<!DOCTYPE faces-config PUBLIC
  "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
  "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
<faces-config xmlns="http://java.sun.com/JSF/Configuration">
  <application>
    <default-render-kit-id>oracle.adf.core</default-render-kit-id>
  </application>
  <managed-bean>
    <managed-bean-name>login</managed-bean-name>
    <managed-bean-class>view.LoginBean</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
  </managed-bean>
</faces-config><< LoginBean.java >>
package view;
import java.io.IOException;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
public class LoginBean {
    public LoginBean() {
    public String logout() throws IOException {
         FacesContext ctx = FacesContext.getCurrentInstance();
         ExternalContext ectx = ctx.getExternalContext();
         HttpServletResponse response = (HttpServletResponse)ectx.getResponse();
         HttpSession session = (HttpSession)ectx.getSession(false);
         session.invalidate();
         response.sendRedirect("Login.jspx");
         ctx.responseComplete();
         return null;
}Is there anything wrong or missing?
Thanks,
Yoel

Hi,
in BASIC authentication the browser autenticates the user (browser sso). A new session is created - wich means that all session information of the previous application run are deleted. To avoid browser sso you need to close the browser process. The BASIC authentication issue is not caused by JAZN but the way this authentication is speced by teh W3C
Frank

Similar Messages

  • Client logging out not working

    I am having two issues , the first happened quite recently but I don't know if I caused it. Users on client machines cannot fully log out. The computers stop the logging out process when they get to the desktop image, The second issue is that when some clients log out the show up as disabled/asleep in server administration. This prevents them from logging in later, without me manually disconnecting them at the server. I work in a school and we have set students with the restriction of not having mutiple log-in privileges. Thanks in advance for any suggestions.
    iMac slot load clients 10.3.9 eMac 10.4.9 G4 server 10.4.9   Mac OS X (10.4.9)  

    rlt6246 wrote:
    Thanks to WorMzy for the link, and thanks to djraymondnm for the simple solution found in post [SOLVED] xfce-session-logout does not work as expected. For the record, let me post the solution here:
    djraymondnm wrote:
    Activate the "sessionstop_cmd" line in /etc/slim.conf as follows:
    sessionstop_cmd    (killall --user $USER -TERM; systemctl restart slim)
    from: https://bbs.archlinux.org/viewtopic.php?pid=1287549
    Also:
    goyim wrote:
    as per PABLOKAL found solution to DM freezing after second logout...
    sudo nano /etc/pam.d/slim
    auth include system-local-login
    -auth optional pam_gnome_keyring.so
    account include system-local-login
    session include system-local-login
    -session optional pam_gnome_keyring.so auto_start
    session required pam_systemd.so # Add this line which is missing
    from: http://bbs.archbang.org/viewtopic.php?id=4495
    Did the trick.
    Last edited by loltill (2013-07-16 09:26:00)

  • Logging buffered not working

    Hello:
    In an ACE  module multicontext environment the buffered logging is not working on the last context I created.
    The same config though works well for another context.
    The maximum size and the buffer size is showing 0 in the "show logging" below:
    Thanks for helping
    logging enable
    logging standby
    logging timestamp
    logging trap 5
    logging history 4
    logging buffered 5
    logging facility 16
    logging queue 200
    logging device-id context-name
    logging host 10.10.10.1 udp/514
    logging host 10.10.10.2 udp/514
    logging rate-limit 42 60 level 0
    logging rate-limit 42 60 level 1
    logging rate-limit 42 60 level 2
    logging rate-limit 42 60 level 3
    logging rate-limit 42 60 level 4
    logging rate-limit 42 60 level 5
    logging rate-limit 42 60 level 6
    logging rate-limit 42 60 level 7
    show logging`
    Syslog logging:                 enabled
    Facility:                       16
    History logging:                enabled (level- warnings)
    Supervisor logging:             disabled
    Trap logging:                   enabled (level - notifications)
    Timestamp logging:              enabled
    Fastpath logging:               disabled
    Persist logging:                disabled
    Standby logging:                enabled
    Rate-limit logging:             (min - 10000 max 100000 msgs/sec)
                    42 messages 60 seconds level 0
                    42 messages 60 seconds level 1
                    42 messages 60 seconds level 2
                    42 messages 60 seconds level 3
                    42 messages 60 seconds level 4
                    42 messages 60 seconds level 5
                    42 messages 60 seconds level 6
                    42 messages 60 seconds level 7
    Console logging:                disabled
    Monitor logging:                disabled
            Logging to 10.10.10.1 udp/514 
            Logging to 10.10.10.2 udp/514 
    Device ID:                      context name "CTC_PROD7"
    Message logging:                none
    Buffered logging:               enabled (level - notifications) maximum size 0--------------------------->>>>>>
    Buffer info: current size - 0 global pool - 4194304 used pool - 4194304
                    min - 418816 max - 0
                    cur ptr = 0 wrapped - yes

    Hi,
    This is because your global pool is full. Go to one of your other contexts clear logg , and will work.
    Buffer info: current size - 0 global pool - 4194304 used pool - 4194304
    Dan

  • Soundblaster X-Fi Titanium Optical Out not working???

    Hey friends,
    I purchased a Sound Blaster X-Fi Titanium PCIe yesterday to run on Windows 7 64bit to trigger VSTi instruments. I can hear the VSTi play fine when I have headphones plugged into the soundcard but I want to send the audio sound OUT via the Optical Out into my Steinberg MR86x firewire audio card. ?
    I can see the light on the optical cable but no sound seems to be being sent from the sound blaster into the steinberg card.
    ?Now before people start saying you cant do that, I have have been doing this for the last 3 years and it has been great apart from my RME Audio card is not compatible with Windows 7 64bit hence why I purchased the soundblaster.
    I really am at a loss as to what I can try next, I have been through this forum and tried a few recommended tweaks but nothing? Am I missing something obvious here?
    I am using the following drivers
    Driver: v2.7.008 Windows 7 64bit
    DTS Connect: for Windows 7 64bit
    Also in the Audio Control Panel / SPDIF I/O all options are greyed out apart from the Digital Output tickbox, I only want to use this card for Audio as in creating music or specifically for triggering VST synths.
    I would really appreciate any advice
    Thanks in advance
    KiloHurtz

    Re: Soundblaster X-Fi Titanium Optical Out not working?I have same card, same?OS?and lots of problems.
    Analog outputs(control panel->sound->speakers) disappears when boot or reboot, sometimes it works week, sometimes a hours. When it works, it's works ok, but suddenly during boot,?all sounds is lost, when trying launch for example Creative Audio Control Panel this message appears: There are no supported audio device available. You need to close the application. Click OK to close the application now.
    And when analog outputs disappears, no any sound via SPDIF, even it shows in notification area and control panel->sound and in device manager.
    I have owned card about two months, once change card in warranty, and?several uninstall, cleaning traces, reinstall and card works for while?and?out of blue, when boot computer, no sounds at all and only way to get sounds back is driver uninstall, cleaning and reinstall.
    Creative Customer Support seems to be clueless, but make Technical Support Request if problems continue. And all other too, if problems like that appears, contact to Creative, maybe they really try?to do?something abuot it and not just send instructions how to uninstall and reinstall drivers.

  • Tv out not working on ios 8? please tell me what is problem?

    When i update my iPhone 4s to iOS 8.1 tv out not working .     Help mee plzz

    If those numers are ordered correctly it sounds like you are using a faulty charger with your iPhone.  It should charge faster with the charger than a USB port as the charger supplies a higher current.  Different batteries are going to charge differently based in part on differences in the ways they have been used.
    Try using your friends charger with your iPhone and see how long it takes to charge compared with your charger.

  • [SOLVED] Xorg and keyboard not working after upgrade.

    Hi guys,
    after a `# pacman -Syyu` I got Xorg not starting and keyboard not working: I am unable to do anything.
    I'm posting here pacman's log that I got by booting an Ubuntu Live CD: https://gist.github.com/anonymous/7517806
    Any hint?
    How do you recover a system once it's gone like this? Many thanks in advance.
    J
    Last edited by ifsixwasnine (2013-12-23 13:58:16)

    WonderWoofy wrote:
    I wouldn't necessarily call this [SOLVED].  At best I would probably mention that you found a workaround.  The addition of '(downgrade)' likely makes it fine, but just FYI for future threads.  There are two reasons for this.  One, others who find this thread are likely to dig into it thinking there is a real solution, and two, if you mark it as [Solved] it might generate less attention, lessening the chances of you actually being helped to a real solution.
    Just my 1.46¢
    You're right, problem wasn't actually solved. In fact, yesterday I upgraded the whole system again and the same problem showed up, but I got it fixed.
    Same scenario: after a boot (shorter than usual), what I had was a tty, but I noticed something that I hadn't noticed the last time: the prompt said "Arch Linux 3.11.[?]".
    The kernel version was supposed to be 3.12.[?] so I started investigating and after several attempts, this is how I got the system working again:
    1. Chrooted into the system
    2. Wiped /boot
    3. Re-installed grub
    4. Re-installed linux kernel
    5. Re-created grub.cfg
    6. ???
    7. Profit
    I'm pretty sure that what originated the problem wasn't a "kernel issue" as I pointed out in my previous post, but it was an incorrect installation of grub: in fact, the grub prompt never showed up before yesterday, the system used to boot straight, ignoring the 5 seconds timeout.

  • [Solved (kind of)] Suspend not working after reinstall

    Hi folks.
    I did a reinstall 2 days ago and since then suspend / resume after a suspend to ram is not working. (Thinkpad x200)
    As a desktop i use kde4, i also tried a dbus suspend and a pm-suspend without any X running.
    Following happens using arch kernel:
    - suspend is initiated and it immediately resumes;
    Following happens when using my own kernel + config:
    - suspend works (moon led starts blinking and finally the fan stops and the moon is the only led shining)
    - after i open the lid or press the power button resume starts but the moon led is aktive, only the cpu fan starts running;
    unfortunately i don't know how to log this process, as the display is not working and there's no log available of the resume process.
    my rc.conf starts following daemons/programs:
    metalog dbus thinkfan sshd
    Thanks for any suggestions.
    Last edited by gaelic (2011-02-14 11:58:06)

    Hey.
    I add some information from the log files. State is unchanged. Both with slef baked kernel and arch kernel resume is not working
    /var/log/pm-suspend.log:
    Initial commandline parameters:
    Sun Feb 13 12:19:46 CET 2011: Running hooks for suspend.
    Running hook /usr/lib/pm-utils/sleep.d/00logging suspend suspend:
    Linux angus 2.6.38-rc4 #11 SMP PREEMPT Sat Feb 12 17:37:33 CET 2011 i686 Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz GenuineIntel GNU/Linux
    Module Size Used by
    snd_hda_codec_conexant 29924 1
    snd_hda_intel 17032 0
    snd_hda_codec 47104 2 snd_hda_codec_conexant,snd_hda_intel
    snd_pcm 48808 2 snd_hda_intel,snd_hda_codec
    thinkpad_acpi 42892 0
    iwlagn 130552 0
    e1000e 107988 0
    btusb 8568 0
    snd_timer 13164 1 snd_pcm
    cdc_acm 12256 0
    snd_page_alloc 4876 2 snd_hda_intel,snd_pcm
    total used free shared buffers cached
    Mem: 3069852 363876 2705976 0 684 309004
    -/+ buffers/cache: 54188 3015664
    Swap: 2000088 0 2000088
    /usr/lib/pm-utils/sleep.d/00logging suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00powersave suspend suspend:
    /usr/lib/pm-utils/sleep.d/00powersave suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01grub suspend suspend:
    /usr/lib/pm-utils/sleep.d/01grub suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend:
    /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend:
    /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/75modules suspend suspend:
    /usr/lib/pm-utils/sleep.d/75modules suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/90clock suspend suspend:
    /usr/lib/pm-utils/sleep.d/90clock suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend:
    /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/95led suspend suspend:
    /usr/lib/pm-utils/sleep.d/95led suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend:
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler: line 101: /sys/class/dmi/id/bios_version: No such file or directory
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler: line 101: /sys/class/dmi/id/bios_vendor: No such file or directory
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler: line 101: /sys/class/dmi/id/bios_date: No such file or directory
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler: line 101: /sys/class/dmi/id/sys_vendor: No such file or directory
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler: line 101: /sys/class/dmi/id/product_name: No such file or directory
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler: line 101: /sys/class/dmi/id/product_version: No such file or directory
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler: line 101: /sys/class/dmi/id/board_name: No such file or directory
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler: line 101: /sys/class/dmi/id/board_version: No such file or directory
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler: line 101: /sys/class/dmi/id/board_vendor: No such file or directory
    Kernel modesetting video driver detected, not using quirks.
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/99video suspend suspend:
    kernel.acpi_video_flags = 0
    /usr/lib/pm-utils/sleep.d/99video suspend suspend: success.
    Sun Feb 13 12:19:46 CET 2011: performing suspend
    So suspend seems to be working, at least i can't see any problem.
    dmesg (with pm-debug activated):
    7>PM: Adding info for No Bus:tty62
    PM: Adding info for No Bus:tty63
    pci 0000:00:1c.0: BAR 8: assigned [mem 0xc0000000-0xc01fffff]
    pci 0000:00:1c.0: BAR 9: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
    pci 0000:00:1c.1: BAR 9: assigned [mem 0xc0400000-0xc05fffff 64bit pref]
    pci 0000:00:1c.0: BAR 7: assigned [io 0x3000-0x3fff]
    pci 0000:00:1c.1: BAR 7: assigned [io 0x4000-0x4fff]
    pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    pci 0000:00:1c.0: bridge window [mem 0xc0000000-0xc01fffff]
    pci 0000:00:1c.0: bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
    pci 0000:00:1c.1: PCI bridge to [bus 03-03]
    pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    pci 0000:00:1c.1: bridge window [mem 0xf2500000-0xf25fffff]
    pci 0000:00:1c.1: bridge window [mem 0xc0400000-0xc05fffff 64bit pref]
    pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
    pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
    pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf1ffffff]
    pci 0000:00:1c.3: bridge window [mem 0xf2900000-0xf29fffff 64bit pref]
    pci 0000:00:1e.0: PCI bridge to [bus 0d-0d]
    pci 0000:00:1e.0: bridge window [io disabled]
    pci 0000:00:1e.0: bridge window [mem disabled]
    pci 0000:00:1e.0: bridge window [mem pref disabled]
    pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    pci 0000:00:1c.0: setting latency timer to 64
    pci 0000:00:1c.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    pci 0000:00:1c.1: setting latency timer to 64
    pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
    pci 0000:00:1c.3: setting latency timer to 64
    pci 0000:00:1e.0: setting latency timer to 64
    pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfebfffff]
    pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
    pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc01fffff]
    pci_bus 0000:02: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
    pci_bus 0000:03: resource 0 [io 0x4000-0x4fff]
    pci_bus 0000:03: resource 1 [mem 0xf2500000-0xf25fffff]
    pci_bus 0000:03: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref]
    pci_bus 0000:05: resource 0 [io 0x2000-0x2fff]
    pci_bus 0000:05: resource 1 [mem 0xf0000000-0xf1ffffff]
    pci_bus 0000:05: resource 2 [mem 0xf2900000-0xf29fffff 64bit pref]
    pci_bus 0000:0d: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:0d: resource 5 [io 0x0d00-0xffff]
    pci_bus 0000:0d: resource 6 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:0d: resource 7 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:0d: resource 8 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:0d: resource 9 [mem 0xc0000000-0xfebfffff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    UDP hash table entries: 512 (order: 2, 16384 bytes)
    UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    NET: Registered protocol family 1
    RPC: Registered udp transport module.
    RPC: Registered tcp transport module.
    RPC: Registered tcp NFSv4.1 backchannel transport module.
    Simple Boot Flag at 0x35 set to 0x1
    PM: Adding info for No Bus:mcelog
    PM: Adding info for No Bus:msr0
    PM: Adding info for No Bus:msr1
    PM: Adding info for No Bus:cpu0
    PM: Adding info for No Bus:cpu1
    apm: BIOS not found.
    PM: Adding info for No Bus:snapshot
    PM: Adding info for event_source:cpu
    PM: Adding info for event_source:breakpoint
    PM: Adding info for event_source:software
    highmem bounce pool size: 64 pages
    squashfs: version 4.0 (2009/01/31) Phillip Lougher
    Installing knfsd (copyright (C) 1996 [email protected]).
    NTFS driver 2.1.30 [Flags: R/W].
    PM: Adding info for No Bus:autofs
    fuse init (API version 7.16)
    PM: Adding info for No Bus:fuse
    PM: Adding info for No Bus:btrfs-control
    Btrfs loaded
    msgmni has been set to 1710
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    io scheduler noop registered
    io scheduler cfq registered (default)
    pcieport 0000:00:1c.0: setting latency timer to 64
    pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    PM: Adding info for pci_express:0000:00:1c.0:pcie08
    pcieport 0000:00:1c.1: setting latency timer to 64
    pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    PM: Adding info for pci_express:0000:00:1c.1:pcie08
    pcieport 0000:00:1c.3: setting latency timer to 64
    pcieport 0000:00:1c.3: irq 42 for MSI/MSI-X
    PM: Adding info for pci_express:0000:00:1c.3:pcie08
    PM: Adding info for No Bus:fbcon
    intel_idle: MWAIT substates: 0x3122220
    intel_idle: does not run on family 6 model 23
    ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    PM: Adding info for No Bus:AC
    ACPI: AC Adapter [AC] (off-line)
    PM: Adding info for No Bus:input0
    input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
    ACPI: Lid Switch [LID]
    PM: Adding info for No Bus:input1
    input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1
    ACPI: Sleep Button [SLPB]
    PM: Adding info for No Bus:input2
    input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    ACPI: Power Button [PWRF]
    ACPI: acpi_idle registered with cpuidle
    Monitor-Mwait will be used to enter C-1 state
    Monitor-Mwait will be used to enter C-2 state
    Monitor-Mwait will be used to enter C-3 state
    Marking TSC unstable due to TSC halts in idle
    PM: Adding info for No Bus:cooling_device0
    PM: Adding info for No Bus:cooling_device1
    PM: Adding info for No Bus:thermal_zone0
    PM: Adding info for No Bus:hwmon0
    thermal LNXTHERM:00: registered as thermal_zone0
    ACPI: Thermal Zone [THM0] (44 C)
    PM: Adding info for No Bus:thermal_zone1
    thermal LNXTHERM:01: registered as thermal_zone1
    ACPI: Thermal Zone [THM1] (40 C)
    PM: Adding info for No Bus:ptmx
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    PM: Adding info for platform:serial8250
    PM: Adding info for No Bus:ttyS0
    PM: Adding info for No Bus:BAT0
    ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    ACPI: Battery Slot [BAT0] (battery present)
    PM: Adding info for No Bus:ttyS1
    PM: Adding info for No Bus:ttyS2
    PM: Adding info for No Bus:ttyS3
    PM: Adding info for No Bus:nvram
    Non-volatile memory driver v1.3
    Linux agpgart interface v0.103
    agpgart-intel 0000:00:00.0: Intel GM45 Chipset
    agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
    agpgart-intel 0000:00:00.0: detected 32768K stolen memory
    PM: Adding info for No Bus:agpgart
    agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [drm] Initialized drm 1.1.0 20060810
    i915 0000:00:02.0: power state changed by ACPI to D0
    i915 0000:00:02.0: power state changed by ACPI to D0
    i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    i915 0000:00:02.0: setting latency timer to 64
    PM: Adding info for No Bus:controlD64
    PM: Adding info for No Bus:card0
    PM: Adding info for i2c:i2c-0
    PM: Adding info for i2c:i2c-1
    PM: Adding info for i2c:i2c-2
    PM: Adding info for i2c:i2c-3
    PM: Adding info for i2c:i2c-4
    PM: Adding info for i2c:i2c-5
    PM: Adding info for i2c:i2c-6
    PM: Adding info for i2c:i2c-7
    PM: Adding info for i2c:i2c-8
    PM: Adding info for i2c:i2c-9
    PM: Adding info for i2c:i2c-10
    PM: Adding info for i2c:i2c-11
    PM: Adding info for i2c:i2c-12
    PM: Adding info for i2c:i2c-13
    i915 0000:00:02.0: irq 43 for MSI/MSI-X
    [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [drm] Driver supports precise vblank timestamp query.
    PM: Adding info for No Bus:card0-LVDS-1
    PM: Adding info for No Bus:card0-VGA-1
    PM: Adding info for i2c:i2c-14
    PM: Removing info for i2c:i2c-14
    PM: Adding info for No Bus:card0-HDMI-A-1
    PM: Adding info for No Bus:card0-DP-1
    PM: Adding info for i2c:i2c-14
    PM: Adding info for i2c:i2c-15
    PM: Removing info for i2c:i2c-15
    PM: Adding info for No Bus:card0-HDMI-A-2
    PM: Adding info for No Bus:card0-DP-2
    PM: Adding info for i2c:i2c-15
    PM: Adding info for No Bus:card0-DP-3
    PM: Adding info for i2c:i2c-16
    PM: Adding info for No Bus:fb0
    PM: Adding info for No Bus:vtcon1
    Console: switching to colour frame buffer device 160x50
    fb0: inteldrmfb frame buffer device
    drm: registered panic notifier
    No ACPI video bus found
    [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    PM: Adding info for No Bus:7:0
    PM: Adding info for No Bus:loop0
    PM: Adding info for No Bus:7:1
    PM: Adding info for No Bus:loop1
    PM: Adding info for No Bus:7:2
    PM: Adding info for No Bus:loop2
    PM: Adding info for No Bus:7:3
    PM: Adding info for No Bus:loop3
    PM: Adding info for No Bus:7:4
    PM: Adding info for No Bus:loop4
    PM: Adding info for No Bus:7:5
    PM: Adding info for No Bus:loop5
    PM: Adding info for No Bus:7:6
    PM: Adding info for No Bus:loop6
    PM: Adding info for No Bus:7:7
    PM: Adding info for No Bus:loop7
    loop: module loaded
    ahci 0000:00:1f.2: version 3.0
    ahci 0000:00:1f.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
    ahci: SSS flag set, parallel bus scan disabled
    ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc sxs
    ahci 0000:00:1f.2: setting latency timer to 64
    PM: Adding info for No Bus:ata1
    PM: Adding info for No Bus:ata1
    PM: Adding info for No Bus:link1
    PM: Adding info for No Bus:link1
    PM: Adding info for No Bus:dev1.0
    PM: Adding info for No Bus:dev1.0
    PM: Adding info for No Bus:ata2
    PM: Adding info for No Bus:ata2
    PM: Adding info for No Bus:link2
    PM: Adding info for No Bus:link2
    PM: Adding info for No Bus:dev2.0
    PM: Adding info for No Bus:dev2.0
    PM: Adding info for No Bus:ata3
    PM: Adding info for No Bus:ata3
    PM: Adding info for No Bus:link3
    PM: Adding info for No Bus:link3
    PM: Adding info for No Bus:dev3.0
    PM: Adding info for No Bus:dev3.0
    PM: Adding info for No Bus:ata4
    PM: Adding info for No Bus:ata4
    PM: Adding info for No Bus:link4
    PM: Adding info for No Bus:link4
    PM: Adding info for No Bus:dev4.0
    PM: Adding info for No Bus:dev4.0
    scsi0 : ahci
    PM: Adding info for scsi:host0
    PM: Adding info for No Bus:host0
    scsi1 : ahci
    PM: Adding info for scsi:host1
    PM: Adding info for No Bus:host1
    scsi2 : ahci
    PM: Adding info for scsi:host2
    PM: Adding info for No Bus:host2
    scsi3 : ahci
    PM: Adding info for scsi:host3
    PM: Adding info for No Bus:host3
    ata1: SATA max UDMA/133 abar m2048@0xf2826000 port 0xf2826100 irq 44
    ata2: SATA max UDMA/133 abar m2048@0xf2826000 port 0xf2826180 irq 44
    ata3: DUMMY
    ata4: DUMMY
    PPP generic driver version 2.4.2
    PM: Adding info for No Bus:ppp
    PPP Deflate Compression module registered
    PPP BSD Compression module registered
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0
    ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0
    ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23
    ehci_hcd 0000:00:1a.7: setting latency timer to 64
    ehci_hcd 0000:00:1a.7: EHCI Host Controller
    ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:1a.7: debug port 1
    ehci_hcd 0000:00:1a.7: irq 23, io mem 0xf2826c00
    ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    PM: Adding info for usb:usb1
    PM: Adding info for usb:1-0:1.0
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 6 ports detected
    PM: Adding info for No Bus:ep_81
    PM: Adding info for No Bus:usbdev1.1
    PM: Adding info for No Bus:ep_00
    ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
    ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
    ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    ehci_hcd 0000:00:1d.7: setting latency timer to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    ehci_hcd 0000:00:1d.7: debug port 1
    ehci_hcd 0000:00:1d.7: irq 19, io mem 0xf2827000
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    PM: Adding info for usb:usb2
    PM: Adding info for usb:2-0:1.0
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 6 ports detected
    PM: Adding info for No Bus:ep_81
    PM: Adding info for No Bus:usbdev2.1
    PM: Adding info for No Bus:ep_00
    uhci_hcd: USB Universal Host Controller Interface driver
    uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0
    uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0
    uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    uhci_hcd 0000:00:1a.0: setting latency timer to 64
    uhci_hcd 0000:00:1a.0: UHCI Host Controller
    uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:1a.0: irq 20, io base 0x00001860
    PM: Adding info for usb:usb3
    PM: Adding info for usb:3-0:1.0
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    PM: Adding info for No Bus:ep_81
    PM: Adding info for No Bus:usbdev3.1
    PM: Adding info for No Bus:ep_00
    uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    uhci_hcd 0000:00:1a.1: setting latency timer to 64
    uhci_hcd 0000:00:1a.1: UHCI Host Controller
    uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001880
    PM: Adding info for usb:usb4
    PM: Adding info for usb:4-0:1.0
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    PM: Adding info for No Bus:ep_81
    PM: Adding info for No Bus:usbdev4.1
    PM: Adding info for No Bus:ep_00
    uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0
    uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0
    uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
    uhci_hcd 0000:00:1a.2: setting latency timer to 64
    uhci_hcd 0000:00:1a.2: UHCI Host Controller
    uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1a.2: irq 22, io base 0x000018a0
    PM: Adding info for usb:usb5
    PM: Adding info for usb:5-0:1.0
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    PM: Adding info for No Bus:ep_81
    PM: Adding info for No Bus:usbdev5.1
    PM: Adding info for No Bus:ep_00
    uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
    uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
    uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    uhci_hcd 0000:00:1d.0: setting latency timer to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    uhci_hcd 0000:00:1d.0: irq 16, io base 0x000018c0
    PM: Adding info for usb:usb6
    PM: Adding info for usb:6-0:1.0
    hub 6-0:1.0: USB hub found
    hub 6-0:1.0: 2 ports detected
    PM: Adding info for No Bus:ep_81
    PM: Adding info for No Bus:usbdev6.1
    PM: Adding info for No Bus:ep_00
    uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    uhci_hcd 0000:00:1d.1: setting latency timer to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    uhci_hcd 0000:00:1d.1: irq 17, io base 0x000018e0
    PM: Adding info for usb:usb7
    PM: Adding info for usb:7-0:1.0
    hub 7-0:1.0: USB hub found
    hub 7-0:1.0: 2 ports detected
    PM: Adding info for No Bus:ep_81
    PM: Adding info for No Bus:usbdev7.1
    PM: Adding info for No Bus:ep_00
    uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    uhci_hcd 0000:00:1d.2: setting latency timer to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001c00
    PM: Adding info for usb:usb8
    PM: Adding info for usb:8-0:1.0
    hub 8-0:1.0: USB hub found
    hub 8-0:1.0: 2 ports detected
    PM: Adding info for No Bus:ep_81
    PM: Adding info for No Bus:usbdev8.1
    PM: Adding info for No Bus:ep_00
    Initializing USB Mass Storage driver...
    usbcore: registered new interface driver usb-storage
    USB Mass Storage support registered.
    i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    PM: Adding info for platform:i8042
    ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata2: SATA link down (SStatus 0 SControl 300)
    ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
    ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
    serio: i8042 KBD port at 0x60,0x64 irq 1
    PM: Adding info for serio:serio0
    serio: i8042 AUX port at 0x60,0x64 irq 12
    PM: Adding info for serio:serio1
    PM: Adding info for No Bus:mice
    ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 (unknown) succeeded
    ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
    PM: Adding info for No Bus:psaux
    mousedev: PS/2 mouse device common for all mice
    PM: Adding info for No Bus:event0
    PM: Adding info for No Bus:event1
    PM: Adding info for No Bus:event2
    ata1.00: ATA-8: HITACHI HTS543225L9SA00, FBEZC43C, max UDMA/133
    ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    rtc_cmos 00:07: RTC can wake from S4
    ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
    ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
    ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 (unknown) succeeded
    ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
    ata1.00: configured for UDMA/133
    scsi 0:0:0:0: Direct-Access ATA HITACHI HTS54322 FBEZ PQ: 0 ANSI: 5
    PM: Adding info for scsi:target0:0:0
    PM: Adding info for No Bus:rtc0
    PM: Adding info for scsi:0:0:0:0
    rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    i2c /dev entries driver
    PM: Adding info for No Bus:i2c-0
    PM: Adding info for No Bus:i2c-1
    PM: Adding info for No Bus:i2c-2
    PM: Adding info for No Bus:i2c-3
    PM: Adding info for No Bus:i2c-4
    PM: Adding info for No Bus:i2c-5
    PM: Adding info for No Bus:i2c-6
    PM: Adding info for No Bus:i2c-7
    PM: Adding info for No Bus:i2c-8
    PM: Adding info for No Bus:i2c-9
    PM: Adding info for No Bus:i2c-10
    PM: Adding info for No Bus:i2c-11
    PM: Adding info for No Bus:i2c-12
    PM: Adding info for No Bus:i2c-13
    PM: Adding info for No Bus:i2c-14
    PM: Adding info for No Bus:i2c-15
    PM: Adding info for No Bus:i2c-16
    i801_smbus 0000:00:1f.3: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    PM: Adding info for i2c:i2c-17
    PM: Adding info for No Bus:i2c-17
    Linux video capture interface: v2.00
    usbcore: registered new interface driver uvcvideo
    USB Video Class driver (v1.0.0)
    PM: Adding info for platform:coretemp.0
    PM: Adding info for No Bus:hwmon1
    PM: Adding info for platform:coretemp.1
    PM: Adding info for No Bus:input3
    PM: Adding info for No Bus:0:0:0:0
    PM: Adding info for No Bus:hwmon2
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
    PM: Adding info for No Bus:0:0:0:0
    sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    PM: Adding info for No Bus:8:0
    PM: Adding info for No Bus:sg0
    PM: Adding info for No Bus:sda
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    PM: Adding info for No Bus:0:0:0:0
    cpuidle: using governor ladder
    PM: Adding info for No Bus:event3
    cpuidle: using governor menu
    usbcore: registered new interface driver usbhid
    usbhid: USB HID core driver
    hdaps: supported laptop not found!
    hdaps: driver init failed (ret=-19)!
    sda: sda1 sda2 sda3 sda4
    PM: Adding info for No Bus:sda1
    PM: Adding info for No Bus:sda2
    PM: Adding info for No Bus:sda3
    PM: Adding info for No Bus:sda4
    ALSA device list:
    sd 0:0:0:0: [sda] Attached SCSI disk
    No soundcards found.
    IPv4 over IPv4 tunneling driver
    PM: Adding info for No Bus:tunl0
    TCP cubic registered
    NET: Registered protocol family 17
    Bluetooth: L2CAP ver 2.15
    Bluetooth: L2CAP socket layer initialized
    Bluetooth: RFCOMM TTY layer initialized
    Bluetooth: RFCOMM socket layer initialized
    Bluetooth: RFCOMM ver 1.11
    Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    Bluetooth: BNEP filters: protocol multicast
    Bluetooth: HIDP (Human Interface Emulation) ver 1.2
    Registering the dns_resolver key type
    Using IPI No-Shortcut mode
    PM: Adding info for No Bus:cpu_dma_latency
    PM: Adding info for No Bus:network_latency
    PM: Adding info for No Bus:network_throughput
    PM: Hibernation image not present or could not be loaded.
    Magic number: 15:387:327
    rtc_cmos 00:07: setting system clock to 2011-02-13 11:20:29 UTC (1297596029)
    usb 2-4: new high speed USB device using ehci_hcd and address 2
    PM: Adding info for usb:2-4
    PM: Adding info for usb:2-4:1.0
    PM: Adding info for usb:2-4:1.1
    PM: Adding info for No Bus:ep_8a
    PM: Adding info for usb:2-4:1.2
    PM: Adding info for No Bus:ep_01
    PM: Adding info for No Bus:ep_81
    PM: Adding info for usb:2-4:1.3
    PM: Adding info for No Bus:ep_89
    PM: Adding info for usb:2-4:1.4
    PM: Adding info for No Bus:ep_02
    PM: Adding info for No Bus:ep_82
    PM: Adding info for usb:2-4:1.5
    PM: Adding info for No Bus:ep_8b
    PM: Adding info for usb:2-4:1.6
    PM: Adding info for No Bus:ep_8c
    PM: Adding info for usb:2-4:1.7
    PM: Adding info for No Bus:ep_87
    PM: Adding info for usb:2-4:1.8
    PM: Adding info for usb:2-4:1.9
    PM: Adding info for No Bus:ep_85
    PM: Adding info for usb:2-4:1.10
    PM: Adding info for No Bus:ep_06
    PM: Adding info for No Bus:ep_86
    PM: Adding info for No Bus:usbdev2.2
    PM: Adding info for No Bus:ep_00
    IBM TrackPoint firmware: 0x0e, buttons: 3/3
    PM: Adding info for No Bus:input4
    input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input4
    PM: Adding info for No Bus:mouse0
    PM: Adding info for No Bus:event4
    FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
    FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
    usb 4-2: new full speed USB device using uhci_hcd and address 2
    UDF-fs: No partition found (1)
    device label root devid 1 transid 1893 /dev/root
    PM: Adding info for No Bus:btrfs-1
    PM: Adding info for usb:4-2
    PM: Adding info for usb:4-2:1.0
    PM: Adding info for No Bus:ep_81
    PM: Adding info for No Bus:ep_82
    PM: Adding info for No Bus:ep_02
    PM: Adding info for usb:4-2:1.1
    PM: Adding info for No Bus:ep_83
    PM: Adding info for No Bus:ep_03
    PM: Adding info for usb:4-2:1.2
    PM: Adding info for No Bus:ep_84
    PM: Adding info for No Bus:ep_04
    PM: Adding info for usb:4-2:1.3
    PM: Adding info for No Bus:usbdev4.2
    PM: Adding info for No Bus:ep_00
    VFS: Mounted root (btrfs filesystem) readonly on device 0:10.
    Freeing unused kernel memory: 352k freed
    Write protecting the kernel text: 5504k
    Write protecting the kernel read-only data: 1012k
    udev[965]: starting version 165
    Bluetooth: Generic Bluetooth USB driver ver 0.6
    PM: Adding info for No Bus:hci0
    PM: Adding info for No Bus:rfkill0
    usbcore: registered new interface driver btusb
    e1000e: Intel(R) PRO/1000 Network Driver - 1.2.20-k2
    e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
    e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    e1000e 0000:00:19.0: setting latency timer to 64
    e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
    iwlagn: Copyright(c) 2003-2010 Intel Corporation
    iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    iwlagn 0000:03:00.0: setting latency timer to 64
    iwlagn 0000:03:00.0: Detected Intel(R) WiFi Link 5100 AGN, REV=0x54
    iwlagn 0000:03:00.0: device EEPROM VER=0x11e, CALIB=0x4
    iwlagn 0000:03:00.0: Device SKU: 0Xb
    iwlagn 0000:03:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
    iwlagn 0000:03:00.0: irq 46 for MSI/MSI-X
    PM: Adding info for No Bus:0000:03:00.0
    cdc_acm 2-4:1.1: ttyACM0: USB ACM device
    PM: Adding info for No Bus:ttyACM0
    cdc_acm 2-4:1.3: ttyACM1: USB ACM device
    PM: Adding info for No Bus:ttyACM1
    cdc_acm 2-4:1.9: ttyACM2: USB ACM device
    PM: Adding info for No Bus:ttyACM2
    usbcore: registered new interface driver cdc_acm
    cdc_acm: v0.26:USB Abstract Control Model driver for USB modems and ISDN adapters
    thinkpad_acpi: ThinkPad ACPI Extras v0.24
    thinkpad_acpi: http://ibm-acpi.sf.net/
    thinkpad_acpi: ThinkPad BIOS 6DET28WW (1.05 ), EC 7XHT21WW-1.03
    thinkpad_acpi: Lenovo ThinkPad X200, model 7458Y11
    PM: Adding info for platform:thinkpad_acpi
    PM: Adding info for platform:thinkpad_hwmon
    PM: Adding info for No Bus:hwmon3
    thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    thinkpad_acpi: radio switch found; radios are enabled
    PM: Adding info for No Bus:rfkill1
    thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    PM: Adding info for No Bus:rfkill2
    thinkpad_acpi: rfkill switch tpacpi_wwan_sw: radio is unblocked
    PM: Adding info for No Bus:tpacpi::thinklight
    Registered led device: tpacpi::thinklight
    PM: Adding info for No Bus:tpacpi::power
    Registered led device: tpacpi::power
    PM: Adding info for No Bus:tpacpi::standby
    Registered led device: tpacpi::standby
    PM: Adding info for No Bus:tpacpi::thinkvantage
    Registered led device: tpacpi::thinkvantage
    PM: Adding info for No Bus:thinkpad_screen
    PM: Adding info for No Bus:card29
    PM: Adding info for No Bus:controlC29
    thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    PM: Adding info for No Bus:input5
    input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
    PM: Adding info for No Bus:event5
    PM: Removing info for No Bus:0000:03:00.0
    iwlagn 0000:03:00.0: loaded firmware version 8.24.2.12
    PM: Adding info for No Bus:phy0
    PM: Adding info for No Bus:rfkill3
    ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    PM: Adding info for No Bus:wlan0
    PM: Adding info for No Bus:timer
    PM: Adding info for No Bus:eth0
    e1000e 0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:1f:16:09:3e:a6
    e1000e 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
    e1000e 0000:00:19.0: eth0: MAC: 7, PHY: 8, PBA No: 1008FF-0FF
    HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    HDA Intel 0000:00:1b.0: irq 47 for MSI/MSI-X
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    PM: Adding info for No Bus:card0
    PM: Adding info for No Bus:pcmC0D1p
    PM: Adding info for No Bus:pcmC0D0p
    PM: Adding info for No Bus:pcmC0D0c
    PM: Adding info for No Bus:controlC0
    device label data devid 1 transid 59471 /dev/sda4
    PM: Adding info for No Bus:btrfs-2
    device label data devid 1 transid 59471 /dev/sda4
    Adding 2000088k swap on /dev/sda2. Priority:-1 extents:1 across:2000088k
    PM: Adding info for No Bus:vcs10
    PM: Adding info for No Bus:vcsa10
    PM: Adding info for No Bus:vcs11
    PM: Adding info for No Bus:vcsa11
    PM: Adding info for No Bus:vcs12
    PM: Adding info for No Bus:vcsa12
    PM: Adding info for No Bus:vcs13
    PM: Adding info for No Bus:vcsa13
    PM: Adding info for No Bus:vcs14
    PM: Adding info for No Bus:vcsa14
    PM: Adding info for No Bus:vcs15
    PM: Adding info for No Bus:vcsa15
    PM: Adding info for No Bus:vcs16
    PM: Adding info for No Bus:vcsa16
    PM: Adding info for No Bus:vcs17
    PM: Adding info for No Bus:vcsa17
    PM: Adding info for No Bus:vcs18
    PM: Adding info for No Bus:vcsa18
    PM: Adding info for No Bus:vcs19
    PM: Adding info for No Bus:vcsa19
    PM: Adding info for No Bus:vcs2
    PM: Adding info for No Bus:vcsa2
    PM: Adding info for No Bus:vcs20
    PM: Adding info for No Bus:vcsa20
    PM: Adding info for No Bus:vcs21
    PM: Adding info for No Bus:vcsa21
    PM: Adding info for No Bus:vcs22
    PM: Adding info for No Bus:vcsa22
    PM: Adding info for No Bus:vcs23
    PM: Adding info for No Bus:vcsa23
    PM: Adding info for No Bus:vcs24
    PM: Adding info for No Bus:vcsa24
    PM: Adding info for No Bus:vcs25
    PM: Adding info for No Bus:vcsa25
    PM: Adding info for No Bus:vcs26
    PM: Adding info for No Bus:vcsa26
    PM: Adding info for No Bus:vcs27
    PM: Adding info for No Bus:vcsa27
    PM: Adding info for No Bus:vcs28
    PM: Adding info for No Bus:vcsa28
    PM: Adding info for No Bus:vcs29
    PM: Adding info for No Bus:vcsa29
    PM: Adding info for No Bus:vcs3
    PM: Adding info for No Bus:vcsa3
    PM: Adding info for No Bus:vcs30
    PM: Adding info for No Bus:vcsa30
    PM: Adding info for No Bus:vcs31
    PM: Adding info for No Bus:vcsa31
    PM: Adding info for No Bus:vcs32
    PM: Adding info for No Bus:vcsa32
    PM: Adding info for No Bus:vcs33
    PM: Adding info for No Bus:vcsa33
    PM: Adding info for No Bus:vcs34
    PM: Adding info for No Bus:vcsa34
    PM: Adding info for No Bus:vcs35
    PM: Adding info for No Bus:vcsa35
    PM: Adding info for No Bus:vcs36
    PM: Adding info for No Bus:vcsa36
    PM: Adding info for No Bus:vcs37
    PM: Adding info for No Bus:vcsa37
    PM: Adding info for No Bus:vcs38
    PM: Adding info for No Bus:vcsa38
    PM: Adding info for No Bus:vcs39
    PM: Adding info for No Bus:vcsa39
    PM: Adding info for No Bus:vcs4
    PM: Adding info for No Bus:vcsa4
    PM: Adding info for No Bus:vcs40
    PM: Adding info for No Bus:vcsa40
    PM: Adding info for No Bus:vcs41
    PM: Adding info for No Bus:vcsa41
    PM: Adding info for No Bus:vcs42
    PM: Adding info for No Bus:vcsa42
    PM: Adding info for No Bus:vcs43
    PM: Adding info for No Bus:vcsa43
    PM: Adding info for No Bus:vcs44
    PM: Adding info for No Bus:vcsa44
    PM: Adding info for No Bus:vcs45
    PM: Adding info for No Bus:vcsa45
    PM: Adding info for No Bus:vcs46
    PM: Adding info for No Bus:vcsa46
    PM: Adding info for No Bus:vcs47
    PM: Adding info for No Bus:vcsa47
    PM: Adding info for No Bus:vcs48
    PM: Adding info for No Bus:vcsa48
    PM: Adding info for No Bus:vcs49
    PM: Adding info for No Bus:vcsa49
    PM: Adding info for No Bus:vcs5
    PM: Adding info for No Bus:vcsa5
    PM: Adding info for No Bus:vcs50
    PM: Adding info for No Bus:vcsa50
    PM: Adding info for No Bus:vcs51
    PM: Adding info for No Bus:vcsa51
    PM: Adding info for No Bus:vcs52
    PM: Adding info for No Bus:vcsa52
    PM: Adding info for No Bus:vcs53
    PM: Adding info for No Bus:vcsa53
    PM: Adding info for No Bus:vcs54
    PM: Adding info for No Bus:vcsa54
    PM: Adding info for No Bus:vcs55
    PM: Adding info for No Bus:vcsa55
    PM: Adding info for No Bus:vcs56
    PM: Adding info for No Bus:vcsa56
    PM: Adding info for No Bus:vcs57
    PM: Adding info for No Bus:vcsa57
    PM: Adding info for No Bus:vcs58
    PM: Adding info for No Bus:vcsa58
    PM: Adding info for No Bus:vcs59
    PM: Adding info for No Bus:vcsa59
    PM: Adding info for No Bus:vcs6
    PM: Adding info for No Bus:vcsa6
    PM: Adding info for No Bus:vcs60
    PM: Adding info for No Bus:vcsa60
    PM: Adding info for No Bus:vcs61
    PM: Adding info for No Bus:vcsa61
    PM: Adding info for No Bus:vcs62
    PM: Adding info for No Bus:vcsa62
    PM: Adding info for No Bus:vcs63
    PM: Adding info for No Bus:vcsa63
    PM: Adding info for No Bus:vcs7
    PM: Adding info for No Bus:vcsa7
    PM: Adding info for No Bus:vcs8
    PM: Adding info for No Bus:vcsa8
    PM: Adding info for No Bus:vcs9
    PM: Adding info for No Bus:vcsa9
    wlan0: authenticate with 00:25:9c:3c:4d:5c (try 1)
    wlan0: authenticated
    wlan0: associate with 00:25:9c:3c:4d:5c (try 1)
    wlan0: RX AssocResp from 00:25:9c:3c:4d:5c (capab=0x411 status=0 aid=2)
    wlan0: associated
    start_kdeinit (1748): /proc/1748/oom_adj is deprecated, please use /proc/1748/oom_score_adj instead.
    Are there any suggestions where i should go from here? (with the official arch kernel its exactly the same story, no difference in  the logs)

  • [SOLVED] Internal Speaker (pcsp) not working

    UPDATE: solved muting all Analog Loopback channels in alsamixer
    Hi everybody,
    i'm tuning the lucky arch installation on a DELL Studio XPS 13. No troubles in video card configuration, neither in wireless drivers, but i'm getting big problems with audio playback. I mean every kind of audio playback.
    I firstly read out the docs and topics around here but couldn't find a solution. Alsaconf says ok, alsamixer channels activated and configuration stored, but audio playing software (kde sounds, juk, amarok, vlc,  flashplugin) is not producing any sound. As these softwares are not complaining about audio matters, and the multimedia module in Kde Control is describing  this only as not working, i suppose the cause must be pcsp (which i disabled rc.conf).
    Some more info:
    bash-3.2# lsmod | grep snd
    snd_hda_codec_nvhdmi 2740 1
    snd_hda_codec_idt 55732 1
    snd_seq_oss 29888 0
    snd_seq_midi_event 5972 1 snd_seq_oss
    snd_seq 48176 4 snd_seq_oss,snd_seq_midi_event
    snd_seq_device 6080 2 snd_seq_oss,snd_seq
    snd_hda_intel 25384 2
    snd_hda_codec 60340 3 snd_hda_codec_nvhdmi,snd_hda_codec_idt,snd_hda_intel
    snd_hwdep 6904 1 snd_hda_codec
    snd_pcm_oss 38112 0
    snd_pcm 67992 3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
    snd_timer 19260 2 snd_seq,snd_pcm
    snd_page_alloc 8092 2 snd_hda_intel,snd_pcm
    snd_mixer_oss 14388 1 snd_pcm_oss
    snd 51460 15 snd_hda_codec_idt,snd_seq_oss,snd_seq,snd_seq_device,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_pcm,snd_timer,snd_mixer_oss
    soundcore 6080 1 snd
    bash-3.2# cat /etc/modprobe.conf
    # /etc/modprobe.conf (for v2.6 kernels)
    options snd-pcsp index=2
    bash-3.2# cat /etc/modprobe.conf
    # /etc/modprobe.conf (for v2.6 kernels)
    options snd-pcsp index=2
    Any help is really appreciated, thank you
    Miche
    Last edited by Miche (2009-05-03 09:48:53)

    mcover wrote:
    snd-pcsp and pcspkr both claim the same hardware and are both responsible for making your machine "beep" - i disabled both of them. you don't need them for your audio-playback. looking for issues of your sound-output by suspecting snd-pcsp or pcspkr is a dead end.
    getting sound can sometimes be an adventure, i had that problem before. but often it just turns out to be some well hidden mute switch in alsamixer or some volume settings. it might be a problem with kde4's sound server. i don't use kde4 on a regular basis, so i can't help too much with that (back when i used kde3 i had to configure aRts but kde4 discontinued aRts in favor of phonon).
    absolutly needed quotation as in the end it has been discovered that in-activating Analog Loopback channels in alsamixer solved the problem
    i'm not sure this was the unique step in order to get alsa working (i read and followed suggentions from many many forums and wikis) but finally i found a post where the problem for a sound blaster owner was solved disabling the iec958 channel. That was the input for a deeper research in alsamixer configuration.
    Thank you very much. keep enjoyng archlinux.
    Miche

  • MacBook video out not working

    Hi there
    I bought the mini-dvi to s-video/composite output to connect my MacBook up to a TV while away from home (to watch TV and movies) but it doesn't work. First I suspected the old TV, but works OK with the Wii connected. Then I thought it was the cable, but I tried a new cable and the sound works fine, so that's not it. Then I suspected the adapter, but when I got home I connected it to my wife's MacBook and it worked fine.
    So, looks like I have dodgy graphics card hardware?
    The MacBook detects that the adapter is connected, so some of the pins are working OK. I just can't get a signal from my MacBook to the TV and the auto detect does not work.
    Anyone got any ideas? The computer is no longer under warranty and I don't have time to take it to the dealer (it takes them three weeks to turn around a fault!) so I'm guessing that I'll have to open up the device myself and check for some bad connections?
    Any advice is appreciated!
    Regards... Jonny.

    Video out under 10.5.2 works fine for me and for a colleague of mine with a more recent MacBook Pro. I'd wager it's a problem with your Leopard install, not a universal one.
    Also, FYI, Apple doesn't read these forums; they're just for user-to-user help. If you want to leave MacBook Pro feedback for Apple, do so here:
    http://www.apple.com/feedback/macbookpro.html
    But again, I do not believe yours is a universal issue. We'll be happy to help troubleshoot though. What do you mean the image is "unstable"? Could you take a digital photograph of the external monitor's screen and upload it somewhere?

  • Digital video out not working

    For some reason on my 2011 Mac Book Pro the digital video out does not work?  It works just fine using the minii adapter for analog video out, but not for digital?
    Any advice much appreciated!
    Thx
    Mark

    It is working exactly as it is supposed to. You didn't read the description properly before buying.
    Video mirroring is available on the iPhone 4S, not the iPhone 4.
    Video out needs to be supported by the app you are using.

  • [SOLVED] Direct Rendering is not working with Catalyst 8.6-1.

    I own an ATI Radeon X1300, and everything was working flawlessly with Catalyst 8.5-1, and when I updated the drivers, DRI stopped working. It has happened with me in the past, and the only solution I had found then was to downgrade the drivers. I appreciate your help.
    Here is my /etc/X11/Xorg.conf:
    Section "ServerLayout"
    Identifier "Xorg Configured"
    Screen 0 "aticonfig-Screen[0]" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "PS/2 Mouse" "CorePointer"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
    Load "ddc" # ddc probing of monitor
    Load "dbe"
    Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    Load "type1"
    Load "freetype"
    Load "record"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbModel" "abnt2"
    Option "XkbLayout" "br"
    EndSection
    Section "InputDevice"
    Identifier "Serial Mouse"
    Driver "mouse"
    Option "Protocol" "Microsoft"
    Option "Device" "/dev/ttyS0"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "PS/2 Mouse"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "ZAxisMapping" "4 5"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "SendCoreEvents" "true"
    Option "Protocol" "IMPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "5"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    DisplaySize 338 270 # 1280x1024 96dpi
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]"
    Driver "fglrx"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]"
    Device "aticonfig-Device[0]"
    Monitor "aticonfig-Monitor[0]"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Here is my /var/log/Xorg.0.log:
    X.Org X Server 1.4.2
    Release Date: 11 June 2008
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.25-ARCH i686
    Current Operating System: Linux localhost 2.6.25-ARCH #1 SMP PREEMPT Sat Jun 14 18:07:19 CEST 2008 i686
    Build Date: 21 June 2008 05:47:59PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Module Loader present
    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.0.log", Time: Mon Jun 23 13:57:45 2008
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Xorg Configured"
    (**) |-->Screen "aticonfig-Screen[0]" (0)
    (**) | |-->Monitor "aticonfig-Monitor[0]"
    (**) | |-->Device "aticonfig-Device[0]"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "PS/2 Mouse"
    (**) Option "AllowMouseOpenFail" "true"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/PEX" does not exist.
    Entry deleted from font path.
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/cyrillic".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/cyrillic").
    (WW) The directory "/usr/share/fonts/ttf/western" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/ttf/decoratives" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype/openoffice" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype/ttf-bitstream-vera" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/latex-ttf-fonts" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/defoma/CID" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/defoma/TrueType" does not exist.
    Entry deleted from font path.
    (==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
    (**) FontPath set to:
    /usr/share/fonts/misc:unscaled,
    /usr/share/fonts/misc,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/75dpi,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/100dpi,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) RgbPath set to "/usr/share/X11/rgb"
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81e0a60
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 2.0
    X.Org XInput driver : 2.0
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
    (++) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 10de,005e card 1043,815a rev a3 class 05,80,00 hdr 00
    (II) PCI: 00:01:0: chip 10de,0050 card 1043,815a rev f3 class 06,01,00 hdr 80
    (II) PCI: 00:01:1: chip 10de,0052 card 1043,815a rev a2 class 0c,05,00 hdr 80
    (II) PCI: 00:02:0: chip 10de,005a card 1043,815a rev a2 class 0c,03,10 hdr 80
    (II) PCI: 00:02:1: chip 10de,005b card 1043,815a rev a3 class 0c,03,20 hdr 80
    (II) PCI: 00:06:0: chip 10de,0053 card f043,815a rev f2 class 01,01,8a hdr 00
    (II) PCI: 00:07:0: chip 10de,0054 card 1043,815a rev f3 class 01,01,85 hdr 00
    (II) PCI: 00:08:0: chip 10de,0055 card 1043,815a rev f3 class 01,01,85 hdr 00
    (II) PCI: 00:09:0: chip 10de,005c card 0000,0000 rev f2 class 06,04,01 hdr 01
    (II) PCI: 00:0a:0: chip 10de,0057 card 1043,812a rev f3 class 06,80,00 hdr 00
    (II) PCI: 00:0b:0: chip 10de,005d card 0000,0000 rev f3 class 06,04,00 hdr 01
    (II) PCI: 00:0c:0: chip 10de,005d card 0000,0000 rev f3 class 06,04,00 hdr 01
    (II) PCI: 00:0d:0: chip 10de,005d card 0000,0000 rev f3 class 06,04,00 hdr 01
    (II) PCI: 00:0e:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
    (II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 01:01:0: chip 1106,3044 card 1043,81fe rev c0 class 0c,00,10 hdr 00
    (II) PCI: 05:00:0: chip 1002,7187 card 17ee,7187 rev 00 class 03,00,00 hdr 80
    (II) PCI: 05:00:1: chip 1002,71a7 card 17ee,7186 rev 00 class 03,80,00 hdr 00
    (II) PCI: End of PCI scan
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:9:0), (0,1,1), BCTRL: 0x0204 (VGA_EN is cleared)
    (II) Bus 1 I/O range:
    [0] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[b]
    [1] -1 0 0x0000a400 - 0x0000a4ff (0x100) IX[b]
    [2] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [3] -1 0 0x0000ac00 - 0x0000acff (0x100) IX[b]
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xfdf00000 - 0xfdffffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:11:0), (0,2,2), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) PCI-to-PCI bridge:
    (II) Bus 3: bridge is at (0:12:0), (0,3,3), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) PCI-to-PCI bridge:
    (II) Bus 4: bridge is at (0:13:0), (0,4,4), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) PCI-to-PCI bridge:
    (II) Bus 5: bridge is at (0:14:0), (0,5,5), BCTRL: 0x000c (VGA_EN is set)
    (II) Bus 5 I/O range:
    [0] -1 0 0x00009000 - 0x000090ff (0x100) IX[b]
    [1] -1 0 0x00009400 - 0x000094ff (0x100) IX[b]
    [2] -1 0 0x00009800 - 0x000098ff (0x100) IX[b]
    [3] -1 0 0x00009c00 - 0x00009cff (0x100) IX[b]
    (II) Bus 5 non-prefetchable memory range:
    [0] -1 0 0xfde00000 - 0xfdefffff (0x100000) MX[b]
    (II) Bus 5 prefetchable memory range:
    [0] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b]
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:24:0), (0,0,5), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 0 I/O range:
    [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) Bus 0 non-prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) Bus 0 prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (--) PCI:*(5:0:0) ATI Technologies Inc RV516 [Radeon X1300/X1550 Series] rev 0, Mem @ 0xd0000000/28, 0xfdef0000/16, I/O @ 0x9c00/8, BIOS @ 0xfdec0000/17
    (--) PCI: (5:0:1) ATI Technologies Inc RV516 [Radeon X1300/X1550 Series] (Secondary) rev 0, Mem @ 0xfdee0000/16
    (II) Addressable bus resource ranges are
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) OS-reported resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) Active PCI resource ranges:
    [0] -1 0 0xfdfff000 - 0xfdfff7ff (0x800) MX[b]
    [1] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [2] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [3] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[b]
    [4] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [5] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [6] -1 0 0xfdec0000 - 0xfdedffff (0x20000) MX[b](B)
    [7] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[b](B)
    [8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [9] -1 0 0x0000ac00 - 0x0000ac7f (0x80) IX[b]
    [10] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[b]
    [11] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[b]
    [12] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [13] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [14] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [15] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [16] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[b]
    [17] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [18] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [19] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [20] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [21] -1 0 0x0000e800 - 0x0000e80f (0x10) IX[b]
    [22] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [23] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [24] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [25] -1 0 0x00009c00 - 0x00009cff (0x100) IX[b](B)
    (II) Inactive PCI resource ranges:
    [0] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MX[b](B)
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xfdfff000 - 0xfdfff7ff (0x800) MX[b]
    [1] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [2] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [3] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[b]
    [4] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [5] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [6] -1 0 0xfdec0000 - 0xfdedffff (0x20000) MX[b](B)
    [7] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[b](B)
    [8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [9] -1 0 0x0000ac00 - 0x0000ac7f (0x80) IX[b]
    [10] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[b]
    [11] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[b]
    [12] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [13] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [14] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [15] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [16] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[b]
    [17] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [18] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [19] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [20] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [21] -1 0 0x0000e800 - 0x0000e80f (0x10) IX[b]
    [22] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [23] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [24] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [25] -1 0 0x00009c00 - 0x00009cff (0x100) IX[b](B)
    (II) Inactive PCI resource ranges after removing overlaps:
    [0] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MX[b](B)
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) All system resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfdfff000 - 0xfdfff7ff (0x800) MX[b]
    [5] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [6] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [7] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[b]
    [8] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [9] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [10] -1 0 0xfdec0000 - 0xfdedffff (0x20000) MX[b](B)
    [11] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[b](B)
    [12] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [13] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MX[b](B)
    [14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [15] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [16] -1 0 0x0000ac00 - 0x0000ac7f (0x80) IX[b]
    [17] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[b]
    [18] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[b]
    [19] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [20] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [21] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [22] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [23] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[b]
    [24] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [25] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [26] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [27] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [28] -1 0 0x0000e800 - 0x0000e80f (0x10) IX[b]
    [29] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [30] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [31] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [32] -1 0 0x00009c00 - 0x00009cff (0x100) IX[b](B)
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) LoadModule: "ddc"(II) Module "ddc" already built-in
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "type1"
    (WW) Warning, couldn't open module type1
    (II) UnloadModule: "type1"
    (EE) Failed to load module "type1" (module does not exist, 0)
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 1.4.2, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension RECORD
    (II) LoadModule: "fglrx"
    (II) Loading /usr/lib/xorg/modules/drivers//fglrx_drv.so
    (II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
    compiled for 7.1.0, module version = 8.50.3
    Module class: X.Org Video Driver
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.3.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.2.3
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) Primary Device is: PCI 05:00:0
    (II) ATI Proprietary Linux Driver Version Identifier:8.50.3
    (II) ATI Proprietary Linux Driver Release Identifier: UNSUPPORTED-8.501
    (II) ATI Proprietary Linux Driver Build Date: Jun 2 2008 22:46:56
    (--) Assigning device section with no busID to primary device
    (WW) fglrx: No matching Device section for instance (BusID PCI:5:0:1) found
    (--) Chipset Supported AMD Graphics Processor (0x7187) found
    (WW) fglrx: No matching Device section for instance (BusID PCI:5:0:1) found
    (II) AMD Video driver is running on a device belonging to a group targeted for this release
    (II) AMD Video driver is signed
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfdfff000 - 0xfdfff7ff (0x800) MX[b]
    [5] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [6] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [7] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[b]
    [8] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [9] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [10] -1 0 0xfdec0000 - 0xfdedffff (0x20000) MX[b](B)
    [11] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[b](B)
    [12] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [13] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MX[b](B)
    [14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [15] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [16] -1 0 0x0000ac00 - 0x0000ac7f (0x80) IX[b]
    [17] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[b]
    [18] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[b]
    [19] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [20] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [21] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [22] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [23] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[b]
    [24] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [25] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [26] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [27] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [28] -1 0 0x0000e800 - 0x0000e80f (0x10) IX[b]
    [29] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [30] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [31] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [32] -1 0 0x00009c00 - 0x00009cff (0x100) IX[b](B)
    (II) fglrx(0): pEnt->device->identifier=0x9fa1880
    (II) resource ranges after probing:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfdfff000 - 0xfdfff7ff (0x800) MX[b]
    [5] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [6] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [7] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[b]
    [8] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [9] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [10] -1 0 0xfdec0000 - 0xfdedffff (0x20000) MX[b](B)
    [11] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[b](B)
    [12] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [13] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MX[b](B)
    [14] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [15] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [16] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [17] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [18] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [19] -1 0 0x0000ac00 - 0x0000ac7f (0x80) IX[b]
    [20] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[b]
    [21] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[b]
    [22] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [23] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [24] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [25] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [26] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[b]
    [27] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [28] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [29] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [30] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [31] -1 0 0x0000e800 - 0x0000e80f (0x10) IX[b]
    [32] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [33] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [34] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [35] -1 0 0x00009c00 - 0x00009cff (0x100) IX[b](B)
    [36] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [37] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (II) fglrx(0): === [atiddxPreInit] === begin
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 0.1.0
    ABI class: X.Org Video Driver, version 2.0
    (II) fglrx(0): PCI bus 5 card 0 func 0
    (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    (==) fglrx(0): Default visual is TrueColor
    (**) fglrx(0): Option "DPMS" "true"
    (II) fglrx(0): Loading PCS database from /etc/ati/amdpcsdb
    (==) fglrx(0): RGB weight 888
    (II) fglrx(0): Using 8 bits per RGB (8 bit DAC)
    (==) fglrx(0): Gamma Correction for I is 0x06419064
    (==) fglrx(0): Gamma Correction for II is 0x06419064
    (==) fglrx(0): Buffer Tiling is ON
    (--) fglrx(0): Chipset: "Radeon X1300/X1550 Series" (Chipset = 0x7187)
    (--) fglrx(0): (PciSubVendor = 0x17ee, PciSubDevice = 0x7187)
    (--) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
    (--) fglrx(0): Linear framebuffer (phys) at 0xd0000000
    (--) fglrx(0): MMIO registers at 0xfdef0000
    (==) fglrx(0): ROM-BIOS at 0x000c0000
    (II) fglrx(0): Primary V_BIOS segment is: 0xc000
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules//libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.1.0
    ABI class: X.Org Video Driver, version 2.0
    (II) fglrx(0): VESA BIOS detected
    (II) fglrx(0): VESA VBE Version 3.0
    (II) fglrx(0): VESA VBE Total Mem: 16384 kB
    (II) fglrx(0): VESA VBE OEM: ATI ATOMBIOS
    (II) fglrx(0): VESA VBE OEM Software Rev: 9.12
    (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2005, ATI Technologies Inc.
    (II) fglrx(0): VESA VBE OEM Product: RV515
    (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
    (II) fglrx(0): ATI Video BIOS revision 9 or later detected
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 7, (OK)
    drmOpenByBusid: Searching for BusID PCI:5:0:0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 7, (OK)
    drmOpenByBusid: drmOpenMinor returns 7
    drmOpenByBusid: drmGetBusid reports PCI:5:0:0
    (II) Loading sub module "fglrxdrm"
    (II) LoadModule: "fglrxdrm"
    (II) Loading /usr/lib/xorg/modules/linux//libfglrxdrm.so
    (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
    compiled for 7.1.0, module version = 8.50.3
    ABI class: X.Org Server Extension, version 0.3
    (II) fglrx(0): Using adapter: 5:0.0.
    (II) fglrx(0): [FB] Find the MC FB aperturs range(MCFBBase = 0xc0000000, MCFBSize = 0x10000000)
    (--) fglrx(0): VideoRAM: 262144 kByte, Type: DDR1
    (II) fglrx(0): PCIE card detected
    (WW) fglrx(0): board is an unknown third party board, chipset is supported
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"(II) Module "ddc" already built-in
    (II) fglrx(0): Connected Display1: CRT on secondary DAC [crt2]
    (II) fglrx(0): Display1 EDID data ---------------------------
    (II) fglrx(0): Manufacturer: PHL Model: 13 Serial#: 1850
    (II) fglrx(0): Year: 2005 Week: 9
    (II) fglrx(0): EDID Version: 1.3
    (II) fglrx(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    (II) fglrx(0): Sync: Separate
    (II) fglrx(0): Max H-Image Size [cm]: horiz.: 32 vert.: 24
    (II) fglrx(0): Gamma: 2.20
    (II) fglrx(0): DPMS capabilities: Off; RGB/Color Display
    (II) fglrx(0): First detailed timing is preferred mode
    (II) fglrx(0): redX: 0.626 redY: 0.340 greenX: 0.288 greenY: 0.608
    (II) fglrx(0): blueX: 0.148 blueY: 0.064 whiteX: 0.283 whiteY: 0.298
    (II) fglrx(0): Supported VESA Video Modes:
    (II) fglrx(0): 720x400@70Hz
    (II) fglrx(0): 640x480@60Hz
    (II) fglrx(0): 640x480@75Hz
    (II) fglrx(0): 800x600@75Hz
    (II) fglrx(0): 1024x768@75Hz
    (II) fglrx(0): Manufacturer's mask: 0
    (II) fglrx(0): Supported Future Video Modes:
    (II) fglrx(0): #0: hsize: 640 vsize 480 refresh: 85 vid: 22833
    (II) fglrx(0): #1: hsize: 800 vsize 600 refresh: 85 vid: 22853
    (II) fglrx(0): #2: hsize: 1024 vsize 768 refresh: 85 vid: 22881
    (II) fglrx(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    (II) fglrx(0): Supported additional Video Mode:
    (II) fglrx(0): clock: 94.5 MHz Image Size: 310 x 230 mm
    (II) fglrx(0): h_active: 1024 h_sync: 1072 h_sync_end 1168 h_blank_end 1376 h_border: 0
    (II) fglrx(0): v_active: 768 v_sync: 769 v_sync_end 772 v_blanking: 808 v_border: 0
    (II) fglrx(0): Serial No: 09301850
    (II) fglrx(0): Monitor name: Philips 107Et
    (II) fglrx(0): Ranges: V min: 50 V max: 160 Hz, H min: 30 H max: 72 kHz, PixClock max 110 MHz
    (II) fglrx(0): EDID (in hex):
    (II) fglrx(0): 00ffffffffffff00410c13003a070000
    (II) fglrx(0): 090f0103682018782a4f29a057499b26
    (II) fglrx(0): 10484ca4420031594559615981800101
    (II) fglrx(0): 010101010101ea240060410028303060
    (II) fglrx(0): 130036e61000001e000000ff00303933
    (II) fglrx(0): 30313835300a20202020000000fc0050
    (II) fglrx(0): 68696c697073203130374574000000fd
    (II) fglrx(0): 0032a01e480b000a20202020202000b2
    (II) fglrx(0): End of Display1 EDID data --------------------
    (WW) fglrx(0): Only one display is connnected,so single mode is enabled
    (II) fglrx(0): Primary Controller - CRT on secondary DAC
    (II) fglrx(0): Internal Desktop Setting: 0x00000001
    (II) fglrx(0): POWERplay not supported on this hardware
    (==) fglrx(0): Qbs is not supported in this release. Disabled.
    (==) fglrx(0): FAST_SWAP disabled
    (==) fglrx(0): PseudoColor visuals disabled
    (==) fglrx(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) fglrx(0): Center Mode is disabled
    (==) fglrx(0): TMDS coherent mode is enabled
    (II) fglrx(0): Total of 40 modes found for primary display.
    (--) fglrx(0): Virtual size is 1280x1024 (pitch 0)
    (**) fglrx(0): *Mode "1280x1024": 108.0 MHz (scaled from 0.0 MHz), 64.0 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 (64.0 kHz)
    (**) fglrx(0): Default mode "1280x1024": 85.5 MHz (scaled from 0.0 MHz), 50.9 kHz, 47.0 Hz (I)
    (II) fglrx(0): Modeline "1280x1024"x47.0 85.51 1280 1344 1480 1680 1024 1025 1028 1083 interlace +hsync (50.9 kHz)
    (**) fglrx(0): Default mode "1280x1024": 77.8 MHz (scaled from 0.0 MHz), 46.3 kHz, 43.0 Hz (I)
    (II) fglrx(0): Modeline "1280x1024"x43.0 77.80 1280 1344 1480 1680 1024 1025 1028 1077 interlace +hsync (46.3 kHz)
    (**) fglrx(0): *Mode "1280x960": 108.0 MHz (scaled from 0.0 MHz), 60.0 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 (60.0 kHz)
    (**) fglrx(0): *Mode "1280x768": 79.5 MHz (scaled from 0.0 MHz), 47.8 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1280x768"x60.0 79.50 1280 1344 1472 1664 768 771 778 798 +hsync (47.8 kHz)
    (**) fglrx(0): *Mode "1280x720": 74.5 MHz (scaled from 0.0 MHz), 44.8 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 +hsync (44.8 kHz)
    (**) fglrx(0): *Mode "1152x864": 81.6 MHz (scaled from 0.0 MHz), 53.7 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1152x864"x60.0 81.62 1152 1216 1336 1520 864 865 868 895 +hsync (53.7 kHz)
    (**) fglrx(0): Default mode "1152x864": 58.3 MHz (scaled from 0.0 MHz), 39.2 kHz, 43.0 Hz (I)
    (II) fglrx(0): Modeline "1152x864"x43.0 58.28 1152 1200 1320 1488 864 865 868 911 interlace +hsync (39.2 kHz)
    (**) fglrx(0): *Mode "1024x768": 94.5 MHz (scaled from 0.0 MHz), 68.7 kHz, 85.0 Hz
    (II) fglrx(0): Modeline "1024x768"x85.0 94.50 1024 1072 1168 1376 768 769 772 808 (68.7 kHz)
    (**) fglrx(0): Default mode "1024x768": 78.8 MHz (scaled from 0.0 MHz), 60.0 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "1024x768"x75.0 78.75 1024 1040 1136 1312 768 769 772 800 (60.0 kHz)
    (**) fglrx(0): Default mode "1024x768": 78.4 MHz (scaled from 0.0 MHz), 57.7 kHz, 72.0 Hz
    (II) fglrx(0): Modeline "1024x768"x72.0 78.43 1024 1080 1192 1360 768 769 772 801 +hsync (57.7 kHz)
    (**) fglrx(0): Default mode "1024x768": 75.0 MHz (scaled from 0.0 MHz), 56.5 kHz, 70.0 Hz
    (II) fglrx(0): Modeline "1024x768"x70.0 75.00 1024 1048 1184 1328 768 771 777 806 +hsync +vsync (56.5 kHz)
    (**) fglrx(0): Default mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 +hsync +vsync (48.4 kHz)
    (**) fglrx(0): Default mode "1024x768": 44.9 MHz (scaled from 0.0 MHz), 35.5 kHz, 43.0 Hz (I)
    (II) fglrx(0): Modeline "1024x768"x43.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace (35.5 kHz)
    (**) fglrx(0): *Mode "800x600": 56.2 MHz (scaled from 0.0 MHz), 53.7 kHz, 85.0 Hz
    (II) fglrx(0): Modeline "800x600"x85.0 56.25 800 832 896 1048 600 601 604 631 (53.7 kHz)
    (**) fglrx(0): Default mode "800x600": 49.5 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 (46.9 kHz)
    (**) fglrx(0): Default mode "800x600": 50.0 MHz (scaled from 0.0 MHz), 48.1 kHz, 72.0 Hz
    (II) fglrx(0): Modeline "800x600"x72.0 50.00 800 856 976 1040 600 637 643 666 (48.1 kHz)
    (**) fglrx(0): Default mode "800x600": 45.5 MHz (scaled from 0.0 MHz), 43.8 kHz, 70.0 Hz
    (II) fglrx(0): Modeline "800x600"x70.0 45.50 800 840 920 1040 600 601 604 625 +hsync (43.8 kHz)
    (**) fglrx(0): Default mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "800x600"x60.0 40.00 800 840 968 1056 600 601 605 628 (37.9 kHz)
    (**) fglrx(0): Default mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.0 Hz
    (II) fglrx(0): Modeline "800x600"x56.0 36.00 800 824 896 1024 600 601 603 625 (35.2 kHz)
    (**) fglrx(0): Default mode "800x600": 68.2 MHz (scaled from 0.0 MHz), 63.6 kHz, 100.0 Hz
    (II) fglrx(0): Modeline "800x600"x100.0 68.17 800 848 936 1072 600 601 604 636 +hsync (63.6 kHz)
    (**) fglrx(0): Default mode "800x600": 60.1 MHz (scaled from 0.0 MHz), 56.9 kHz, 90.0 Hz
    (II) fglrx(0): Modeline "800x600"x90.0 60.06 800 840 928 1056 600 601 604 632 +hsync (56.9 kHz)
    (**) fglrx(0): *Mode "720x480": 26.7 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "720x480"x60.0 26.71 720 736 808 896 480 481 484 497 +hsync (29.8 kHz)
    (**) fglrx(0): *Mode "640x480": 36.0 MHz (scaled from 0.0 MHz), 43.3 kHz, 85.0 Hz
    (II) fglrx(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 +hsync +vsync (43.3 kHz)
    (**) fglrx(0): Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.5 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 +hsync +vsync (37.5 kHz)
    (**) fglrx(0): Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 72.0 Hz
    (II) fglrx(0): Modeline "640x480"x72.0 31.50 640 664 704 832 480 489 492 520 +hsync +vsync (37.9 kHz)
    (**) fglrx(0): Default mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "640x480"x60.0 25.18 640 656 752 800 480 490 492 525 +hsync +vsync (31.5 kHz)
    (**) fglrx(0): Default mode "640x480": 52.4 MHz (scaled from 0.0 MHz), 61.8 kHz, 120.0 Hz
    (II) fglrx(0): Modeline "640x480"x120.0 52.40 640 680 744 848 480 481 484 515 +hsync (61.8 kHz)
    (**) fglrx(0): Default mode "640x480": 43.2 MHz (scaled from 0.0 MHz), 50.9 kHz, 100.0 Hz
    (II) fglrx(0): Modeline "640x480"x100.0 43.16 640 680 744 848 480 481 484 509 +hsync (50.9 kHz)
    (**) fglrx(0): Default mode "640x480": 37.9 MHz (scaled from 0.0 MHz), 45.5 kHz, 90.0 Hz
    (II) fglrx(0): Modeline "640x480"x90.0 37.89 640 672 736 832 480 481 484 506 +hsync (45.5 kHz)
    (**) fglrx(0): Default mode "640x400": 28.1 MHz (scaled from 0.0 MHz), 33.7 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "640x400"x75.0 28.07 640 696 736 832 400 413 415 449 (33.7 kHz)
    (**) fglrx(0): Default mode "640x400": 24.9 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "640x400"x60.0 24.92 640 664 760 792 400 460 462 525 (31.5 kHz)
    (**) fglrx(0): Default mode "512x384": 19.7 MHz (scaled from 0.0 MHz), 31.1 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "512x384"x75.0 19.68 512 528 576 632 384 384 385 416 (31.1 kHz)
    (**) fglrx(0): Default mode "512x384": 19.8 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "512x384"x60.0 19.81 512 544 624 664 384 451 453 497 (29.8 kHz)
    (**) fglrx(0): Default mode "400x300": 24.8 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz (D)
    (II) fglrx(0): Modeline "400x300"x75.0 24.75 400 408 448 528 300 601 602 625 doublescan (46.9 kHz)
    (**) fglrx(0): Default mode "400x300": 22.3 MHz (scaled from 0.0 MHz), 45.0 kHz, 60.0 Hz (D)
    (II) fglrx(0): Modeline "400x300"x60.0 22.33 400 416 480 496 300 601 605 742 doublescan (45.0 kHz)
    (**) fglrx(0): Default mode "320x240": 15.8 MHz (scaled from 0.0 MHz), 37.9 kHz, 75.0 Hz (D)
    (II) fglrx(0): Modeline "320x240"x75.0 15.75 320 328 360 416 240 481 482 501 doublescan (37.9 kHz)
    (**) fglrx(0): Default mode "320x240": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz (D)
    (II) fglrx(0): Modeline "320x240"x60.0 12.59 320 328 376 400 240 491 493 525 doublescan (31.5 kHz)
    (**) fglrx(0): Default mode "320x200": 13.1 MHz (scaled from 0.0 MHz), 31.5 kHz, 75.0 Hz (D)
    (II) fglrx(0): Modeline "320x200"x75.0 13.10 320 352 368 416 200 406 407 417 doublescan (31.5 kHz)
    (**) fglrx(0): Default mode "320x200": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz (D)
    (II) fglrx(0): Modeline "320x200"x60.0 12.59 320 336 384 400 200 457 459 524 doublescan (31.5 kHz)
    (**) fglrx(0): Display dimensions: (338, 270) mm
    (WW) fglrx(0): Probed monitor is 320x240 mm, using Displaysize 338x270 mm
    (**) fglrx(0): DPI set to (96, 96)
    (--) fglrx(0): Virtual size is 1280x1024 (pitch 1280)
    (**) fglrx(0): *Mode "1280x1024": 108.0 MHz (scaled from 0.0 MHz), 64.0 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 (64.0 kHz)
    (**) fglrx(0): Default mode "1280x1024": 85.5 MHz (scaled from 0.0 MHz), 50.9 kHz, 47.0 Hz (I)
    (II) fglrx(0): Modeline "1280x1024"x47.0 85.51 1280 1344 1480 1680 1024 1025 1028 1083 interlace +hsync (50.9 kHz)
    (**) fglrx(0): Default mode "1280x1024": 77.8 MHz (scaled from 0.0 MHz), 46.3 kHz, 43.0 Hz (I)
    (II) fglrx(0): Modeline "1280x1024"x43.0 77.80 1280 1344 1480 1680 1024 1025 1028 1077 interlace +hsync (46.3 kHz)
    (**) fglrx(0): *Mode "1280x960": 108.0 MHz (scaled from 0.0 MHz), 60.0 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 (60.0 kHz)
    (**) fglrx(0): *Mode "1280x768": 79.5 MHz (scaled from 0.0 MHz), 47.8 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1280x768"x60.0 79.50 1280 1344 1472 1664 768 771 778 798 +hsync (47.8 kHz)
    (**) fglrx(0): *Mode "1280x720": 74.5 MHz (scaled from 0.0 MHz), 44.8 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 +hsync (44.8 kHz)
    (**) fglrx(0): *Mode "1152x864": 81.6 MHz (scaled from 0.0 MHz), 53.7 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1152x864"x60.0 81.62 1152 1216 1336 1520 864 865 868 895 +hsync (53.7 kHz)
    (**) fglrx(0): Default mode "1152x864": 58.3 MHz (scaled from 0.0 MHz), 39.2 kHz, 43.0 Hz (I)
    (II) fglrx(0): Modeline "1152x864"x43.0 58.28 1152 1200 1320 1488 864 865 868 911 interlace +hsync (39.2 kHz)
    (**) fglrx(0): *Mode "1024x768": 94.5 MHz (scaled from 0.0 MHz), 68.7 kHz, 85.0 Hz
    (II) fglrx(0): Modeline "1024x768"x85.0 94.50 1024 1072 1168 1376 768 769 772 808 (68.7 kHz)
    (**) fglrx(0): Default mode "1024x768": 78.8 MHz (scaled from 0.0 MHz), 60.0 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "1024x768"x75.0 78.75 1024 1040 1136 1312 768 769 772 800 (60.0 kHz)
    (**) fglrx(0): Default mode "1024x768": 78.4 MHz (scaled from 0.0 MHz), 57.7 kHz, 72.0 Hz
    (II) fglrx(0): Modeline "1024x768"x72.0 78.43 1024 1080 1192 1360 768 769 772 801 +hsync (57.7 kHz)
    (**) fglrx(0): Default mode "1024x768": 75.0 MHz (scaled from 0.0 MHz), 56.5 kHz, 70.0 Hz
    (II) fglrx(0): Modeline "1024x768"x70.0 75.00 1024 1048 1184 1328 768 771 777 806 +hsync +vsync (56.5 kHz)
    (**) fglrx(0): Default mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 +hsync +vsync (48.4 kHz)
    (**) fglrx(0): Default mode "1024x768": 44.9 MHz (scaled from 0.0 MHz), 35.5 kHz, 43.0 Hz (I)
    (II) fglrx(0): Modeline "1024x768"x43.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace (35.5 kHz)
    (**) fglrx(0): *Mode "800x600": 56.2 MHz (scaled from 0.0 MHz), 53.7 kHz, 85.0 Hz
    (II) fglrx(0): Modeline "800x600"x85.0 56.25 800 832 896 1048 600 601 604 631 (53.7 kHz)
    (**) fglrx(0): Default mode "800x600": 49.5 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 (46.9 kHz)
    (**) fglrx(0): Default mode "800x600": 50.0 MHz (scaled from 0.0 MHz), 48.1 kHz, 72.0 Hz
    (II) fglrx(0): Modeline "800x600"x72.0 50.00 800 856 976 1040 600 637 643 666 (48.1 kHz)
    (**) fglrx(0): Default mode "800x600": 45.5 MHz (scaled from 0.0 MHz), 43.8 kHz, 70.0 Hz
    (II) fglrx(0): Modeline "800x600"x70.0 45.50 800 840 920 1040 600 601 604 625 +hsync (43.8 kHz)
    (**) fglrx(0): Default mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "800x600"x60.0 40.00 800 840 968 1056 600 601 605 628 (37.9 kHz)
    (**) fglrx(0): Default mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.0 Hz
    (II) fglrx(0): Modeline "800x600"x56.0 36.00 800 824 896 1024 600 601 603 625 (35.2 kHz)
    (**) fglrx(0): Default mode "800x600": 68.2 MHz (scaled from 0.0 MHz), 63.6 kHz, 100.0 Hz
    (II) fglrx(0): Modeline "800x600"x100.0 68.17 800 848 936 1072 600 601 604 636 +hsync (63.6 kHz)
    (**) fglrx(0): Default mode "800x600": 60.1 MHz (scaled from 0.0 MHz), 56.9 kHz, 90.0 Hz
    (II) fglrx(0): Modeline "800x600"x90.0 60.06 800 840 928 1056 600 601 604 632 +hsync (56.9 kHz)
    (**) fglrx(0): *Mode "720x480": 26.7 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "720x480"x60.0 26.71 720 736 808 896 480 481 484 497 +hsync (29.8 kHz)
    (**) fglrx(0): *Mode "640x480": 36.0 MHz (scaled from 0.0 MHz), 43.3 kHz, 85.0 Hz
    (II) fglrx(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 +hsync +vsync (43.3 kHz)
    (**) fglrx(0): Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.5 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 +hsync +vsync (37.5 kHz)
    (**) fglrx(0): Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 72.0 Hz
    (II) fglrx(0): Modeline "640x480"x72.0 31.50 640 664 704 832 480 489 492 520 +hsync +vsync (37.9 kHz)
    (**) fglrx(0): Default mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "640x480"x60.0 25.18 640 656 752 800 480 490 492 525 +hsync +vsync (31.5 kHz)
    (**) fglrx(0): Default mode "640x480": 52.4 MHz (scaled from 0.0 MHz), 61.8 kHz, 120.0 Hz
    (II) fglrx(0): Modeline "640x480"x120.0 52.40 640 680 744 848 480 481 484 515 +hsync (61.8 kHz)
    (**) fglrx(0): Default mode "640x480": 43.2 MHz (scaled from 0.0 MHz), 50.9 kHz, 100.0 Hz
    (II) fglrx(0): Modeline "640x480"x100.0 43.16 640 680 744 848 480 481 484 509 +hsync (50.9 kHz)
    (**) fglrx(0): Default mode "640x480": 37.9 MHz (scaled from 0.0 MHz), 45.5 kHz, 90.0 Hz
    (II) fglrx(0): Modeline "640x480"x90.0 37.89 640 672 736 832 480 481 484 506 +hsync (45.5 kHz)
    (**) fglrx(0): Default mode "640x400": 28.1 MHz (scaled from 0.0 MHz), 33.7 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "640x400"x75.0 28.07 640 696 736 832 400 413 415 449 (33.7 kHz)
    (**) fglrx(0): Default mode "640x400": 24.9 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "640x400"x60.0 24.92 640 664 760 792 400 460 462 525 (31.5 kHz)
    (**) fglrx(0): Default mode "512x384": 19.7 MHz (scaled from 0.0 MHz), 31.1 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "512x384"x75.0 19.68 512 528 576 632 384 384 385 416 (31.1 kHz)
    (**) fglrx(0): Default mode "512x384": 19.8 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "512x384"x60.0 19.81 512 544 624 664 384 451 453 497 (29.8 kHz)
    (**) fglrx(0): Default mode "400x300": 24.8 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz (D)
    (II) fglrx(0): Modeline "400x300"x75.0 24.75 400 408 448 528 300 601 602 625 doublescan (46.9 kHz)
    (**) fglrx(0): Default mode "400x300": 22.3 MHz (scaled from 0.0 MHz), 45.0 kHz, 60.0 Hz (D)
    (II) fglrx(0): Modeline "400x300"x60.0 22.33 400 416 480 496 300 601 605 742 doublescan (45.0 kHz)
    (**) fglrx(0): Default mode "320x240": 15.8 MHz (scaled from 0.0 MHz), 37.9 kHz, 75.0 Hz (D)
    (II) fglrx(0): Modeline "320x240"x75.0 15.75 320 328 360 416 240 481 482 501 doublescan (37.9 kHz)
    (**) fglrx(0): Default mode "320x240": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz (D)
    (II) fglrx(0): Modeline "320x240"x60.0 12.59 320 328 376 400 240 491 493 525 doublescan (31.5 kHz)
    (**) fglrx(0): Default mode "320x200": 13.1 MHz (scaled from 0.0 MHz), 31.5 kHz, 75.0 Hz (D)
    (II) fglrx(0): Modeline "320x200"x75.0 13.10 320 352 368 416 200 406 407 417 doublescan (31.5 kHz)
    (**) fglrx(0): Default mode "320x200": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz (D)
    (II) fglrx(0): Modeline "320x200"x60.0 12.59 320 336 384 400 200 457 459 524 doublescan (31.5 kHz)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"(II) Module "ramdac" already built-in
    (==) fglrx(0): NoAccel = NO
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.2.0
    ABI class: X.Org Video Driver, version 2.0
    (==) fglrx(0): NoDRI = NO
    (II) Loading sub module "fglrxdrm"
    (II) LoadModule: "fglrxdrm"
    (II) Reloading /usr/lib/xorg/modules/linux//libfglrxdrm.so
    (==) fglrx(0): Capabilities: 0x00000000
    (==) fglrx(0): CapabilitiesEx: 0x00000000
    (==) fglrx(0): cpuFlags: 0x4000001f
    (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
    (**) fglrx(0): ATI GART size: 255 MB
    (II) fglrx(0): [pcie] 261120 kB allocated
    (II) fglrx(0): [drm] DRM buffer queue setup: nbufs = 100 bufsize = 65536
    (==) fglrx(0): UseFastTLS=0
    (==) fglrx(0): BlockSignalsOnLock=1
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xfdef0000 - 0xfdefffff (0x10000) MX[b]
    [1] 0 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b]
    [2] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [3] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [4] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [5] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [6] -1 0 0xfdfff000 - 0xfdfff7ff (0x800) MX[b]
    [7] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [8] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [9] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[b]
    [10] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [11] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [12] -1 0 0xfdec0000 - 0xfdedffff (0x20000) MX[b](B)
    [13] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[b](B)
    [14] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [15] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MX[b](B)
    [16] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
    [17] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
    [18] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
    [19] 0 0 0x00009c00 - 0x00009cff (0x100) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [22] -1 0 0x0000ac00 - 0x0000ac7f (0x80) IX[b]
    [23] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[b]
    [24] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[b]
    [25] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [26] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [27] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [28] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [29] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[b]
    [30] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [31] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [32] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [33] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [34] -1 0 0x0000e800 - 0x0000e80f (0x10) IX[b]
    [35] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [36] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [37] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [38] -1 0 0x00009c00 - 0x00009cff (0x100) IX[b](B)
    [39] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [40] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) fglrx(0): driver needs X.org 7.1.x.y with x.y >= 0.0
    (II) fglrx(0): detected X.org 7.1.2.0
    (II) Loading extension ATIFGLRXDRI
    (II) fglrx(0): doing DRIScreenInit
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 7, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 7, (OK)
    drmOpenByBusid: Searching for BusID PCI:5:0:0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 7, (OK)
    drmOpenByBusid: drmOpenMinor returns 7
    drmOpenByBusid: drmGetBusid reports PCI:5:0:0
    (II) [drm] DRM interface version 1.0
    (II) [drm] DRM open master succeeded.
    (II) fglrx(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) fglrx(0): [drm] framebuffer handle = 0xac000
    (II) fglrx(0): [drm] added 1 reserved context for kernel
    (II) fglrx(0): X context handle = 0x1
    (II) fglrx(0): DRIScreenInit done
    (II) fglrx(0): Kernel Module Version Information:
    (II) fglrx(0): Name: fglrx
    (II) fglrx(0): Version: 8.49.7
    (II) fglrx(0): Date: May 12 2008
    (II) fglrx(0): Desc: ATI FireGL DRM kernel module
    (WW) fglrx(0): Kernel Module version does *not* match driver.
    (EE) fglrx(0): incompatible kernel module detected - HW accelerated OpenGL will not work
    (II) fglrx(0): [drm] removed 1 reserved context for kernel
    (II) fglrx(0): [drm] unmapping 8192 bytes of SAREA 0xab000 at 0xb7653000
    (II) fglrx(0): [drm] Closed DRM master.
    (WW) fglrx(0): ***********************************************
    (WW) fglrx(0): * DRI initialization failed! *
    (WW) fglrx(0): * (maybe driver kernel module missing or bad) *
    (WW) fglrx(0): * 2D acceleraton available (MMIO) *
    (WW) fglrx(0): * no 3D acceleration available *
    (WW) fglrx(0): ********************************************* *
    (II) fglrx(0): FBADPhys: 0xc0000000 FBMappedSize: 0x10000000
    (==) fglrx(0): Write-combining range (0xd0000000,0x10000000)
    (II) fglrx(0): FBMM initialized for area (0,0)-(1280,8191)
    (II) fglrx(0): FBMM auto alloc for area (0,0)-(1280,1024) (front color buffer - assumption)
    (II) fglrx(0): Largest offscreen area available: 1280 x 7167
    (==) fglrx(0): Backing store disabled
    (II) Loading extension FGLRXEXTENSION
    (II) Loading extension ATITVOUT
    (**) fglrx(0): DPMS enabled
    (WW) fglrx(0): Textured Video not supported without DRI enabled.
    (II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    Solid Horizontal and Vertical Lines
    Setting up tile and stipple cache:
    32 128x128 slots
    32 256x256 slots
    16 512x512 slots
    (II) fglrx(0): Acceleration enabled
    (II) LoadModule: "amdxmm"
    (II) Loading /usr/lib/xorg/modules//amdxmm.so
    (II) Module amdxmm: vendor="X.Org Foundation"
    compiled for 7.1.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (EE) fglrx(0): XMM failed to open CMMQS connection.
    (II) fglrx(0): XMM failed to initialize!
    (WW) fglrx(0): Option "VendorName" is not used
    (WW) fglrx(0): Option "ModelName" is not used
    (II) fglrx(0): Direct rendering disabled
    (==) fglrx(0): Silken mouse enabled
    (==) fglrx(0): Using hardware cursor
    (==) RandR enabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    (II) AIGLX: Screen 0 is not DRI capable
    (II) Loading sub module "GLcore"
    (II) LoadModule: "GLcore"
    (II) Loading /usr/lib/xorg/modules/extensions//libGLcore.so
    (II) Module GLcore: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) GLX: Initialized MESA-PROXY GL provider for screen 0
    (**) Option "CoreKeyboard"
    (**) Keyboard0: always reports core events
    (**) Option "Protocol" "standard"
    (**) Keyboard0: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard0: XkbRules: "xorg"
    (**) Option "XkbModel" "abnt2"
    (**) Keyboard0: XkbModel: "abnt2"
    (**) Option "XkbLayout" "br"
    (**) Keyboard0: XkbLayout: "br"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard0: CustomKeycodes disabled
    (**) Option "Protocol" "auto"
    (**) PS/2 Mouse: Device: "/dev/psaux"
    (**) PS/2 Mouse: Protocol: "auto"
    (**) Option "SendCoreEvents" "true"
    (**) Option "CorePointer"
    (**) PS/2 Mouse: always reports core events
    (**) Option "Device" "/dev/psaux"
    (**) Option "Emulate3Buttons" "true"
    (**) Option "Emulate3Timeout" "70"
    (**) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 70
    (**) Option "ZAxisMapping" "4 5"
    (**) PS/2 Mouse: ZAxisMapping: buttons 4 and 5
    (**) PS/2 Mouse: Buttons: 9
    (**) PS/2 Mouse: Sensitivity: 1
    (II) evaluating device (PS/2 Mouse)
    (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE)
    (II) evaluating device (Keyboard0)
    (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    (--) PS/2 Mouse: PnP-detected protocol: "ExplorerPS/2"
    (II) PS/2 Mouse: ps2EnableDataReporting: succeeded
    Last edited by DarkForte (2008-06-23 22:40:05)

    From your Xorg.0.log:
    (II) fglrx(0): DRIScreenInit done
    (II) fglrx(0): Kernel Module Version Information:
    (II) fglrx(0): Name: fglrx
    (II) fglrx(0): Version: 8.49.7
    (II) fglrx(0): Date: May 12 2008
    (II) fglrx(0): Desc: ATI FireGL DRM kernel module
    (WW) fglrx(0): Kernel Module version does *not* match driver.
    (EE) fglrx(0): incompatible kernel module detected - HW accelerated OpenGL will not work
    You have to quit X, then rmmod and modprobe the kernel module - you're still using the old one.  (a reboot would technically fix it too)
    # rmmod fglrx
    # modprobe fglrx
    # dmesg | tail
    The dmesg output should say you've successfully loaded the 8.501 driver.

  • System.out not working on eclipse

    Greetings...
    I am no longer a newbie on Java, but I have been facing an issue lately that I have been unable to resolve myself, even though it seems to be something so silly.
    I have been using eclipse for development, and by developing a simple "Just to practice" code I have found myself unable to use System class or any of its methods at a certain point. See the code below:
    package one;
    import java.util.Scanner;
    public ClassOne {
    public static void main (String args[]){
    Scanner reader = new Scanner(System.in); /*Works just fine here*/
    int x = 0;
    System.out.println("Type in the number of objects expected"); /*Does not work at all, like if System was something I could not use at all. Not an identifier */
    Scanner readertwo = new Scanner(System.in); /*System does not work here either*/
    }Even if I rewrite the code after that, by erasing the import statement and all other System references in the code, System does not work again.
    If anybody has ever faced the same issue and knows what I am doing wrong and what I can do to fix it, I'd really be grateful.
    Thanks to all, and happy 2009.
    Santana T

    Santana_Thiago wrote:
    It works on NetBeans.
    On eclipse I get the following error:
    ERROR: JDWP Unable to get JNI 1.2 Environment, jvm->GetEnv() return code = -2+
    *JDWP exit error AGENT_ERROR_NO_JNI_ENV(183): [../../../src/share/back/util.c:820]*+
    The funniest thing is that if copy and paste the code from somewhere else into eclipse it works. What a drag!!!!
    Thank you.
    Santana TNever seen that error but it sounds to me that your Eclipse installation is screwed up!

  • [SOLVED] DPMS screen off not working with xorg 1.16.0, gnome 3

    After the update of xorg into 1.16.0-2, screen is not turned off by DPMS in GNOME.
    I also tried an manual command:
    $ xset dpms force off
    but it's not working.
    In other WM, this command is working.
    With xorg 1.15.2 and gnome 3, there is not this problem.
    When I entered the command, the screen turned off for a couple of seconds and turned back on.
    Last edited by esrevinu (2014-07-22 23:35:07)

    Updating xf86-video-intel to 2.99.912-4 solved the problem.
    Thanks.

  • Event log is not working in Multiform server

    Hi ,
    We are trying to implement event logging in our application. We have created separate event source for our application. When we testing this our local dev machine it is working without any problem. when I try to test the same in higher environment (QA, Pre-prod)
    it is not working. The QA environment is a multi form server. We are able to see the event source in the event viewer, but the logging is not happening. We have tried restarting IIS, restarting the services. 
    Any suggestion or guidance will be highly appreciated.
    Thanks in Advance

    Hi GHPMS,
    >>We are trying to implement event logging in our application
    Do you mean this code as below?
    string sSource;
    string sLog;
    string sEvent;
    sSource = "dotNET Sample App";
    sLog = "Application";
    sEvent = "Sample Event";
    if (!EventLog.SourceExists(sSource))
    EventLog.CreateEventSource(sSource, sLog);
    EventLog.WriteEntry(sSource, sEvent);
    EventLog.WriteEntry(sSource, sEvent,
    EventLogEntryType.Warning, 234);
    Like in following screenshot
    >>We are able to see the event source in the event viewer, but the logging is not happening.
    Maybe, you also need to check if the
    eventlog exist method before you try to crate it new.
    You might need check on what account the service is running under, which may make a difference on multi form server and up since they are more stringent on account rights on those environment.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Iphone for VGA Video Out not working

    We have the Iphone/iPad VGA to Monitor connector. We tested it with 3 different iPhone 4 phones... It worked on 2 of them, but the 3rd woudn't work. What possible reason would it not work? The 3 phones had software of 4.3 and higher...

    Dr. L,
    The previous iPod's did not support component video out for newer televisions that support it. The box for the older Video out cables do not say they support the iPhone.
    The current video out cables are available in either component or composite video out. They also say they support the iPhone on the box.
    In addition when shopping the Apple Store online for iPod or iPhone accessories there is a compatibility guide which shows icons of the iPod models or iPhone that are supported.
    Overall my personal experience is that this, and other Apple specific ones, are much smaller compatibility, and downtime driver for IT than many of them I have run across supporting a variety of computer and networking platforms over the last 23 years.
    Hope this helps,
    Nathan C.

Maybe you are looking for