[SOLVED] Font rendering doesn't work as expected on github

Hey!
I have a problem with the font rendering on github. On Windows it looks normal, but on Arch it looks a bit bold.
Here a comparison picture how it looks on my arch desktop and on my windows desktop:
So, how can I solve this problem?
Thanks in advance!
Last edited by sh4nks (2014-01-10 15:33:39)

As per bohoomil's recommendation, I created and installed the ttf-ms-win8 font package.  At some point, I had an issue with libreoffice actually not actually showing any fonts at all.  After much browsing, I found others who reported the same thing and that the removal of the ms fonts solved the issue (it turned out to be segoe I think).  In the mean time, I tried using the google fonts (ttf-google-fonts-git) and was quite pleased with them… until I navigated to the github page, which was awful.  So in the end, I resintalled the ttf-ms-win8 font package, as the free fonts were apparently insufficient.
So the point of this story is that although I think you can "fix" things to a degree by modifying the font configurations, this is actually a simple case of not having the available font on one's system (and github defaulting to something crappy, as mentioned by nfisher.sr above). 
Take this story/post with a pinch of salt though, as I simply put my font configuration needs in the hands of the amazingly capable bohoomil and his infinality-bundle.  I just do what he tells me to do, and my fonts look amazing.

Similar Messages

  • Help - Font Book and font Library doesn't work

    I've just updated to a new iMac on Yosemite, and Font Book doesn't work. Neither does putting fonts into the "Library"
    There is a range of fonts that ARE working that are already in either place, but some (that worked up until two days ago in my old Mac running OS 10.6.8) just won't work.
    If I select the fonts in Font Book, Font Book doesn't load them. If I put them in the Library, they don't appear for use in any application.
    As a designer, updating fonts is essential, and if this can't be fixed I'm in serious trouble! So any advice welcome!

    We see posts like this here all the time. A person upgrades to a new OS, and Font Book suddenly stops working. Usually, the problem is that Font Book's database has been trashed by the upgrade with the very common symptoms you're seeing. You suddenly can't add fonts, and fonts Font Book says are open don't appear in some, or any apps.
    Restart your Mac and immediately hold down the Shift key when you hear the startup chime to boot into Safe Mode. Keep holding the Shift key until you see a progress bar towards the bottom of the screen. You can let go of the Shift key at that point. Yosemite is a bit different. Whether it's a Safe Mode boot or a normal one, you get the same progress bar. It just takes longer to get to the desktop in Safe Mode. So hold the Shift key until you get to the desktop.
    OS X asks you to log in (you will get this screen on a Safe Mode boot even if your Mac is set to automatically log in). Let the Mac finish booting to the desktop and then restart normally. This will clear Font Book's database and the cache files of the user account you logged into in Safe Mode.
    If that alone doesn't do it (it should), then clear out all of the font cache data.
    Close all running applications. From an administrator account, open the Terminal app and enter the following command. You can also copy/paste it from here into the Terminal window:
    sudo atsutil databases -remove
    Terminal will then ask for your admin password. As you type, it will not show anything, so be sure to enter it correctly.
    This removes all font cache files. Both for the system and the current logged in user account. After running the command, close Terminal and immediately restart your Mac.

  • ArrayDeque as a stack doesn't work as expected with complex objects

    Trying to use ArrayDeque as a strorage for complex values <PSList<PSol>> (i.e. Arraylists of structured Values PSol), this doesn't work as expected. The code below should produce different values of pSLWk, being stored on bkStack, which are then to be retrieved by pop() to the variables pSL1, pSL2, pSL3.
    However, retrieval only ends up with three identical data sets (variables) pS1,pS2, pS3.
            public PSList<PSol> pSL;
            private ArrayDeque<PSList<PSol>> bkStack=new ArrayDeque<PSList<PSol>>();
            pSLWk=new PSList<PSol>();       // Constructor copies some Array (static field) to the PSLists
            pSL=new PSList<PSol>();
            pSLAux=new PSList<PSol>(pSLWk);   // Constructor copies from existing PSList
            pSLWk.checkResult("pSLWk prior to setDefaults - modifies pSLWk !");
            setDefaults();                                                            // Modifies pSLWk only
            pSLWk.checkResult(" pSLWk after setDefaults");              // .. got changes (o.k.)
            pSL.checkResult(" pSL after setDefaults");                  // .. unchanged  (o.k.)
            pSL.checkResult(" pSLAux after setDefaults");               // .. unchanged  (o.k.)
            bkStack.push(new PSList<PSol>(pSLWk));                      // store changes in bkStack
            pSLWk.getEl(77).setVal(new StringBuffer("4"));              // change pSLWk again (value 4 @ 77)
            pSLWk.checkResult("pSLWk, after PUSH, THEN modify 4@77");   // .. got change (o.k.)
            pSL.checkResult("pSL after setVal 77");
            bkStack.push(pSLWk);                      // store changes in bkStack
            pSLWk.getEl(80).setVal(new StringBuffer("8"));              // change pSLWk again (value 8 @ 80)
            pSLWk.checkResult("pSLWk after setVal 8@80");               // .. got change (o.k.)
            pSL.checkResult("pSL after setVal 80");
            bkStack.push(new PSList<PSol>(pSLWk));                      // store changes in bkStack
            pSL1=new PSList<PSol>(bkStack.pop());
            pSL1.checkResult("pSL1 after 1st pop");
    //      pSL1=bkStack.pop()                                          // Straightforward way doesn't work either...
            pSL2=new PSList<PSol>(bkStack.pop());
            pSL2.checkResult("pSL2 after 2nd pop");
            pSL3=new PSList<PSol>(bkStack.pop());
            pSL3.checkResult("pSL3 after 3rd pSLWk=..pop()");Here the result from the code above:
    debug:
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSLWk prior to setDefaults - modifies pSLWk !
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2   63 <C.R.> pSLWk after setDefaults
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSL after setDefaults
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSLAux after setDefaults
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  463 <C.R.>pSLWk, after PUSH, THEN modify 4@77
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 77
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSLWk after setVal 8@80
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 80
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL1 after 1st pop
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL2 after 2nd pop
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL3 after 3rd pSLWk=..pop()
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSLWk prior to setDefaults - modifies pSLWk !
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2   63 <C.R.> pSLWk after setDefaults
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSL after setDefaults
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSLAux after setDefaults
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  463 <C.R.>pSLWk, after PUSH, THEN modify 4@77
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 77
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSLWk after setVal 8@80
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 80
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL1 after 1st pop
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL2 after 2nd pop
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL3 after 3rd pSLWk=..pop()What's the problem with this ?
    Rem: I tried the simple approach as well:
    bkstack.push(pSLWk);
    ...

    Thank you for your comments, although I see we still don't have a common understanding of the problem.
    Firstly, I add the code for the PSList and the PSol classes, so you might find some problem with that:
         public class PSol     {
              private StringBuffer val;
              private int zI;
              private int sI;
              private int bI;
                        // == Konstruktor
              public PSol( StringBuffer v, int z, int s, int b )     {
                   this.val=v;
                   this.zI=z;
                   this.sI=s;
                   this.bI=b;
                        // == Getter,Setter
              public StringBuffer getVal()     {return val;}
              public int getZ()     {return zI;}
              public int getS()     {return sI;}
              public int getB()     {return bI;}
              public int getVSize()     {return val.length();}
              public void setVal(StringBuffer v)     {val=v;}
              public boolean hasVChar( StringBuffer ch, boolean delCh )     {
                   boolean bT=false;
                   StringBuffer fSt=getVal();
                   if (!(fSt.indexOf( ch.toString() )     == -1))     {
                        bT=true;
                        if (delCh)     {
                             setVal(fSt.deleteCharAt(fSt.indexOf( ch.toString() )));
                   return bT;
         }     // PSol
         public class PSList<E> extends ArrayList<PSol>     {
                   /**     Construktor 1: PSList(v,z,s,b) - makes list from single arrays
              private static final long serialVersionUID =  4711L;                         // ### JAVAC Warning! ###
            public PSList (String[] vS, int[] z, int[] s, int[] b) {
                   StringBuffer[] v=new StringBuffer[valDim];
                for (int i=0;i<valDim;i++)  {
                    v=new StringBuffer(vS[i]);
    //ArrayList<PSol> pSL=new ArrayList<PSol>;
                   for (int i=0; i<valDim; i++) {
                        this.add( new PSol( v[i], z[i], s[i], b[i] ) );
    /** Konstruktor2 : makes list from matrix array
    public PSList () {
    for (int j=0; j<nDim; j++) {
    for (int i=0; i<nDim; i++) {
    this.add( new PSol( new StringBuffer(sGuiArr[i][j]), i, j , i/locDim + (j/locDim)*locDim) );
                        /**     ------- Construktor 3 : PSList(PSList pS) - makes list as a copy of an existing one
    public PSList ( PSList<PSol> pX )     {
                   super (pX); // ArrayList-Constructor (Collection)
    // get Element <PSol>
    public PSol getEl ( int i )     {return get(i);}
         public int getCount()     {return size();}
         public int getTValLg()     {
                   int lg=0;
                   for (int i=0; i<getCount(); i++)     {
                        lg=lg + getEl(i).getVal().length();
                   return lg;
                        /**     ------- checkResult()     -     Check if alll elements are single char +dump
         public boolean checkResult(String messg)     {
                   boolean allOne=true;
                   for (int i=0; i<size(); i++)     {
                        if ( getEl(i).getVal().length() > 1 )     {
                             allOne=false;
                             System.out.print(" ");
                   else     {
                        System.out.print(getEl(i).getVal());
                   System.out.println("<C.R.>"+messg);
                   return allOne;
         }     // Class PSList
    Secondly, I don't really see what you mean by pointing out to 'only one "pSLWk" instance of PSList'. The variable pSLWk is the variable to be worked upon; after some change of the contents, I want to save this state of contents to the stack. When I pop that variable from the stack, I wouldn't want to restore it to pSLWK, but to some other variable, e.g. by public PSList<PSol> pSL1;
    pSL1=new PSList<PSol>(bkStack.pop());Again - to my understanding (which comes from old days of microprocessor coding... - there shouldn't be a need to know how the data came there, or what was the name of the variable who stored it there. And  : the implementation of ArrayDeque returns 'elements' of class E, not references !
    Thirdly, you're right, that the method of using a copy constructor for retrieval looks 'weird'. However - I had some other versions that didn't work either, e.g. the straightforward one, as I pointed out.
    And fourthly: yes, I'm almost sure that I'm messing up something somewhere. I went to this forum hoping to clarify that ... :)
    If you don't mind, could you please sketch a few lines of code, how to 'push' a complex variable to a ArrayDeque stack, and retrieve it - by 'pop()' - to some to other variable of the same class later ?
    Might make our discussion much easier, to see how things REALLY work.
    Thank you !                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • VoiceOver navigation buttons doesn't work as expected on latest version of Firefox

    VoiceOver navigation buttons doesn't work as expected on latest version of Firefox. VO+Left/Right not jump from element to element
    Version of OS: OS X Yosemite 10.10.1
    Version of Chrome: 42.0.2311.90 (64-bit)
    Version of Firefox: 37.0.2

    Did this work in a previous version of Firefox?
    There is an open bug to improve accessibility on OS X. (Bug 336306) I'll update that bug with any relevant information you provide here.

  • [SOLVED][Apache]IfModule doesn't work

    Hello
    I have in httpd.conf:
    Listen 80
    <IfModule mod_ssl.c>
    Listen 443
    </IfModule>
    <IfModule ssl_module>
    Listen 442
    </IfModule>
    but:
    netstat -lpntu | grep http
    tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 2047/httpd
    Log startup:
    [Fri Mar 16 13:30:23 2012] [debug] mod_so.c(246): loaded module ssl_module
    Why IfModule doesn't work as expected? In accordance with: http://httpd.apache.org/docs/2.2/mod/core.html#ifmodule I can use module-file: mod_ssl.c or module-identifier: ssl_module.
    What is wrong?
    # apachectl -v
    Server version: Apache/2.2.22 (Unix)
    Server built: Feb 8 2012 10:29:48
    On Debian it works:
    $ netstat -lpntu | grep apache
    tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 25706/apache2
    tcp 0 0 0.0.0.0:442 0.0.0.0:* LISTEN 25706/apache2
    tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN 25706/apache2
    $ apache2ctl -v
    Server version: Apache/2.2.16 (Debian)
    Server built: Feb 5 2012 21:01:59
    Edit:
    My stupid mistake. I used <IfModule mod_ssl.c> before I loaded module.
    Last edited by dracorp (2012-03-17 18:09:47)

    zezke wrote:
    Hi, i've just installed Arch with LXDE on my netbook, but despite all my efforts, automount still doesn't work. What i've done so far:
    -installed pmount (didn't configure anything, because this isn't mentioned anywhere)
    -added myself to the hal group
    -put hal in the daemons (it boots in the background, but this shouldn't affect automounting).
    Anything i forgot?
    There were some reports to fix automounting you needed to change the PolicyKit file. Have you done that yet?
    Here's the link
    Last edited by Inxsible (2009-03-06 16:44:44)

  • (SOLVED) Lock screen suddenly doesn't work as expected

    It doesn't matter which lock screen (PIN, swipe, etc.) I choose, after the first unlock (after a reboot or change of lock screen), the phone no longer locks. Using the power button to lock doesn't work and I have the phone set to lock right away on sleep. It was working fine a few hours ago and there wasn't anything new I did to the phone.
    Any ideas?
    Solved!
    Go to Solution.

    Hello, I feel pretty dumb. I must've hit the "Disable lock screen" option in the BatteryBot Pro app by accident...I forgot it even had that option.
    If anyone's curious how I solved this, I inspected system messages using OS Monitor while reproducing the problem (ie, flipping through lock screen options and turning off/on the screen) and kept seeing the app's name coming up as well as a few others. I'm not sure why it started disabling the lock screen today though; I'm pretty sure I didn't touch the app in the last couple days.
    Anyway, sorry for any inconvenience.

  • [Solved] Lexmark Pro901 doesn't work

    EDIT: I forgot to install ghostscript, that solved it
    Hello everyone,
    I installed the lexmark-inkjet-legacy package from the AUR (https://aur.archlinux.org/packages/lexm … et-legacy/) and I configured my printer using the lx-postinstall script, which is shipped with the package but I'm not able to print a test page. It turns on the printer and the printer pulls a page but cups just says "Processing - Connected to printer".
    Here my cups error log:
    I [06/Dec/2013:14:31:17 +0100] Listening to [v1.::1]:631 (IPv6)
    I [06/Dec/2013:14:31:17 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [06/Dec/2013:14:31:17 +0100] Listening to /run/cups/cups.sock (Domain)
    I [06/Dec/2013:14:31:17 +0100] Remote access is disabled.
    D [06/Dec/2013:14:31:17 +0100] Added auto ServerAlias AOD-255
    I [06/Dec/2013:14:31:17 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    I [06/Dec/2013:14:31:17 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [06/Dec/2013:14:31:17 +0100] Configured for up to 100 clients.
    I [06/Dec/2013:14:31:17 +0100] Allowing up to 100 client connections per host.
    I [06/Dec/2013:14:31:17 +0100] Using policy "default" as the default.
    D [06/Dec/2013:14:31:17 +0100] load_ppd: Loading /var/cache/cups/Lexmark_Pro800Pro900_Series.data...
    D [06/Dec/2013:14:31:17 +0100] cupsdRegisterPrinter(p=0xb83f05a0(Lexmark_Pro800Pro900_Series))
    D [06/Dec/2013:14:31:17 +0100] cupsdMarkDirty(--p--)
    D [06/Dec/2013:14:31:17 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Not busy"
    I [06/Dec/2013:14:31:17 +0100] Partial reload complete.
    D [06/Dec/2013:14:31:17 +0100] systemd_checkin: Matched existing listener /run/cups/cups.sock with fd 3...
    D [06/Dec/2013:14:31:17 +0100] Calling FindDeviceById(cups-Lexmark_Pro800Pro900_Series)
    D [06/Dec/2013:14:31:17 +0100] Calling DeleteDevice(/org/freedesktop/ColorManager/devices/cups_Lexmark_Pro800Pro900_Series)
    D [06/Dec/2013:14:31:17 +0100] Using profile ID "Lexmark_Pro800Pro900_Series-Gray..".
    D [06/Dec/2013:14:31:17 +0100] Calling CreateProfile(Lexmark_Pro800Pro900_Series-Gray..,temp)
    W [06/Dec/2013:14:31:17 +0100] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'Lexmark_Pro800Pro900_Series-Gray..' already exists
    D [06/Dec/2013:14:31:17 +0100] Using profile ID "Lexmark_Pro800Pro900_Series-RGB..".
    D [06/Dec/2013:14:31:17 +0100] Calling CreateProfile(Lexmark_Pro800Pro900_Series-RGB..,temp)
    W [06/Dec/2013:14:31:17 +0100] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'Lexmark_Pro800Pro900_Series-RGB..' already exists
    I [06/Dec/2013:14:31:17 +0100] Registering ICC color profiles for "Lexmark_Pro800Pro900_Series".
    D [06/Dec/2013:14:31:17 +0100] Calling CreateDevice(cups-Lexmark_Pro800Pro900_Series,temp)
    D [06/Dec/2013:14:31:17 +0100] Created device "/org/freedesktop/ColorManager/devices/cups_Lexmark_Pro800Pro900_Series".
    I [06/Dec/2013:14:31:17 +0100] Listening to [v1.::1]:631 on fd 10...
    I [06/Dec/2013:14:31:17 +0100] Listening to 127.0.0.1:631 on fd 11...
    I [06/Dec/2013:14:31:17 +0100] Listening to /run/cups/cups.sock:631 on fd 3...
    I [06/Dec/2013:14:31:17 +0100] Resuming new connection processing...
    D [06/Dec/2013:14:31:17 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [06/Dec/2013:14:31:17 +0100] Discarding unused server-restarted event...
    D [06/Dec/2013:14:31:18 +0100] Report: clients=0
    D [06/Dec/2013:14:31:18 +0100] Report: jobs=2
    D [06/Dec/2013:14:31:18 +0100] Report: jobs-active=1
    D [06/Dec/2013:14:31:18 +0100] Report: printers=1
    D [06/Dec/2013:14:31:18 +0100] Report: stringpool-string-count=10258
    D [06/Dec/2013:14:31:18 +0100] Report: stringpool-alloc-bytes=11424
    D [06/Dec/2013:14:31:18 +0100] Report: stringpool-total-bytes=178272
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] GET /admin/?OP=redirect HTTP/1.1
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Authorized as root using Basic
    D [06/Dec/2013:14:31:22 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/admin.cgi"
    D [06/Dec/2013:14:31:22 +0100] [CGI] argv[1] = "OP=redirect"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/run/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@AOD-255"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.7.0"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[13] = "USER=root"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[14] = "CUPS_MAX_MESSAGE=2047"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[15] = "CUPS_SERVER=/run/cups/cups.sock"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[16] = "CUPS_ENCRYPTION=IfRequested"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[17] = "IPP_PORT=631"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[18] = "AUTH_TYPE=Basic"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[19] = "LANG=de_DE.UTF8"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[20] = "REDIRECT_STATUS=1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[21] = "GATEWAY_INTERFACE=CGI/1.1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[22] = "SERVER_NAME=localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[23] = "SERVER_PORT=631"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[24] = "REMOTE_ADDR=[v1.::1]"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[25] = "REMOTE_HOST=localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[26] = "SCRIPT_NAME=/admin/"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[27] = "SCRIPT_FILENAME=/usr/share/cups/doc/admin/"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[28] = "REMOTE_USER=root"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[29] = "SERVER_PROTOCOL=HTTP/1.1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[30] = "HTTP_COOKIE=org.cups.sid=b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[31] = "HTTP_USER_AGENT=Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[32] = "HTTP_REFERER=http://localhost:631/admin/"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[33] = "REQUEST_METHOD=GET"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[34] = "QUERY_STRING=OP=redirect"
    D [06/Dec/2013:14:31:22 +0100] [CGI] Started /usr/lib/cups/cgi-bin/admin.cgi (PID 689)
    I [06/Dec/2013:14:31:22 +0100] [Client 14] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=689)
    D [06/Dec/2013:14:31:22 +0100] [Client 14] file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [CGI] admin.cgi started...
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Accepted from localhost (Domain)
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] [CGI] http=0xb9218a08
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: SECTION="admin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: REFRESH_PAGE=""
    D [06/Dec/2013:14:31:22 +0100] [CGI] org.cups.sid cookie is "b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: OP="redirect"
    D [06/Dec/2013:14:31:22 +0100] [CGI] redirecting with prefix http://localhost:631!
    D [06/Dec/2013:14:31:22 +0100] [Client 16] HTTP_STATE_WAITING Closing on EOF
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Closing connection.
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=0, response=(nil)(), pipe_pid=689, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] Script header: Location: http://localhost:631/admin
    D [06/Dec/2013:14:31:22 +0100] Script header:
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=689, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] PID 689 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=689, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] GET /admin HTTP/1.1
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] No authentication data provided.
    D [06/Dec/2013:14:31:22 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/admin.cgi"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/run/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@AOD-255"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.7.0"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[13] = "USER=root"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[14] = "CUPS_MAX_MESSAGE=2047"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[15] = "CUPS_SERVER=/run/cups/cups.sock"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[16] = "CUPS_ENCRYPTION=IfRequested"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[17] = "IPP_PORT=631"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[23] = "REMOTE_ADDR=[v1.::1]"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[25] = "SCRIPT_NAME=/admin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/admin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[27] = "SERVER_PROTOCOL=HTTP/1.1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[28] = "HTTP_COOKIE=org.cups.sid=b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[29] = "HTTP_USER_AGENT=Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[30] = "HTTP_REFERER=http://localhost:631/admin/"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[31] = "REQUEST_METHOD=GET"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[32] = "QUERY_STRING="
    D [06/Dec/2013:14:31:22 +0100] [CGI] Started /usr/lib/cups/cgi-bin/admin.cgi (PID 690)
    I [06/Dec/2013:14:31:22 +0100] [Client 14] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=690)
    D [06/Dec/2013:14:31:22 +0100] [Client 14] file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [CGI] admin.cgi started...
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Accepted from localhost (Domain)
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] [CGI] http=0xb864da08
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: SECTION="admin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: REFRESH_PAGE=""
    D [06/Dec/2013:14:31:22 +0100] [CGI] org.cups.sid cookie is "b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:22 +0100] [CGI] No form data, showing main menu...
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: DEBUG_LOGGING="CHECKED"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: HAVE_GSSAPI="1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: KERBEROS=""
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: PRESERVE_JOBS="CHECKED"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: PRESERVE_JOB_HISTORY="Yes"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: PRESERVE_JOB_FILES="1d"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: MAX_CLIENTS="100"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: MAX_JOBS="500"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: MAX_LOG_SIZE="1m"
    D [06/Dec/2013:14:31:22 +0100] [CGI] /usr/share/cups/drivers/pscript5.dll: Datei oder Verzeichnis nicht gefunden
    D [06/Dec/2013:14:31:22 +0100] [Client 16] POST / HTTP/1.1
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 16] No authentication data provided.
    D [06/Dec/2013:14:31:22 +0100] [Client 16] 2.0 Get-Subscriptions 1
    D [06/Dec/2013:14:31:22 +0100] Get-Subscriptions ipp://localhost/
    D [06/Dec/2013:14:31:22 +0100] Get-Subscriptions client-error-not-found: No subscriptions found.
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Returning IPP client-error-not-found for Get-Subscriptions (ipp://localhost/) from localhost
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Content-Length: 117
    D [06/Dec/2013:14:31:22 +0100] [Client 16] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=117, response=0xb83f3568(IPP_IDLE), pipe_pid=0, file=-1
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [06/Dec/2013:14:31:22 +0100] [Client 16] bytes=0, http_state=0, data_remaining=0
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: TITLE="Administration"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] Script header: Content-Type: text/html;charset=utf-8
    D [06/Dec/2013:14:31:22 +0100] Script header:
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 16] HTTP_STATE_WAITING Closing on EOF
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Closing connection.
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] PID 690 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:28 +0100] [Client 14] GET /admin/log/error_log? HTTP/1.1
    D [06/Dec/2013:14:31:28 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [06/Dec/2013:14:31:28 +0100] [Client 14] Authorized as root using Basic
    D [06/Dec/2013:14:31:28 +0100] [Client 14] Sending file.
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=20200, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=18152, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=16104, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=14056, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=12008, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=9960, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=7912, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=5864, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=3816, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=1768, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-280, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-2251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-2451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-2651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-2851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-3051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-3251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-3451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-3651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-3851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-4051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-4251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-4451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-4651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-4851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-5051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-5251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-5451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-5651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-5851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-6051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-6251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-6451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-6651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-6851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-7051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-7251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-7451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-7651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-7851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-8051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-8251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-8451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-8651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-8851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-9051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-9251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-9451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-9651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-9851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-10051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-10252, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-10453, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-10654, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-10855, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-11056, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-11257, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-11458, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-11659, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-11860, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-12061, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-12262, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-12463, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-12664, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-12865, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-13066, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-13267, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-13468, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-13669, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-13870, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-14071, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-14272, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-14473, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-14674, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-14875, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-15076, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-15277, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-15478, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-15679, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-15880, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-16081, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-16282, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-16483, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-16684, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-16885, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-17086, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-17287, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-17488, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-17689, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-17890, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-18091, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-18292, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-18493, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-18694, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-18895, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-19096, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-19297, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-19498, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-19699, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-19900, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-20101, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-20302, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-20503, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-20704, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] Closing on EOF
    D [06/Dec/2013:14:31:28 +0100] [Client 14] Closing connection.
    D [06/Dec/2013:14:31:28 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:29 +0100] [Client 14] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:29 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:29 +0100] [Client 14] GET /favicon.ico HTTP/1.1
    D [06/Dec/2013:14:31:29 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [06/Dec/2013:14:31:29 +0100] [Client 14] No authentication data provided.
    D [06/Dec/2013:14:31:29 +0100] [Client 14] Closing because Keep-Alive disabled
    D [06/Dec/2013:14:31:29 +0100] [Client 14] Closing connection.
    D [06/Dec/2013:14:31:29 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    I [06/Dec/2013:14:31:48 +0100] Generating printcap /etc/printcap...
    D [06/Dec/2013:14:31:48 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Dirty files"
    D [06/Dec/2013:14:31:55 +0100] [Client 14] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:55 +0100] [Client 15] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 15] Waiting for request.
    D [06/Dec/2013:14:31:55 +0100] [Client 16] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 16] Waiting for request.
    D [06/Dec/2013:14:31:55 +0100] [Client 17] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 17] Waiting for request.
    D [06/Dec/2013:14:31:55 +0100] [Client 18] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 18] Waiting for request.
    D [06/Dec/2013:14:31:55 +0100] [Client 19] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 19] Waiting for request.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] GET /printers/ HTTP/1.1
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [06/Dec/2013:14:31:56 +0100] [Client 14] No authentication data provided.
    D [06/Dec/2013:14:31:56 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/printers.cgi"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/run/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@AOD-255"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.7.0"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[13] = "USER=root"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[14] = "CUPS_MAX_MESSAGE=2047"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[15] = "CUPS_SERVER=/run/cups/cups.sock"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[16] = "CUPS_ENCRYPTION=IfRequested"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[17] = "IPP_PORT=631"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[23] = "REMOTE_ADDR=[v1.::1]"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[25] = "SCRIPT_NAME=/printers/"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/printers/"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[27] = "SERVER_PROTOCOL=HTTP/1.1"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[28] = "HTTP_COOKIE=org.cups.sid=b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[29] = "HTTP_USER_AGENT=Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[30] = "HTTP_REFERER=http://localhost:631/admin"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[31] = "REQUEST_METHOD=GET"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[32] = "QUERY_STRING="
    D [06/Dec/2013:14:31:56 +0100] [CGI] Started /usr/lib/cups/cgi-bin/printers.cgi (PID 691)
    I [06/Dec/2013:14:31:56 +0100] [Client 14] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=691)
    D [06/Dec/2013:14:31:56 +0100] [Client 14] file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [CGI] org.cups.sid cookie is "b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: SECTION="printers"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: REFRESH_PAGE=""
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Accepted from localhost (Domain)
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:56 +0100] [Client 21] POST / HTTP/1.1
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:56 +0100] [Client 21] No authentication data provided.
    D [06/Dec/2013:14:31:56 +0100] [Client 21] 2.0 CUPS-Get-Default 1
    D [06/Dec/2013:14:31:56 +0100] CUPS-Get-Default
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Content-Length: 202
    D [06/Dec/2013:14:31:56 +0100] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=202, response=0xb83f3388(IPP_IDLE), pipe_pid=0, file=-1
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [06/Dec/2013:14:31:56 +0100] [Client 21] bytes=0, http_state=0, data_remaining=0
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: DEFAULT_NAME="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: DEFAULT_URI="/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:56 +0100] [CGI] show_all_printers(http=0xb8bed528, user="(null)")
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: TITLE="Printers"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] Script header: Content-Type: text/html;charset=utf-8
    D [06/Dec/2013:14:31:56 +0100] Script header:
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 21] POST / HTTP/1.1
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:56 +0100] [Client 21] No authentication data provided.
    D [06/Dec/2013:14:31:56 +0100] [Client 21] 2.0 CUPS-Get-Printers 2
    D [06/Dec/2013:14:31:56 +0100] CUPS-Get-Printers
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Content-Length: 375
    D [06/Dec/2013:14:31:56 +0100] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=375, response=0xb83f3580(IPP_IDLE), pipe_pid=0, file=-1
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [06/Dec/2013:14:31:56 +0100] [Client 21] bytes=0, http_state=0, data_remaining=0
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: TOTAL="1"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_state[0]="3"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_state_message[0]=""
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: admin_uri[0]="/admin/"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_uri_supported[0]="/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_name[0]="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_location[0]=""
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_info[0]="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_make_and_model[0]="Lexmark Pro800-Pro900 Series, 1.0"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: THISURL="/printers/"
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 21] HTTP_STATE_WAITING Closing on EOF
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Closing connection.
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] PID 691 (/usr/lib/cups/cgi-bin/printers.cgi) exited with no errors.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [06/Dec/2013:14:31:58 +0100] [Client 14] GET /printers/Lexmark_Pro800Pro900_Series HTTP/1.1
    D [06/Dec/2013:14:31:58 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [06/Dec/2013:14:31:58 +0100] [Client 14] No authentication data provided.
    D [06/Dec/2013:14:31:58 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/printers.cgi"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/run/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@AOD-255"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.7.0"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[13] = "USER=root"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[14] = "CUPS_MAX_MESSAGE=2047"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[15] = "CUPS_SERVER=/run/cups/cups.sock"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[16] = "CUPS_ENCRYPTION=IfRequested"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[17] = "IPP_PORT=631"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[23] = "REMOTE_ADDR=[v1.::1]"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[25] = "SCRIPT_NAME=/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[27] = "PATH_INFO=/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[28] = "SERVER_PROTOCOL=HTTP/1.1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[29] = "HTTP_COOKIE=org.cups.sid=b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[30] = "HTTP_USER_AGENT=Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[31] = "HTTP_REFERER=http://localhost:631/printers/"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[32] = "REQUEST_METHOD=GET"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[33] = "QUERY_STRING="
    D [06/Dec/2013:14:31:58 +0100] [CGI] Started /usr/lib/cups/cgi-bin/printers.cgi (PID 692)
    I [06/Dec/2013:14:31:58 +0100] [Client 14] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=692)
    D [06/Dec/2013:14:31:58 +0100] [Client 14] file=20
    D [06/Dec/2013:14:31:58 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:58 +0100] [CGI] org.cups.sid cookie is "b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: SECTION="printers"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: REFRESH_PAGE=""
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: PRINTER_NAME="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Accepted from localhost (Domain)
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:58 +0100] [Client 21] POST / HTTP/1.1
    D [06/Dec/2013:14:31:58 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:58 +0100] [Client 21] No authentication data provided.
    D [06/Dec/2013:14:31:58 +0100] [Client 21] 2.0 CUPS-Get-Default 1
    D [06/Dec/2013:14:31:58 +0100] CUPS-Get-Default
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Content-Length: 202
    D [06/Dec/2013:14:31:58 +0100] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=202, response=0xb83f3388(IPP_IDLE), pipe_pid=0, file=-1
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [06/Dec/2013:14:31:58 +0100] [Client 21] bytes=0, http_state=0, data_remaining=0
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:58 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: DEFAULT_NAME="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: DEFAULT_URI="/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] show_printer(http=0xb89f2578, printer="Lexmark_Pro800Pro900_Series")
    D [06/Dec/2013:14:31:58 +0100] [Client 21] POST / HTTP/1.1
    D [06/Dec/2013:14:31:58 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:58 +0100] [Client 21] No authentication data provided.
    D [06/Dec/2013:14:31:58 +0100] [Client 21] 2.0 Get-Printer-Attributes 2
    D [06/Dec/2013:14:31:58 +0100] Get-Printer-Attributes ipp://localhost/printers/Lexmark_Pro800Pro900_Series
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Returning IPP successful-ok for Get-Printer-Attributes (ipp://localhost/printers/Lexmark_Pro800Pro900_Series) from localhost
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Content-Length: 693
    D [06/Dec/2013:14:31:58 +0100] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=693, response=0xb83f3580(IPP_IDLE), pipe_pid=0, file=-1
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [06/Dec/2013:14:31:58 +0100] [Client 21] bytes=0, http_state=0, data_remaining=0
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:58 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_is_accepting_jobs[0]="1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_is_shared[0]="1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_state[0]="3"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: admin_uri[0]="/admin/"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_uri_supported[0]="/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_name[0]="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_location[0]=""
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_info[0]="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: job_sheets_default[0]="none, none"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: device_uri[0]="lxhcp://002000A3422C"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: color_supported[0]="1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_make_and_model[0]="Lexmark Pro800-Pro900 Series, 1.0"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: media_default[0]="na_letter_8.5x11in"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: sides_supported[0]="one-sided, two-sided-long-edge, two-sided-short-edge"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: sides_default[0]="one-sided"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_commands[0]="none"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: server_is_sharing_printers[0]="0"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: TITLE="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:58 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:58 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=0, response=(nil)(), pipe_pid=692, file=20
    D [06/Dec/2013:14:31:58 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:58 +0100] Script header: Content-Type: text/html;charset=utf-8
    D [06/Dec/2013:14:31:58 +0100] Script header:
    D [06/Dec/2013:14:31:58 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=692, file=20
    D [06/Dec/2013:14:31:58 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:58 +0100] [Client 14] CGI data

    zezke wrote:
    Hi, i've just installed Arch with LXDE on my netbook, but despite all my efforts, automount still doesn't work. What i've done so far:
    -installed pmount (didn't configure anything, because this isn't mentioned anywhere)
    -added myself to the hal group
    -put hal in the daemons (it boots in the background, but this shouldn't affect automounting).
    Anything i forgot?
    There were some reports to fix automounting you needed to change the PolicyKit file. Have you done that yet?
    Here's the link
    Last edited by Inxsible (2009-03-06 16:44:44)

  • Direct Rendering doesn't works with radeon

    Hi everybody,
    I have a Radeon 7000. Then, I want to use the open-source driver.
    But it doesn't works...
    [nicolas@SonyVaio ~]$ glxinfo
    name of display: :0.0
    display: :0 screen: 0
    direct rendering: No
    server glx vendor string: SGI
    server glx version string: 1.2
    server glx extensions:
    GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating,
    GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_OML_swap_method,
    GLX_SGI_make_current_read, GLX_SGIS_multisample, GLX_SGIX_hyperpipe,
    GLX_SGIX_swap_barrier, GLX_SGIX_fbconfig, GLX_MESA_copy_sub_buffer
    client glx vendor string: SGI
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory,
    GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control,
    GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control,
    GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap
    GLX version: 1.2
    GLX extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer,
    GLX_OML_swap_method, GLX_SGI_make_current_read, GLX_SGIS_multisample,
    GLX_SGIX_fbconfig, GLX_EXT_texture_from_pixmap
    OpenGL vendor string: Mesa project: www.mesa3d.org
    OpenGL renderer string: Mesa GLX Indirect
    OpenGL version string: 1.2 (1.5 Mesa 6.5.1)
    OpenGL extensions:
    GL_ARB_depth_texture, GL_ARB_imaging, GL_ARB_multitexture,
    GL_ARB_point_parameters, GL_ARB_point_sprite, GL_ARB_shadow,
    GL_ARB_shadow_ambient, GL_ARB_texture_border_clamp,
    GL_ARB_texture_cube_map, GL_ARB_texture_env_add,
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
    GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat,
    GL_ARB_texture_non_power_of_two, GL_ARB_texture_rectangle,
    GL_ARB_transpose_matrix, GL_ARB_window_pos, GL_EXT_abgr, GL_EXT_bgra,
    GL_EXT_blend_color, GL_EXT_blend_func_separate, GL_EXT_blend_logic_op,
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_clip_volume_hint,
    GL_EXT_copy_texture, GL_EXT_draw_range_elements, GL_EXT_fog_coord,
    GL_EXT_framebuffer_object, GL_EXT_multi_draw_arrays, GL_EXT_packed_pixels,
    GL_EXT_point_parameters, GL_EXT_polygon_offset, GL_EXT_rescale_normal,
    GL_EXT_secondary_color, GL_EXT_separate_specular_color,
    GL_EXT_shadow_funcs, GL_EXT_stencil_wrap, GL_EXT_subtexture,
    GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp,
    GL_EXT_texture_env_add, GL_EXT_texture_env_combine,
    GL_EXT_texture_env_dot3, GL_EXT_texture_lod_bias, GL_EXT_texture_object,
    GL_EXT_texture_rectangle, GL_EXT_vertex_array, GL_APPLE_packed_pixels,
    GL_ATI_texture_env_combine3, GL_ATI_texture_mirror_once,
    GL_ATIX_texture_env_combine3, GL_IBM_texture_mirrored_repeat,
    GL_INGR_blend_func_separate, GL_MESA_pack_invert, GL_MESA_ycbcr_texture,
    GL_NV_blend_square, GL_NV_point_sprite, GL_NV_texgen_reflection,
    GL_NV_texture_rectangle, GL_SGIS_generate_mipmap,
    GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp,
    GL_SGIS_texture_lod, GL_SGIX_depth_texture, GL_SGIX_shadow,
    GL_SGIX_shadow_ambient, GL_SUN_multi_draw_arrays
    glu version: 1.3
    glu extensions:
    GLU_EXT_nurbs_tessellator, GLU_EXT_object_space_tess
    visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
    0x23 24 tc 0 24 0 r y . 8 8 8 0 0 16 0 0 0 0 0 0 0 None
    0x24 24 tc 0 24 0 r y . 8 8 8 0 0 16 8 16 16 16 0 0 0 None
    0x25 24 tc 0 32 0 r y . 8 8 8 8 0 16 8 16 16 16 16 0 0 None
    0x26 24 tc 0 32 0 r . . 8 8 8 8 0 16 8 16 16 16 16 0 0 None
    0x27 24 dc 0 24 0 r y . 8 8 8 0 0 16 0 0 0 0 0 0 0 None
    0x28 24 dc 0 24 0 r y . 8 8 8 0 0 16 8 16 16 16 0 0 0 None
    0x29 24 dc 0 32 0 r y . 8 8 8 8 0 16 8 16 16 16 16 0 0 None
    0x2a 24 dc 0 32 0 r . . 8 8 8 8 0 16 8 16 16 16 16 0 0 None
    See my /etc/X11/xorg.conf :
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5x) man page for details about the format of
    # this file.
    # Module section -- this section is used to specify
    # which dynamically loadable modules to load.
    Section "Module"
    # This loads the DBE extension module.
    Load "dbe" # Double buffer extension
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    # This loads the font modules
    # Load "type1"
    # Load "speedo"
    Load "freetype"
    # Load "xtt"
    # This loads the GLX module
    Load "glx"
    # This loads the DRI module
    Load "dri"
    EndSection
    # Files section. This allows default font and rgb paths to be set
    Section "Files"
    # The location of the RGB database. Note, this is the name of the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    # RgbPath "/usr/share/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    # FontPath "/usr/lib/X11/fonts/local/"
    # FontPath "/usr/lib/X11/fonts/misc/"
    # FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/Speedo/"
    # FontPath "/usr/lib/X11/fonts/Type1/"
    # FontPath "/usr/lib/X11/fonts/TrueType/"
    # FontPath "/usr/lib/X11/fonts/freefont/"
    # FontPath "/usr/lib/X11/fonts/75dpi/"
    # FontPath "/usr/lib/X11/fonts/100dpi/"
    # The module search path. The default path is shown here.
    # ModulePath "/usr/lib/modules"
    EndSection
    # Server flags section.
    Section "ServerFlags"
    # Uncomment this to cause a core dump at the spot where a signal is
    # received. This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    # Option "NoTrapSignals"
    # Uncomment this to disable the <Ctrl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12). This allows clients to receive these key
    # events.
    # Option "DontVTSwitch"
    # Uncomment this to disable the <Ctrl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    # Option "DontZap"
    # Uncomment this to disable the <Ctrl><Alt><KP_>/<KP_> mode switching
    # sequences. This allows clients to receive these key events.
    # Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    # Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    # Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    # Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    # Option "AllowNonLocalModInDev"
    EndSection
    # Input devices
    # Core keyboard's InputDevice section
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    # For most OSs the protocol can be omitted (it defaults to "Standard").
    # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
    # uncomment the following line.
    # Option "Protocol" "Xqueue"
    Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    # Option "Xleds" "1 2 3"
    # Option "LeftAlt" "Meta"
    # Option "RightAlt" "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "us"
    # Option "XkbVariant" ""
    # Option "XkbOptions" ""
    # Option "XkbDisable"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "fr"
    # Option "XkbVariant" "fr"
    EndSection
    # Core Pointer's InputDevice section
    Section "InputDevice"
    # Identifier and driver
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "Auto"
    Option "Device" "/dev/input/mice"
    # When using XQUEUE, comment out the above two lines, and uncomment
    # the following line.
    # Option "Protocol" "Xqueue"
    # Mouse-speed setting for PS/2 mouse.
    # Option "Resolution" "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    # Option "BaudRate" "9600"
    # Option "SampleRate" "150"
    # Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7. Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
    Option "ZAxisMapping" "4 5"
    # Emulate3Buttons is an option for 2-button mice
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    # Option "Emulate3Buttons"
    # Option "Emulate3Timeout" "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    # Option "ChordMiddle"
    EndSection
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices. This is for example only. Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    # Identifier "Mouse2"
    # Driver "mouse"
    # Option "Protocol" "MouseMan"
    # Option "Device" "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball"
    # Driver "magellan"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball2"
    # Driver "spaceorb"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen0"
    # Driver "microtouch"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "1412"
    # Option "MaxX" "15184"
    # Option "MinY" "15372"
    # Option "MaxY" "1230"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen1"
    # Driver "elo2300"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "231"
    # Option "MaxX" "3868"
    # Option "MinY" "3858"
    # Option "MaxY" "272"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonThreshold" "17"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    Section "Monitor"
    Identifier "My Monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    HorizSync 31.0 - 50.0
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    VertRefresh 43-75
    EndSection
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    Section "Device"
    Identifier "Standard VGA"
    VendorName "Unknown"
    BoardName "Unknown"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    Driver "vga"
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    EndSection
    # Device configured by xorgconfig:
    Section "Device"
    Identifier "** ATI Radeon (generic) [radeon]"
    Driver "radeon"
    #VideoRam 8192
    # Insert Clocks lines here if appropriate
    EndSection
    # Screen sections
    # Any number of screen sections may be present. Each describes
    # the configuration of a single screen. A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    Section "Screen"
    Identifier "Screen 1"
    Device "** ATI Radeon (generic) [radeon]"
    Monitor "My Monitor"
    DefaultDepth 24
    Subsection "Display"
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    EndSection
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present. Each describes
    # the way multiple screens are organised. A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option. In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
    Identifier "Simple Layout"
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens. The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen. In this example, screen 2 is located to the
    # right of screen 1.
    Screen "Screen 1"
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used. Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    Section "DRI"
    Group "video"
    Mode 0666
    EndSection
    I precise I loaded my modules : dri, radeon, ati_agp and intel_agp.
    Any ideas ?
    Thanks

    For Radeon 7000, you need to:
    pacman -S xf86-video-ati
    You need to load those modules in /etc/rc.conf:
    MODULES=(agpgart via-agp)
    And in xorg.conf:
    Driver      "radeon"

  • [NEARLY SOLVED] font rendering in gtk apps problem after last upgrade

    Im' using KDE, cairo-lcd, libxft-lcd... my fonts looked beautifully, but now they look horrible...
    After last upgrade my gtk apps (firefox, thunderbird) render fonts in an ugly way...
    I've tried to revert to pango 1.16.5 with no lucky result (the same problem)...
    here is the log:
    [2007-08-19 14:56] upgraded bind (9.4.1_P1-2 -> 9.4.1_P1-3)
    [2007-08-19 14:56] upgraded glib2 (2.14.0-2 -> 2.14.0-3)
    [2007-08-19 14:56] upgraded gnupg2 (2.0.5-1 -> 2.0.6-1)
    [2007-08-19 14:57] upgraded gtk2 (2.10.14-2 -> 2.10.14-3)
    [2007-08-19 14:57] upgraded kernel26ck (2.6.22.2.ck1-1 -> 2.6.22.3.ck1-1)
    [2007-08-19 14:57] upgraded libdownload (1.1-1 -> 1.1-2)
    [2007-08-19 14:57] upgraded libevent (1.3b-1 -> 1.3d-1)
    [2007-08-19 14:57] upgraded libxtst (1.0.2-1 -> 1.0.3-1)
    [2007-08-19 14:57] upgraded nvidia-ck (100.14.11-2 -> 100.14.11-3)
    [2007-08-19 14:57] upgraded sip (4.6-1 -> 4.7-1)
    [2007-08-19 14:57] upgraded pyqt (3.17.2-1 -> 3.17.3-1)
    [2007-08-19 14:57] upgraded xf86-input-joystick (1.2.2-1 -> 1.2.3-1)
    [2007-08-19 14:57] upgraded xorg-server-utils (1.0.4-1 -> 1.0.4-2)
    [2007-08-19 14:57] upgraded xorg-utils (1.0.2-2 -> 1.0.2-4)
    [2007-08-19 14:57] upgraded xorg-xdm (1.1.5-1 -> 1.1.6-1)
    [2007-08-19 14:57] upgraded xterm (225-1 -> 229-1)
    [2007-08-21 00:16] upgraded cpio (2.8-1 -> 2.9-1)
    [2007-08-21 00:16] upgraded ed (0.5-3 -> 0.8-1)
    [2007-08-21 00:16] upgraded initscripts (2007.08-1 -> 2007.08-2)
    [2007-08-21 00:16] upgraded intltool (0.36.0-1 -> 0.36.1-1)
    [2007-08-21 00:16] upgraded libarchive (2.2.5-1 -> 2.2.6-1)
    [2007-08-21 00:16] upgraded man-pages (2.60-1 -> 2.64-1)
    [2007-08-21 00:16] upgraded pciutils (2.2.4-2 -> 2.2.6-1)
    [2007-08-21 00:16] upgraded readline (5.2-2 -> 5.2-3)
    [2007-08-22 00:16] upgraded gdbm (1.8.3-3 -> 1.8.3-4)
    [2007-08-22 00:17] upgraded kernel26 (2.6.22.3-1 -> 2.6.22.4-2)
    [2007-08-22 00:17] upgraded lcms (1.16-1 -> 1.17-1)
    [2007-08-22 00:17] upgraded libice (1.0.2-1 -> 1.0.4-1)
    [2007-08-22 00:17] upgraded libxrender (0.9.2-1 -> 0.9.3-1)
    [2007-08-22 00:17] upgraded procinfo (18-3 -> 19-1)
    [2007-08-22 00:17] upgraded xorg-apps (1.0.2-4 -> 1.0.3-1)
    [2007-08-22 23:49] upgraded kernel26 (2.6.22.4-2 -> 2.6.22.4-2.1)
    [2007-08-22 23:49] upgraded librsvg (2.18.0-1 -> 2.18.1-1)
    [2007-08-22 23:49] upgraded libxpm (3.5.6-1 -> 3.5.7-1)
    [2007-08-22 23:49] upgraded libxaw (1.0.3-1 -> 1.0.4-1)
    [2007-08-22 23:49] upgraded makedev (3.8.3-1 -> 3.23-1)
    [2007-08-22 23:49] upgraded mcpp (2.6-1 -> 2.6.4-1)
    [2007-08-22 23:49] upgraded naim (0.11.8.2.1-1 -> 0.11.8.3.1-1)
    [2007-08-22 23:49] upgraded nfs-utils (1.0.12-2 -> 1.0.12-3)
    [2007-08-22 23:49] upgraded pam (0.81-4 -> 0.99.8.1-3.1)
    [2007-08-22 23:49] upgraded pango (1.16.5-1 -> 1.18.0-1)
    [2007-08-22 23:49] upgraded sox (13.0.0-1 -> 13.0.0-2)
    [2007-08-22 23:49] upgraded xorg-apps (1.0.3-1 -> 1.0.3-2)
    [2007-08-22 23:49] upgraded xtrans (1.0.3-1 -> 1.0.4-1)
    [2007-08-25 15:25] upgraded glibc (2.6.1-1 -> 2.6.1-2)
    [2007-08-25 15:25] upgraded bftpd (1.9-1 -> 2.0-1)
    [2007-08-25 15:25] upgraded gcc (4.2.1-3 -> 4.2.1-3.1)
    [2007-08-25 15:25] upgraded gtk-doc (1.8-2 -> 1.8-3)
    [2007-08-25 15:25] upgraded hal-info (0.20070618-1 -> 0.20070725-1)
    [2007-08-25 15:25] upgraded perl-xml-simple (2.16-2 -> 2.18-1)
    [2007-08-25 15:25] upgraded icon-naming-utils (0.8.2-2 -> 0.8.5-1)
    [2007-08-25 15:26] upgraded kernel26 (2.6.22.4-2.1 -> 2.6.22.5-1)
    [2007-08-25 15:27] upgraded kernel26ck (2.6.22.3.ck1-1 -> 2.6.22.5.ck1-1)
    [2007-08-25 15:27] upgraded libgnomeprint (2.18.0-1 -> 2.18.1-1)
    [2007-08-25 22:41] removed libgnomeprintui (2.18.0-1)
    [2007-08-25 22:41] removed libgnomeprint (2.18.1-1)
    i dunno what happened...
    plz, someone help me
    regards
    Last edited by saneone (2007-08-30 18:11:32)

    Bogart wrote:
    I think the spacing now is correct, while before it was wrong. The only "problem" is that you got used to a bad font rendering, and now that it has changed for better you feel like it's different and don't like it.
    Really, *most* of the problems that people find in Linux's fonts are just because they are used to the awful default fonts from Windows XP. Yes, people can even get used to those fonts and believe they're good!!! And when they see correct fonts in Linux they think they're bad...
    What I would do is remove the MS TTF fonts. They work bad in Windows and worse in Linux. You should use Bitstream Vera or DejaVu if you want good quality fonts (especially in web pages).
    But, then again, you might think that they look wrong just because you're not used to it... Oh, well...
    What does correct font / correct spacing mean ?
    IMO, that doesn't make any sense, because that's a totally subjective matter, like many other things in this world.
    BTW, I love how fonts look in Windows, and I think that must be the only thing MS got right. Thus, I'm using ms fonts in linux, and a rendering as close as possible (no autohinting or antialiasing or subpixel rendering).
    Similarly, I could find a woman beautiful that you would find ugly or just average. We are all different, and it's better that way

  • [SOLVED] network randomly doesn't work after reboot (e100)

    Hi
    Lately I have some weird issues with network. I shutdown computer during night, so basicly I reboot it at least once per day and every now and then without any pattern network doesn't work at all and so far only solution I have found is to reboot (again).
    Before anything else I'm sure it's not hardware problem, since other OS on same computer don't have any issues, neither is router since other devices in network from laptops to mobile phones work flawless.
    Relevant info and what I have found so far (not everything is copy/pasted so there may be some typos):
    $less rc.conf (network part)
    eth1="eth1 192.168.1.242 netmask 255.255.255.0 broadcast 192.168.1.255
    INTERFACES=(eth1)
    gateway="default gw 192.168.1.1"
    ROUTES=(gateway)
    $ifconfig
    eth1 Link encap:Ethernet HWaddr 00:D0:B7:5A:7A:A9
    inet addr:192.168.1.242 Bcast:192.168.1.255 Mask:255.255.255.0
    UP BROADCAST MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:380 errors:0 dropped:0 overruns:0 frame:0
    TX packets:380 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:36154 (35.3 Kb) TX bytes:36154 (35.3 Kb)
    $route
    Kernel IP routing table
    Destination Gateway Genmask Flags Metric Ref Use Iface
    192.168.1.0 * 255.255.255.0 U 0 0 0 eth1
    default 192.168.1.1 0.0.0.0 UG 0 0 0 eth1
    $ping 192.168.1.1
    PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data
    From 192.168.1.242 icmp_seq=2 Destination Host Unreachable
    So basicly network is dead, can't even ping router, cable connection is detected tho (lights are on). I have tried to restart newtork with /etc/rc.d/network stop/start, nothing. Only clue is dmesg.
    $dmesg
    Linux version 2.6.30-ARCH (root@T-POWA-LX) (gcc version 4.4.1 (GCC) ) #1 SMP PREEMPT Fri Jul 31 07:30:28 CEST 2009
    e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
    e100: Copyright(c) 1999-2006 Intel Corporation
    e100 0000:03:07.0: PCI INT A -> Link[APC2] -> GSI 17 (level, low) -> IRQ 17
    e100 0000:03:07.0: PME# disabled
    e100: eth1: e100_probe: addr 0xfdfff000, irq 17, MAC addr 00:d0:b7:5a:7a:a9
    e100 0000:03:07.0: firmware: requesting e100/d101m_ucode.bin
    ADDRCONF(NETDEV_UP): eth1: link is not ready
    modrope -r e100 and then reloading it doesn't help either, but reboot does (once I had to reboot twice tho).
    Anyone with more clue and ideas then me, it's getting really annoying, it also kill whole KDE plasma-desktop for couple of minutes before plasmoids find out network is really down and I'm not really fan of morning "gamble". I can't pinpoint some hard date/update when this started to happening because like I said it's random but last couple of months should be quite accurate. Thanks in advance.
    EDIT: dmesg when network works:
    tilen@pikmin ~]$ dmesg | grep e100
    pci 0000:03:07.0: Firmware left e100 interrupts enabled; disabling
    e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
    e100: Copyright(c) 1999-2006 Intel Corporation
    e100 0000:03:07.0: PCI INT A -> Link[APC2] -> GSI 17 (level, low) -> IRQ 17
    e100 0000:03:07.0: PME# disabled
    e100: eth0: e100_probe: addr 0xfdfff000, irq 17, MAC addr 00:d0:b7:5a:7a:a9
    Last edited by NoOrdinary (2009-09-05 09:47:20)

    I don't have anything special set at router but I doubt rc.conf play any role. I will try to set it up with dhcp (but I think I have tried that already) if there is any change.
    This morning I had to reboot twice, so new kernel didn't help. Fowler, what network card are you using, also e100 (well or some intel)? I dunno, should this be handed to the kernel team? If it will piss me enough one morning I'll just go and buy a new network card, just wanna be sure that will really solve the problem.
    UPDATE: OK, this is just silly. I remebered I have acctualy onboard LAN so I edited rc.conf and dived into the dust under my desk to move cable and there I found out it was acctual onboard in use all the time Now this dosen't make much sense to me anymore, when I can't get net up all the stuff in dmesg is e100 related. Anyway, I connected network to e100 and rebooted, suprise, same story. Dmesg reported again link was not ready. I edited rc.conf to
    INTERFACES=(eth0 !eth1)
    in case this has anything to do with proper timing at assigning whatever needs to be assigned to network cards at boot so I'm sure just 1 card with all info provided get's kicked in at boot. First reboot after that works, it dosen't prove anything yet but at leat it's some kind of progress in recognising proper cause.
    UPDATE 2: Nah, still happens. Googling for "no link during initialization" show a lot of familiar problems, almost all on nforce motherboards and mine is nforce too. I just don't get it why this mess seperate PCI network card. In any case it's extremely annoying.
    Last edited by NoOrdinary (2009-09-02 11:46:27)

  • [SOLVED] Xmonad: trasparency doesn't work with compton intel

    Dear All,
    I am having a strange issue with Xmonad and I am not sure whether it is a problem of my Arch or Xmonad configuration. I decided to ask on Arch forum first, as my other computer running Arch has exactly the same Xmonad setup and it works fine. I would appreciate assistance from some Xmonad or Arch proficient users on this.
    Basically, I have this piece of code in my xmonad.hs:
    myLogHook :: Handle -> X ()
    , logHook = myLogHook dzenLeftBar >> fadeInactiveLogHook 0.8
    On the other computer this makes all the unfocused windowses slightly transparent. I find this feature very useful as it helps me focus on the window I am working with.
    For some reason this doesn't work on my laptop. My laptop is using xf86-video-intel since the lspci gave me
    %lspci | grep VGA
    00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) (rev 03)
    Also I am invoking compton-git from AUR but I have also tried with xcompmgr in my xinitrc and it gave exactly the same result - no transparency whatsoever.
    I looked through my log file, but couldn't find anything relevant (please let me know if you can think of anything). How do I proceed with this issue? Do I try different composite managers? Do I try different drivers? Is there anyhting in X setup that I should include? Please let me know if you have any ideas.
    Last edited by AlmostSurelyRob (2013-06-18 10:18:08)

    I am very sorry. I've just discovered that neither compton nor xcompmgr were installed. It's not only solved, it should be marked as [NOT RAISED]. I was migrating my configuration and overlooked some erm... details.

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

  • Connecting to other computers on network doesn't work as expected.

    This is kind of interesting.
    I do this: From Menu Go > Network
    Then I choose either my iMac or MacBook Pro and double click the user name for my home folders on the other computers.
    A window opens up and the bottom right of the window the little twirling busy thing just goes and goes and goes.
    I notice the server icon on the Desktop and double click it and everything is there an access is fast, just like I expected from the first window that popped up. But it's still there, blank, with a little twirly thing (very technical).
    I get what I'm after, but it doesn't work the way it should.

    Try keeping your shares from sleeping during the expected period of use--assuming they are. If this procedure works, then you'll need to decide between the "lesser of the two evils."

  • Images in Multicolumn Listbox doesn't work as expected

    In the attached example, the symbols are getting displayed in the correct order but missing the symbol for the first row. I can manually select the symbol but by default only the 2nd symbol from the provided array list appear.
    Any idea what's the issue?
    How to display correct symbol?
    Thanks in advance.
    Cross-post from LAVA: http://lavag.org/topic/15788-images-in-multicolumn-listbox-doesnt-work-as-expected/page__pid__95584#...
    Solved!
    Go to Solution.
    Attachments:
    Images & Multicolumn ListBox.vi ‏10 KB

    Hello, Vidula
    It seems that index 0 is reserved for the empty symbol, no matter what custom symbol you provided. Adding one image in front before setting symbols array and incrementing ItemSyms indexes solves this problem. However, I can't find any information about this in documentation, which would be nice
    Attachments:
    Images & Multicolumn ListBox.vi ‏12 KB

  • [SOLVED] Font rendering messed up after latest freetype2 upgrade.

    I haven't touched my font configuration, but the appearance of most fonts has changed across the board (i.e. in every application) since I upgraded to freetype 2.4.6 yesterday. In particular, the fonts are less strong, and in LibreOffice Calc in particular the spacing is messed up at certain levels of magnification despite having hinting enabled. Here is my ~/.gtkrc-2.0:
    gtk-icon-theme-name = "nuoveXT2"
    gtk-theme-name = "Clearlooks"
    gtk-font-name = "FreeSans 10"
    gtk-xft-antialias = 1
    gtk-xft-hinting = 1
    gtk-xft-hintstyle = "hintfull"
    gtk-xft-rgba = "rgb"
    I have tried many combinations of AA and hinting, and nothing seems to work. Fonts do look slightly differently when I change the hinting settings (except in Calc), but they do not look as crisp as before the upgrade. Can anyone help me?
    Last edited by nbtrap (2011-08-01 01:44:13)

    It figures that I fix this right after giving up and posting to the forums. It seems that either (1) Xresources overrides gtk settings or (2) Libreoffice ignores gtk settings. I had not had any ~/.Xresources file, but after creating one:
    Xft.dpi: 96
    Xft.antialias: true
    Xft.rgba: rgb
    Xft.hinting: true
    Xft.hintstyle: hintslight
    and adding
    xrdb -merge ~/.Xresources
    to ~/.xinitrc,, the font rendering has returned to normal across all applications, The strange thing is that I didn't have an Xresources config file before when the rendering was working fine. It's also weird that fonts in GTK apps looks crisper with Xresources configured than they do with the same configuration in ~/.gtkrc-2.0. I can't figure out why, but at least it's now working.

Maybe you are looking for

  • How can 2 people use itunes in the same household? we both have iphone 4 and separate id but the same itunes? pleasehelp

           how can two people use itunes in the same household? i had a iphone before so alreday had an itunes account now me and my husband have upgraded and we now both have them. he has set up a username and i have mine yet when he logs in he seems to

  • Idoc status 3 in r/3, not received in XI

    Hello All,                 In our production system one order from r/3 which is sent as Idoc has status 3 in r/3, but this order is not in XI ( in sxmb_moni), just one order.  How do I validate in XI that this order never came across in XI, or of it

  • Crystal Report layout, best practice

    SAP B1 8.81 I'm having only spotty success with CR layouts and I've experimented quite a bit. What I'd like to do is extensively modify 1 system Crystal Report and then bring it in as a layout, and apply it to AR Item Quote, Order, DN, Invoice, and R

  • Error in PI Server

    Hai Experts ! Often we are getting a error in PI Development Server while Login. While we dicussed with Basis Team they gave two File Name in the FlieSystem.   /usr/sap/OXD/DVEBMGS00/j2ee/cluster/server0/OOM.hprof I dont the useage of this file and d

  • Time Machine preparing WAY too many items

    I just noticed that my Time Machine backups are taking an unusually long time. So when the last one finished, I immediately ran a second backup with Time Machine preferences open so I could watch the progress bar. It said it was "Preparing (about) 3,