Deprecation problem

when i compile my program i get error message that says
"myfile.java uses or overrides a deprecated API. Recompile with -deprecation for details."
what does this mean and how do i fix it ?
thanx
trin

means that you are probly either overriding or using a method which has been deprecated, not supported any more.
It is just a warning, you could continue using it. The class file will be created. But you might probably want to use a more updated method.
Normally when someone deprecates a Class or Method a replacement is usually there. Check to javadoc to find out more.
To find out exactly which deprecated method/class you are trying to use, compile your code with the following:
javac -deprecation myfile.java
this will tell you the exact line in your code which is using it.

Similar Messages

  • IUser deprecated

    I am trying with this cade. when I m using ResourceContext, the passed parameter IUser deprecation problem comes... How can I solve it ??
    Which ResourceContext class I should use? or any alternative ?? Please help me to write simple application to read property from portal since I m learning..
    Thanks in Adavanced.
    import com.sapportals.wcm.repository.IResource;
    import com.sapportals.wcm.repository.IResourceContext;
    import com.sapportals.wcm.repository.ResourceContext;
    import com.sapportals.wcm.repository.ResourceFactory;
    import com.sapportals.wcm.util.uri.RID;
    import com.sapportals.wcm.util.usermanagement.WPUMFactory;
    IUser user = WPUMFactory.getUserFactory().getEP5User.request.getUser());
    //IUser user = request.getUser();
    IResourceContext ctxt = new ResourceContext(user);
    RID rid = RID.getRID("/documents");
    IResource resource = ResourceFactory.getInstance().getResource(rid, ctxt);

    Hi Mehul,
    hi Patricio,
    > IUser type is deprecated
    > but there is not information about
    > which type we should use
    There is no other class to be used. It's just a strange thing to declare things as deprecated which (at some places) have to be used. The background is that EP5 had it's own user management, and with EP6 the super layer UME came into the game, but KM still uses the old classes.
    WPUMFactory.getUserFactory().getUMEUser(ep5User);
    WPUMFactory.getUserFactory().getEP5User(ep6User);
    are the methods to get one out of the other.
    Hope it helps
    Detlev
    PS: Mehul, please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • Deprecated something

    I have narrowed it down to the events method and it seems there is a problem with the event. I have it working kinda right and I wanted to clear the buffer.
    http://www.state.nj.us/military/test/testingjava/applet.htm
    try the applet out. type in bob press search then press search again.
    it is repeating the text. but it also seems that it may not be the buffer.
    THE MAIN CONCERN IS THE DEPRECATED ERROR
    the error:
    Note: Z:\applications\JCreator LE\MyProjects\helloworld\test\teststate\Virginia.java uses or overrides a deprecated API. Recompile with "-deprecation" for details.
    1 warning
    the foowing is the code:
    import java.awt.*;
    import java.applet.*;
    import java.lang.*;
    import java.io.*;
    import java.net.URL;
    public class Virginia extends java.applet.Applet
         String results[]=new String[10];
         String resultsString;
         String queryString;
         TextArea lt;
         Label lbQueryString= new Label("Please enter search text:");
         TextField tfQueryString= new TextField(25);
         Button btSearch=new Button("Search");
         Button btClear=new Button("Clear Entry");
         private void getString()
              try{                    
                        URL yahoo = new URL("http://www.nj.gov/military/test/testme.txt");
                        BufferedReader in = new BufferedReader(new InputStreamReader(yahoo.openStream()));
                        String line= in.readLine();
                        System.out.println(" in ");
                        int i=0;
                        while ( line != null )
                             int index = line.indexOf(queryString.trim());
                             if ( index != -1)
                                  results=(line);
                                  i++;
                                  System.out.println(i);
                             line = in.readLine();
                        in.close();
                        }catch (IOException e)
                        {System.out.println("Error -- " + e.toString());}     
              for (int i=0;i<10;i++)
                   if(results[i]!=null)
                        resultsString+=(results[i]+"\n");
         public boolean action(Event evt, Object arg)
              if (evt.target instanceof Button)
                   String label = (String)arg;
                   if (label.equals("Search"))
                        queryString=tfQueryString.getText();
                             this.getString();
                        lt.setText(resultsString);
                   }else
                             queryString="";     
                             lt.setText("");
                        return true;
              }else
                   return false;
         public void init()
              lt = new TextArea(resultsString, 10, 50);
              add(lbQueryString);
              add(tfQueryString);
              add(btClear);
              add(btSearch);
              add(lt);
              this.destroy();

    I tried to compile you program, but it failed. The problem is that you tried to assign String value to String[] in following code.
    results=(line);
    It need to be changed to: results=line;
    Another problem is that your define array size for results as 10. If the file that you got from internet has more than 10 line number, you will get exception.
    By the way, for DEPRECATED ERROR I fixed your codes as shown bellow. It will fix the deprecation problem.
    import java.awt.*;
    import java.applet.*;
    import java.lang.*;
    import java.io.*;
    import java.net.URL;
    public class Virginia extends java.applet.Applet
    String results[]=new String[10];
    String resultsString;
    String queryString;
    TextArea lt;
    Label lbQueryString= new Label("Please enter search text:");
    TextField tfQueryString= new TextField(25);
    Button btSearch=new Button("Search");
    Button btClear=new Button("Clear Entry");
    private void getString()
    try{
    URL yahoo = new URL("http://www.nj.gov/military/test/testme.txt");
    BufferedReader in = new BufferedReader(new InputStreamReader(yahoo.openStream()));
    String line= in.readLine();
    System.out.println(" in ");
    int i=0;
    while ( line != null )
    int index = line.indexOf(queryString.trim());
    if ( index != -1)
    results=(line);
    i++;
    System.out.println(i);
    line = in.readLine();
    in.close();
    }catch (IOException e)
    {System.out.println("Error -- " + e.toString());}
    for (int i=0;i<10;i++)
    if(results!=null)
    resultsString+=(results+"\n");
    /*public boolean action(Event evt, Object arg)
    if (evt.target instanceof Button)
    String label = (String)arg;
    if (label.equals("Search"))
    queryString=tfQueryString.getText();
    this.getString();
    lt.setText(resultsString);
    }else
    queryString="";
    lt.setText("");
    return true;
    }else
    return false;
    public void init()
    btnSearch.addActionListener(new ButtonHandler());
    btClear.addActionListener(new ButtonHandler());
    lt = new TextArea(resultsString, 10, 50);
    add(lbQueryString);
    add(tfQueryString);
    add(btClear);
    add(btSearch);
    add(lt);
    this.destroy();
    class ButtonHandler implements ActionListener{
         public void actionPerformed(ActionEvent e){
              String s=e.getActionCommand();
              if (s.equals("Search"))
                   queryString=tfQueryString.getText();
                   getString();
                   lt.setText(resultsString);
              }else if (s.equals("Clear Entry"))
                   queryString="";
                   lt.setText("");

  • API Java Util deprecation

    The following code, shouts up a API deprecation problem. When i recompile the class with the code below using -deprecation, it comes up with a warning!!!!...is there another possible way to right the same code without such a problem (java.util.date.getMonth) is the culprit.
    private void searchDatabase()
    Date d = new Date();
    int lmonth = d.getMonth() - 1;
    SimpleDateFormat df = new SimpleDateFormat("EEE MMM dd yyyy");
    Need help as you as anyone can help

    Yes. Use java.util.Calendar.
    The API explicitly says this. Read the docs. The docs are there to help you. Do not shun them.

  • Are you java programmer?

    to
    dear
    i think java is better than c#.my friend is C# programmer.so i always say java is better than C# .but i don`t have the main point about this topic.so please help me.
    velkiri

    When making the choice between .NET and J2EE you have to ask yourself this: do I want to depend on Microsoft?
    The answer should always be "HELL NO!". Microsoft has totally crappy support on all their older products, so when MS releases something new all assimilated "customers" need to upgrade all their work just to keep them functional and supported, and pay large amounts of money while doing it.
    Now we have somebody who develops using J2EE. If something is horribly out of date, Sun makes it deprecated and the developer has all the time in the world to fix any deprecation problems. One thing that you can be absolutely sure of is that every new release that Sun does is backwards compatible with older products, or they will clearly specify it long before the actual update (such as the use of the 'enum' keyword in the latest release).
    Sun is dependable while Microsoft is anything but. That's the only real advantage IMO, next to the fact that Java is more integrated into non-windows platforms.

  • Having problems linking two java classes getting a "deprecated API" error??

    Hi,
    I am tryin to link one page to another in my program, however i get the followin msg:-
    Project\alphaSound.java uses or overrides a deprecated API.
    Note: Recompile with -deprecation for details.
    Process completed.
    this only happens when i add the bold piece of code to the class; even though the italic piece of code does take you to a new page?:-
    public class alphaSound extends JPanel implements ActionListener
    {static JFrame f = new JFrame("AlphaSound");
    public alphaSound() {
    public void actionPerformed(ActionEvent event) {
                 Object source = event.getSource();
    else if(source == vowel)
    { Vowelm vm = new Vowelm();
    vm.setSize(Toolkit.getDefaultToolkit().getScreenSize());
    vm.show();
    f.dispose();
    else if(source == back)
    { MainPage main = new MainPage();
    main.setSize(400,300);
    main.show();
    f.dispose();}
    public static void main(String s[]) {
            WindowListener l = new WindowAdapter() {
                public void windowClosing(WindowEvent e) {System.exit(0);}
            //JFrame f = new JFrame("AlphaSound");
            f.addWindowListener(l);
            f.getContentPane().add(new alphaSound());
            f.setSize(Toolkit.getDefaultToolkit().getScreenSize()); 
            f.show();
    }here is the class its tryin to call
    public class Vowelm extends JPanel implements ActionListener
    {static JFrame v = new JFrame("VowelSound");
       public Vowelm() {
                                                   ..etc...
    public static void main(String s[]) {
            WindowListener l = new WindowAdapter() {
                public void windowClosing(WindowEvent e) {System.exit(0);}
            //JFrame f = new JFrame("VowelSound");
            v.addWindowListener(l);
            v.getContentPane().add(new VowelmSound());
            v.setSize(Toolkit.getDefaultToolkit().getScreenSize()); 
            v.show();
    }Im pretty sure ther is some conflict between the two classes due to the way they are called and designed?
    Hope you can help!
    Kind Regards
    Raj

    You may want to check your show() calls and see if
    they can be replaced with setVisible(). Forexample,
    in your Vowelm code, you have a static JFrame v.
    At
    the end of your main function, you use v.show().As
    of JDK1.1, this has been deprecated in favour of
    setVisible(boolean).hey show() in JFrame is from Window and in windowits
    not deprecated ..
    show is not decrecated thats for sure ... i dontknow
    y you said that ...
    you can look in docs as well..
    True - but this in turn overrides show() from
    java.awt.Component, which has been deprecated. My
    guess is that's where the problem comes from.
    Thanks for the Dukes!
    FlicAnd then again - perhaps not. After looking into this a bit more, I take back my last comment about the Component override. However, as I said in my original reply, compiling with -deprecation should tell you which show() call is flagging the error. There is definitely one somewhere that the JVM doesn't like - without seeing your complete code, it's hard to say exactly where. Based on what you've posted, my guess is that it is within the Vowelm class.
    Next time, I'll try to avoid 'shooting from the hip'.
    Again, thanks for the Dukes,
    Flic

  • Deprecated API Problem

    I have tried (unsuccessfully) for hours and hours to correct a deprecated Api problem with an old java program I have been tinkering with. Is there anyone out there who may be able to help me? I would appreciate it very much.

    Hello Lovadina,
    I do not think my problem is the most difficult problem that has ever been posted but because I am so new to this I am having difficulty in fixing a java program I am working on. It is to do with an old API Mouse event that is currently part of the source code and from what I have read about it, it should not take much to update it as an old version is being used. You can contact me at [email protected] Thanks

  • PROBLEM WITH MY CLA- DEPRECATED CODE

    Hi all,
    I really need some help to sort out my small class which generates a random string. Here is the code:
    package project_gui;
    import java.util.Random;
    //Random string generator class
            public class randomString {
                    private static Random rn = new Random();
                    public randomString()
                    public static int rand(int lo, int hi)
                            int n = hi - lo + 1;
                            int i = rn.nextInt() % n;
                            if (i < 0)
                                    i = -i;
                            return lo + i;
                    public String randomstring(int lo, int hi)
                            int n = rand(lo, hi);
                            byte b[] = new byte[n];
                            for (int i = 0; i < n; i++)
                                    b[i] = (byte)rand('a', 'z');
                            return new String(b, 0);
                    public String randomstring()
                            return randomstring(1, 12);
            }The error I get is:
    project_gui/randomString.java:28: warning: String(byte[],int) in java.lang.String
    has been deprecated
              return new String(b, 0);I'm already looked through the API to try and find an alternative way of doing it, but I'm an inexperienced programmer and so I'm not sure what to do.
    Please help!!!

    JDK1.4.2 API docs:
    I believe it's:
    old
    String(byte[] ascii, int hibyte)
              Deprecated. This method does not properly convert bytes into characters. As of JDK
    1.1, the preferred way to do this is via the String constructors that take a charset name or
    that use the platform's default charset.
    new
    String(byte[] bytes, String charsetName)
              Constructs a new String by decoding the specified array of bytes using the
    specified charset.Try looking under class Charset for more details. I have not used these constructors myself though.

  • AppleScript Runner CPSGetFrontProcess deprecated related sleeping problems?

    I have a fresh SL install and the MBP does not want ot sleep.
    Now in my Log I keep finding this message ("AppleScript Runner CPSGetFrontProcess deprecated" ) at moments it should go to sleep or short before it should go to sleep. Does anybody know what this is and how to fix it?
    Thanks.

    Does anybody know what the message is or what causes it?

  • ResourceContext(IUser) constructor is undefined,problem of Deprecated IUser

    Hi Experts,
    I have created an IUser as follows:
    com.sap.security.api.IUser user = UMFactory.getUserFactory().getUserByLogonID("Kmuser");
    now i m using this user into the following:
    IResourceContext resourceContext = new ResourceContext(user);
    For this i m getting a compiler error that constructor for ResourceContext(user) doesnt exist.
    I did explored and studied about the IUser then i came to know that thare are two types of IUser one is com.sapportals.wcm.util.usermanagement.IUser which is deprecated and the newer one is com.sap.security.api.IUser.
    ResourceContext class has all the constructor which takes only the deprecated IUser.
    So does SAP APIs provides any other ResourceContext class which Works well with com.sap.security.api.IUser?????
    Or is there any way to cast com.sap.security.api.IUser to com.sapportals.wcm.util.usermanagement.IUser????
    Please help me out
    Help will be appreciated and rewarded

    Hi,
    It is clear for me that you do not want to create Service user, but just to create a ReosurceContext for the service user <b>cmadmin_service</b>
    This is the code to create ReosurceContext for the service user:
    Object serviceContext = null;
    try {
    serviceContext = AccessController.doPrivileged(new PrivilegedExceptionAction() {
    public Object run() throws WcmException {
    return ResourceFactory.getInstance().getServiceContext("cmadmin_service");
    } catch (PrivilegedActionException e) {
    logger.severe(e, "ResourceContext for the technical " + serviceUser +
    " user could not be retrieved.");
    IResourceContext resCtx = (IResourceContext) serviceContext;
    Regards,
    Praveen Gudapati

  • Restart problems

    Hi
    After a restart the Mac would not start, I got the bong but then only half of my USBs lit and the caps lock was lit and I only got a gray screen. I forced closed down and restarted but got he same, I did this once more but then had to unplug leave for half an hour then started the Mac again but had to do it once more before it started. I have noticed that I have only had this problem after updating to 10.5.8 When after updating it asked me to restart the same things happened, so it seems to be a problem with 10.5.8 or restarting.
    Here is a log from the Console I hope it helps -
    Sep 2 15:02:18 Macintosh [0x0-0x1d01d].com.apple.Safari[220]: Safari(220,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 15:02:18 Macintosh [0x0-0x1d01d].com.apple.Safari[220]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:02:19 Macintosh [0x0-0x1d01d].com.apple.Safari[220]: Safari(220,0xa090c820) malloc: * error for object 0x6d2e6373: Non-aligned pointer being freed
    Sep 2 15:02:19 Macintosh [0x0-0x1d01d].com.apple.Safari[220]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:04:09 Macintosh kernel[0]: { 41 910440} UniNEnet::restartReceiver
    Sep 2 15:05:12 Macintosh kernel[0]: { 41 910440} UniNEnet::restartReceiver
    Sep 2 15:07:36 Macintosh Mail[210]: IPCClient: Server port 0 is invalid; looking it up again...
    Sep 2 15:07:48 Macintosh LCCDaemon[196]: Opening LCC Update in automatic mode
    Sep 2 15:09:38 Macintosh kernel[0]: { 41 910440} UniNEnet::restartReceiver
    Sep 2 15:10:52 Macintosh kernel[0]: { 41 910440} UniNEnet::restartReceiver
    Sep 2 15:12:09 Macintosh kernel[0]: { 41 910440} UniNEnet::restartReceiver
    Sep 2 15:12:51 Macintosh kernel[0]: { 41 910440} UniNEnet::restartReceiver
    Sep 2 15:12:54 Macintosh osascript[233]: osascript(233) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:12:54 Macintosh [0x0-0x15015].com.skype.skype[195]: osascript(233) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 15:12:54 Macintosh [0x0-0x15015].com.skype.skype[195]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:12:54 Macintosh osascript[233]: osascript(233,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:12:54 Macintosh [0x0-0x15015].com.skype.skype[195]: osascript(233,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 15:12:54 Macintosh [0x0-0x15015].com.skype.skype[195]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:14:56 Macintosh Skype[195]: SkypeEventNotificator::playSound: ERROR: cannot load sound Busy
    Sep 2 15:18:12 Macintosh [0x0-0x1d01d].com.apple.Safari[220]: Debugger() was called!
    Sep 2 15:20:04 Macintosh System Preferences[237]: System Preferences(237,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:20:04: --- last message repeated 1 time ---
    Sep 2 15:20:04 Macintosh [0x0-0x22022].com.apple.systempreferences[237]: System Preferences(237,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 15:20:04 Macintosh [0x0-0x22022].com.apple.systempreferences[237]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:20:04 Macintosh [0x0-0x22022].com.apple.systempreferences[237]: System Preferences(237,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 15:20:04 Macintosh [0x0-0x22022].com.apple.systempreferences[237]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:20:59 Macintosh SCHelper[242]: no command
    Sep 2 15:20:59 Macintosh com.apple.launchd[91] ([0x0-0x22022].com.apple.systempreferences[237]): Stray process with PGID equal to this dead job: PID 242 PPID 1 SCHelper
    Sep 2 15:21:57 Macintosh System Preferences[249]: System Preferences(249,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:21:57: --- last message repeated 1 time ---
    Sep 2 15:21:57 Macintosh [0x0-0x24024].com.apple.systempreferences[249]: System Preferences(249,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 15:21:57 Macintosh [0x0-0x24024].com.apple.systempreferences[249]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:21:57 Macintosh [0x0-0x24024].com.apple.systempreferences[249]: System Preferences(249,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 15:21:57 Macintosh [0x0-0x24024].com.apple.systempreferences[249]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 15:22:58 Macintosh SCHelper[254]: no command
    Sep 2 15:22:58 Macintosh com.apple.launchd[91] ([0x0-0x24024].com.apple.systempreferences[249]): Stray process with PGID equal to this dead job: PID 254 PPID 1 SCHelper
    Sep 2 15:32:35 Macintosh AppleSpell[261]: exception: * -[NSCFString rangeOfCharacterFromSet:options:range:]: Range or index out of bounds
    Sep 2 15:35:28 Macintosh kernel[0]: { 41 910440} UniNEnet::restartReceiver
    Sep 2 15:36:40 Macintosh loginwindow[27]: DEAD_PROCESS: 0 console
    Sep 2 15:36:41 Macintosh shutdown[270]: reboot by georgehilton:
    Sep 2 15:36:41 Macintosh shutdown[270]: SHUTDOWN_TIME: 1251898601 222521
    Sep 2 15:36:41 Macintosh com.apple.loginwindow[27]: Shutdown NOW!
    Sep 2 15:36:41 Macintosh mDNSResponder mDNSResponder-176.3 (Jun 17 2009 18:57:52)[26]: stopping
    Sep 2 15:36:41 Macintosh com.apple.loginwindow[27]: System shutdown time has arrived^G^G
    Sep 2 15:36:41 Macintosh com.apple.SystemStarter[20]: Stopping XtraView USB Startup
    Sep 2 16:29:33 localhost kernel[0]: Darwin Kernel Version 9.8.0: Wed Jul 15 16:57:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_PPC
    Sep 2 16:29:31 localhost com.apple.launchctl.System[2]: /dev/disk0s3 on / (hfs, local, journaled)
    Sep 2 16:29:32 localhost com.apple.launchctl.System[2]: launchctl: Dubious permissions on file (skipping): /System/Library/LaunchDaemons/org.x.font_cache.plist
    Sep 2 16:29:32 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Sep 2 16:29:32 localhost com.apple.launchd[1] (com.symantec.Sched501-4.plist): Unknown key: SchedName
    Sep 2 16:29:32 localhost com.apple.launchd[1] (com.apple.usbmuxd): Unknown key for boolean: EnableTransactions
    Sep 2 16:29:32 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Sep 2 16:29:32 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Sep 2 16:29:32 localhost com.apple.launchd[1] (org.x.privileged_startx): Unknown key for boolean: EnableTransactions
    Sep 2 16:29:32 localhost com.apple.launchd[1] (org.postfix.master): Path monitoring failed on "/var/spool/postfix": No such file or directory
    Sep 2 16:29:33 localhost kextd[12]: 434 cached, 0 uncached personalities to catalog
    Sep 2 16:29:34 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Sep 2 16:29:34 localhost kernel[0]: vmpagebootstrap: 761791 free pages and 24641 wired pages
    Sep 2 16:29:34 localhost kernel[0]: migtable_maxdispl = 79
    Sep 2 16:29:34 localhost kernel[0]: 120 prelinked modules
    Sep 2 16:29:34 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Sep 2 16:29:34 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Sep 2 16:29:34 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Sep 2 16:29:34 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Sep 2 16:29:34 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Sep 2 16:29:34 localhost kernel[0]: calling mpopolicyinit for mb
    Sep 2 16:29:34 localhost kernel[0]: Seatbelt MACF policy initialized
    Sep 2 16:29:34 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Sep 2 16:29:34 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Sep 2 16:29:34 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Sep 2 16:29:34 localhost kernel[0]: MAC Framework successfully initialized
    Sep 2 16:29:34 localhost kernel[0]: using 15728 buffer headers and 4096 cluster IO buffer headers
    Sep 2 16:29:34 localhost kernel[0]: DART enabled
    Sep 2 16:29:34 localhost kernel[0]: FireWire (OHCI) Apple ID 42 PCI now active, GUID 000d93fffe6ebdd0; max speed s800.
    Sep 2 16:29:34 localhost kernel[0]: mbinit: done
    Sep 2 16:29:34 localhost kernel[0]: Security auditing service present
    Sep 2 16:29:34 localhost kernel[0]: BSM auditing present
    Sep 2 16:29:34 localhost kernel[0]: rooting via boot-uuid from /chosen: 2CC45692-EFB7-3616-BDAD-BA3ED0463BA8
    Sep 2 16:29:34 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Sep 2 16:29:34 localhost kernel[0]: Could not enable ARP cache poisoning detection. Your computer will not be protected.
    Sep 2 16:29:34 localhost kernel[0]: Got boot device = IOService:/MacRISC4PE/ht@0,f2000000/AppleMacRiscHT/pci@7/IOPCI2PCIBridge/k2-sat a-root@C/AppleK2SATARoot/k2-sata@0/AppleK2SATA/ATADeviceNub@0/AppleATADiskDriver /IOATABlockStorageDevice/IOBlockStorageDriver/Maxtor 6Y160M0 Maxtor 6Y160M0/IOApplePartitionScheme/AppleHFS_Untitled1@3
    Sep 2 16:29:34 localhost kernel[0]: BSD root: disk0s3, major 14, minor 2
    Sep 2 16:29:34 localhost kernel[0]: Jettisoning kernel linker.
    Sep 2 16:29:34 localhost kernel[0]: Resetting IOCatalogue.
    Sep 2 16:29:34 localhost kernel[0]: Matching service count = 0
    Sep 2 16:29:34 localhost kernel[0]: Matching service count = 6
    Sep 2 16:29:34: --- last message repeated 4 times ---
    Sep 2 16:29:34 localhost kernel[0]: Matching service count = 7
    Sep 2 16:29:34 localhost kernel[0]: PowerMac7,3: stalling for module
    Sep 2 16:29:34 localhost kernel[0]: PowerMac72U3TwinsPIDCtrlLoop::adjustControls state == not ready
    Sep 2 16:29:35 localhost kernel[0]: Matching service count = 1
    Sep 2 16:29:35 localhost kernel[0]: PowerMac7,3 Thermal Manager: Thermal Runaway Detected: System Will Sleep
    Sep 2 16:29:35 localhost kernel[0]: PM73 T_cur=109 >= (T_max:83 + sleepOffset:20)
    Sep 2 16:29:35 localhost kernel[0]: PowerMac72PlatformPlugin core dump:
    Sep 2 16:29:35 localhost kernel[0]: IOHWControls:
    Sep 2 16:29:35 localhost kernel[0]: [0] "PWR SUPPLY" Type:"fan-pwm" Id:8960 TGT:16 CUR:42
    Sep 2 16:29:35 localhost kernel[0]: [1] "CPU A ACS" Type:"fan-rpm" Id:16384 TGT:1000 CUR:0
    Sep 2 16:29:35 localhost kernel[0]: [2] "CPU B ACS" Type:"fan-rpm" Id:16640 TGT:1000 CUR:1002
    Sep 2 16:29:35 localhost kernel[0]: [3] "CPU A Intake Fan" Type:"fan-rpm" Id:17152 TGT:1000 CUR:995
    Sep 2 16:29:35 localhost kernel[0]: [4] "CPU A Exhaust Fan" Type:"fan-rpm" Id:17408 TGT:1000 CUR:998
    Sep 2 16:29:35 localhost kernel[0]: [5] "CPU B Intake Fan" Type:"fan-rpm" Id:17664 TGT:1000 CUR:999
    Sep 2 16:29:35 localhost kernel[0]: IOHWSensors:
    Sep 2 16:29:35 localhost kernel[0]: [0] "CPU A POWER" Type:"power" Id:48 CUR:90.47365 W
    Sep 2 16:29:35 localhost kernel[0]: [1] "CPU B POWER" Type:"power" Id:49 CUR:76.35553 W
    Sep 2 16:29:35 localhost kernel[0]: [2] "CPU B AD7417 AD4" Type:"current" Id:19 CUR:55.51520 A
    Sep 2 16:29:35 localhost kernel[0]: [3] "CPU A AD7417 AD4" Type:"current" Id:14 CUR:65.20160 A
    Sep 2 16:29:35 localhost kernel[0]: [4] "BACKSIDE" Type:"temperature" Id:6 CUR:36.49152 C
    Sep 2 16:29:35 localhost kernel[0]: [5] "U3 HEATSINK" Type:"temperature" Id:7 CUR:53.57344 C
    Sep 2 16:29:35 localhost kernel[0]: [6] "CPU A AD7417 AD2" Type:"current" Id:12 CUR:8.51712 A
    Sep 2 16:29:35 localhost kernel[0]: [7] "CPU A AD7417 AD3" Type:"voltage" Id:13 CUR:1.25504 V
    Sep 2 16:29:35 localhost kernel[0]: [8] "CPU B AD7417 AD2" Type:"current" Id:17 CUR:7.28448 A
    Sep 2 16:29:35 localhost kernel[0]: [9] "CPU B AD7417 AD3" Type:"voltage" Id:18 CUR:1.24384 V
    Sep 2 16:29:35 localhost kernel[0]: [10] "CPU A AD7417 AD1" Type:"temperature" Id:11 CUR:109.27266 C
    Sep 2 16:29:35 localhost kernel[0]: [11] "CPU B AD7417 AD1" Type:"temperature" Id:16 CUR:77.19857 C
    Sep 2 16:29:35 localhost kernel[0]: [12] "CPU A AD7417 AMB" Type:"temperature" Id:10 CUR:42.0 C
    Sep 2 16:29:35 localhost kernel[0]: [13] "CPU B AD7417 AMB" Type:"temperature" Id:15 CUR:39.32768 C
    Sep 2 16:29:35 localhost kernel[0]: IOHWCtrlLoops:
    Sep 2 16:29:35 localhost kernel[0]: [0] "U3/Backside Fan" Id:7 MetaState:0 "Normal"
    Sep 2 16:29:35 localhost kernel[0]: [1] "CPU Cooling" Id:6 MetaState:0
    Sep 2 16:29:35 localhost kernel[0]: [2] "Clock Slew" Id:0 MetaState:0 "Dynamic Power Step"
    Sep 2 16:29:35 localhost kernel[0]: [3] "Drive Bay Fan" Id:1 MetaState:0 "Normal"
    Sep 2 16:29:35 localhost kernel[0]: [4] "PCI Slot Fan" Id:5 MetaState:0 "Normal"
    Sep 2 16:29:35 localhost kernel[0]: ---------------------------------
    Sep 2 16:29:35 localhost kernel[0]: PowerMac72U3TwinsPIDCtrlLoop::adjustControls state == not ready
    Sep 2 16:29:35 localhost kernel[0]: IOPlatformControl::registerDriver Control Driver AppleSlewClock did not supply target-value, using default
    Sep 2 16:29:37 localhost com.apple.launchd[1] (org.postfix.master): Failed to count the number of files in "/var/spool/postfix/maildrop": No such file or directory
    Sep 2 16:29:37: --- last message repeated 1 time ---
    Sep 2 16:29:37 localhost bootlog[40]: BOOT_TIME: 1251901769 0
    Sep 2 16:29:37 localhost rpc.statd[22]: statd.notify - no notifications needed
    Sep 2 16:29:38 localhost fseventsd[31]: bumping event counter to: 0x194a82c (current 0x0) from log file '0000000001941845'
    Sep 2 16:29:38 localhost kernel[0]: UniNEnet: Ethernet address 00:0d:93:6e:bd:d0
    Sep 2 16:29:38 localhost DirectoryService[36]: Launched version 5.7 (v514.25)
    Sep 2 16:29:38 localhost kernel[0]: IPv6 packet filtering initialized, default to accept, logging disabled
    Sep 2 16:29:38 localhost /Library/Smith Micro/Common/schedulerdaemon[49]: SmithMicro schedulerdaemon started.
    Sep 2 16:29:38 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[27]: Login Window Application Started -- Threaded auth
    Sep 2 16:29:39 localhost SymSharedSettingsd[56]: Settings server starting up.
    Sep 2 16:29:39 localhost com.apple.launchd[1] (org.postfix.master): Failed to count the number of files in "/var/spool/postfix/maildrop": No such file or directory
    Sep 2 16:29:39: --- last message repeated 7 times ---
    Sep 2 16:29:39 localhost com.symantec.navapdaemon[46]: kextunload: unload kext /Library/Application Support/Symantec/AntiVirus/NortonAutoProtect.bundle/Contents/Resources/SymAPCom m.kext failed
    Sep 2 16:29:40 localhost mDNSResponder mDNSResponder-176.3 (Jun 17 2009 18:57:52)[26]: starting
    Sep 2 16:29:40 localhost com.apple.usbmuxd[18]: usbmuxd-167.1 built for iTunesEightTwo on Jul 9 2009 at 14:02:00, running 32 bit
    Sep 2 16:29:40 localhost com.symantec.navapdaemon[46]: kextload: /Library/Application Support/Symantec/AntiVirus/NortonAutoProtect.bundle/Contents/Resources/SymAPCom m.kext loaded successfully
    Sep 2 16:29:40 localhost /usr/sbin/ocspd[86]: starting
    Sep 2 16:29:41 localhost com.apple.IFCStart[29]: ifcstart(29,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:29:41 localhost ifcstart[29]: ifcstart(29,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:29:41 localhost com.apple.IFCStart[29]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:29:42 localhost kernel[0]: UniNEnet::monitorLinkStatus - Link is up at 100 Mbps - Full Duplex (PHY regs 5,6:0x45e1,0x0005)
    Sep 2 16:29:46 Macintosh configd[38]: setting hostname to "Macintosh.local"
    Sep 2 16:29:47 Macintosh com.apple.launchd[1] (org.postfix.master): Failed to count the number of files in "/var/spool/postfix/maildrop": No such file or directory
    Sep 2 16:29:51 Macintosh kextd[12]: writing kernel link data to /var/run/mach.sym
    Sep 2 16:29:54 Macintosh com.apple.SystemStarter[20]: Starting XtraView USB Startup
    Sep 2 16:29:54 Macintosh com.apple.SystemStarter[20]: -s XtraView USB Startup
    Sep 2 16:29:58 Macintosh kernel[0]: 2.1.08 Little Snitch: connection deferred for:/usr/sbin/ntpd uid:0 to:17.72.255.11 :2000
    Sep 2 16:30:01 Macintosh loginwindow[27]: Login Window Started Security Agent
    Sep 2 16:30:06 Macintosh com.apple.launchd[1] (org.postfix.master): Failed to count the number of files in "/var/spool/postfix/maildrop": No such file or directory
    Sep 2 16:30:22: --- last message repeated 23 times ---
    Sep 2 16:30:22 Macintosh authorizationhost[114]: MechanismInvoke 0x12a230 retainCount 2
    Sep 2 16:30:22 Macintosh SecurityAgent[115]: MechanismInvoke 0x134b40 retainCount 1
    Sep 2 16:30:22 Macintosh SecurityAgent[115]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Sep 2 16:30:22 Macintosh SecurityAgent[115]: NSExceptionHandler has recorded the following exception:\nNSRangeException -- * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)\nStack trace: 0x39dbc 0x950094ec 0x94ec0c00 0x94ec0c38 0x9036e180 0x989c8 0x83ee4 0x96dd8 0x8b7b4 0x90368 0x9f4a4 0xe068 0x14200 0x13f64 0xdb58 0x903a58f0 0x94e3126c 0x94e53634 0x909bfb18 0x909bf93c 0x909bf77c 0x93701248 0x93700c00 0x936fa8a0 0x11e14 0x2db0
    Sep 2 16:30:23 Macintosh loginwindow[27]: Login Window - Returned from Security Agent
    Sep 2 16:30:23 Macintosh SecurityAgent[115]: MechanismDestroy 0x134b40 retainCount 1
    Sep 2 16:30:23 Macintosh authorizationhost[114]: MechanismDestroy 0x12a230 retainCount 2
    Sep 2 16:30:23 Macintosh loginwindow[27]: USER_PROCESS: 27 console
    Sep 2 16:30:23 Macintosh loginwindow[27]: ERROR | -[Login1 setupEnvironment] | Unable to unlock the keychain, SecKeychainLogin returned -2147413984
    Sep 2 16:30:23 Macintosh com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[111]): Exited: Terminated
    Sep 2 16:30:23 Macintosh com.apple.launchd[91] (com.smithmicro.cleaning.schedulermailer): Ignored this key: UserName
    Sep 2 16:30:23 Macintosh com.apple.launchd[91] (com.apple.AirPortBaseStationAgent): Unknown key for boolean: EnableTransactions
    Sep 2 16:30:23 Macintosh com.apple.launchd[91] (org.x.startx): Unknown key for boolean: EnableTransactions
    Sep 2 16:30:24 Macintosh com.apple.loginwindow[27]: loginwindow(27,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:30:24 Macintosh loginwindow[27]: loginwindow(27,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:24 Macintosh com.apple.loginwindow[27]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:24 Macintosh /Library/Smith Micro/Common/schedulermailer[148]: SchedulerMailerController: started.
    Sep 2 16:30:25 Macintosh Dock[160]: _DESCRegisterDockExtraClient failed 268435459
    Sep 2 16:30:25 Macintosh /System/Library/CoreServices/coreservicesd[57]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(George Hilton's Public Folder) returned -14135
    Sep 2 16:30:26 Macintosh com.apple.launchd[1] (org.postfix.master): Failed to count the number of files in "/var/spool/postfix/maildrop": No such file or directory
    Sep 2 16:30:27: --- last message repeated 15 times ---
    Sep 2 16:30:27 Macintosh coreaudiod[164]: coreaudiod(164) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:27 Macintosh com.apple.audio.coreaudiod[164]: coreaudiod(164) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:30:27 Macintosh com.apple.audio.coreaudiod[164]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:29 Macintosh SystemUIServer[165]: \n MenuCracker\n see http://sourceforge.net/projects/menucracker\n MenuCracker is now loaded. Ready to accept new menus. Ignore the failure message that follow.
    Sep 2 16:30:29 Macintosh Finder[167]: Finder(167,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:29 Macintosh [0x0-0x10010].com.apple.finder[167]: Finder(167,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:30:29 Macintosh [0x0-0x10010].com.apple.finder[167]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:29 Macintosh SystemUIServer[165]: failed to load Menu Extra: NSBundle </Users/georgehilton/Library/Application Support/iStat menus/Extras/MenuCracker.menu> (loaded)
    Sep 2 16:30:29 Macintosh Finder[167]: Finder(167,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:29 Macintosh [0x0-0x10010].com.apple.finder[167]: Finder(167,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:30:29 Macintosh [0x0-0x10010].com.apple.finder[167]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:29 Macintosh SystemUIServer[165]: SystemUIServer(165,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:29 Macintosh [0x0-0xf00f].com.apple.systemuiserver[165]: SystemUIServer(165,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:30:29 Macintosh [0x0-0xf00f].com.apple.systemuiserver[165]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:29 Macintosh SystemUIServer[165]: SystemUIServer(165,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:29 Macintosh LCCDaemon[196]: LCCDaemon(196,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:29 Macintosh [0x0-0xf00f].com.apple.systemuiserver[165]: SystemUIServer(165,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:30:29 Macintosh [0x0-0xf00f].com.apple.systemuiserver[165]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:29 Macintosh [0x0-0x16016].com.Logitech.Control Center.Daemon[196]: LCCDaemon(196,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:30:29 Macintosh [0x0-0x16016].com.Logitech.Control Center.Daemon[196]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:30 Macintosh LCCDaemon[196]: LCCDaemon(196,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:30 Macintosh SystemUIServer[165]: MenuCracker: Loading 'iStatMenusMemory'.
    Sep 2 16:30:30 Macintosh [0x0-0x16016].com.Logitech.Control Center.Daemon[196]: LCCDaemon(196,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:30:30 Macintosh [0x0-0x16016].com.Logitech.Control Center.Daemon[196]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:30 Macintosh /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[1 65]: CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    Sep 2 16:30:30 Macintosh /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[1 65]: CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    Sep 2 16:30:30 Macintosh SystemUIServer[165]: MenuCracker: Loading 'iStatMenusCPU'.
    Sep 2 16:30:30 Macintosh SystemUIServer[165]: MenuCracker: Loading 'iStatMenusNetwork'.
    Sep 2 16:30:33 Macintosh [0x0-0x15015].com.skype.skype[195]: Main starting with pid 195 parent pid 91
    Sep 2 16:30:36 Macintosh Skype[195]: SkypeApplication::init called
    Sep 2 16:30:36 Macintosh Skype[195]: Skype(195,0xa090c820) malloc: * error for object 0xa1b1c1d3: pointer being freed was not allocated
    Sep 2 16:30:37: --- last message repeated 1 time ---
    Sep 2 16:30:36 Macintosh [0x0-0x15015].com.skype.skype[195]: Skype(195,0xa090c820) malloc: * error for object 0xa1b1c1d3: pointer being freed was not allocated
    Sep 2 16:30:38: --- last message repeated 1 time ---
    Sep 2 16:30:38 Macintosh /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder[167]: CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    Sep 2 16:30:38 Macintosh /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder[167]: CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    Sep 2 16:30:39 Macintosh SecurityAgent[202]: SecurityAgent(202,0xa090c820) malloc: * error for object 0xffffffff: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:42 Macintosh /Applications/Skype.app/Contents/MacOS/Skype[195]: CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    Sep 2 16:30:42 Macintosh /Applications/Skype.app/Contents/MacOS/Skype[195]: CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    Sep 2 16:30:43 Macintosh Skype[195]: CFDictionaryReplaceValue(): immutable collection 0x5ccaa80 given to mutating function
    Sep 2 16:30:50 Macintosh Skype[195]: ERROR: MacChatMessage wrapper could not GetChatMessage C++ __SkyLibChatMessage by object ID
    Sep 2 16:30:52: --- last message repeated 1 time ---
    Sep 2 16:30:52 Macintosh GrowlHelperApp[205]: WARNING: could not register Growl server.
    Sep 2 16:30:53 Macintosh UserNotificationCenter[206]: UserNotificationCenter(206,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:53 Macintosh com.apple.UserNotificationCenter[206]: UserNotificationCenter(206,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:30:53 Macintosh com.apple.UserNotificationCenter[206]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:30:57 Macintosh /Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/NortonMissedTasks[47 ]: uid 501 already done
    Sep 2 16:31:00 Macintosh quicklookd[181]: quicklookd(181,0xa090c820) malloc: * error for object 0xa1b1c1d3: pointer being freed was not allocated
    Sep 2 16:31:01: --- last message repeated 1 time ---
    Sep 2 16:31:00 Macintosh com.apple.quicklook[181]: quicklookd(181,0xa090c820) malloc: * error for object 0xa1b1c1d3: pointer being freed was not allocated
    Sep 2 16:31:31: --- last message repeated 1 time ---
    Sep 2 16:34:46 Macintosh kernel[0]: { 41 910440} UniNEnet::restartReceiver
    Sep 2 16:37:29 Macintosh login[224]: USER_PROCESS: 224 ttys000
    Sep 2 16:37:29 Macintosh Terminal[223]: Terminal(223,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:37:29: --- last message repeated 1 time ---
    Sep 2 16:37:29 Macintosh [0x0-0x1f01f].com.apple.Terminal[223]: Terminal(223,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:37:29 Macintosh [0x0-0x1f01f].com.apple.Terminal[223]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:37:29 Macintosh [0x0-0x1f01f].com.apple.Terminal[223]: Terminal(223,0xa090c820) malloc: * error for object 0xa1b1c1d3: Non-aligned pointer being freed
    Sep 2 16:37:29 Macintosh [0x0-0x1f01f].com.apple.Terminal[223]: * set a breakpoint in mallocerrorbreak to debug
    Sep 2 16:37:34 Macintosh login[224]: DEAD_PROCESS: 224 ttys000
    Sep 2 16:38:14 Macintosh kernel[0]: { 41 910440} UniNEnet::restartReceiver
    Sep 2 16:39:17 Macintosh kernel[0]: { 41 910440} UniNEnet::restartReceiver
    Thanks for any help
    George

    Hi Tranchedevie
    First thanks for your help, below is a small part of the system log from before I tried to shut down to when I restarted the next day, I hope it gives you some clue as to what is wrong.
    Sep 15 19:25:42 Macintosh kernel[0]: Resetting IOCatalogue.
    Sep 15 19:25:42 Macintosh kextd[12]: 0 cached, 434 uncached personalities to catalog
    Sep 15 19:25:45 Macintosh kernel[0]: Matching service count = 1
    Sep 15 19:25:45 Macintosh kernel[0]: PowerMac7,3: stalling for module
    Sep 15 19:25:45 Macintosh kernel[0]: Matching service count = 1
    Sep 15 19:26:03 Macintosh com.apple.dyld[5709]: updatedyld_sharedcache[5709] regenerated cache for arch=ppc
    Sep 15 19:26:11 Macintosh 1PasswordAgent[141]: Shutting down 1PasswordAgent 2.9.31 #7574 built Aug 30 2009 15:23:28
    Sep 15 19:26:15 Macintosh loginwindow[32]: DEAD_PROCESS: 0 console
    Sep 15 19:26:16 Macintosh com.apple.loginwindow[32]: shutdown: / is busy updating; waiting for lock
    Sep 15 19:26:16 Macintosh kextd[12]: '/' updating, delaying reboot
    Sep 15 19:26:16 Macintosh com.apple.launchd[1] (org.postfix.master): Failed to count the number of files in "/var/spool/postfix/maildrop": No such file or directory
    Sep 15 19:26:22: --- last message repeated 1 time ---
    Sep 15 19:26:22 Macintosh shutdown[5722]: reboot by georgehilton:
    Sep 15 19:26:22 Macintosh com.apple.loginwindow[32]: Shutdown NOW!
    Sep 15 19:26:22 Macintosh mDNSResponder mDNSResponder-176.3 (Jun 17 2009 18:57:52)[31]: stopping
    Sep 15 19:26:22 Macintosh com.apple.loginwindow[32]: System shutdown time has arrived^G^G
    Sep 15 19:26:22 Macintosh shutdown[5722]: SHUTDOWN_TIME: 1253035582 188995
    Sep 15 19:26:22 Macintosh com.apple.SystemStarter[25]: Stopping XtraView USB Startup
    Sep 16 08:49:59 localhost com.apple.launchctl.System[2]: /dev/disk0s3 on / (hfs, local, journaled)

  • Nginx + php-fpm problem

    Hello there.
    I just setup nginx with mysql and php-fpm to my archlinux install and i need help.
    i checked all over internet and try every solution, none still work.
    i have a blank page problem
    this is working correctly:
    <?php
    phpinfo();
    ?>
    short tags are enabled and php short tags are also working.
    i try to install phpbb, the install page load, once the install done.. blank page.
    i tryed a working backup of phpbb from my old server.. blank page, same with my phpnuke backup, blank page.
    i tryed chown to root:root and http:http, and chmod rwx for group user and other, i dont think it is a permission problem.
    Probably a little stupid error on my end but i can't find it, i tryed everything.
    my nginx.cong
    #user html;
    worker_processes 1;
    #error_log logs/error.log;
    #error_log logs/error.log notice;
    #error_log logs/error.log info;
    #pid logs/nginx.pid;
    events {
    worker_connections 1024;
    http {
    include mime.types;
    default_type application/octet-stream;
    #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
    # '$status $body_bytes_sent "$http_referer" '
    # '"$http_user_agent" "$http_x_forwarded_for"';
    #access_log logs/access.log main;
    sendfile on;
    #tcp_nopush on;
    #keepalive_timeout 0;
    keepalive_timeout 65;
    #gzip on;
    server {
    listen 80;
    server_name localhost;
    #charset koi8-r;
    #access_log logs/host.access.log main;
    location / {
    root /usr/share/nginx/html;
    index index.html index.htm;
    #error_page 404 /404.html;
    # redirect server error pages to the static page /50x.html
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
    root /usr/share/nginx/html;
    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #location ~ \.php$ {
    # proxy_pass http://127.0.0.1;
    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #location ~ \.php$ {
    # root html;
    # fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
    # fastcgi_index index.php;
    # fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    # include fastcgi_params;
    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #location ~ /\.ht {
    # deny all;
    # another virtual host using mix of IP-, name-, and port-based configuration
    #server {
    # listen 8000;
    # listen somename:8080;
    # server_name somename alias another.alias;
    # location / {
    # root html;
    # index index.html index.htm;
    server {
    listen 80;
    listen clan-ws.net:80;
    server_name clan-ws.net www.clan-ws.net;
    autoindex on;
    root /srv/http/;
    index index.html index.htm index.php;
    location ~ \.php$ {
    #fastcgi_pass 127.0.0.1:9000;
    fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
    fastcgi_index index.php;
    # include fastcgi.conf;
    include fastcgi_params;
    # include /etc/nginx/fastcgi_params;
    # HTTPS server
    #server {
    # listen 443;
    # server_name localhost;
    # ssl on;
    # ssl_certificate cert.pem;
    # ssl_certificate_key cert.key;
    # ssl_session_timeout 5m;
    # ssl_protocols SSLv2 SSLv3 TLSv1;
    # ssl_ciphers HIGH:!aNULL:!MD5;
    # ssl_prefer_server_ciphers on;
    # location / {
    # root html;
    # index index.html index.htm;
    php-fpm.conf
    ; FPM Configuration ;
    ; All relative paths in this configuration file are relative to PHP's install
    ; prefix (/usr). This prefix can be dynamicaly changed by using the
    ; '-p' argument from the command line.
    ; Include one or more files. If glob(3) exists, it is used to include a bunch of
    ; files from a glob(3) pattern. This directive can be used everywhere in the
    ; file.
    ; Relative path can also be used. They will be prefixed by:
    ; - the global prefix if it's been set (-p arguement)
    ; - /usr otherwise
    ;include=/etc/php/fpm.d/*.conf
    ; Global Options ;
    [global]
    ; Pid file
    ; Note: the default prefix is /var
    ; Default Value: none
    pid = /run/php-fpm/php-fpm.pid
    ; Error log file
    ; If it's set to "syslog", log is sent to syslogd instead of being written
    ; in a local file.
    ; Note: the default prefix is /var
    ; Default Value: log/php-fpm.log
    ;error_log = log/php-fpm.log
    ; syslog_facility is used to specify what type of program is logging the
    ; message. This lets syslogd specify that messages from different facilities
    ; will be handled differently.
    ; See syslog(3) for possible values (ex daemon equiv LOG_DAEMON)
    ; Default Value: daemon
    ;syslog.facility = daemon
    ; syslog_ident is prepended to every message. If you have multiple FPM
    ; instances running on the same server, you can change the default value
    ; which must suit common needs.
    ; Default Value: php-fpm
    ;syslog.ident = php-fpm
    ; Log level
    ; Possible Values: alert, error, warning, notice, debug
    ; Default Value: notice
    ;log_level = notice
    ; If this number of child processes exit with SIGSEGV or SIGBUS within the time
    ; interval set by emergency_restart_interval then FPM will restart. A value
    ; of '0' means 'Off'.
    ; Default Value: 0
    ;emergency_restart_threshold = 0
    ; Interval of time used by emergency_restart_interval to determine when
    ; a graceful restart will be initiated. This can be useful to work around
    ; accidental corruptions in an accelerator's shared memory.
    ; Available Units: s(econds), m(inutes), h(ours), or d(ays)
    ; Default Unit: seconds
    ; Default Value: 0
    ;emergency_restart_interval = 0
    ; Time limit for child processes to wait for a reaction on signals from master.
    ; Available units: s(econds), m(inutes), h(ours), or d(ays)
    ; Default Unit: seconds
    ; Default Value: 0
    ;process_control_timeout = 0
    ; The maximum number of processes FPM will fork. This has been design to control
    ; the global number of processes when using dynamic PM within a lot of pools.
    ; Use it with caution.
    ; Note: A value of 0 indicates no limit
    ; Default Value: 0
    ; process.max = 128
    ; Specify the nice(2) priority to apply to the master process (only if set)
    ; The value can vary from -19 (highest priority) to 20 (lower priority)
    ; Note: - It will only work if the FPM master process is launched as root
    ; - The pool process will inherit the master process priority
    ; unless it specified otherwise
    ; Default Value: no set
    ; process.priority = -19
    ; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.
    ; Default Value: yes
    ;daemonize = yes
    ; Set open file descriptor rlimit for the master process.
    ; Default Value: system defined value
    ;rlimit_files = 1024
    ; Set max core size rlimit for the master process.
    ; Possible Values: 'unlimited' or an integer greater or equal to 0
    ; Default Value: system defined value
    ;rlimit_core = 0
    ; Specify the event mechanism FPM will use. The following is available:
    ; - select (any POSIX os)
    ; - poll (any POSIX os)
    ; - epoll (linux >= 2.5.44)
    ; - kqueue (FreeBSD >= 4.1, OpenBSD >= 2.9, NetBSD >= 2.0)
    ; - /dev/poll (Solaris >= 7)
    ; - port (Solaris >= 10)
    ; Default Value: not set (auto detection)
    ;events.mechanism = epoll
    ; When FPM is build with systemd integration, specify the interval,
    ; in second, between health report notification to systemd.
    ; Set to 0 to disable.
    ; Available Units: s(econds), m(inutes), h(ours)
    ; Default Unit: seconds
    ; Default value: 10
    ;systemd_interval = 10
    ; Pool Definitions ;
    ; Multiple pools of child processes may be started with different listening
    ; ports and different management options. The name of the pool will be
    ; used in logs and stats. There is no limitation on the number of pools which
    ; FPM can handle. Your system will tell you anyway :)
    ; Start a new pool named 'www'.
    ; the variable $pool can we used in any directive and will be replaced by the
    ; pool name ('www' here)
    [www]
    ; Per pool prefix
    ; It only applies on the following directives:
    ; - 'slowlog'
    ; - 'listen' (unixsocket)
    ; - 'chroot'
    ; - 'chdir'
    ; - 'php_values'
    ; - 'php_admin_values'
    ; When not set, the global prefix (or /usr) applies instead.
    ; Note: This directive can also be relative to the global prefix.
    ; Default Value: none
    ;prefix = /path/to/pools/$pool
    ; Unix user/group of processes
    ; Note: The user is mandatory. If the group is not set, the default user's group
    ; will be used.
    user = http
    group = http
    ; The address on which to accept FastCGI requests.
    ; Valid syntaxes are:
    ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific address on
    ; a specific port;
    ; 'port' - to listen on a TCP socket to all addresses on a
    ; specific port;
    ; '/path/to/unix/socket' - to listen on a unix socket.
    ; Note: This value is mandatory.
    ;listen = 127.0.0.1:9000
    listen = /run/php-fpm/php-fpm.sock
    ; Set listen(2) backlog.
    ; Default Value: 128 (-1 on FreeBSD and OpenBSD)
    ;listen.backlog = 128
    ; Set permissions for unix socket, if one is used. In Linux, read/write
    ; permissions must be set in order to allow connections from a web server. Many
    ; BSD-derived systems allow connections regardless of permissions.
    ; Default Values: user and group are set as the running user
    ; mode is set to 0666
    listen.owner = http
    listen.group = http
    listen.mode = 0660
    ; List of ipv4 addresses of FastCGI clients which are allowed to connect.
    ; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original
    ; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address
    ; must be separated by a comma. If this value is left blank, connections will be
    ; accepted from any ip address.
    ; Default Value: any
    ;listen.allowed_clients = 127.0.0.1
    ; Specify the nice(2) priority to apply to the pool processes (only if set)
    ; The value can vary from -19 (highest priority) to 20 (lower priority)
    ; Note: - It will only work if the FPM master process is launched as root
    ; - The pool processes will inherit the master process priority
    ; unless it specified otherwise
    ; Default Value: no set
    ; priority = -19
    ; Choose how the process manager will control the number of child processes.
    ; Possible Values:
    ; static - a fixed number (pm.max_children) of child processes;
    ; dynamic - the number of child processes are set dynamically based on the
    ; following directives. With this process management, there will be
    ; always at least 1 children.
    ; pm.max_children - the maximum number of children that can
    ; be alive at the same time.
    ; pm.start_servers - the number of children created on startup.
    ; pm.min_spare_servers - the minimum number of children in 'idle'
    ; state (waiting to process). If the number
    ; of 'idle' processes is less than this
    ; number then some children will be created.
    ; pm.max_spare_servers - the maximum number of children in 'idle'
    ; state (waiting to process). If the number
    ; of 'idle' processes is greater than this
    ; number then some children will be killed.
    ; ondemand - no children are created at startup. Children will be forked when
    ; new requests will connect. The following parameter are used:
    ; pm.max_children - the maximum number of children that
    ; can be alive at the same time.
    ; pm.process_idle_timeout - The number of seconds after which
    ; an idle process will be killed.
    ; Note: This value is mandatory.
    pm = dynamic
    ; The number of child processes to be created when pm is set to 'static' and the
    ; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.
    ; This value sets the limit on the number of simultaneous requests that will be
    ; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
    ; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
    ; CGI. The below defaults are based on a server without much resources. Don't
    ; forget to tweak pm.* to fit your needs.
    ; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand'
    ; Note: This value is mandatory.
    pm.max_children = 5
    ; The number of child processes created on startup.
    ; Note: Used only when pm is set to 'dynamic'
    ; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
    pm.start_servers = 2
    ; The desired minimum number of idle server processes.
    ; Note: Used only when pm is set to 'dynamic'
    ; Note: Mandatory when pm is set to 'dynamic'
    pm.min_spare_servers = 1
    ; The desired maximum number of idle server processes.
    ; Note: Used only when pm is set to 'dynamic'
    ; Note: Mandatory when pm is set to 'dynamic'
    pm.max_spare_servers = 3
    ; The number of seconds after which an idle process will be killed.
    ; Note: Used only when pm is set to 'ondemand'
    ; Default Value: 10s
    ;pm.process_idle_timeout = 10s;
    ; The number of requests each child process should execute before respawning.
    ; This can be useful to work around memory leaks in 3rd party libraries. For
    ; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
    ; Default Value: 0
    ;pm.max_requests = 500
    ; The URI to view the FPM status page. If this value is not set, no URI will be
    ; recognized as a status page. It shows the following informations:
    ; pool - the name of the pool;
    ; process manager - static, dynamic or ondemand;
    ; start time - the date and time FPM has started;
    ; start since - number of seconds since FPM has started;
    ; accepted conn - the number of request accepted by the pool;
    ; listen queue - the number of request in the queue of pending
    ; connections (see backlog in listen(2));
    ; max listen queue - the maximum number of requests in the queue
    ; of pending connections since FPM has started;
    ; listen queue len - the size of the socket queue of pending connections;
    ; idle processes - the number of idle processes;
    ; active processes - the number of active processes;
    ; total processes - the number of idle + active processes;
    ; max active processes - the maximum number of active processes since FPM
    ; has started;
    ; max children reached - number of times, the process limit has been reached,
    ; when pm tries to start more children (works only for
    ; pm 'dynamic' and 'ondemand');
    ; Value are updated in real time.
    ; Example output:
    ; pool: www
    ; process manager: static
    ; start time: 01/Jul/2011:17:53:49 +0200
    ; start since: 62636
    ; accepted conn: 190460
    ; listen queue: 0
    ; max listen queue: 1
    ; listen queue len: 42
    ; idle processes: 4
    ; active processes: 11
    ; total processes: 15
    ; max active processes: 12
    ; max children reached: 0
    ; By default the status page output is formatted as text/plain. Passing either
    ; 'html', 'xml' or 'json' in the query string will return the corresponding
    ; output syntax. Example:
    ; http://www.foo.bar/status
    ; http://www.foo.bar/status?json
    ; http://www.foo.bar/status?html
    ; http://www.foo.bar/status?xml
    ; By default the status page only outputs short status. Passing 'full' in the
    ; query string will also return status for each pool process.
    ; Example:
    ; http://www.foo.bar/status?full
    ; http://www.foo.bar/status?json&full
    ; http://www.foo.bar/status?html&full
    ; http://www.foo.bar/status?xml&full
    ; The Full status returns for each process:
    ; pid - the PID of the process;
    ; state - the state of the process (Idle, Running, ...);
    ; start time - the date and time the process has started;
    ; start since - the number of seconds since the process has started;
    ; requests - the number of requests the process has served;
    ; request duration - the duration in µs of the requests;
    ; request method - the request method (GET, POST, ...);
    ; request URI - the request URI with the query string;
    ; content length - the content length of the request (only with POST);
    ; user - the user (PHP_AUTH_USER) (or '-' if not set);
    ; script - the main script called (or '-' if not set);
    ; last request cpu - the %cpu the last request consumed
    ; it's always 0 if the process is not in Idle state
    ; because CPU calculation is done when the request
    ; processing has terminated;
    ; last request memory - the max amount of memory the last request consumed
    ; it's always 0 if the process is not in Idle state
    ; because memory calculation is done when the request
    ; processing has terminated;
    ; If the process is in Idle state, then informations are related to the
    ; last request the process has served. Otherwise informations are related to
    ; the current request being served.
    ; Example output:
    ; pid: 31330
    ; state: Running
    ; start time: 01/Jul/2011:17:53:49 +0200
    ; start since: 63087
    ; requests: 12808
    ; request duration: 1250261
    ; request method: GET
    ; request URI: /test_mem.php?N=10000
    ; content length: 0
    ; user: -
    ; script: /home/fat/web/docs/php/test_mem.php
    ; last request cpu: 0.00
    ; last request memory: 0
    ; Note: There is a real-time FPM status monitoring sample web page available
    ; It's available in: ${prefix}/share/fpm/status.html
    ; Note: The value must start with a leading slash (/). The value can be
    ; anything, but it may not be a good idea to use the .php extension or it
    ; may conflict with a real PHP file.
    ; Default Value: not set
    ;pm.status_path = /status
    ; The ping URI to call the monitoring page of FPM. If this value is not set, no
    ; URI will be recognized as a ping page. This could be used to test from outside
    ; that FPM is alive and responding, or to
    ; - create a graph of FPM availability (rrd or such);
    ; - remove a server from a group if it is not responding (load balancing);
    ; - trigger alerts for the operating team (24/7).
    ; Note: The value must start with a leading slash (/). The value can be
    ; anything, but it may not be a good idea to use the .php extension or it
    ; may conflict with a real PHP file.
    ; Default Value: not set
    ;ping.path = /ping
    ; This directive may be used to customize the response of a ping request. The
    ; response is formatted as text/plain with a 200 response code.
    ; Default Value: pong
    ;ping.response = pong
    ; The access log file
    ; Default: not set
    ;access.log = log/$pool.access.log
    ; The access log format.
    ; The following syntax is allowed
    ; %%: the '%' character
    ; %C: %CPU used by the request
    ; it can accept the following format:
    ; - %{user}C for user CPU only
    ; - %{system}C for system CPU only
    ; - %{total}C for user + system CPU (default)
    ; %d: time taken to serve the request
    ; it can accept the following format:
    ; - %{seconds}d (default)
    ; - %{miliseconds}d
    ; - %{mili}d
    ; - %{microseconds}d
    ; - %{micro}d
    ; %e: an environment variable (same as $_ENV or $_SERVER)
    ; it must be associated with embraces to specify the name of the env
    ; variable. Some exemples:
    ; - server specifics like: %{REQUEST_METHOD}e or %{SERVER_PROTOCOL}e
    ; - HTTP headers like: %{HTTP_HOST}e or %{HTTP_USER_AGENT}e
    ; %f: script filename
    ; %l: content-length of the request (for POST request only)
    ; %m: request method
    ; %M: peak of memory allocated by PHP
    ; it can accept the following format:
    ; - %{bytes}M (default)
    ; - %{kilobytes}M
    ; - %{kilo}M
    ; - %{megabytes}M
    ; - %{mega}M
    ; %n: pool name
    ; %o: ouput header
    ; it must be associated with embraces to specify the name of the header:
    ; - %{Content-Type}o
    ; - %{X-Powered-By}o
    ; - %{Transfert-Encoding}o
    ; %p: PID of the child that serviced the request
    ; %P: PID of the parent of the child that serviced the request
    ; %q: the query string
    ; %Q: the '?' character if query string exists
    ; %r: the request URI (without the query string, see %q and %Q)
    ; %R: remote IP address
    ; %s: status (response code)
    ; %t: server time the request was received
    ; it can accept a strftime(3) format:
    ; %d/%b/%Y:%H:%M:%S %z (default)
    ; %T: time the log has been written (the request has finished)
    ; it can accept a strftime(3) format:
    ; %d/%b/%Y:%H:%M:%S %z (default)
    ; %u: remote user
    ; Default: "%R - %u %t \"%m %r\" %s"
    ;access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%"
    ; The log file for slow requests
    ; Default Value: not set
    ; Note: slowlog is mandatory if request_slowlog_timeout is set
    ;slowlog = log/$pool.log.slow
    ; The timeout for serving a single request after which a PHP backtrace will be
    ; dumped to the 'slowlog' file. A value of '0s' means 'off'.
    ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
    ; Default Value: 0
    ;request_slowlog_timeout = 0
    ; The timeout for serving a single request after which the worker process will
    ; be killed. This option should be used when the 'max_execution_time' ini option
    ; does not stop script execution for some reason. A value of '0' means 'off'.
    ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
    ; Default Value: 0
    ;request_terminate_timeout = 0
    ; Set open file descriptor rlimit.
    ; Default Value: system defined value
    ;rlimit_files = 1024
    ; Set max core size rlimit.
    ; Possible Values: 'unlimited' or an integer greater or equal to 0
    ; Default Value: system defined value
    ;rlimit_core = 0
    ; Chroot to this directory at the start. This value must be defined as an
    ; absolute path. When this value is not set, chroot is not used.
    ; Note: you can prefix with '$prefix' to chroot to the pool prefix or one
    ; of its subdirectories. If the pool prefix is not set, the global prefix
    ; will be used instead.
    ; Note: chrooting is a great security feature and should be used whenever
    ; possible. However, all PHP paths will be relative to the chroot
    ; (error_log, sessions.save_path, ...).
    ; Default Value: not set
    ;chroot =
    ; Chdir to this directory at the start.
    ; Note: relative path can be used.
    ; Default Value: current directory or / when chroot
    ;chdir = /srv/http
    ; Redirect worker stdout and stderr into main error log. If not set, stdout and
    ; stderr will be redirected to /dev/null according to FastCGI specs.
    ; Note: on highloaded environement, this can cause some delay in the page
    ; process time (several ms).
    ; Default Value: no
    ;catch_workers_output = yes
    ; Limits the extensions of the main script FPM will allow to parse. This can
    ; prevent configuration mistakes on the web server side. You should only limit
    ; FPM to .php extensions to prevent malicious users to use other extensions to
    ; exectute php code.
    ; Note: set an empty value to allow all extensions.
    ; Default Value: .php
    ;security.limit_extensions = .php .php3 .php4 .php5
    ; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from
    ; the current environment.
    ; Default Value: clean env
    ;env[HOSTNAME] = $HOSTNAME
    ;env[PATH] = /usr/local/bin:/usr/bin:/bin
    ;env[TMP] = /tmp
    ;env[TMPDIR] = /tmp
    ;env[TEMP] = /tmp
    ; Additional php.ini defines, specific to this pool of workers. These settings
    ; overwrite the values previously defined in the php.ini. The directives are the
    ; same as the PHP SAPI:
    ; php_value/php_flag - you can set classic ini defines which can
    ; be overwritten from PHP call 'ini_set'.
    ; php_admin_value/php_admin_flag - these directives won't be overwritten by
    ; PHP call 'ini_set'
    ; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.
    ; Defining 'extension' will load the corresponding shared extension from
    ; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
    ; overwrite previously defined php.ini values, but will append the new value
    ; instead.
    ; Note: path INI options can be relative and will be expanded with the prefix
    ; (pool, global or /usr)
    ; Default Value: nothing is defined by default except the values in php.ini and
    ; specified at startup with the -d argument
    ;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f [email protected]
    ;php_flag[display_errors] = off
    ;php_admin_value[error_log] = /var/log/fpm-php.www.log
    ;php_admin_flag[log_errors] = on
    ;php_admin_value[memory_limit] = 32M
    php.ini
    [PHP]
    ; About php.ini ;
    ; PHP's initialization file, generally called php.ini, is responsible for
    ; configuring many of the aspects of PHP's behavior.
    ; PHP attempts to find and load this configuration from a number of locations.
    ; The following is a summary of its search order:
    ; 1. SAPI module specific location.
    ; 2. The PHPRC environment variable. (As of PHP 5.2.0)
    ; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
    ; 4. Current working directory (except CLI)
    ; 5. The web server's directory (for SAPI modules), or directory of PHP
    ; (otherwise in Windows)
    ; 6. The directory from the --with-config-file-path compile time option, or the
    ; Windows directory (C:\windows or C:\winnt)
    ; See the PHP docs for more specific information.
    ; http://php.net/configuration.file
    ; The syntax of the file is extremely simple. Whitespace and lines
    ; beginning with a semicolon are silently ignored (as you probably guessed).
    ; Section headers (e.g. [Foo]) are also silently ignored, even though
    ; they might mean something in the future.
    ; Directives following the section heading [PATH=/www/mysite] only
    ; apply to PHP files in the /www/mysite directory. Directives
    ; following the section heading [HOST=www.example.com] only apply to
    ; PHP files served from www.example.com. Directives set in these
    ; special sections cannot be overridden by user-defined INI files or
    ; at runtime. Currently, [PATH=] and [HOST=] sections only work under
    ; CGI/FastCGI.
    ; http://php.net/ini.sections
    ; Directives are specified using the following syntax:
    ; directive = value
    ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
    ; Directives are variables used to configure PHP or PHP extensions.
    ; There is no name validation. If PHP can't find an expected
    ; directive because it is not set or is mistyped, a default value will be used.
    ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
    ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
    ; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
    ; previously set variable or directive (e.g. ${foo})
    ; Expressions in the INI file are limited to bitwise operators and parentheses:
    ; | bitwise OR
    ; ^ bitwise XOR
    ; & bitwise AND
    ; ~ bitwise NOT
    ; ! boolean NOT
    ; Boolean flags can be turned on using the values 1, On, True or Yes.
    ; They can be turned off using the values 0, Off, False or No.
    ; An empty string can be denoted by simply not writing anything after the equal
    ; sign, or by using the None keyword:
    ; foo = ; sets foo to an empty string
    ; foo = None ; sets foo to an empty string
    ; foo = "None" ; sets foo to the string 'None'
    ; If you use constants in your value, and these constants belong to a
    ; dynamically loaded extension (either a PHP extension or a Zend extension),
    ; you may only use these constants *after* the line that loads the extension.
    ; About this file ;
    ; PHP comes packaged with two INI files. One that is recommended to be used
    ; in production environments and one that is recommended to be used in
    ; development environments.
    ; php.ini-production contains settings which hold security, performance and
    ; best practices at its core. But please be aware, these settings may break
    ; compatibility with older or less security conscience applications. We
    ; recommending using the production ini in production and testing environments.
    ; php.ini-development is very similar to its production variant, except it's
    ; much more verbose when it comes to errors. We recommending using the
    ; development version only in development environments as errors shown to
    ; application users can inadvertently leak otherwise secure information.
    ; Quick Reference ;
    ; The following are all the settings which are different in either the production
    ; or development versions of the INIs with respect to PHP's default behavior.
    ; Please see the actual settings later in the document for more details as to why
    ; we recommend these changes in PHP's behavior.
    ; display_errors
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; display_startup_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; error_reporting
    ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
    ; Development Value: E_ALL
    ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; html_errors
    ; Default Value: On
    ; Development Value: On
    ; Production value: On
    ; log_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: On
    ; max_input_time
    ; Default Value: -1 (Unlimited)
    ; Development Value: 60 (60 seconds)
    ; Production Value: 60 (60 seconds)
    ; output_buffering
    ; Default Value: Off
    ; Development Value: 4096
    ; Production Value: 4096
    ; register_argc_argv
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; request_order
    ; Default Value: None
    ; Development Value: "GP"
    ; Production Value: "GP"
    ; session.bug_compat_42
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; session.bug_compat_warn
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; session.gc_divisor
    ; Default Value: 100
    ; Development Value: 1000
    ; Production Value: 1000
    ; session.hash_bits_per_character
    ; Default Value: 4
    ; Development Value: 5
    ; Production Value: 5
    ; short_open_tag
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; track_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; url_rewriter.tags
    ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
    ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; variables_order
    ; Default Value: "EGPCS"
    ; Development Value: "GPCS"
    ; Production Value: "GPCS"
    ; php.ini Options ;
    ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
    ;user_ini.filename = ".user.ini"
    ; To disable this feature set this option to empty value
    ;user_ini.filename =
    ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
    ;user_ini.cache_ttl = 300
    ; Language Options ;
    ; Enable the PHP scripting language engine under Apache.
    ; http://php.net/engine
    engine = On
    ; This directive determines whether or not PHP will recognize code between
    ; <? and ?> tags as PHP source which should be processed as such. It's been
    ; recommended for several years that you not use the short tag "short cut" and
    ; instead to use the full <?php and ?> tag combination. With the wide spread use
    ; of XML and use of these tags by other languages, the server can become easily
    ; confused and end up parsing the wrong code in the wrong context. But because
    ; this short cut has been a feature for such a long time, it's currently still
    ; supported for backwards compatibility, but we recommend you don't use them.
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/short-open-tag
    short_open_tag = On
    ; Allow ASP-style <% %> tags.
    ; http://php.net/asp-tags
    asp_tags = Off
    ; The number of significant digits displayed in floating point numbers.
    ; http://php.net/precision
    precision = 14
    ; Output buffering is a mechanism for controlling how much output data
    ; (excluding headers and cookies) PHP should keep internally before pushing that
    ; data to the client. If your application's output exceeds this setting, PHP
    ; will send that data in chunks of roughly the size you specify.
    ; Turning on this setting and managing its maximum buffer size can yield some
    ; interesting side-effects depending on your application and web server.
    ; You may be able to send headers and cookies after you've already sent output
    ; through print or echo. You also may see performance benefits if your server is
    ; emitting less packets due to buffered output versus PHP streaming the output
    ; as it gets it. On production servers, 4096 bytes is a good setting for performance
    ; reasons.
    ; Note: Output buffering can also be controlled via Output Buffering Control
    ; functions.
    ; Possible Values:
    ; On = Enabled and buffer is unlimited. (Use with caution)
    ; Off = Disabled
    ; Integer = Enables the buffer and sets its maximum size in bytes.
    ; Note: This directive is hardcoded to Off for the CLI SAPI
    ; Default Value: Off
    ; Development Value: 4096
    ; Production Value: 4096
    ; http://php.net/output-buffering
    output_buffering = 4096
    ; You can redirect all of the output of your scripts to a function. For
    ; example, if you set output_handler to "mb_output_handler", character
    ; encoding will be transparently converted to the specified encoding.
    ; Setting any output handler automatically turns on output buffering.
    ; Note: People who wrote portable scripts should not depend on this ini
    ; directive. Instead, explicitly set the output handler using ob_start().
    ; Using this ini directive may cause problems unless you know what script
    ; is doing.
    ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
    ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
    ; Note: output_handler must be empty if this is set 'On' !!!!
    ; Instead you must use zlib.output_handler.
    ; http://php.net/output-handler
    ;output_handler =
    ; Transparent output compression using the zlib library
    ; Valid values for this option are 'off', 'on', or a specific buffer size
    ; to be used for compression (default is 4KB)
    ; Note: Resulting chunk size may vary due to nature of compression. PHP
    ; outputs chunks that are few hundreds bytes each as a result of
    ; compression. If you prefer a larger chunk size for better
    ; performance, enable output_buffering in addition.
    ; Note: You need to use zlib.output_handler instead of the standard
    ; output_handler, or otherwise the output will be corrupted.
    ; http://php.net/zlib.output-compression
    zlib.output_compression = Off
    ; http://php.net/zlib.output-compression-level
    ;zlib.output_compression_level = -1
    ; You cannot specify additional output handlers if zlib.output_compression
    ; is activated here. This setting does the same as output_handler but in
    ; a different order.
    ; http://php.net/zlib.output-handler
    ;zlib.output_handler =
    ; Implicit flush tells PHP to tell the output layer to flush itself
    ; automatically after every output block. This is equivalent to calling the
    ; PHP function flush() after each and every call to print() or echo() and each
    ; and every HTML block. Turning this option on has serious performance
    ; implications and is generally recommended for debugging purposes only.
    ; http://php.net/implicit-flush
    ; Note: This directive is hardcoded to On for the CLI SAPI
    implicit_flush = Off
    ; The unserialize callback function will be called (with the undefined class'
    ; name as parameter), if the unserializer finds an undefined class
    ; which should be instantiated. A warning appears if the specified function is
    ; not defined, or if the function doesn't include/implement the missing class.
    ; So only set this entry, if you really want to implement such a
    ; callback-function.
    unserialize_callback_func =
    ; When floats & doubles are serialized store serialize_precision significant
    ; digits after the floating point. The default value ensures that when floats
    ; are decoded with unserialize, the data will remain the same.
    serialize_precision = 17
    ; open_basedir, if set, limits all file operations to the defined directory
    ; and below. This directive makes most sense if used in a per-directory
    ; or per-virtualhost web server configuration file. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ; http://php.net/open-basedir
    open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/
    ; This directive allows you to disable certain functions for security reasons.
    ; It receives a comma-delimited list of function names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ; http://php.net/disable-functions
    disable_functions =
    ; This directive allows you to disable certain classes for security reasons.
    ; It receives a comma-delimited list of class names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ; http://php.net/disable-classes
    disable_classes =
    ; Colors for Syntax Highlighting mode. Anything that's acceptable in
    ; <span style="color: ???????"> would work.
    ; http://php.net/syntax-highlighting
    ;highlight.string = #DD0000
    ;highlight.comment = #FF9900
    ;highlight.keyword = #007700
    ;highlight.default = #0000BB
    ;highlight.html = #000000
    ; If enabled, the request will be allowed to complete even if the user aborts
    ; the request. Consider enabling it if executing long requests, which may end up
    ; being interrupted by the user or a browser timing out. PHP's default behavior
    ; is to disable this feature.
    ; http://php.net/ignore-user-abort
    ;ignore_user_abort = On
    ; Determines the size of the realpath cache to be used by PHP. This value should
    ; be increased on systems where PHP opens many files to reflect the quantity of
    ; the file operations performed.
    ; http://php.net/realpath-cache-size
    ;realpath_cache_size = 16k
    ; Duration of time, in seconds for which to cache realpath information for a given
    ; file or directory. For systems with rarely changing files, consider increasing this
    ; value.
    ; http://php.net/realpath-cache-ttl
    ;realpath_cache_ttl = 120
    ; Enables or disables the circular reference collector.
    ; http://php.net/zend.enable-gc
    zend.enable_gc = On
    ; If enabled, scripts may be written in encodings that are incompatible with
    ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
    ; encodings. To use this feature, mbstring extension must be enabled.
    ; Default: Off
    ;zend.multibyte = Off
    ; Allows to set the default encoding for the scripts. This value will be used
    ; unless "declare(encoding=...)" directive appears at the top of the script.
    ; Only affects if zend.multibyte is set.
    ; Default: ""
    ;zend.script_encoding =
    ; Miscellaneous ;
    ; Decides whether PHP may expose the fact that it is installed on the server
    ; (e.g. by adding its signature to the Web server header). It is no security
    ; threat in any way, but it makes it possible to determine whether you use PHP
    ; on your server or not.
    ; http://php.net/expose-php
    expose_php = On
    ; Resource Limits ;
    ; Maximum execution time of each script, in seconds
    ; http://php.net/max-execution-time
    ; Note: This directive is hardcoded to 0 for the CLI SAPI
    max_execution_time = 30
    ; Maximum amount of time each script may spend parsing request data. It's a good
    ; idea to limit this time on productions servers in order to eliminate unexpectedly
    ; long running scripts.
    ; Note: This directive is hardcoded to -1 for the CLI SAPI
    ; Default Value: -1 (Unlimited)
    ; Development Value: 60 (60 seconds)
    ; Production Value: 60 (60 seconds)
    ; http://php.net/max-input-time
    max_input_time = 60
    ; Maximum input variable nesting level
    ; http://php.net/max-input-nesting-level
    ;max_input_nesting_level = 64
    ; How many GET/POST/COOKIE input variables may be accepted
    ; max_input_vars = 1000
    ; Maximum amount of memory a script may consume (128MB)
    ; http://php.net/memory-limit
    memory_limit = 128M
    ; Error handling and logging ;
    ; This directive informs PHP of which errors, warnings and notices you would like
    ; it to take action for. The recommended way of setting values for this
    ; directive is through the use of the error level constants and bitwise
    ; operators. The error level constants are below here for convenience as well as
    ; some common settings and their meanings.
    ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
    ; those related to E_NOTICE and E_STRICT, which together cover best practices and
    ; recommended coding standards in PHP. For performance reasons, this is the
    ; recommend error reporting setting. Your production server shouldn't be wasting
    ; resources complaining about best practices and coding standards. That's what
    ; development servers and development settings are for.
    ; Note: The php.ini-development file has this setting as E_ALL. This
    ; means it pretty much reports everything which is exactly what you want during
    ; development and early testing.
    ; Error Level Constants:
    ; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
    ; E_ERROR - fatal run-time errors
    ; E_RECOVERABLE_ERROR - almost fatal run-time errors
    ; E_WARNING - run-time warnings (non-fatal errors)
    ; E_PARSE - compile-time parse errors
    ; E_NOTICE - run-time notices (these are warnings which often result
    ; from a bug in your code, but it's possible that it was
    ; intentional (e.g., using an uninitialized variable and
    ; relying on the fact it's automatically initialized to an
    ; empty string)
    ; E_STRICT - run-time notices, enable to have PHP suggest changes
    ; to your code which will ensure the best interoperability
    ; and forward compatibility of your code
    ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
    ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
    ; initial startup
    ; E_COMPILE_ERROR - fatal compile-time errors
    ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
    ; E_USER_ERROR - user-generated error message
    ; E_USER_WARNING - user-generated warning message
    ; E_USER_NOTICE - user-generated notice message
    ; E_DEPRECATED - warn about code that will not work in future versions
    ; of PHP
    ; E_USER_DEPRECATED - user-generated deprecation warnings
    ; Common Values:
    ; E_ALL (Show all errors, warnings and notices including coding standards.)
    ; E_ALL & ~E_NOTICE (Show all errors, except for notices)
    ; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
    ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
    ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
    ; Development Value: E_ALL
    ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; http://php.net/error-reporting
    error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; This directive controls whether or not and where PHP will output errors,
    ; notices and warnings too. Error output is very useful during development, but
    ; it could be very dangerous in production environments. Depending on the code
    ; which is triggering the error, sensitive information could potentially leak
    ; out of your application such as database usernames and passwords or worse.
    ; It's recommended that errors be logged on production servers rather than
    ; having the errors sent to STDOUT.
    ; Possible Values:
    ; Off = Do not display any errors
    ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
    ; On or stdout = Display errors to STDOUT
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/display-errors
    display_errors = Off
    ; The display of errors which occur during PHP's startup sequence are handled
    ; separately from display_errors. PHP's default behavior is to suppress those
    ; errors from clients. Turning the display of startup errors on can be useful in
    ; debugging configuration problems. But, it's strongly recommended that you
    ; leave this setting off on production servers.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/display-startup-errors
    display_startup_errors = Off
    ; Besides displaying errors, PHP can also log errors to locations such as a
    ; server-specific log, STDERR, or a location specified by the error_log
    ; directive found below. While errors should not be displayed on productions
    ; servers they should still be monitored and logging is a great way to do that.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: On
    ; http://php.net/log-errors
    log_errors = On
    ; Set maximum length of log_errors. In error_log information about the source is
    ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
    ; http://php.net/log-errors-max-len
    log_errors_max_len = 1024
    ; Do not log repeated messages. Repeated errors must occur in same file on same
    ; line unless ignore_repeated_source is set true.
    ; http://php.net/ignore-repeated-errors
    ignore_repeated_errors = Off
    ; Ignore source of message when ignoring repeated messages. When this setting
    ; is On you will not log errors with repeated messages from different files or
    ; source lines.
    ; http://php.net/ignore-repeated-source
    ignore_repeated_source = Off
    ; If this parameter is set to Off, then memory leaks will not be shown (on
    ; stdout or in the log). This has only effect in a debug compile, and if
    ; error reporting includes E_WARNING in the allowed list
    ; http://php.net/report-memleaks
    report_memleaks = On
    ; This setting is on by default.
    ;report_zend_debug = 0
    ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
    ; to On can assist in debugging and is appropriate for development servers. It should
    ; however be disabled on production servers.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/track-errors
    track_errors = Off
    ; Turn off normal error reporting and emit XML-RPC error XML
    ; http://php.net/xmlrpc-errors
    ;xmlrpc_errors = 0
    ; An XML-RPC faultCode
    ;xmlrpc_error_number = 0
    ; When PHP displays or logs an error, it has the capability of formatting the
    ; error message as HTML for easier reading. This directive controls whether
    ; the error message is formatted as HTML or not.
    ; Note: This directive is hardcoded to Off for the CLI SAPI
    ; Default Value: On
    ; Development Value: On
    ; Production value: On
    ; http://php.net/html-errors
    html_errors = On
    ; If html_errors is set to On *and* docref_root is not empty, then PHP
    ; produces clickable error messages that direct to a page describing the error
    ; or function causing the error in detail.
    ; You can download a copy of the PHP manual from http://php.net/docs
    ; and change docref_root to the base URL of your local copy including the
    ; leading '/'. You must also specify the file extension being used including
    ; the dot. PHP's default behavior is to leave these settings empty, in which
    ; case no links to documentation are generated.
    ; Note: Never use this feature for production boxes.
    ; http://php.net/docref-root
    ; Examples
    ;docref_root = "/phpmanual/"
    ; http://php.net/docref-ext
    ;docref_ext = .html
    ; String to output before an error message. PHP's default behavior is to leave
    ; this setting blank.
    ; http://php.net/error-prepend-string
    ; Example:
    ;error_prepend_string = "<span style='color: #ff0000'>"
    ; String to output after an error message. PHP's default behavior is to leave
    ; this setting blank.
    ; http://php.net/error-append-string
    ; Example:
    ;error_append_string = "</span>"
    ; Log errors to specified file. PHP's default behavior is to leave this value
    ; empty.
    ; http://php.net/error-log
    ; Example:
    ;error_log = php_errors.log
    ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
    ;error_log = syslog
    ;windows.show_crt_warning
    ; Default value: 0
    ; Development value: 0
    ; Production value: 0
    ; Data Handling ;
    ; The separator used in PHP generated URLs to separate arguments.
    ; PHP's default setting is "&".
    ; http://php.net/arg-separator.output
    ; Example:
    ;arg_separator.output = "&amp;"
    ; List of separator(s) used by PHP to parse input URLs into variables.
    ; PHP's default setting is "&".
    ; NOTE: Every character in this directive is considered as separator!
    ; http://php.net/arg-separator.input
    ; Example:
    ;arg_separator.input = ";&"
    ; This directive determines which super global arrays are registered when PHP
    ; starts up. G,P,C,E & S are abbreviations for the following respective super
    ; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
    ; paid for the registration of these arrays and because ENV is not as commonly
    ; used as the others, ENV is not recommended on productions servers. You
    ; can still get access to the environment variables through getenv() should you
    ; need to.
    ; Default Value: "EGPCS"
    ; Development Value: "GPCS"
    ; Production Value: "GPCS";
    ; http://php.net/variables-order
    variables_order = "GPCS"
    ; This directive determines which super global data (G,P,C,E & S) should
    ; be registered into the super global array REQUEST. If so, it also determines
    ; the order in which that data is registered. The values for this directive are
    ; specified in the same manner as the variables_order directive, EXCEPT one.
    ; Leaving this value empty will cause PHP to use the value set in the
    ; variables_order directive. It does not mean it will leave the super globals
    ; array REQUEST empty.
    ; Default Value: None
    ; Development Value: "GP"
    ; Production Value: "GP"
    ; http://php.net/request-order
    request_order = "GP"
    ; This directive determines whether PHP registers $argv & $argc each time it
    ; runs. $argv contains an array of all the arguments passed to PHP when a script
    ; is invoked. $argc contains an integer representing the number of arguments
    ; that were passed when the script was invoked. These arrays are extremely
    ; useful when running scripts from the command line. When this directive is
    ; enabled, registering these variables consumes CPU cycles and memory each time
    ; a script is executed. For performance reasons, this feature should be disabled
    ; on production servers.
    ; Note: This directive is hardcoded to On for the CLI SAPI
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/register-argc-argv
    register_argc_argv = Off
    ; When enabled, the ENV, REQUEST and SERVER variables are created when they're
    ; first used (Just In Time) instead of when the script starts. If these
    ; variables are not used within a script, having this directive on will result
    ; in a performance gain. The PHP directive register_argc_argv must be disabled
    ; for this directive to have any affect.
    ; http://php.net/auto-globals-jit
    auto_globals_jit = On
    ; Whether PHP will read the POST data.
    ; This option is enabled by default.
    ; Most likely, you won't want to disable this option globally. It causes $_POST
    ; and $_FILES to always be empty; the only way you will be able to read the
    ; POST data will be through the php://input stream wrapper. This can be useful
    ; to proxy requests or to process the POST data in a memory efficient fashion.
    ; http://php.net/enable-post-data-reading
    ;enable_post_data_reading = Off
    ; Maximum size of POST data that PHP will accept.
    ; Its value may be 0 to disable the limit. It is ignored if POST data reading
    ; is disabled through enable_post_data_reading.
    ; http://php.net/post-max-size
    post_max_size = 8M
    ; Automatically add files before PHP document.
    ; http://php.net/auto-prepend-file
    auto_prepend_file =
    ; Automatically add files after PHP document.
    ; http://php.net/auto-append-file
    auto_append_file =
    ; By default, PHP will output a character encoding using
    ; the Content-type: header. To disable sending of the charset, simply
    ; set it to be empty.
    ; PHP's built-in default is text/html
    ; http://php.net/default-mimetype
    default_mimetype = "text/html"
    ; PHP's default character set is set to empty.
    ; http://php.net/default-charset
    ;default_charset = "UTF-8"
    ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
    ; to disable this feature. If post reading is disabled through
    ; enable_post_data_reading, $HTTP_RAW_POST_DATA is *NOT* populated.
    ; http://php.net/always-populate-raw-post-data
    ;always_populate_raw_post_data = On
    ; Paths and Directories ;
    ; UNIX: "/path1:/path2"
    include_path = ".:/usr/share/pear"
    ; Windows: "\path1;\path2"
    ;include_path = ".;c:\php\includes"
    ; PHP's default setting for include_path is ".;/path/to/php/pear"
    ; http://php.net/include-path
    ; The root of the PHP pages, used only if nonempty.
    ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
    ; if you are running php as a CGI under any web server (other than IIS)
    ; see documentation for security issues. The alternate is to use the
    ; cgi.force_redirect configuration below
    ; http://php.net/doc-root
    doc_root =
    ; The directory under which PHP opens the script using /~username used only
    ; if nonempty.
    ; http://php.net/user-dir
    user_dir =
    ; Directory in which the loadable extensions (modules) reside.
    ; http://php.net/extension-dir
    extension_dir = "/usr/lib/php/modules/"
    ; On windows:
    ; extension_dir = "ext"
    ; Whether or not to enable the dl() function. The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    ; http://php.net/enable-dl
    enable_dl = Off
    ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
    ; most web servers. Left undefined, PHP turns this on by default. You can
    ; turn it off here AT YOUR OWN RISK
    ; **You CAN safely turn this off for IIS, in fact, you MUST.**
    ; http://php.net/cgi.force-redirect
    ;cgi.force_redirect = 1
    ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
    ; every request. PHP's default behavior is to disable this feature.
    ;cgi.nph = 1
    ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
    ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
    ; will look for to know it is OK to continue execution. Setting this variable MAY
    ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
    ; http://php.net/cgi.redirect-status-env
    ;cgi.redirect_status_env =
    ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
    ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
    ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
    ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
    ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
    ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
    ; http://php.net/cgi.fix-pathinfo
    ;cgi.fix_pathinfo=1
    ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
    ; security tokens of the calling client. This allows IIS to define the
    ; security context that the request runs under. mod_fastcgi under Apache
    ; does not currently support this feature (03/17/2002)
    ; Set to 1 if running under IIS. Default is zero.
    ; http://php.net/fastcgi.impersonate
    ;fastcgi.impersonate = 1
    ; Disable logging through FastCGI connection. PHP's default behavior is to enable
    ; this feature.
    ;fastcgi.logging = 0
    ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
    ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
    ; is supported by Apache. When this option is set to 1 PHP will send
    ; RFC2616 compliant header.
    ; Default is zero.
    ; http://php.net/cgi.rfc2616-headers
    ;cgi.rfc2616_headers = 0
    ; File Uploads ;
    ; Whether to allow HTTP file uploads.
    ; http://php.net/file-uploads
    file_uploads = On
    ; Temporary directory for HTTP uploaded files (will use system default if not
    ; specified).
    ; http://php.net/upload-tmp-dir
    ;upload_tmp_dir =
    ; Maximum allowed size for uploaded files.
    ; http://php.net/upload-max-filesize
    upload_max_filesize = 2M
    ; Maximum number of files that can be uploaded via a single request
    max_file_uploads = 20
    ; Fopen wrappers ;
    ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
    ; http://php.net/allow-url-fopen
    allow_url_fopen = On
    ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
    ; http://php.net/allow-url-include
    allow_url_include = Off
    ; Define the anonymous ftp password (your email address). PHP's default setting
    ; for this is empty.
    ; http://php.net/from
    ;from="[email protected]"
    ; Define the User-Agent string. PHP's default setting for this is empty.
    ; http://php.net/user-agent
    ;user_agent="PHP"
    ; Default timeout for socket based streams (seconds)
    ; http://php.net/default-socket-timeout
    default_socket_timeout = 60
    ; If your scripts have to deal with files from Macintosh systems,
    ; or you are running on a Mac and need to deal with files from
    ; unix or win32 systems, setting this flag will cause PHP to
    ; automatically detect the EOL character in those files so that
    ; fgets() and file() will work regardless of the source of the file.
    ; http://php.net/auto-detect-line-endings
    ;auto_detect_line_endings = Off
    ; Dynamic Extensions ;
    ; If you wish to have an extension loaded automatically, use the following
    ; syntax:
    ; extension=modulename.extension
    ; For example, on Windows:
    ; extension=msql.dll
    ; ... or under UNIX:
    ; extension=msql.so
    ; ... or with a path:
    ; extension=/path/to/extension/msql.so
    ; If you only provide the name of the extension, PHP will look for it in its
    ; default extension directory.
    ;extension=bcmath.so
    ;extension=bz2.so
    ;extension=calendar.so
    extension=curl.so
    ;extension=dba.so
    ;extension=enchant.so
    ;extension=exif.so
    ;extension=ftp.so
    ;extension=gd.so
    extension=gettext.so
    ;extension=gmp.so
    ;extension=iconv.so
    ;extension=imap.so
    ;extension=intl.so
    ;extension=ldap.so
    ;extension=mcrypt.so
    ;extension=mssql.so
    ;extension=mysqli.so
    ;extension=mysql.so
    ;extension=odbc.so
    ;extension=openssl.so
    ;extension=pdo_mysql.so
    ;extension=pdo_odbc.so
    ;extension=pdo_pgsql.so
    ;extension=pdo_sqlite.so
    ;extension=pgsql.so
    ;extension=phar.so
    ;extension=posix.so
    ;extension=pspell.so
    ;extension=shmop.so
    ;extension=snmp.so
    ;extension=soap.so
    ;extension=sockets.so
    ;extension=sqlite3.so
    ;extension=sysvmsg.so
    ;extension=sysvsem.so
    ;extension=sysvshm.so
    ;extension=tidy.so
    ;extension=xmlrpc.so
    ;extension=xsl.so
    ;extension=zip.so
    ; Module Settings ;
    [CLI Server]
    ; Whether the CLI web server uses ANSI color coding in its terminal output.
    cli_server.color = On
    [Date]
    ; Defines the default timezone used by the date functions
    ; http://php.net/date.timezone
    ;date.timezone =
    ; http://php.net/date.default-latitude
    ;date.default_latitude = 31.7667
    ; http://php.net/date.default-longitude
    ;date.default_longitude = 35.2333
    ; http://php.net/date.sunrise-zenith
    ;date.sunrise_zenith = 90.583333
    ; http://php.net/date.sunset-zenith
    ;date.sunset_zenith = 90.583333
    [filter]
    ; http://php.net/filter.default
    ;filter.default = unsafe_raw
    ; http://php.net/filter.default-flags
    ;filter.default_flags =
    [iconv]
    ;iconv.input_encoding = ISO-8859-1
    ;iconv.internal_encoding = ISO-8859-1
    ;iconv.output_encoding = ISO-8859-1
    [intl]
    ;intl.default_locale =
    ; This directive allows you to produce PHP errors when some error
    ; happens within intl functions. The value is the level of the error produced.
    ; Default is 0, which does not produce any errors.
    ;intl.error_level = E_WARNING
    [sqlite]
    ; http://php.net/sqlite.assoc-case
    ;sqlite.assoc_case = 0
    [sqlite3]
    ;sqlite3.extension_dir =
    [Pcre]
    ;PCRE library backtracking limit.
    ; http://php.net/pcre.backtrack-limit
    ;pcre.backtrack_limit=100000
    ;PCRE library recursion limit.
    ;Please note that if you set this value to a high number you may consume all
    ;the available process stack and eventually crash PHP (due to reaching the
    ;stack size limit imposed by the Operating System).
    ; http://php.net/pcre.recursion-limit
    ;pcre.recursion_limit=100000
    [Pdo]
    ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
    ; http://php.net/pdo-odbc.connection-pooling
    ;pdo_odbc.connection_pooling=strict
    ;pdo_odbc.db2_instance_name
    [Pdo_mysql]
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/pdo_mysql.cache_size
    pdo_mysql.cache_size = 2000
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/pdo_mysql.default-socket
    pdo_mysql.default_socket=
    [Phar]
    ; http://php.net/phar.readonly
    ;phar.readonly = On
    ; http://php.net/phar.require-hash
    ;phar.require_hash = On
    ;phar.cache_list =
    [mail function]
    ; For Win32 only.
    ; http://php.net/smtp
    SMTP = localhost
    ; http://php.net/smtp-port
    smtp_port = 25
    ; For Win32 only.
    ; http://php.net/sendmail-from
    ;sendmail_from = [email protected]
    ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
    ; http://php.net/sendmail-path
    ;sendmail_path =
    ; Force the addition of the specified parameters to be passed as extra parameters
    ; to the sendmail binary. These parameters will always replace the value of
    ; the 5th parameter to mail(), even in safe mode.
    ;mail.force_extra_parameters =
    ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
    mail.add_x_header = On
    ; The path to a log file that will log all mail() calls. Log entries include
    ; the full path of the script, line number, To address and headers.
    ;mail.log =
    ; Log mail to syslog (Event Log on NT, not valid in Windows 95).
    ;mail.log = syslog
    [SQL]
    ; http://php.net/sql.safe-mode
    sql.safe_mode = Off
    [ODBC]
    ; http://php.net/odbc.default-db
    ;odbc.default_db = Not yet implemented
    ; http://php.net/odbc.default-user
    ;odbc.default_user = Not yet implemented
    ; http://php.net/odbc.default-pw
    ;odbc.default_pw = Not yet implemented
    ; Controls the ODBC cursor model.
    ; Default: SQL_CURSOR_STATIC (default).
    ;odbc.default_cursortype
    ; Allow or prevent persistent links.
    ; http://php.net/odbc.allow-persistent
    odbc.allow_persistent = On
    ; Check that a connection is still valid before reuse.
    ; http://php.net/odbc.check-persistent
    odbc.check_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/odbc.max-persistent
    odbc.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/odbc.max-links
    odbc.max_links = -1
    ; Handling of LONG fields. Returns number of bytes to variables. 0 means
    ; passthru.
    ; http://php.net/odbc.defaultlrl
    odbc.defaultlrl = 4096
    ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
    ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
    ; of odbc.defaultlrl and odbc.defaultbinmode
    ; http://php.net/odbc.defaultbinmode
    odbc.defaultbinmode = 1
    ;birdstep.max_links = -1
    [Interbase]
    ; Allow or prevent persistent links.
    ibase.allow_persistent = 1
    ; Maximum number of persistent links. -1 means no limit.

    rune0077 wrote:
    Try this solution:
    https://wiki.archlinux.org/index.php/Ng … gh_FastCGI
    That isn't exactly my problem. The server responds with no body (so no blank html document)
    root@server ~# curl -vH "Host: ███████" localhost/test.php
    * Hostname was NOT found in DNS cache
    * Trying ::1...
    * connect to ::1 port 80 failed: Connection refused
    * Trying 127.0.0.1...
    * Connected to localhost (127.0.0.1) port 80 (#0)
    > GET /test.php HTTP/1.1
    > User-Agent: curl/7.36.0
    > Accept: */*
    > Host: ███████████
    >
    < HTTP/1.1 200 OK
    * Server nginx/1.6.0 is not blacklisted
    < Server: nginx/1.6.0
    < Date: Tue, 20 May 2014 20:11:02 GMT
    < Content-Type: text/html
    < Transfer-Encoding: chunked
    < Connection: keep-alive
    < Vary: Accept-Encoding
    <
    * Connection #0 to host localhost left intact
    When I do set SCRIPT_FILENAME to $document_root$fastcgi_script_name, it responds with "No input file specified."
    Spider.007 wrote:If there are no errors; tell us what your access-logs tell. Enable them in fpm and tell us if the request ends up there. Also; nginx can also log the upstream ip-address; if you add that to the access-logs you'll at least know if the problem is nginx, or fpm
    The nginx log message:
    127.0.0.1 - - [20/May/2014:14:15:50 -0600] "GET /test.php HTTP/1.1" 200 5 "-" "curl/7.36.0"
    I'll try to find a way to make php-fpm more verbose and I'll edit this post with the error when I do. At the moment it's only logging startups/shutdowns.
    Last edited by phillips1012 (2014-05-20 20:23:40)

  • Problem description: My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to

    Problem description:
    My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to get the problem to alleviate for a few days?
    EtreCheck version: 2.1.8 (121)
    Report generated February 16, 2015 at 2:35:55 PM PST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2009) (Technical Specifications)
        iMac - model: iMac10,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                Empty  
            BANK 1/DIMM0
                Empty  
            BANK 0/DIMM1
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 11 days 19:34:2
    Disk Information: ℹ️
        ST3500418ASQ disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            BOOTCAMP (disk0s4) /Volumes/BOOTCAMP : 60.76 GB (15.30 GB free)
            Macintosh HD (disk1) / : 438.11 GB (351.62 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 438.49 GB Online
        HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Internal Memory Card Reader
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        hp officejet 4200 series
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.accountsd.plist
        [killed]    com.apple.AirPlayUIAgent.plist
        [killed]    com.apple.bird.plist
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudd.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.coreservices.uiagent.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.pluginkit.pkd.plist
        [killed]    com.apple.printtool.agent.plist
        [killed]    com.apple.recentsd.plist
        [killed]    com.apple.secd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.spindump_agent.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        19 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.AssetCacheLocatorService.plist
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.coresymbolicationd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.diagnosticd.plist
        [killed]    com.apple.emond.aslmanager.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.iconservices.iconservicesd.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.periodic-monthly.plist
        [killed]    com.apple.periodic-weekly.plist
        [killed]    com.apple.sandboxd.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.spindump.plist
        [killed]    com.apple.tccd.system.plist
        [killed]    com.apple.wdhelper.plist
        [killed]    com.apple.xpc.smd.plist
        20 processes killed due to memory pressure
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.GoodShop.updater.plist [Click for support]
    User Login Items: ℹ️
        None
    Internet Plug-ins: ℹ️
        o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        Google Earth Web Plug-in: Version: 5.2 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.2.4 [Click for support]
        RealPlayer Plugin: Version: Unknown [Click for support]
        AdobePDFViewerNPAPI: Version: 10.1.13 [Click for support]
        DivXBrowserPlugin: Version: 2.0 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        AdobePDFViewer: Version: 10.1.13 [Click for support]
        GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 [Click for support]
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.79 [Click for support]
        VSeeHelper: Version: VSeeHelper 1.0.0.0 - SDK 10.8 [Click for support]
    Safari Extensions: ℹ️
        avast! Online Security
        Goodshop app
    3rd Party Preference Panes: ℹ️
        DivX  [Click for support]
        Flip4Mac WMV  [Click for support]
        MacFUSE  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 438.11 GB Disk used: 86.50 GB
        Destinations:
            Backup [Local]
            Total size: 159.70 GB
            Total number of backups: 3
            Oldest backup: 2014-11-24 05:20:18 +0000
            Last backup: 2015-02-01 03:04:02 +0000
            Size of backup disk: Too small
                Backup size 159.70 GB < (Disk used 86.50 GB X 3)
    Top Processes by CPU: ℹ️
             8%    WindowServer
             5%    DashboardClient
             3%    mds
             2%    launchd
             0%    ocspd
    Top Processes by Memory: ℹ️
        64 MB    WindowServer
        52 MB    thunderbird
        34 MB    mds
        34 MB    Mail
        30 MB    mds_stores
    Virtual Memory Information: ℹ️
        654 MB    Free RAM
        834 MB    Active RAM
        777 MB    Inactive RAM
        903 MB    Wired RAM
        102.49 GB    Page-ins
        1.46 GB    Page-outs
    Diagnostics Information: ℹ️
        Standard users cannot read /Library/Logs/DiagnosticReports.
        Run as an administrator account to see more information.

    Hi Linc!  Sorry for the delay.  Here is the information:
    Start time: 16:48:08 02/28/15
    Revision: 1241
    Model Identifier: iMac10,1
    System Version: OS X 10.10.2 (14C109)
    Kernel Version: Darwin 14.1.0
    Time since boot: 10 days 21:04
    UID: 502
    SerialATA
        ST*******ASQ                          
    USB
        officejet 4200 series (Hewlett Packard)
    Bluetooth
        Apple Wireless Mouse
    FileVault 2: On FileVault master keychain appears to be installed
    FileVault 1: On
    I/O wait time (ms/s)
        launchd (UID 0): 53
    Font issues: 40
    Firewall: On
    System caches/logs
        1987 MB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-01-31 SecurityAgent crash
        2015-02-01 2BUA8C4S2C.com.agilebits.onepassword4-helper crash
        2015-02-01 IMDPersistenceAgent crash
        2015-02-01 secd crash
        2015-02-20 Inkjet7 crash
        2015-02-28 IMDPersistenceAgent crash
        2015-02-28 secd crash x2
    Kernel log
        Feb 23 07:06:08 Failed to get hibernate image filename
        Feb 23 17:07:05 Failed to get hibernate image filename
        Feb 24 07:06:05 Failed to get hibernate image filename
        Feb 24 17:47:13 Failed to get hibernate image filename
        Feb 24 18:31:50 IOAudioStream[0xffffff802df40400]::clipIfNecessary() - Error: counted 1 clip more than one buffer ahead errors.
        Feb 24 19:14:41 Failed to get hibernate image filename
        Feb 24 20:56:40 Failed to get hibernate image filename
        Feb 24 22:14:14 Failed to get hibernate image filename
        Feb 24 22:38:31 Failed to get hibernate image filename
        Feb 25 06:58:23 Failed to get hibernate image filename
        Feb 25 17:40:53 Failed to get hibernate image filename
        Feb 25 21:04:27 Failed to get hibernate image filename
        Feb 25 21:31:52 Failed to get hibernate image filename
        Feb 26 07:03:06 Failed to get hibernate image filename
        Feb 26 17:06:59 Failed to get hibernate image filename
        Feb 27 06:58:56 Failed to get hibernate image filename
        Feb 27 17:02:56 Failed to get hibernate image filename
        Feb 27 19:17:20 Failed to get hibernate image filename
        Feb 27 23:04:12 Failed to get hibernate image filename
        Feb 28 10:09:19 Failed to get hibernate image filename
        Feb 28 13:07:21 Failed to get hibernate image filename
        Feb 28 14:08:38 Failed to get hibernate image filename
        Feb 28 15:11:16 Failed to get hibernate image filename
        Feb 28 16:18:21 msdosfs_fat_uninit_vol: error 6 from msdosfs_fat_cache_flush
        Feb 28 16:29:32 Failed to get hibernate image filename
    System log
            label = "2.5.4.3";
            "localized label" = "2.5.4.3";
            type = string;
            value = "courier.sandbox.push.apple.com";
        Feb 28 16:30:55 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
        Feb 28 16:31:09 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8424]
        Feb 28 16:31:44 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8433]
        Feb 28 16:32:36 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:34:16 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:37 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "1Password mini" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:46:20 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8979]
        Feb 28 16:49:02 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
    Daemons
        com.apple.AccountPolicyHelper
        com.apple.AssetCacheLocatorService
        com.apple.CodeSigningHelper
        com.apple.MobileFileIntegrity
        com.apple.awdd
        com.apple.backupd-auto
        com.apple.cache_delete
        com.apple.coresymbolicationd
        com.apple.ctkd
        com.apple.diagnosticd
        com.apple.emond.aslmanager
        com.apple.iconservices.iconservicesagent
        com.apple.iconservices.iconservicesd
        com.apple.ifdreader
        com.apple.installd
        com.apple.installer.osmessagetracing
        com.apple.nehelper
        com.apple.networkd_privileged
        com.apple.nsurlsessiond_privileged
        com.apple.nsurlstoraged
        com.apple.periodic-daily
        com.apple.periodic-monthly
        com.apple.periodic-weekly
        com.apple.sandboxd
        com.apple.secinitd
        com.apple.security.syspolicy
        - status: -15
        com.apple.softwareupdate_download_service
        com.apple.softwareupdated
        com.apple.spindump
        com.apple.sysmond
        com.apple.systemstatsd
        com.apple.tccd.system
        com.apple.watchdogd
        com.apple.wdhelper
        org.cups.cupsd
    Agents
        2BUA8C4S2C.com.agilebits.onepassword4-helper
        com.adobe.ARM.UUID
        com.apple.AirPortBaseStationAgent
        com.apple.imdpersistence.IMDPersistenceAgent
        - status: -10
        com.apple.secd
        - status: -10
    User crontab
        59 16 * * 7 /Applications/MacScan\ 2/MacScan.app/Contents/MacOS/MacScan -autoscan YES
    Firefox extensions
        Mozilla Firefox hotfix
    Widgets
        iCal
    iCloud errors
        cloudd 7
        comapple.InputMethodKit.UserDictionary 2
        CallHistorySyncHelper 1
    Continuity errors
        sharingd 1
    Restricted files: 174
    Lockfiles: 30
    High file counts
        Desktop: 54
    Accessibility
        Scroll Zoom: On
    Contents of /System/Library/Security/authorization.plist
        - mod date: Oct  9 02:17:00 2014
        - checksum: 2720110640
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1850 more line(s)
    Contents of /private/etc/authorization.deprecated
        - mod date: Oct 25 13:37:39 2014
        - checksum: 842352627
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1013 more line(s)
    Contents of /private/etc/pam.d/prl_disp_service
        - mod date: Mar  5 03:24:01 2010
        - checksum: 1160556194
        auth       required       pam_nologin.so
        auth       optional       pam_afpmount.so
        auth       sufficient     pam_securityserver.so nullok
        auth       sufficient     pam_unix.so  nullok
        auth       required       pam_deny.so
        account    required       pam_permit.so
        password   required       pam_deny.so
        session    required       pam_permit.so
        session    optional       pam_afpmount.so
    Contents of /private/etc/pam.d/prl_disp_service.snow_leopard
        - mod date: Mar  5 03:24:01 2010
        - checksum: 2633576920
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Aug  1 17:37:19 2012
        - checksum: 408149527
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Applications
        /Applications/Acrobat 6.0 Professional/Acrobat 6.0.2 Professional.app
        - N/A
        /Applications/Acrobat 6.0 Professional/Acrobat Distiller 6.0.2.app
        - com.adobe.distiller
        /Applications/Adobe/Acrobat.com.app
        - com.adobe.mauby.UUID.1
        /Applications/Adobe/Adobe Help.app
        - chc.UUID.1
        /Applications/Bible Explorer 4.app
        - com.BE8.wordsearchbible.corp
        /Applications/DivX Converter.app
        - N/A
        /Applications/DivX Player.app
        - com.divx.DivX_Player
        /Applications/DivX/DivX Community.app
        - com.spritec.DVD
        /Applications/DivX/DivX Products.app
        - com.spritec.DVD
        /Applications/DivX/DivX Support.app
        - com.spritec.DVD
        /Applications/DivX/Uninstall DivX for Mac.app
        - com.divxinc.uninstalldivxformac
        /Applications/FOX News Live.app
        - FoxPlayerAIR.UUID.1
        /Applications/Flip4Mac/WMV Player.app
        - net.telestream.wmv.player
        /Applications/Garmin Express.app
        - com.garmin.renu.client
        /Applications/Garmin WebUpdater.app
        - com.garmin.WebUpdater
        /Applications/Hewlett-Packard/HP Image Edit.app
        - com.hp.hpimageedit
        /Applications/Hewlett-Packard/HP Image Print.app
        - com.hp.photo.imageprint
        /Applications/Hewlett-Packard/HP Image Zone.app
        - com.hp.imagezone
        /Applications/Hewlett-Packard/HP Instant Share.app
        - com.hp.photo.instantshare
        /Applications/Hewlett-Packard/HP Panorama Stitching.app
        - com.hp.PanoramaStitching
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP E-mail Portal/HP E-mail Portal
        - N/A
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP Photo and Imaging Director/Director Docker.app
        - com.hp.director.docker
        /Applications/Hewlett-Packard/HP Software Update.app
        - com.hp.softwareupdate
        /Applications/Hewlett-Packard/HP Uninstaller
        - N/A
        /Applications/Karaoke Maker/Audacity.app
        - net.sourceforge.audacity
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute
        - com.macromedia.Contribute
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute/Contents/MacOS/Contribute
        - N/A
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8
        - com.macromedia.Dreamweaver
        /Applications/Macromedia Studio 8/Macromedia Extension Manager/Extension Manager.app
        - com.macromedia.ExtensionManager
        /Applications/Macromedia Studio 8/Macromedia Fireworks 8/Fireworks 8.app
        - com.macromedia.fireworks
        /Applications/Macromedia Studio 8/Macromedia Flash 8 VideoEncoder/Flash 8 Video Encoder.app
        - com.macromedia.FLVEncoder
        /Applications/Macromedia Studio 8/Macromedia Flash 8/Flash 8.app
        - com.macromedia.flash.8
        /Applications/Microsoft AutoUpdate.app
        - com.microsoft.autoupdate
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer
        - com.MindVision.VISEX
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer/Contents/MacOSClassic/Handheld Sync Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Microsoft Language Register/Microsoft Language Register
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remote Desktop Connection/Remote Desktop Connection
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remove Office/Remove Office
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer/Contents/MacOS/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/MSN Messenger.app
        - Microsoft/com.microsoft.Messenger
        /Applications/Microsoft Office 2004/Microsoft Entourage
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Excel
        - N/A
        /Applications/Microsoft Office 2004/Microsoft PowerPoint
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Word
        - N/A
        /Applications/Microsoft Office 2004/Office/Alerts Daemon.app
        - Microsoft/com.microsoft.AlertsDaemon
        /Applications/Microsoft Office 2004/Office/Database Utility
        - N/A
        /Applications/Microsoft Office 2004/Office/Equation Editor
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Cert Manager.app
        - com.microsoft.certmgr
        /Applications/Microsoft Office 2004/Office/Microsoft Clip Gallery
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Database Daemon
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Error Reporting.app
        - com.microsoft.error_reporting
        /Applications/Microsoft Office 2004/Office/Microsoft Graph
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Office Notifications
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Query
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Sync Services.app
        - com.microsoft.entourage.syncservices
        /Applications/Microsoft Office 2004/Office/Organization Chart
        - N/A
        /Applications/Microsoft Office 2004/Office/Project Gallery Launcher
        - N/A
        /Applications/Open XML Converter.app
        - com.microsoft.OfficeConverter
        /Applications/OpenOffice.app
        - org.openoffice.script
        /Applications/Quicken 2007/Quicken 2007
        - com.intuit.quicken
        /Applications/Quicken 2007/Quicken 2007/Contents/MacOS/Quicken 2007
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer
        - com.intuit.ero
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer/Contents/MacOSClassic/Emergency Records Organizer
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Home Inventory.app
        - com.intuit.HomeInventory
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Backup Utility.app
        - com.intuit.quicken.dotmac
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Scheduler
        - N/A
        /Applications/RealPlayer Converter.app
        - com.real.converter
        /Applications/RealPlayer.app
        - com.RealNetworks.RealPlayer
        /Applications/TorBrowser.app
        - N/A
        /Applications/Utilities/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Applications/Utilities/Adobe Utilities.localized/Adobe Updater6/Adobe Updater.app
        - "com.Adobe.ESD.AdobeUpdaterApplication"
        /Library/Application Support/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /Library/Application Support/DivX/DivXUpdater.app
        - com.divx.DivXUpdater
        /Library/Application Support/Hewlett-Packard/Software Update/HP Rules Processor.app
        - com.hp.rulesprocessor
        /Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app
        - com.hp.HPScheduler
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater
        - N/A
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater/Contents/MacOS/HP Software Updater
        - N/A
        /Library/Application Support/Microsoft/HV1.0/Microsoft Help Viewer.app
        - com.microsoft.helpviewer
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Charts.app
        - com.microsoft.openxml.chartconverter.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Excel.app
        - com.microsoft.openxml.excel.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Word.app
        - com.microsoft.openxml.word.app
        /Library/Application Support/Microsoft/Office Converter Support/pptfc.app
        - com.microsoft.openxml.powerpoint.app
        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
        - com.microsoft.silverlight.sllauncher
        /Library/Application Support/Script Editor/Templates/Cocoa-AppleScript Applet.app
        - com.apple.ScriptEditor.id.cocoa-applet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Droplet with Settable Properties.app
        - com.apple.ScriptEditor.id.droplet-with-settable-properties-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive File Processing Droplet.app
        - com.apple.ScriptEditor.id.file-processing-droplet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive Image File Processing Droplet.app
        - com.apple.ScriptEditor.id.image-file-processing-droplet-template
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/flashplayer
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_burn_cd.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_export_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_import_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_panorama_stitch.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_folders.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_edit.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_print.app
        - N/A
        /Library/Documentation/User Guides and Information.localized/Apple Hardware Test Read Me.app
        - com.apple.AppleHardwareTestReadMe
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.Template
        /Library/Image Capture/Scripts/Import and View with iPhoto.app
        - com.hp.iPhoto.icautotask
        /Library/Parallels/Parallels Mounter.app
        - com.parallels.server.mounter
        /Library/Printers/hp/Fax/fax.backend
        - com.hp.fax
        /Library/Printers/hp/Fax/rastertofax.filter
        - com.hp.rastertofax
        /Library/Printers/hp/cups/filters/commandtohp.filter
        - com.hp.print.cups.filter.commandtohp
        /Library/Printers/hp/cups/filters/pdftopdf.filter
        - com.hp.print.cups.filter.pdftopdf
        /Library/Printers/hp/cups/tools/autosetup.tool
        - com.hp.print.autosetup
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_bepbmhgboaologfdajaanbcjmnhjmhfn/Default bepbmhgboaologfdajaanbcjmnhjmhfn.app
        - com.google.Chrome.app.Default-bepbmhgboaologfdajaanbcjmnhjmhfn-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_blpcfgokakmgnkcojhhkbfbldkacnbeo/Default blpcfgokakmgnkcojhhkbfbldkacnbeo.app
        - com.google.Chrome.app.Default-blpcfgokakmgnkcojhhkbfbldkacnbeo-internal
        /Users/USER/Library/Caches/com.adobe.Reader.ARM/UUID/Adobe Reader Updater.app
        - com.adobe.ARM
        /mike's old computer/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /mike's old computer/Adobe/Installers/R2/Setup.app
        - com.adobe.Installers.Setup
        /mike's old computer/Deimos Rising/Deimos Rising
        - N/A
        /mike's old computer/IA_Installers/TypingMaster_for_Mac/TypingMasterMac.app
        - N/A
        /mike's old computer/TypingMasterMac/UninstallerData/Uninstall TypingMaster for Mac.app
        - N/A
        /mike's old computer/TypingMasterMac/itutoreng.app
        - N/A
        /mike's old computer/adobe applications/Adobe GoLive CS/Adobe GoLive CS.app
        - com.adobe.GoLive
        /mike's old computer/adobe applications/Adobe Illustrator CS/2.app
        - com.adobe.illustrator
        /mike's old computer/adobe applications/Adobe InDesign CS/InDesign CS.app
        - com.adobe.InDesign
        /mike's old computer/adobe applications/Adobe InDesign CS/Plug-Ins/Online/AUMLibrary.cfm/Contents/SharedSupport/Adobe Update Manager.app
        - com.adobe.ESD.AUM
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe ImageReady CS.app
        - com.adobe.ImageReady
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe Photoshop CS.app
        - com.adobe.Photoshop
        /mike's old computer/adobe applications/Adobe Version Cue/Uninstall Adobe Version Cue.app
        - N/A
        /old computer stuff/At Ease Setup Folder/At Ease Setup
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Apple System Profiler
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Chooser
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/FaxStatus
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Graphing Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Browse the Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Connect To...
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Mail
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Key Caps
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Note Pad
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Remote Access Status
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Scrapbook
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Sherlock
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/SimpleSound
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Stickies
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/IntelliTools/Classic Sending Helper
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/Norton AntiVirus ƒ/NAV Small Scanner
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Appearance
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Apple Menu Options
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/AppleTalk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/ColorSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Configuration Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Control Strip
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Date & Time
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/DialAssist
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Energy Saver
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Extensions Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Exchange
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/General Controls
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Infrared
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Keyboard
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Location Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Memory
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Microsoft Office Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Modem
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Monitors & Sound
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Mouse
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Numbers
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuickTime™ Settings:™ Settings:
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuikSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Remote Access
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Speech
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Startup Disk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/TCP:IP
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Text
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Users & Groups
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Web Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Application Switcher
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/ColorSync Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Control Strip Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop Printer Spooler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FBC Indexing Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FaxMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Find/Find by Content Indexing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Folder Actions
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Norton Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Time Synchronizer
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Web Sharing Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Help/Apple Help Viewer/Help Viewer
        - N/A
        /old computer stuff/OLDIESystem Folder/MacTCP DNR
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Desktop Printer Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Network Setup Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/URL Access Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/System Extensions (Disabled)/AOL 5.0 Backup Installer
        - N/A
        /old computer stuff/Tony Hawk's Pro Skater 4/Tony Hawk's Pro Skater 4.app
        - com.aspyr.thps4
    Frameworks
        /Library/Frameworks/Adobe AIR.framework
        - com.adobe.AIR
        /Library/Frameworks/DivX Toolkit.framework
        - com.divx.divxtoolkit
        /Library/Frameworks/EWSMac.framework
        - com.eSellerate.EWSMac67108868
        /Library/Frameworks/HPSmartPrint.framework
        - com.hp.print.HPSmartPrint
        /Library/Frameworks/MacFUSE.framework
        - com.google.MacFUSE
        /Library/Frameworks/PrintMeSSL.framework
        - com.efi.printme.ssl
        /Library/Frameworks/TSLicense.framework
        - net.telestream.license
    PrefPane
        /Library/PreferencePanes/DivX.prefPane
        - com.divx.divxprefs
        /Library/PreferencePanes/Flip4Mac WMV.prefPane
        - net.telestream.wmv.prefpane
        /Library/PreferencePanes/MacFUSE.prefPane
        - com.google.MacFUSE
    Bundles
        /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
        - info.emagic.driver.unitor
        /Library/Contextual Menu Items/ParallelsCM.plugin
        - com.parallels.cmplugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/AdobeCP15.plugin
        - com.adobe.adobecp
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Flash Player.plugin
        - com.macromedia.FlashPlayer-10.6.plugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/adobecp.plugin
        - com.adobe.adobecp20
        /Library/Internet Plug-Ins/AdobePDFViewer.plugin
        - com.adobe.acrobat.pdfviewer
        /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
        - com.adobe.acrobat.pdfviewerNPAPI
        /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin
        - com.divx.DivXBrowserPlugin
        /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
        - net.telestream.wmv.plugin
        /Library/Internet Plug-Ins/GarminGpsControl.plugin
        - com.garmin.GarminGpsControl
        /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
        - com.Google.GoogleEarthPlugin.plugin
        /Library/Internet Plug-Ins/Silverlight.plugin
        - com.microsoft.SilverlightPlugin
        /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin
        - com.google.googletalkbrowserplugin
        /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
        - com.apple.plugin.iPhotoPhotocast
        /Library/Internet Plug-Ins/o1dbrowserplugin.plugin
        - com.google.o1dbrowserplugin
        /Library/Printers/Macromedia/PDEs/FlashPaperPDE.plugin
        - com.macromedia.flashpaper.pde.FlashPaperPDE
        /Library/Printers/PPD Plugins/AdobePDFPDE.plugin
        - com.Adobe.print.AdobePDF.pde
        /Library/QuickLook/GBQLGenerator.qlgenerator
        - com.apple.garageband.quicklookgenerator
        /Library/QuickLook/ParallelsQL.qlgenerator
        - com.parellels.quicklookgenerator
        /Library/Spotlight/GBSpotlightImporter.mdimporter
        - com.apple.garageband.spotlightimporter
        /Library/Spotlight/Microsoft Entourage.mdimporter
        - com.microsoft.entourageMDImporter
        /Library/Spotlight/ParallelsMD.mdimporter
        - com.parallels.mdimporter
        /Users/USER/Library/Application Support/Google/Chrome/PepperFlash/12.0.0.70/PepperFlashPlayer.plugin
        - com.macromedia.PepperFlashPlayer.pepper
        /Users/USER/Library/Internet Plug-Ins/CitrixOnlineWebDeploymentPlugin.plugin
        - com.citrixonline.mac.WebDeploymentPlugin
    Library paths
        /Applications/Karaoke Maker/libmp3lame.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/Frameworks/libwchar.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/CoreTypes.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCURL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCrypto.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibSSL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/SystemFrameworkUtils.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/ZLib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/DWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdCaps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdFS.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKEngine.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/AdobePIM.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/PWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_caps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_oobelib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_upgrade.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/UWA/UWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/core/AdobePIM.dylib
        /Library/Application Support/DivX/Libraries/libDivXDesktopSupport.dylib
        /Library/Application Support/DivX/QtPlugins/accessible/libqtaccessiblewidgets.dylib
        /Library/Application Support/DivX/QtPlugins/iconengines/libqsvgicon.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqgif.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqico.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqjpeg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqmng.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqsvg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqtiff.dylib
        /Library/Application Support/DivX/QtPlugins/script/libqtscriptdbus.dylib
        /Library/Application Support/DivX/QtPlugins/sqldrivers/libqsqlite.dylib
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse.dylib. dSYM/Contents/Resources/DWARF/libfuse.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse_ino64. dylib.dSYM/Contents/Resources/DWARF/libfuse_ino64.dylib
        /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework/Versions/3.0/Libraries/libHPIOnetsnmp.5.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/B/Resources/lib/SxC FReader.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/C/Resources/lib/SxC FReader.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnspr4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnssckbi.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplc4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplds4.dylib
        /Users/USER/Library/Application Support/Firefox/Profiles/w5owlxqa.default/gmp-gmpopenh264/1.1/libgmpopenh264.dy lib
        /Users/USER/Library/Application Support/Google/Chrome/WidevineCDM/1.4.6.758/_platform_specific/mac_x64/libwidev inecdm.dylib
        /Users/USER/Library/Caches/com.apple.ScreenSaver.Engine/com.apple.vision/com.ap ple.vision.64FaceCoreCLKernel.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libpbodbc3.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-jni-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-pb-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-rw-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-util-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/tomcat/webapps/ROOT/WEB-INF/components/com.adobe.bauhaus.nativecomm/res/VCF oundation.dylib
        /usr/lib/libgutenprint.2.0.3.dylib
        /usr/local/lib/libfreetype.6.3.16.dylib
        /usr/local/lib/libfreetype.6.dylib
        /usr/local/lib/libfreetype.dylib
        /usr/local/lib/libfuse.2.dylib
        /usr/local/lib/libfuse_ino64.2.dylib
    Installations
        Norton AntiVirus Application: 6/20/10, 10:21 PM
        Symantec Scheduler: 6/20/10, 10:21 PM
        Microsoft® Silverlight™ Browser Plug-In: 6/19/10, 8:25 PM
        Parallels Desktop 5 for Mac: 6/10/10, 6:02 AM
        MacFUSE Core: 6/10/10, 6:03 AM
    Elapsed time (sec): 317
    <Edited By Host>

  • Radeon / kms / dri problems

    Hi,
    after messing around a few days with my new arch installation (and probably every other live distro in the last few weeks),
    I'm really tired of the problems related with the open source radeon driver.
    I read the ATI guide as well as the Xorg guide, but my specific problem isn't mentioned anywhere I searched for it.
    It seems that kms isn't working with my graphics card (ATI Radeon HD3870), because none of the distro's and/or kernel versions I tried ever worked when kms was enabled. It simply "displays" a black screen, and nothing ever happens. Now I use kernel 3.2.6-2-ARCH on x86_64.
    The biggest problem isn't kms because I kind of got used to it. What bothers me most is that I get a black screen too when using the radeon driver in xorg.
    No keyboard response, no ssh possible. Not even Xorg.0.log is populated in this scenario.
    I realized that when using the vesa driver, everything is fine (except for pretty slow graphics).
    When playing around with the files in
    /etc/X11/xorg.conf.d
    and disabling dri manually, I also get to see graphics, pretty similar to the vesa driver.
    Is anybody out there with similar problems?
    Thanks in advance, any help is highly appreciated
    Greets
    joe
    20-video.conf
    Section "Device"
    Identifier "ATI Radeon HD3870"
    Driver "radeon"
    Option "AGPMode" "8" #not used when KMS is on
    Option "AGPFastWrite" "off" #could cause instabilities enable it at your own risk
    Option "SWcursor" "off" #software cursor might be necessary on some rare occasions, hence set off by default
    # Option "EnablePageFlip" "on" #supported on all R/RV/RS4xx and older hardware and set off by default
    # Option "AccelMethod" "XAA" #valid options are XAA and EXA. EXA is the newest acceleration method and its the default.
    # Option "RenderAccel" "on" #enabled by default on all radeon hardware
    # Option "ColorTiling" "on" #enabled by default on RV300 and later radeon cards.
    Option "EXAVSync" "off" #default is off, otherwise on
    # Option "EXAPixmaps" "on" #when on icreases 2D performance, but may also cause artifacts on some old cards
    Option "AccelDFS" "on" #default is off, read the radeon manpage for more information
    Option "DRI" "off"
    # Driver "vesa"
    EndSection
    dmesg output:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.2.6-2-ARCH (tobias@T-POWA-LX) (gcc version 4.6.2 20120120 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Feb 16 10:10:02 CET 2012
    [ 0.000000] Command line: root=/dev/sda9 ro radeon.modeset=0 video=1280x1024
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
    [ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000dfee0000 (usable)
    [ 0.000000] BIOS-e820: 00000000dfee0000 - 00000000dfee3000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000dfee3000 - 00000000dfef0000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000dfef0000 - 00000000dff00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 0000000120000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. P35-DS4/P35-DS4, BIOS F14 06/19/2009
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x120000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CEFFF write-protect
    [ 0.000000] CF000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-through
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F00000000 write-back
    [ 0.000000] 1 base 0E0000000 mask FE0000000 uncachable
    [ 0.000000] 2 base 100000000 mask FE0000000 write-back
    [ 0.000000] 3 base 0DFF00000 mask FFFF00000 uncachable
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 00000000dff00000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0xdfee0 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000f5030] f5030
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000dfee0000
    [ 0.000000] 0000000000 - 00dfe00000 page 2M
    [ 0.000000] 00dfe00000 - 00dfee0000 page 4k
    [ 0.000000] kernel direct mapping tables up to dfee0000 @ 1fffa000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-0000000120000000
    [ 0.000000] 0100000000 - 0120000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 120000000 @ dfeda000-dfee0000
    [ 0.000000] RAMDISK: 37d68000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000f6a20 00014 (v00 GBT )
    [ 0.000000] ACPI: RSDT 00000000dfee3040 00038 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: FACP 00000000dfee30c0 00074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: DSDT 00000000dfee3180 04B2A (v01 GBT GBTUACPI 00001000 MSFT 0100000C)
    [ 0.000000] ACPI: FACS 00000000dfee0000 00040
    [ 0.000000] ACPI: HPET 00000000dfee7e00 00038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
    [ 0.000000] ACPI: MCFG 00000000dfee7e80 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: APIC 00000000dfee7d00 00084 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: SSDT 00000000dfee8520 003AB (v01 PmRef CpuPm 00003000 INTL 20040311)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-0000000120000000
    [ 0.000000] Initmem setup node 0 0000000000000000-0000000120000000
    [ 0.000000] NODE_DATA [000000011fffb000 - 000000011fffffff]
    [ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011b600000-ffff88011f5fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x00120000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[3] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009d
    [ 0.000000] 0: 0x00000100 -> 0x000dfee0
    [ 0.000000] 0: 0x00100000 -> 0x00120000
    [ 0.000000] On node 0 totalpages: 1048173
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3912 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 896800 pages, LIFO batch:31
    [ 0.000000] Normal zone: 2048 pages used for memmap
    [ 0.000000] Normal zone: 129024 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000dfee0000 - 00000000dfee3000
    [ 0.000000] PM: Registered nosave memory: 00000000dfee3000 - 00000000dfef0000
    [ 0.000000] PM: Registered nosave memory: 00000000dfef0000 - 00000000dff00000
    [ 0.000000] PM: Registered nosave memory: 00000000dff00000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
    [ 0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at dff00000 (gap: dff00000:10100000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88011fc00000 s82176 r8192 d24320 u524288
    [ 0.000000] pcpu-alloc: s82176 r8192 d24320 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1029736
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sda9 ro radeon.modeset=0 video=1280x1024
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 4046860k/4718592k available (4488k kernel code, 525900k absent, 145832k reserved, 4409k data, 736k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 2333.500 MHz processor.
    [ 0.003337] Calibrating delay loop (skipped), value calculated using timer frequency.. 4668.45 BogoMIPS (lpj=7778333)
    [ 0.003342] pid_max: default: 32768 minimum: 301
    [ 0.003369] Security Framework initialized
    [ 0.003374] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003723] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.005581] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.006743] Mount-cache hash table entries: 256
    [ 0.006907] Initializing cgroup subsys cpuacct
    [ 0.006913] Initializing cgroup subsys memory
    [ 0.006922] Initializing cgroup subsys devices
    [ 0.006924] Initializing cgroup subsys freezer
    [ 0.006926] Initializing cgroup subsys net_cls
    [ 0.006928] Initializing cgroup subsys blkio
    [ 0.006963] CPU: Physical Processor ID: 0
    [ 0.006964] CPU: Processor Core ID: 0
    [ 0.006966] mce: CPU supports 6 MCE banks
    [ 0.006974] CPU0: Thermal monitoring enabled (TM2)
    [ 0.006979] using mwait in idle threads.
    [ 0.008147] ACPI: Core revision 20110623
    [ 0.010032] ftrace: allocating 17394 entries in 69 pages
    [ 0.013728] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.048079] CPU0: Intel(R) Core(TM)2 Duo CPU E6550 @ 2.33GHz stepping 0b
    [ 0.049997] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    [ 0.049997] PEBS disabled due to CPU errata.
    [ 0.049997] ... version: 2
    [ 0.049997] ... bit width: 40
    [ 0.049997] ... generic registers: 2
    [ 0.049997] ... value mask: 000000ffffffffff
    [ 0.049997] ... max period: 000000007fffffff
    [ 0.049997] ... fixed-purpose events: 3
    [ 0.049997] ... event mask: 0000000700000003
    [ 0.066760] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.093341] Booting Node 0, Processors #1
    [ 0.093345] smpboot cpu 1: start_ip = 98000
    [ 0.190016] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.196659] Brought up 2 CPUs
    [ 0.196662] Total of 2 processors activated (9337.59 BogoMIPS).
    [ 0.198466] devtmpfs: initialized
    [ 0.200386] PM: Registering ACPI NVS region at dfee0000 (12288 bytes)
    [ 0.200743] print_constraints: dummy:
    [ 0.200790] NET: Registered protocol family 16
    [ 0.200902] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.200905] ACPI: bus type pci registered
    [ 0.200969] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.200972] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.212178] PCI: Using configuration type 1 for base access
    [ 0.212775] bio: create slab <bio-0> at 0
    [ 0.212775] ACPI: Added _OSI(Module Device)
    [ 0.212775] ACPI: Added _OSI(Processor Device)
    [ 0.212775] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.212775] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.213647] ACPI: EC: Look up EC in DSDT
    [ 0.216762] ACPI: SSDT 00000000dfee7f00 0022A (v01 PmRef Cpu0Ist 00003000 INTL 20040311)
    [ 0.216943] ACPI: Dynamic OEM Table Load:
    [ 0.216946] ACPI: SSDT (null) 0022A (v01 PmRef Cpu0Ist 00003000 INTL 20040311)
    [ 0.217044] ACPI: SSDT 00000000dfee83c0 00152 (v01 PmRef Cpu1Ist 00003000 INTL 20040311)
    [ 0.217213] ACPI: Dynamic OEM Table Load:
    [ 0.217215] ACPI: SSDT (null) 00152 (v01 PmRef Cpu1Ist 00003000 INTL 20040311)
    [ 0.217342] ACPI: Interpreter enabled
    [ 0.217346] ACPI: (supports S0 S3 S4 S5)
    [ 0.217362] ACPI: Using IOAPIC for interrupt routing
    [ 0.221381] ACPI: No dock devices found.
    [ 0.221383] HEST: Table not found.
    [ 0.221387] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.221434] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    [ 0.221543] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.221546] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 0.221548] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.221551] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    [ 0.221553] pci_root PNP0A03:00: host bridge window [mem 0xdff00000-0xfebfffff]
    [ 0.221565] pci 0000:00:00.0: [8086:29c0] type 0 class 0x000600
    [ 0.221605] pci 0000:00:01.0: [8086:29c1] type 1 class 0x000604
    [ 0.221640] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.221644] pci 0000:00:01.0: PME# disabled
    [ 0.221678] pci 0000:00:1a.0: [8086:2937] type 0 class 0x000c03
    [ 0.221716] pci 0000:00:1a.0: reg 20: [io 0xe100-0xe11f]
    [ 0.221762] pci 0000:00:1a.1: [8086:2938] type 0 class 0x000c03
    [ 0.221800] pci 0000:00:1a.1: reg 20: [io 0xe200-0xe21f]
    [ 0.221848] pci 0000:00:1a.2: [8086:2939] type 0 class 0x000c03
    [ 0.221886] pci 0000:00:1a.2: reg 20: [io 0xe000-0xe01f]
    [ 0.221936] pci 0000:00:1a.7: [8086:293c] type 0 class 0x000c03
    [ 0.221951] pci 0000:00:1a.7: reg 10: [mem 0xf8104000-0xf81043ff]
    [ 0.222032] pci 0000:00:1b.0: [8086:293e] type 0 class 0x000403
    [ 0.222046] pci 0000:00:1b.0: reg 10: [mem 0xf8100000-0xf8103fff 64bit]
    [ 0.222105] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.222109] pci 0000:00:1b.0: PME# disabled
    [ 0.222127] pci 0000:00:1c.0: [8086:2940] type 1 class 0x000604
    [ 0.222188] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.222192] pci 0000:00:1c.0: PME# disabled
    [ 0.222213] pci 0000:00:1c.4: [8086:2948] type 1 class 0x000604
    [ 0.222276] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.222279] pci 0000:00:1c.4: PME# disabled
    [ 0.222298] pci 0000:00:1c.5: [8086:294a] type 1 class 0x000604
    [ 0.222360] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.222363] pci 0000:00:1c.5: PME# disabled
    [ 0.222384] pci 0000:00:1d.0: [8086:2934] type 0 class 0x000c03
    [ 0.222422] pci 0000:00:1d.0: reg 20: [io 0xe300-0xe31f]
    [ 0.222468] pci 0000:00:1d.1: [8086:2935] type 0 class 0x000c03
    [ 0.222505] pci 0000:00:1d.1: reg 20: [io 0xe400-0xe41f]
    [ 0.222552] pci 0000:00:1d.2: [8086:2936] type 0 class 0x000c03
    [ 0.222590] pci 0000:00:1d.2: reg 20: [io 0xe500-0xe51f]
    [ 0.222640] pci 0000:00:1d.7: [8086:293a] type 0 class 0x000c03
    [ 0.222655] pci 0000:00:1d.7: reg 10: [mem 0xf8105000-0xf81053ff]
    [ 0.222732] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
    [ 0.222788] pci 0000:00:1f.0: [8086:2916] type 0 class 0x000601
    [ 0.222862] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0800 (mask 000f)
    [ 0.222866] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0290 (mask 000f)
    [ 0.222911] pci 0000:00:1f.2: [8086:2922] type 0 class 0x000106
    [ 0.222928] pci 0000:00:1f.2: reg 10: [io 0xe600-0xe607]
    [ 0.222935] pci 0000:00:1f.2: reg 14: [io 0xe700-0xe703]
    [ 0.222942] pci 0000:00:1f.2: reg 18: [io 0xe800-0xe807]
    [ 0.222949] pci 0000:00:1f.2: reg 1c: [io 0xe900-0xe903]
    [ 0.222957] pci 0000:00:1f.2: reg 20: [io 0xea00-0xea1f]
    [ 0.222964] pci 0000:00:1f.2: reg 24: [mem 0xf8106000-0xf81067ff]
    [ 0.223004] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.223008] pci 0000:00:1f.2: PME# disabled
    [ 0.223023] pci 0000:00:1f.3: [8086:2930] type 0 class 0x000c05
    [ 0.223036] pci 0000:00:1f.3: reg 10: [mem 0xf8107000-0xf81070ff 64bit]
    [ 0.223055] pci 0000:00:1f.3: reg 20: [io 0x0500-0x051f]
    [ 0.223108] pci 0000:01:00.0: [1002:9501] type 0 class 0x000300
    [ 0.223121] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.223131] pci 0000:01:00.0: reg 18: [mem 0xf5000000-0xf500ffff 64bit]
    [ 0.223138] pci 0000:01:00.0: reg 20: [io 0xb000-0xb0ff]
    [ 0.223150] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.223178] pci 0000:01:00.0: supports D1 D2
    [ 0.223196] pci 0000:01:00.1: [1002:aa18] type 0 class 0x000403
    [ 0.223208] pci 0000:01:00.1: reg 10: [mem 0xf5010000-0xf5013fff 64bit]
    [ 0.223261] pci 0000:01:00.1: supports D1 D2
    [ 0.223289] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.223292] pci 0000:00:01.0: bridge window [io 0xb000-0xbfff]
    [ 0.223295] pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf5ffffff]
    [ 0.223299] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.223343] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 0.223347] pci 0000:00:1c.0: bridge window [io 0xa000-0xafff]
    [ 0.223404] pci 0000:03:00.0: [197b:2363] type 0 class 0x000101
    [ 0.223487] pci 0000:03:00.0: reg 24: [mem 0xf8000000-0xf8001fff]
    [ 0.223547] pci 0000:03:00.0: PME# supported from D3hot
    [ 0.223552] pci 0000:03:00.0: PME# disabled
    [ 0.223580] pci 0000:03:00.1: [197b:2363] type 0 class 0x000101
    [ 0.223602] pci 0000:03:00.1: reg 10: [io 0xc000-0xc007]
    [ 0.223616] pci 0000:03:00.1: reg 14: [io 0xc100-0xc103]
    [ 0.223629] pci 0000:03:00.1: reg 18: [io 0xc200-0xc207]
    [ 0.223642] pci 0000:03:00.1: reg 1c: [io 0xc300-0xc303]
    [ 0.223655] pci 0000:03:00.1: reg 20: [io 0xc400-0xc40f]
    [ 0.223733] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.223746] pci 0000:00:1c.4: PCI bridge to [bus 03-03]
    [ 0.223750] pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
    [ 0.223753] pci 0000:00:1c.4: bridge window [mem 0xf8000000-0xf80fffff]
    [ 0.223813] pci 0000:04:00.0: [10ec:8168] type 0 class 0x000200
    [ 0.223831] pci 0000:04:00.0: reg 10: [io 0xd000-0xd0ff]
    [ 0.223860] pci 0000:04:00.0: reg 18: [mem 0xf7000000-0xf7000fff 64bit]
    [ 0.223895] pci 0000:04:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    [ 0.223970] pci 0000:04:00.0: supports D1 D2
    [ 0.223972] pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.223978] pci 0000:04:00.0: PME# disabled
    [ 0.223999] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.224008] pci 0000:00:1c.5: PCI bridge to [bus 04-04]
    [ 0.224012] pci 0000:00:1c.5: bridge window [io 0xd000-0xdfff]
    [ 0.224015] pci 0000:00:1c.5: bridge window [mem 0xf6000000-0xf7ffffff]
    [ 0.224072] pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode)
    [ 0.224076] pci 0000:00:1e.0: bridge window [io 0x9000-0x9fff]
    [ 0.224083] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.224085] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.224088] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.224090] pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.224093] pci 0000:00:1e.0: bridge window [mem 0xdff00000-0xfebfffff] (subtractive decode)
    [ 0.224112] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.224186] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
    [ 0.224217] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
    [ 0.224253] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX5._PRT]
    [ 0.224279] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
    [ 0.224356] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.224359] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [ 0.224361] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.232086] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 12 14 *15)
    [ 0.232131] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
    [ 0.232172] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
    [ 0.232212] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
    [ 0.232252] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
    [ 0.232293] ACPI: PCI Interrupt Link [LNKF] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
    [ 0.232333] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 9 10 11 *12 14 15)
    [ 0.232373] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 9 10 11 12 *14 15)
    [ 0.232459] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.232459] vgaarb: loaded
    [ 0.232459] vgaarb: bridge control possible 0000:01:00.0
    [ 0.232459] PCI: Using ACPI for IRQ routing
    [ 0.233794] PCI: pci_cache_line_size set to 64 bytes
    [ 0.233868] reserve RAM buffer: 000000000009dc00 - 000000000009ffff
    [ 0.233871] reserve RAM buffer: 00000000dfee0000 - 00000000dfffffff
    [ 0.233976] NetLabel: Initializing
    [ 0.233978] NetLabel: domain hash size = 128
    [ 0.233980] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.233992] NetLabel: unlabeled traffic allowed by default
    [ 0.234004] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.234008] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.234013] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.243422] Switching to clocksource hpet
    [ 0.249909] pnp: PnP ACPI init
    [ 0.249926] ACPI: bus type pnp registered
    [ 0.250024] pnp 00:00: [bus 00-3f]
    [ 0.250026] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.250029] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.250031] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.250033] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.250035] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 0.250037] pnp 00:00: [mem 0xdff00000-0xfebfffff window]
    [ 0.250100] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.250165] pnp 00:01: [io 0x0010-0x001f]
    [ 0.250167] pnp 00:01: [io 0x0022-0x003f]
    [ 0.250169] pnp 00:01: [io 0x0044-0x005f]
    [ 0.250171] pnp 00:01: [io 0x0062-0x0063]
    [ 0.250173] pnp 00:01: [io 0x0065-0x006f]
    [ 0.250174] pnp 00:01: [io 0x0074-0x007f]
    [ 0.250176] pnp 00:01: [io 0x0091-0x0093]
    [ 0.250178] pnp 00:01: [io 0x00a2-0x00bf]
    [ 0.250179] pnp 00:01: [io 0x00e0-0x00ef]
    [ 0.250181] pnp 00:01: [io 0x04d0-0x04d1]
    [ 0.250183] pnp 00:01: [io 0x0290-0x029f]
    [ 0.250184] pnp 00:01: [io 0x0800-0x087f]
    [ 0.250186] pnp 00:01: [io 0x0290-0x0294]
    [ 0.250188] pnp 00:01: [io 0x0880-0x088f]
    [ 0.250255] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [ 0.250258] system 00:01: [io 0x0290-0x029f] has been reserved
    [ 0.250260] system 00:01: [io 0x0800-0x087f] has been reserved
    [ 0.250263] system 00:01: [io 0x0290-0x0294] has been reserved
    [ 0.250265] system 00:01: [io 0x0880-0x088f] has been reserved
    [ 0.250268] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.250279] pnp 00:02: [dma 4]
    [ 0.250281] pnp 00:02: [io 0x0000-0x000f]
    [ 0.250283] pnp 00:02: [io 0x0080-0x0090]
    [ 0.250285] pnp 00:02: [io 0x0094-0x009f]
    [ 0.250287] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.250321] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.250365] pnp 00:03: [irq 0 disabled]
    [ 0.250376] pnp 00:03: [irq 8]
    [ 0.250378] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 0.250411] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.250434] pnp 00:04: [io 0x0070-0x0073]
    [ 0.250467] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.250475] pnp 00:05: [io 0x0061]
    [ 0.250505] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.250516] pnp 00:06: [io 0x00f0-0x00ff]
    [ 0.250521] pnp 00:06: [irq 13]
    [ 0.250554] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.250652] pnp 00:07: [io 0x03f0-0x03f5]
    [ 0.250654] pnp 00:07: [io 0x03f7]
    [ 0.250659] pnp 00:07: [irq 6]
    [ 0.250661] pnp 00:07: [dma 2]
    [ 0.250707] pnp 00:07: Plug and Play ACPI device, IDs PNP0700 (active)
    [ 0.250839] pnp 00:08: [io 0x03f8-0x03ff]
    [ 0.250844] pnp 00:08: [irq 4]
    [ 0.250906] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.251051] pnp 00:09: [io 0x0378-0x037f]
    [ 0.251057] pnp 00:09: [irq 7]
    [ 0.251106] pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.251179] pnp 00:0a: [io 0x0060]
    [ 0.251181] pnp 00:0a: [io 0x0064]
    [ 0.251186] pnp 00:0a: [irq 1]
    [ 0.251221] pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.251248] pnp 00:0b: [io 0x0400-0x04bf]
    [ 0.251299] system 00:0b: [io 0x0400-0x04bf] has been reserved
    [ 0.251302] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.251455] pnp 00:0c: [mem 0xf0000000-0xf3ffffff]
    [ 0.251513] system 00:0c: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.251517] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.251644] pnp 00:0d: [mem 0x000d2a00-0x000d3fff]
    [ 0.251646] pnp 00:0d: [mem 0x000f0000-0x000f7fff]
    [ 0.251648] pnp 00:0d: [mem 0x000f8000-0x000fbfff]
    [ 0.251649] pnp 00:0d: [mem 0x000fc000-0x000fffff]
    [ 0.251651] pnp 00:0d: [mem 0xdfee0000-0xdfefffff]
    [ 0.251653] pnp 00:0d: [mem 0x00000000-0x0009ffff]
    [ 0.251655] pnp 00:0d: [mem 0x00100000-0xdfedffff]
    [ 0.251657] pnp 00:0d: [mem 0xfec00000-0xfec00fff]
    [ 0.251659] pnp 00:0d: [mem 0xfed10000-0xfed1dfff]
    [ 0.251663] pnp 00:0d: [mem 0xfed20000-0xfed8ffff]
    [ 0.251665] pnp 00:0d: [mem 0xfee00000-0xfee00fff]
    [ 0.251667] pnp 00:0d: [mem 0xffb00000-0xffb7ffff]
    [ 0.251669] pnp 00:0d: [mem 0xfff00000-0xffffffff]
    [ 0.251671] pnp 00:0d: [mem 0x000e0000-0x000effff]
    [ 0.251735] system 00:0d: [mem 0x000d2a00-0x000d3fff] has been reserved
    [ 0.251738] system 00:0d: [mem 0x000f0000-0x000f7fff] could not be reserved
    [ 0.251741] system 00:0d: [mem 0x000f8000-0x000fbfff] could not be reserved
    [ 0.251743] system 00:0d: [mem 0x000fc000-0x000fffff] could not be reserved
    [ 0.251746] system 00:0d: [mem 0xdfee0000-0xdfefffff] could not be reserved
    [ 0.251749] system 00:0d: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.251751] system 00:0d: [mem 0x00100000-0xdfedffff] could not be reserved
    [ 0.251754] system 00:0d: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.251756] system 00:0d: [mem 0xfed10000-0xfed1dfff] has been reserved
    [ 0.251759] system 00:0d: [mem 0xfed20000-0xfed8ffff] has been reserved
    [ 0.251761] system 00:0d: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.251764] system 00:0d: [mem 0xffb00000-0xffb7ffff] has been reserved
    [ 0.251766] system 00:0d: [mem 0xfff00000-0xffffffff] has been reserved
    [ 0.251769] system 00:0d: [mem 0x000e0000-0x000effff] has been reserved
    [ 0.251772] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.251789] pnp 00:0e: [mem 0xffb80000-0xffbfffff]
    [ 0.251833] pnp 00:0e: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.251839] pnp: PnP ACPI: found 15 devices
    [ 0.251840] ACPI: ACPI bus type pnp unregistered
    [ 0.258732] PCI: max bus depth: 1 pci_try_num: 2
    [ 0.258768] pci 0000:00:1c.5: BAR 15: assigned [mem 0xdff00000-0xdfffffff pref]
    [ 0.258772] pci 0000:00:1c.5: BAR 15: assigned [mem 0xf8200000-0xf84fffff pref]
    [ 0.258777] pci 0000:00:1c.4: BAR 15: assigned [mem 0xf8500000-0xf86fffff 64bit pref]
    [ 0.258781] pci 0000:00:1c.0: BAR 14: assigned [mem 0xf8700000-0xf88fffff]
    [ 0.258785] pci 0000:00:1c.0: BAR 15: assigned [mem 0xf8900000-0xf8afffff 64bit pref]
    [ 0.258789] pci 0000:01:00.0: BAR 6: assigned [mem 0xf4000000-0xf401ffff pref]
    [ 0.258792] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.258794] pci 0000:00:01.0: bridge window [io 0xb000-0xbfff]
    [ 0.258798] pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf5ffffff]
    [ 0.258801] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.258805] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 0.258807] pci 0000:00:1c.0: bridge window [io 0xa000-0xafff]
    [ 0.258812] pci 0000:00:1c.0: bridge window [mem 0xf8700000-0xf88fffff]
    [ 0.258815] pci 0000:00:1c.0: bridge window [mem 0xf8900000-0xf8afffff 64bit pref]
    [ 0.258821] pci 0000:00:1c.4: PCI bridge to [bus 03-03]
    [ 0.258824] pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
    [ 0.258828] pci 0000:00:1c.4: bridge window [mem 0xf8000000-0xf80fffff]
    [ 0.258832] pci 0000:00:1c.4: bridge window [mem 0xf8500000-0xf86fffff 64bit pref]
    [ 0.258838] pci 0000:04:00.0: BAR 6: assigned [mem 0xf8200000-0xf820ffff pref]
    [ 0.258840] pci 0000:00:1c.5: PCI bridge to [bus 04-04]
    [ 0.258843] pci 0000:00:1c.5: bridge window [io 0xd000-0xdfff]
    [ 0.258847] pci 0000:00:1c.5: bridge window [mem 0xf6000000-0xf7ffffff]
    [ 0.258851] pci 0000:00:1c.5: bridge window [mem 0xf8200000-0xf84fffff pref]
    [ 0.258856] pci 0000:00:1e.0: PCI bridge to [bus 05-05]
    [ 0.258859] pci 0000:00:1e.0: bridge window [io 0x9000-0x9fff]
    [ 0.258877] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.258881] pci 0000:00:01.0: setting latency timer to 64
    [ 0.258887] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.258890] pci 0000:00:1c.0: setting latency timer to 64
    [ 0.258896] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.258900] pci 0000:00:1c.4: setting latency timer to 64
    [ 0.258908] pci 0000:00:1c.5: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.258912] pci 0000:00:1c.5: setting latency timer to 64
    [ 0.258917] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.258921] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.258923] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.258925] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.258928] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.258930] pci_bus 0000:00: resource 8 [mem 0xdff00000-0xfebfffff]
    [ 0.258932] pci_bus 0000:01: resource 0 [io 0xb000-0xbfff]
    [ 0.258934] pci_bus 0000:01: resource 1 [mem 0xf4000000-0xf5ffffff]
    [ 0.258937] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.258939] pci_bus 0000:02: resource 0 [io 0xa000-0xafff]
    [ 0.258941] pci_bus 0000:02: resource 1 [mem 0xf8700000-0xf88fffff]
    [ 0.258943] pci_bus 0000:02: resource 2 [mem 0xf8900000-0xf8afffff 64bit pref]
    [ 0.258945] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    [ 0.258947] pci_bus 0000:03: resource 1 [mem 0xf8000000-0xf80fffff]
    [ 0.258950] pci_bus 0000:03: resource 2 [mem 0xf8500000-0xf86fffff 64bit pref]
    [ 0.258952] pci_bus 0000:04: resource 0 [io 0xd000-0xdfff]
    [ 0.258954] pci_bus 0000:04: resource 1 [mem 0xf6000000-0xf7ffffff]
    [ 0.258956] pci_bus 0000:04: resource 2 [mem 0xf8200000-0xf84fffff pref]
    [ 0.258958] pci_bus 0000:05: resource 0 [io 0x9000-0x9fff]
    [ 0.258961] pci_bus 0000:05: resource 4 [io 0x0000-0x0cf7]
    [ 0.258963] pci_bus 0000:05: resource 5 [io 0x0d00-0xffff]
    [ 0.258965] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.258967] pci_bus 0000:05: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.258969] pci_bus 0000:05: resource 8 [mem 0xdff00000-0xfebfffff]
    [ 0.259005] NET: Registered protocol family 2
    [ 0.259137] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.260130] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.263890] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.264389] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.264391] TCP reno registered
    [ 0.264400] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.264438] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.264577] NET: Registered protocol family 1
    [ 0.264739] pci 0000:01:00.0: Boot video device
    [ 0.264751] PCI: CLS 32 bytes, default 64
    [ 0.264806] Unpacking initramfs...
    [ 0.302179] Freeing initrd memory: 2592k freed
    [ 0.302879] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.302883] Placing 64MB software IO TLB between ffff8800dbeda000 - ffff8800dfeda000
    [ 0.302885] software IO TLB at phys 0xdbeda000 - 0xdfeda000
    [ 0.303306] audit: initializing netlink socket (disabled)
    [ 0.303320] type=2000 audit(1329768309.299:1): initialized
    [ 0.315130] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.338613] VFS: Disk quotas dquot_6.5.2
    [ 0.338676] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.338772] msgmni has been set to 7909
    [ 0.338940] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.338964] io scheduler noop registered
    [ 0.338966] io scheduler deadline registered
    [ 0.339000] io scheduler cfq registered (default)
    [ 0.339111] pcieport 0000:00:01.0: setting latency timer to 64
    [ 0.339140] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.339187] pcieport 0000:00:1c.0: setting latency timer to 64
    [ 0.339219] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    [ 0.339274] pcieport 0000:00:1c.4: setting latency timer to 64
    [ 0.339307] pcieport 0000:00:1c.4: irq 42 for MSI/MSI-X
    [ 0.339360] pcieport 0000:00:1c.5: setting latency timer to 64
    [ 0.339392] pcieport 0000:00:1c.5: irq 43 for MSI/MSI-X
    [ 0.339554] intel_idle: MWAIT substates: 0x220
    [ 0.339556] intel_idle: does not run on family 6 model 15
    [ 0.339588] ERST: Table is not found!
    [ 0.339589] GHES: HEST is not enabled!
    [ 0.339655] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.360148] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.490595] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.523556] Linux agpgart interface v0.103
    [ 0.523632] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 0.523634] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 0.523753] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.523858] mousedev: PS/2 mouse device common for all mice
    [ 0.523920] rtc_cmos 00:04: RTC can wake from S4
    [ 0.524016] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.524040] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 0.524049] cpuidle: using governor ladder
    [ 0.524051] cpuidle: using governor menu
    [ 0.524260] TCP cubic registered
    [ 0.524381] NET: Registered protocol family 10
    [ 0.524806] NET: Registered protocol family 17
    [ 0.524810] Registering the dns_resolver key type
    [ 0.524938] PM: Hibernation image not present or could not be loaded.
    [ 0.524943] registered taskstats version 1
    [ 0.536057] rtc_cmos 00:04: setting system clock to 2012-02-20 20:05:09 UTC (1329768309)
    [ 0.536101] Initializing network drop monitor service
    [ 0.537405] Freeing unused kernel memory: 736k freed
    [ 0.537530] Write protecting the kernel read-only data: 8192k
    [ 0.542868] Freeing unused kernel memory: 1636k freed
    [ 0.545368] Freeing unused kernel memory: 660k freed
    [ 0.552316] udevd[37]: starting version 181
    [ 0.562725] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.586477] usbcore: registered new interface driver usbfs
    [ 0.586503] usbcore: registered new interface driver hub
    [ 0.586559] usbcore: registered new device driver usb
    [ 0.589654] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.589690] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 0.589716] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    [ 0.589719] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    [ 0.589752] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 0.592343] uhci_hcd: USB Universal Host Controller Interface driver
    [ 0.593681] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
    [ 0.593700] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xf8104000
    [ 0.597428] SCSI subsystem initialized
    [ 0.605223] libata version 3.00 loaded.
    [ 0.606703] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 0.606886] hub 1-0:1.0: USB hub found
    [ 0.606891] hub 1-0:1.0: 6 ports detected
    [ 0.606992] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 0.607019] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 0.607023] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 0.607032] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 0.610951] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    [ 0.610968] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf8105000
    [ 0.617006] pata_acpi 0000:03:00.1: enabling device (0000 -> 0001)
    [ 0.617013] pata_acpi 0000:03:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.617040] pata_acpi 0000:03:00.1: setting latency timer to 64
    [ 0.617052] pata_acpi 0000:03:00.1: PCI INT B disabled
    [ 0.617278] pata_jmicron 0000:03:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.617298] pata_jmicron 0000:03:00.1: setting latency timer to 64
    [ 0.617744] scsi0 : pata_jmicron
    [ 0.617828] scsi1 : pata_jmicron
    [ 0.618265] ata1: PATA max UDMA/100 cmd 0xc000 ctl 0xc100 bmdma 0xc400 irq 17
    [ 0.618268] ata2: PATA max UDMA/100 cmd 0xc200 ctl 0xc300 bmdma 0xc408 irq 17
    [ 0.623351] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 0.623510] hub 2-0:1.0: USB hub found
    [ 0.623514] hub 2-0:1.0: 6 ports detected
    [ 0.624287] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.624294] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 0.624297] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 0.624313] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 0.624345] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e100
    [ 0.624476] hub 3-0:1.0: USB hub found
    [ 0.624480] hub 3-0:1.0: 2 ports detected
    [ 0.624556] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    [ 0.624562] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 0.624565] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 0.624572] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 0.624599] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e200
    [ 0.624720] hub 4-0:1.0: USB hub found
    [ 0.624724] hub 4-0:1.0: 2 ports detected
    [ 0.624794] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 0.624799] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    [ 0.624802] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 0.624811] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    [ 0.624831] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e000
    [ 0.624951] hub 5-0:1.0: USB hub found
    [ 0.624955] hub 5-0:1.0: 2 ports detected
    [ 0.625023] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 0.625028] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 0.625031] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 0.625038] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    [ 0.625059] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
    [ 0.625179] hub 6-0:1.0: USB hub found
    [ 0.625183] hub 6-0:1.0: 2 ports detected
    [ 0.625254] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 0.625259] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 0.625262] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 0.625269] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 0.625297] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
    [ 0.625418] hub 7-0:1.0: USB hub found
    [ 0.625421] hub 7-0:1.0: 2 ports detected
    [ 0.625490] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 0.625495] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 0.625498] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 0.625506] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 0.625527] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
    [ 0.625645] hub 8-0:1.0: USB hub found
    [ 0.625649] hub 8-0:1.0: 2 ports detected
    [ 0.625725] ahci 0000:00:1f.2: version 3.0
    [ 0.625733] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 0.625778] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
    [ 0.625816] ahci: SSS flag set, parallel bus scan disabled
    [ 0.625848] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
    [ 0.625852] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ccc ems
    [ 0.625856] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.657359] scsi2 : ahci
    [ 0.657437] scsi3 : ahci
    [ 0.657507] scsi4 : ahci
    [ 0.657578] scsi5 : ahci
    [ 0.657650] scsi6 : ahci
    [ 0.657718] scsi7 : ahci
    [ 0.657853] ata3: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106100 irq 44
    [ 0.657857] ata4: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106180 irq 44
    [ 0.657859] ata5: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106200 irq 44
    [ 0.657862] ata6: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106280 irq 44
    [ 0.657865] ata7: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106300 irq 44
    [ 0.657867] ata8: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106380 irq 44
    [ 0.657896] ahci 0000:03:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.670048] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
    [ 0.670053] ahci 0000:03:00.0: flags: 64bit ncq pm led clo pmp pio slum part
    [ 0.670059] ahci 0000:03:00.0: setting latency timer to 64
    [ 0.670494] scsi8 : ahci
    [ 0.670788] scsi9 : ahci
    [ 0.670874] ata9: SATA max UDMA/133 abar m8192@0xf8000000 port 0xf8000100 irq 16
    [ 0.670878] ata10: SATA max UDMA/133 abar m8192@0xf8000000 port 0xf8000180 irq 16
    [ 0.966690] usb 2-3: new high-speed USB device number 2 using ehci_hcd
    [ 0.983370] ata10: SATA link down (SStatus 0 SControl 300)
    [ 0.990049] ata9: SATA link down (SStatus 0 SControl 300)
    [ 1.140041] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.151383] ata3.00: ATA-8: WDC WD3200AAKS-00VYA0, 12.01B02, max UDMA/133
    [ 1.151387] ata3.00: 625142448 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 1.152173] ata3.00: configured for UDMA/133
    [ 1.152297] scsi 2:0:0:0: Direct-Access ATA WDC WD3200AAKS-0 12.0 PQ: 0 ANSI: 5
    [ 1.303358] Refined TSC clocksource calibration: 2333.333 MHz.
    [ 1.303363] Switching to clocksource tsc
    [ 1.423352] usb 3-1: new low-speed USB device number 2 using uhci_hcd
    [ 1.636760] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.638730] ata4.00: ATAPI: PIONEER DVD-RW DVR-216D, 1.09, max UDMA/66
    [ 1.640744] ata4.00: configured for UDMA/66 (SET_XFERMODE skipped)
    [ 1.652637] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1:1.0/input/input1
    [ 1.652719] generic-usb 0003:046D:C518.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1a.0-1/input0
    [ 1.682469] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1:1.1/input/input2
    [ 1.682581] generic-usb 0003:046D:C518.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1a.0-1/input1
    [ 1.682660] usbcore: registered new interface driver usbhid
    [ 1.682662] usbhid: USB HID core driver
    [ 1.703319] scsi 3:0:0:0: CD-ROM PIONEER DVD-RW DVR-216D 1.09 PQ: 0 ANSI: 5
    [ 1.833356] usb 8-2: new full-speed USB device number 2 using uhci_hcd
    [ 2.190031] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.190225] ata5.00: ATAPI: PLEXTOR DVDR PX-880SA, 1.12, max UDMA/100
    [ 2.190887] ata5.00: configured for UDMA/100
    [ 2.192517] scsi 4:0:0:0: CD-ROM PLEXTOR DVDR PX-880SA 1.12 PQ: 0 ANSI: 5
    [ 2.676695] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.676900] ata6.00: ATAPI: ATAPI iHAS524 A, BL2J, max UDMA/100
    [ 2.677593] ata6.00: configured for UDMA/100
    [ 2.679182] scsi 5:0:0:0: CD-ROM ATAPI iHAS524 A BL2J PQ: 0 ANSI: 5
    [ 2.996691] ata7: SATA link down (SStatus 0 SControl 300)
    [ 3.316691] ata8: SATA link down (SStatus 0 SControl 300)
    [ 3.323729] sd 2:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 3.323777] sd 2:0:0:0: [sda] Write Protect is off
    [ 3.323780] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 3.323800] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.386721] sda: sda1 sda2 sda3 < sda5 sda6 sda7 sda8 sda9 >
    [ 3.387247] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 3.556655] sr0: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda tray
    [ 3.556658] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 3.556876] sr 3:0:0:0: Attached scsi CD-ROM sr0
    [ 3.560147] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 3.560302] sr 4:0:0:0: Attached scsi CD-ROM sr1
    [ 3.563594] sr2: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 3.564247] sr 5:0:0:0: Attached scsi CD-ROM sr2
    [ 4.070817] EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.358476] udevd[175]: starting version 181
    [ 5.474506] lp: driver loaded but no devices found
    [ 5.475629] IT8718 SuperIO detected.
    [ 5.475878] parport_pc 00:09: reported by Plug and Play ACPI
    [ 5.475918] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
    [ 5.477334] parport0: Printer, Brother HL-1030 series
    [ 5.477416] lp0: using parport0 (interrupt-driven).
    [ 5.517688] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
    [ 5.517695] ACPI: Power Button [PWRB]
    [ 5.517765] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 5.517769] ACPI: Power Button [PWRF]
    [ 5.551233] WARNING! power/level is deprecated; use power/control instead
    [ 5.564973] Floppy drive(s): fd0 is 1.44M
    [ 5.571097] ppdev: user-space parallel port driver
    [ 5.580334] FDC 0 is a post-1991 82077
    [ 5.595497] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 5.606414] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 5.643249] Bluetooth: Core ver 2.16
    [ 5.643265] NET: Registered protocol family 31
    [ 5.643267] Bluetooth: HCI device and connection manager initialized
    [ 5.643270] Bluetooth: HCI socket layer initialized
    [ 5.643271] Bluetooth: L2CAP socket layer initialized
    [ 5.643277] Bluetooth: SCO socket layer initialized
    [ 5.644168] Bluetooth: Generic Bluetooth USB driver ver 0.6
    [ 5.644419] usbcore: registered new interface driver btusb
    [ 5.652026] iTCO_vendor_support: vendor-support=0
    [ 5.709504] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    [ 5.709631] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
    [ 5.727686] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 5.727705] r8169 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 5.727734] r8169 0000:04:00.0: setting latency timer to 64
    [ 5.727800] r8169 0000:04:00.0: irq 45 for MSI/MSI-X
    [ 5.728211] r8169 0000:04:00.0: eth0: RTL8168b/8111b at 0xffffc90000640000, 00:1a:4d:50:f7:57, XID 18000000 IRQ 45
    [ 5.728214] r8169 0000:04:00.0: eth0: jumbo features [frames: 4080 bytes, tx checksumming: ko]
    [ 5.747940] [drm] Initialized drm 1.1.0 20060810
    [ 5.777332] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 5.777338] pci 0000:01:00.0: setting latency timer to 64
    [ 5.777490] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 5.777492] [drm] No driver support for vblank timestamp query.
    [ 5.777495] [drm] Initialized radeon 1.33.0 20080528 for 0000:01:00.0 on minor 0
    [ 5.851806] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 5.851809] hda_intel: position_fix set to 1 for device 1458:a022
    [ 5.851863] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 5.851886] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
    [ 6.013524] hda_codec: ALC889A: BIOS auto-probing.
    [ 6.029368] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 6.030255] snd_hda_intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 6.030332] snd_hda_intel 0000:01:00.1: irq 47 for MSI/MSI-X
    [ 6.030369] snd_hda_intel 0000:01:00.1: setting latency timer to 64
    [ 6.088913] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
    [ 6.089067] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input7
    [ 7.446383] EXT4-fs (sda9): re-mounted. Opts: (null)
    [ 7.545273] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.566720] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.701158] Adding 7823616k swap on /dev/sda7. Priority:-1 extents:1 across:7823616k
    [ 9.038265] r8169 0000:04:00.0: eth0: link down
    [ 9.038272] r8169 0000:04:00.0: eth0: link down
    [ 9.038715] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 11.413267] r8169 0000:04:00.0: eth0: link up
    [ 11.413793] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 19.706297] FS-Cache: Loaded
    [ 19.723537] RPC: Registered named UNIX socket transport module.
    [ 19.723540] RPC: Registered udp transport module.
    [ 19.723542] RPC: Registered tcp transport module.
    [ 19.723543] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 19.751238] FS-Cache: Netfs 'nfs' registered for caching
    [ 21.883339] eth0: no IPv6 routers present
    [ 34.718456] EXT4-fs (sda9): re-mounted. Opts: commit=0
    [ 35.061809] EXT4-fs (sda6): re-mounted. Opts: commit=0
    [ 35.717036] EXT4-fs (sda5): re-mounted. Opts: commit=0
    [ 54.909473] hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.
    Xorg.0.log ("working one" with dri disabled):
    [ 20.695]
    X.Org X Server 1.11.4
    Release Date: 2012-01-27
    [ 20.713] X Protocol Version 11, Revision 0
    [ 20.713] Build Operating System: Linux 3.2.2-1-ARCH x86_64
    [ 20.713] Current Operating System: Linux noejoe-Desktop 3.2.6-2-ARCH #1 SMP PREEMPT Thu Feb 16 10:10:02 CET 2012 x86_64
    [ 20.713] Kernel command line: root=/dev/sda9 ro radeon.modeset=0 video=1280x1024
    [ 20.713] Build Date: 29 January 2012 03:38:00PM
    [ 20.713]
    [ 20.713] Current version of pixman: 0.24.4
    [ 20.713] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 20.713] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 20.713] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Feb 20 20:05:29 2012
    [ 20.755] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 20.772] (==) No Layout section. Using the first Screen section.
    [ 20.772] (==) No screen section available. Using defaults.
    [ 20.772] (**) |-->Screen "Default Screen Section" (0)
    [ 20.772] (**) | |-->Monitor "<default monitor>"
    [ 20.773] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 20.773] (**) | |-->Device "ATI Radeon HD3870"
    [ 20.773] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 20.773] (==) Automatically adding devices
    [ 20.773] (==) Automatically enabling devices
    [ 20.808] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 20.808] Entry deleted from font path.
    [ 20.808] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 20.808] Entry deleted from font path.
    [ 20.808] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 20.808] Entry deleted from font path.
    [ 20.808] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 20.808] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 20.808] Entry deleted from font path.
    [ 20.808] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 20.808] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 20.808] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 20.808] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 20.808] (II) Loader magic: 0x7ccae0
    [ 20.808] (II) Module ABI versions:
    [ 20.808] X.Org ANSI C Emulation: 0.4
    [ 20.808] X.Org Video Driver: 11.0
    [ 20.808] X.Org XInput driver : 13.0
    [ 20.808] X.Org Server Extension : 6.0
    [ 20.809] (--) PCI:*(0:1:0:0) 1002:9501:1787:2003 rev 0, Mem @ 0xe0000000/268435456, 0xf5000000/65536, I/O @ 0x0000b000/256, BIOS @ 0x????????/131072
    [ 20.809] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 20.809] (II) LoadModule: "extmod"
    [ 20.840] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 20.851] (II) Module extmod: vendor="X.Org Foundation"
    [ 20.851] compiled for 1.11.4, module version = 1.0.0
    [ 20.851] Module class: X.Org Server Extension
    [ 20.851] ABI class: X.Org Server Extension, version 6.0
    [ 20.851] (II) Loading extension MIT-SCREEN-SAVER
    [ 20.851] (II) Loading extension XFree86-VidModeExtension
    [ 20.851] (II) Loading extension XFree86-DGA
    [ 20.851] (II) Loading extension DPMS
    [ 20.851] (II) Loading extension XVideo
    [ 20.851] (II) Loading extension XVideo-MotionCompensation
    [ 20.851] (II) Loading extension X-Resource
    [ 20.851] (II) LoadModule: "dbe"
    [ 20.852] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 20.852] (II) Module dbe: vendor="X.Org Foundation"
    [ 20.852] compiled for 1.11.4, module version = 1.0.0
    [ 20.852] Module class: X.Org Server Extension
    [ 20.852] ABI class: X.Org Server Extension, version 6.0
    [ 20.852] (II) Loading extension DOUBLE-BUFFER
    [ 20.852] (II) LoadModule: "glx"
    [ 20.852] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 20.867] (II) Module glx: vendor="X.Org Foundation"
    [ 20.867] compiled for 1.11.4, module version = 1.0.0
    [ 20.867] ABI class: X.Org Server Extension, version 6.0
    [ 20.867] (==) AIGLX enabled
    [ 20.867] (II) Loading extension GLX
    [ 20.867] (II) LoadModule: "record"
    [ 20.867] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 20.868] (II) Module record: vendor="X.Org Foundation"
    [ 20.868] compiled for 1.11.4, module version = 1.13.0
    [ 20.868] Module class: X.Org Server Extension
    [ 20.868] ABI class: X.Org Server Extension, version 6.0
    [ 20.868] (II) Loading extension RECORD
    [ 20.868] (II) LoadModule: "dri"
    [ 20.868] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 20.879] (II) Module dri: vendor="X.Org Foundation"
    [ 20.879] compiled for 1.11.4, module version = 1.0.0
    [ 20.879] ABI class: X.Org Server Extension, version 6.0
    [ 20.879] (II) Loading extension XFree86-DRI
    [ 20.879] (II) LoadModule: "dri2"
    [ 20.880] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 20.880] (II) Module dri2: vendor="X.Org Foundation"
    [ 20.880] compiled for 1.11.4, module version = 1.2.0
    [ 20.880] ABI class: X.Org Server Extension, version 6.0
    [ 20.880] (II) Loading extension DRI2
    [ 20.880] (II) LoadModule: "radeon"
    [ 20.881] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 20.917] (II) Module radeon: vendor="X.Org Foundation"
    [ 20.917] compiled for 1.11.1.902, module version = 6.14.3
    [ 20.917] Module class: X.Org Video Driver
    [ 20.917] ABI class: X.Org Video Driver, version 11.0
    [ 20.918] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV50

    Thanks for the responses, but catalyst/fglrx never was an option for me.
    Today I changed my graphics card, still had an ATI HD2600XT lying around here.
    Now everything works perfectly, must have been some hardware fault with the other card, although it worked as it should in Windows 7.
    Right now quite happy with kms and gallium

  • Image Processing (JAI-API) Instalation problem

    I am developing the software in Image processing (remote sensing). I am facing the following problem when i run the program.
    C:\java_ex>javac SimpleJAITest.java
    SimpleJAITest.java:23: cannot resolve symbol
    symbol : class ScrollingImagePanel
    location: class SimpleJAITest
    ScrollingImagePanel panel1, panel2;
    ^
    SimpleJAITest.java:36: cannot resolve symbol
    symbol : class ScrollingImagePanel
    location: class SimpleJAITest
    panel1 = new ScrollingImagePanel(loadImage, 300, 300);
    ^
    SimpleJAITest.java:78: cannot resolve symbol
    symbol : class ScrollingImagePanel
    location: class SimpleJAITest
    panel2 = new ScrollingImagePanel(outImage, 300, 300);
    ^
    Note: SimpleJAITest.java uses or overrides a deprecated API.
    Note: Recompile with -deprecation for details.
    3 errors
    Please send the information regarding installation of Java Advance Imaging kit
    and link to download JAI API
    Also send the solution of this problem

    C:\java_ex>javac SimpleJAITest.java -Xlint:deprecation
    SimpleJAITest.java:23: cannot find symbol
    symbol : class ScrollingImagePanel
    location: class SimpleJAITest
    ScrollingImagePanel panel1, panel2;
    ^
    SimpleJAITest.java:29: warning: [deprecation] set(java.lang.Object,java.lang.Str
    ing) in javax.media.jai.ParameterBlockJAI has been deprecated
    loadPB.set(argv[0], "hs");
    ^
    SimpleJAITest.java:36: cannot find symbol
    symbol : class ScrollingImagePanel
    location: class SimpleJAITest
    panel1 = new ScrollingImagePanel(loadImage, 300, 300);
    ^
    SimpleJAITest.java:39: warning: [deprecation] show() in java.awt.Window has been
    deprecated
    window1.show();
    ^
    SimpleJAITest.java:78: cannot find symbol
    symbol : class ScrollingImagePanel
    location: class SimpleJAITest
    panel2 = new ScrollingImagePanel(outImage, 300, 300);
    ^
    SimpleJAITest.java:81: warning: [deprecation] show() in java.awt.Window has been
    deprecated
    window2.show();
    ^
    SimpleJAITest.java:87: warning: [deprecation] set(java.lang.Object,java.lang.Str
    ing) in javax.media.jai.ParameterBlockJAI has been deprecated
    savePB.set(argv[1], "filename");
    ^
    SimpleJAITest.java:88: warning: [deprecation] set(java.lang.Object,java.lang.Str
    ing) in javax.media.jai.ParameterBlockJAI has been deprecated
    savePB.set(argv[2], "format");
    ^
    3 errors
    5 warnings

Maybe you are looking for

  • G/l a/c fast entry docment use

    hi sap guru's what is the use of G/L a/c fast entry screen . what is the difference between to other documents posting of TC.F-02.

  • Navigational Attribute Transported but not reflected.

    Hi, Couple of Navigational Attributes were transported from Dev to QA. But its not reflecting in QA now. In the Transport Log its giving the warning message message as, Navigation attribute ZABCLOC_ZZLINETYPE1 is deleted (not in characteristic ZABCLO

  • Upgrading N586 CPU to A10-4600m

    I have heard of many people upgrading their AMD A6-4400m to the more powerful A10-4600m as they are the same socket (FS1r2) with great success. I was planning to do the same and wondering if its possible to switch them out on a lenovo laptop and if t

  • Set Location to devices

    Hi all, We have a client with more than 1200 devices across 8 sites. When the VoIP was deployed to this client we did not use Locations to control tha bandwith, but now we are setting QoS in WAN connection and we need assign each device to the right

  • How do you play an album from start to finish without mixing the songs?

    I may be old-fashioned, but I want to play my albums from start to finish without having the songs mixed. I have tried almost anything, but it kips jumping randomly from song to song on an album. Extremely annoying if you are listening to a concept a