JSP very slow

hi there, I was just wondering on this.
I set up tomcat and it is running on a 200Mhz machine with only 64mb of ram, running apache 9.0 (which is a little ram hungry!)
it is running painfully slow, just wondering what the key factor is with jsp is it processor speed? ram? what?
BTW not going through apache and these files are the exmaples jsp pages from tomcat. also running tomcat 4.1.2
thanks

The first time you access a JSP page via a web browser, Tomcat has to convert your JSP page into a sort of temporary Servlet, compile it into a class file, then "execute" the class file to generate HTTP output.
Subsequent attempts to access that JSP page simply "executes" the existing class file. Tomcat will refrain from recompiling it unless either a) Tomcat has rebooted since the class file was generated, or b) the Tomcat administrator has sent it an explicit instruction to recompile the class.
So yes, the behavior you've described is to be expected; the initial delay is the conversion/compilation of the class. If subsequent connections are fast enough for your taste, then you're ok. A good way to test it is to make a JSP page that accepts a parameter and prints it back out to the user via the web page. When Tomcat gets the request the second time, it will just pass the parameter to the class object.
If you still must do some tweaking - such as precompiling aka "preloading" classes when the server is booted, check out the Tomcat documentation at the Jakarta site.

Similar Messages

  • Include JSP very slow

    Hi,
              On Weblogic 8.1 (Windows 2000) when I include a JSP using standard Tabglib (c.tld), Struts Tiles and classic <jsp:include , each include takes 1,5 or 2 seconds.
              The JSP generates java source only one time but each time we access a page the includes of JSP takes 2 seconds.
              Sometimes with Struts Tiles we've got a "socket write error" :
              [04/04/2008 10:25:49.419] ERROR org.apache.struts.taglib.tiles.InsertTag - ServletException in '/WEB-INF/pagesJsp/commun/gabarit.jsp': Can't insert page '/WEB-INF/pagesJsp/commun/filAriane.jsp' : Software caused connection abort: socket write error
              I can't find that happens.
              Do you have an idea ?
              Jemini
              Edited by jemini_fr at 04/07/2008 1:41 AM

    Hi,
              What's your experience with OSWorkflow?
              Was it worth the learning curve?
              Why did you decide for such a Workflow engine?
              Why didn't you use just normal programming and maybe something like Spring and Hibernate?
              Why did you add OSWorkflow to the mix?
              When would you not add OSWorkflow to the mix?
              Thanks for some info,
              Best regards,
              Marky ([email protected])

  • Oracle HTTP JSP gets very slow on 9i

    PLateform : Windows 2000
    I have changed from Oracle 8i to Oracle 9i. Than I
    installed Oracle Chartbuilder from
    http://otn.oracle.com/software/tech/java/servlets/htdocs/utilsoft.htm
    On the 9i Apache this application runs very very slow
    It looks a little bit like he is compiling the jsp
    every time it is called.
    Does anybody know whats wrong or where I have to configure something ???
    Peter S.

    1. Are the database parameters the same on each of the systems (ie. LARGE_POOL_SIZE)? You may want to check on any potential bottlenecks during the restore by looking in V$BACKUP_SYNC_IO and V$BACKUP_ASYNC_IO.
    2. You can limit the amount of datafiles included in a backup set by setting the MAXSETSIZE parameter. Be careful not to set this value too low. If a datafile is bigger than MAXSETSIZE, then the backup will fail.

  • Queries very slow in JSP

    Hi,
    I am working with an Application Server and a Database Oracle 10g. In the JSP's I have a problem with the queries, there are some queries that work very slow, it is not logical for me, because the same query executed in Toad or SQLPlus works very fast.
    For example this query:
    SELECT MAX(COL1) FROM MYTABLE WHERE COL2 = +PARAMETER
    it is very slow in JSP, I have try to do a stored function that returns the result of this query, but it's also is slow:
    SELECT MY_FUNCTION FROM DUAL
    I haven't a lot of experience with JSP. Please, can someone help me?
    Thanks in advance.
    Fernando.

    Hello Krystian.
    Yes, I'm using prepared statements, but I don't know if this can altered the result of a query.
    I'm going to add the result of the trace:
    /* THIS IS THE TOAD EXECUTION */
    SELECT MAX(MED2.MEDICION_ID)
    FROM
    T_MEDICIONES MED2 WHERE MED2.DISPOSITIVO_SENSOR_ID=340 AND VALIDA = 'S'
    call count cpu elapsed disk query current rows
    Parse 2 0.00 0.00 0 0 0 0
    Execute 2 0.00 0.00 0 0 0 0
    Fetch 2 0.00 0.00 0 6 0 2
    total 6 0.00 0.00 0 6 0 2
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 58
    Rows Row Source Operation
    1 SORT AGGREGATE (cr=3 pr=0 pw=0 time=181 us)
    1 FIRST ROW (cr=3 pr=0 pw=0 time=121 us)
    1 INDEX RANGE SCAN (MIN/MAX) IND_MEDICIONES_DISP_SENS (cr=3 pr=0 pw=0 time=110 us)(object id 50555)
    explain plan set statement_id='ROOT:020306140415' into PLAN_TABLE For SELECT MAX(MED2.MEDICION_ID)
    FROM
    T_MEDICIONES MED2 WHERE MED2.DISPOSITIVO_SENSOR_ID=340 AND VALIDA = 'S'
    call count cpu elapsed disk query current rows
    Parse 1 0.01 0.01 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 0 0.00 0.00 0 0 0 0
    total 2 0.01 0.01 0 0 0 0
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 58
    Rows Row Source Operation
    0 SORT AGGREGATE (cr=0 pr=0 pw=0 time=0 us)
    0 FIRST ROW (cr=0 pr=0 pw=0 time=0 us)
    0 INDEX RANGE SCAN (MIN/MAX) IND_MEDICIONES_DISP_SENS (cr=0 pr=0 pw=0 time=0 us)(object id 50555)
    /* THIS IS THE JSP EXECUTION */
    explain plan set statement_id='ROOT:020306121435' into PLAN_TABLE For /* Formatted on 2006/02/03 12:14 (Formatter Plus v4.8.5) */
    SELECT MAX (med2.medicion_id)
    FROM t_mediciones med2
    WHERE med2.dispositivo_sensor_id = 340
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.01 0.01 0 0 0 0
    Fetch 0 0.00 0.00 0 0 0 0
    total 2 0.02 0.02 0 0 0 0
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 58
    Rows Row Source Operation
    0 SORT AGGREGATE (cr=0 pr=0 pw=0 time=0 us)
    0 INDEX FAST FULL SCAN IND_MEDICIONES_DISP_SENS (cr=0 pr=0 pw=0 time=0 us)(object id 50555)
    ********************************************************************************

  • Satellite L300-1BW - Is very slow

    Hi, everyone!
    Recently, I bought TOSHIBA SATELLITE L300-1BW (PSLB8E)
    Link: http://uk.computers.toshiba-europe.com/innovation/jsp/supportMyProduct.do?service=UK&userAction=SMP_RESU LTS_PAGE&partNumber=PSLB8E-03F007EN&serialNumber=Y8805872q&USER_ACTION=Serial %20number
    I need this for my study and home using. Computer working VERY slowly. Now I have a Windows XP Pro SP3 64-bit version. Programs what I have only Ms Office, Skype, Nero, antivirus - BitDefender. I do not play any games. Application Im using for my study only - Ms Word.
    My computer was checked in service center and no any faults were wound - no any sofware and hardware damages, viruses, no any manufacture faults. Owners of these model please give me advice what to do. I stucked!
    Do I need to install Windows XP 32bit or install Windows 2000 or any hardware upgrade (memory ... whatever)? I don`t want be disappointed by TOSHIBA!
    Ill appreciate any HELP!

    Hi buddy,
    Can you be a little bit more detailed, please? What do you understand with very slow?
    How long it takes to startup Windows?
    How long it takes to start an application?
    I have to say that Windows XP 64bit wasnt popular and there is no official support from Toshiba for this OS. If you want to use Windows XP, I can recommend installing the 32bit version.
    Have you tested your notebook with factory settings? Does it work properly with preinstalled OS from Toshiba?
    Im also Satellite L300 owner and I use the preinstalled Windows XP 32bit from Toshiba. Im very satisfied with this notebook, its pretty fast and need few energy. :)

  • JSP Response Slow in OC4J

    Hi,
    I have a web application (jsps and servlets accessig to an oracle database) deployed by jdeveloper 10g in OC4J Standalone 10g, the problem appears when my aplication turned very slow where i go to a jsp page, only the html pages are fast but my jsps not, this appears incomplete because of the slow response, the pc that i install oc4j has 1GB memory, and i don't know what to do, please help me to find out why is this happening, i did the same thing in opther pc and i have no problems, so in this pc why is it happening.
    Thanks

    David, I do not think that oc4j 10.1.2 is certified with jdk-1_5_0_03. It is certified with JDK 1.3.1 and JDK 1.4.1, although it is quite possible that it can be run with other jdk versions.
    I can not see why your jsp is running incredibly slow. From what you provided, it seems that the process is stuck somewhere inside the _jspService method of the jsp page. To confirm that, it is much easier for you do a little more debugging. Just insert
      <% System.out.println(System.currentTimeMillis()); %>
    into various places of your jsp. Also, you may make a thread dump by "ctrl^break" on Windows or "ctrl^\" on Unix from time to time so as to find which methods stay on top of the stacks of the running threads. Then we can pinpoint the places that take most of the time.

  • UIX page run very slow on Jboss

    hi.. i am using Jdeveloper 10.1.2 to develop my application and my application containing JSP and UIX pages.At last i deploy it onto Jboss 3.2.7.
    It work properly, but i found that each time user access/open a page, which never open before, that page(either UIX or JSP page) show very slow. After that when user open it again, it show out as normal.
    Now, the problem is, when user close the browser, open it and access that page again, for JSP, it show out fast, but for UIX, it still take time to show out. I dont know what cause this happen. And i wondering that is that any way to configure ADF UIX in order to increase its performance?
    Please give me some suggestions and guides. Thanks in advance.

    Hi... is there anybody can help me? thanks..

  • Why EP is very slow just after it is started?

    Hi, all.
      Our env is like the following.
      EP 7.0(NW 2004s).
      But i think this also applies to NW 2004.
      Just after EP is started, when the first user logs on, EP is very very slow
    (takes long time while logging on and navigating) and its server CPU goes 100%
    for a while. Why?
      This phenomena is very similar to the situation that usual JSP web pages are
    slow at first because it has to be compiled. Does EP have the same reason?
      1. Could someone teach me what would be the possible reason?
      2. Is there any way to avoid this phenomena? Like precompiling or something
    like that.
      Best Regards.

    Hi Sejoon,
    To add to answers above - When a user logs in , in addition to login time and services/components are loaded into memory, also first time navigation takes time. This is to load the entry points (in TLN and first level DTN). These entry points are loaded into navigation cache (if not there yet).  if indeed it takes too much time to load these navigation entries and its a problem , you can consider using the navigation cache preloader:
    see http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0f1358d-0812-2c10-b58c-c7bdd7a0cdce?QuickLink=index&overridelayout=true&42477226648018
    and http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0f1358d-0812-2c10-b58c-c7bdd7a0cdce?QuickLink=index&overridelayout=true&42477226648018#page=30&zoom=100,0,842
    It will upload all of the roles of a specified user into the navigation cache.
    Best Regards,
    Tal

  • Portal Server very slow!!

    Hi
    What's the best java compiler to use? javac is very slow!
    thanks
    willie

    You can also precompile your JSPs, dig into the WLS docs to find out how.
    Yahoo!
    Brad
    "Cameron Purdy" <[email protected]> wrote:
    Try jikes. Search the EJB, Servlet and JSP newsgroups for "jikes" for
    more
    info.
    Peace,
    Cameron Purdy
    Tangosol Inc.
    << Tangosol Server: How Weblogic applications are customized >>
    << Download now from http://www.tangosol.com/download.jsp >>
    "leslie.mampe" <[email protected]> wrote in message
    news:[email protected]..
    Hi
    What's the best java compiler to use? javac is very slow!
    thanks
    willie

  • Tutorial project runs very very slow.

    Hello,
    I have just started to work with OAFramework and I am trying to execute the tutorial project. After configurating all my enviroment I am able to run properly this project with "Run > Run test_fwktutorial.jsp" but the problem is that it runs very very slow. It takes at least 5 minutes to load the "Hello World!" and the same time to load the other pages.
    We work with Patch Jdeveloper 5455514 and our system is Oracle Applications 11.5.10 RUP4.
    We are connected to our system via a VPN client. Could it be the reason for this poor performance or are there other things I shoud have to modify?
    Thanks in advanced,
    Xavier

    Hi Xavier,
    There can be multiple reasons why the Jdeveloper is very slow. VPN might be one of them. Try accessing the Oracle Applications using the VPN connectivity and observe the speed. Try to do some transaction and notice whether database is slow or not. You can also double click the jpx file and check for the db connectivity by clicking on 'Test Connection' and see how much time it takes. The other reasons why the Jdeveloper is slow might be because you have multiple projects opened. You can also try to close the Jdeveloper session and restart again by deleting the myclasses and systems folder.
    See whether one of these approaches help.
    Thanks

  • Loading Page is very slow. Thread dump show "BuildCookie"

    Hello, Folks,
    I am developing a portal project, which have some pages and books. I find that my page is loaded very slow and I took three times thread dump, the following is the detail of thread dump. Could someone give me some hints that can help me to figure out what needs to be corrected in my code or design?
    "ExecuteThread: '14' for queue: 'default'" daemon prio=5 tid=0x03bf5190 nid=0xe2
    c runnable [44ce000..44cfd90]
    at java.io.WinNTFileSystem.list(Native Method)
    at java.io.File.list(File.java:915)
    at java.io.File.listFiles(File.java:993)
    at com.bea.wlw.runtime.core.dispatcher.AppManager.isExternalBuildCookieV
    alid(AppManager.java:1080)
    at com.bea.wlw.runtime.core.dispatcher.AppManager.validateExternalBuildC
    ookie(AppManager.java:1137)
    at com.bea.wlw.runtime.core.dispatcher.AppManager.ensureAppDeployment(Ap
    pManager.java:655)
    at com.bea.wlw.runtime.core.dispatcher.AppManager.ensureAppDeployment(Ap
    pManager.java:575)
    at jsp_servlet._framework._skeletons._default.__book._jspService(book.js
    p:12)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
    (ServletStubImpl.java:1072)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:465)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:348)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispat
    cherImpl.java:638)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispat
    cherImpl.java:423)
    at com.bea.netuix.servlets.controls.JspRenderer.renderAlt(JspRenderer.ja
    va:194)
    at com.bea.netuix.servlets.controls.JspRenderer.endRender(JspRenderer.ja
    va:142)
    at com.bea.netuix.nf.ControlLifecycle$1.postVisit(ControlLifecycle.java:
    538)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWa
    lker.java:564)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWa
    lker.java:553)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWa
    lker.java:553)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWa
    lker.java:553)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWa
    lker.java:553)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWa
    lker.java:553)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWa
    lker.java:553)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:247)
    at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:204)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:146)
    at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java
    :333)
    at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:196)
    at com.bea.netuix.servlets.manager.PortalServlet.doPost(PortalServlet.ja
    va:772)
    at com.bea.netuix.servlets.manager.PortalServlet.doGet(PortalServlet.jav
    a:671)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:147)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
    (ServletStubImpl.java:1072)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:465)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilte
    r.java:293)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:6987)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    121)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:3892)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2766)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)

    The page is slow because of the VO query.. I have tuned the query... Now its faster....

  • My MAC is running very slow and i am a complete novice and don't know what to do. i have had my Mac since 2008 and its probably in a mess. if you can help i would be grateful. EtreCheck version: 1.9.15 (52) Report generated 8 September 2014 09:09:26

    My MAC runs very slow. Rainbow wheel every time i try to go somewhere. Im a complete MAC novice. Only really use it for iTunes and email. the odd document here and there. The odd spreadsheet. Was brought up on a PC. I would imagine my system is in  mess. I think i downloaded that Mackeeper which i have just discovered was not a good idea. I found a thread about EtreCheck and it suggested i posted the report of my machine which i have done.I only have 2GB of space. Not sure how much i have left. My wife keeps putting photos on here like they are going out of fashion. Bought the machine in 2008 because everybody said you have a MAC. I've never really got to grips with it but at least it worked. Now it does not run very well at all. That spinning wheel is driving me mad. HELP please, never ever used a forum light this either so please go gentle on me. Cheers Paul
    EtreCheck version: 1.9.15 (52)
    Report generated 8 September 2014 09:09:26 BST
    Hardware Information: ?
      iMac (20-inch, Early 2008) (Verified)
      iMac - model: iMac8,1
      1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
      2 GB RAM
    Video Information: ?
      ATI Radeon HD 2600 Pro - VRAM: 256 MB
      iMac 1680 x 1050
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:31:45
    Disk Information: ?
      Hitachi HDP725032GLA380 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (117.84 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information: ?
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Bose Corporation Bose USB Audio
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ?
      Mac App Store and identified developers
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
      [loaded] net.sourceforge.MonolingualHelper.plist Support
    Launch Agents: ?
      [running] com.trusteer.rapport.rapportd.plist Support
    User Login Items: ?
      iTunesHelper
    Internet Plug-ins: ?
      Google Earth Web Plug-in: Version: 5.1 Support
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
      OfficeLiveBrowserPlugin: Version: 12.3.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      AmazonMP3DownloaderPlugin101749: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Outdated! Update
      iPhotoPhotocast: Version: 7.0
      QuickTime Plugin: Version: 7.7.3
      eMusicRemote: Version: (null) Support
      eMusic: Version: Unknown
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      Flip4Mac WMV  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          2% iTunes
          2% WindowServer
          0% coreaudiod
          0% fontd
          0% rapportd
    Top Processes by Memory: ?
      178 MB Finder
      133 MB com.apple.WebKit.WebContent
      109 MB iTunes
      92 MB Safari
      63 MB com.apple.quicklook.satellite
    Virtual Memory Information: ?
      24 MB Free RAM
      821 MB Active RAM
      807 MB Inactive RAM
      291 MB Wired RAM
      338 MB Page-ins
      680 KB Page-outs

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can read it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p) if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //p;};' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' '" L*/P*/*loginit*' 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,Inter,iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 14 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Mac Mini boots very slow with Mavericks (after security update)

    Hi,
    my Mac Mini boots very slow after I've installed Maveriks. I did two clean installs by now, seemed to work OK after the second one but after the latest safety update (2014-002) the boot time is up to 5+ minutes. Starting Safari or other software takes addtional time. See below for system specs, Etrecheck and log. Any ideas what could cause this? According to the update history I did install the security update 2014-002 twice on the same day although I cannot remember doing such a thing.
    Thanks Joerg
    Hardware Information:
              Mac mini (Late 2009)
              Mac mini - model: Macmini3,1
              1 2.53 GHz Intel Core 2 Duo CPU: 2 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce 9400 - VRAM: 256 MB
    System Software:
              OS X 10.9.2 (13C1021) - Uptime: 0 days 0:42:32
    Disk Information:
              Hitachi HTS545032B9SA02 disk0 : (320,07 GB)
                        EFI (disk0s1) <not mounted>: 209,7 MB
                        Macintosh HD (disk0s2) / [Startup]: 319,21 GB (225 GB free)
              OPTIARC DVD RW AD-5670S 
    USB Information:
              Mitsumi Electric Hub in Apple Extended USB Keyboard
                        Mitsumi Electric Apple Optical USB Mouse
                        Mitsumi Electric Apple Extended USB Keyboard
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
    Gatekeeper:
              Mac App Store and identified developers
    User Login Items:
              iTunesHelper
    Internet Plug-ins:
              FlashPlayer-10.6: Version: 13.0.0.201 - SDK 10.6 Support
              Flash Player: Version: 13.0.0.201 - SDK 10.6 Support
              QuickTime Plugin: Version: 7.7.3
              Default Browser: Version: 537 - SDK 10.9
    Safari Extensions:
              AdBlock: Version: 2.6.28
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
              None
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                   3%          WindowServer
                   1%          fontd
                   0%          Console
                   0%          coreservicesd
                   0%          imagent
    Top Processes by Memory:
              213 MB          Safari
              90 MB          com.apple.IconServicesAgent
              90 MB          com.apple.WebKit.WebContent
              82 MB          mds_stores
              49 MB          Console
    Virtual Memory Information:
              5.33 GB          Free RAM
              1.60 GB          Active RAM
              211 MB          Inactive RAM
              627 MB          Wired RAM
              230 MB          Page-ins
              0 B          Page-outs
    28.04.14 09:48:09,000 bootlog[0]: BOOT_TIME 1398671289 0
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 kernel[0]: Longterm timer threshold: 1000 ms
    28.04.14 09:55:31,000 kernel[0]: Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    28.04.14 09:55:31,000 kernel[0]: vm_page_bootstrap: 1867682 free pages and 147550 wired pages
    28.04.14 09:55:31,000 kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    28.04.14 09:55:31,000 kernel[0]: zone leak detection enabled
    28.04.14 09:55:31,000 kernel[0]: "vm_compressor_mode" is 4
    28.04.14 09:55:31,000 kernel[0]: standard timeslicing quantum is 10000 us
    28.04.14 09:55:31,000 kernel[0]: standard background quantum is 2500 us
    28.04.14 09:55:31,000 kernel[0]: mig_table_max_displ = 74
    28.04.14 09:55:31,000 kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    28.04.14 09:55:31,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    28.04.14 09:55:31,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    28.04.14 09:55:31,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    28.04.14 09:55:31,000 kernel[0]: calling mpo_policy_init for Sandbox
    28.04.14 09:55:31,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    28.04.14 09:55:31,000 kernel[0]: calling mpo_policy_init for Quarantine
    28.04.14 09:55:31,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    28.04.14 09:55:31,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    28.04.14 09:55:31,000 kernel[0]: The Regents of the University of California. All rights reserved.
    28.04.14 09:55:31,000 kernel[0]: MAC Framework successfully initialized
    28.04.14 09:55:31,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    28.04.14 09:55:31,000 kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    28.04.14 09:55:31,000 kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    28.04.14 09:55:31,000 kernel[0]: ACPI: sleep states S3 S4 S5
    28.04.14 09:55:31,000 kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    28.04.14 09:55:31,000 kernel[0]: [ PCI configuration begin ]
    28.04.14 09:55:31,000 kernel[0]: console relocated to 0xf80010000
    28.04.14 09:55:31,000 kernel[0]: [ PCI configuration end, bridges 5, devices 18 ]
    28.04.14 09:55:31,000 kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    28.04.14 09:55:31,000 kernel[0]: NVEthernet::start - Built Sep 19 2013 22:20:06
    28.04.14 09:55:31,000 kernel[0]: mcache: 2 CPU(s), 64 bytes CPU cache line size
    28.04.14 09:55:31,000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    28.04.14 09:55:31,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    28.04.14 09:55:31,000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 34159efffe270ccc; max speed s800.
    28.04.14 09:55:31,000 kernel[0]: rooting via boot-uuid from /chosen: 289A3125-09B8-376B-ACE3-38D61384202E
    28.04.14 09:55:31,000 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>
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    28.04.14 09:55:31,000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    28.04.14 09:55:31,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS545032B9SA02 Media/IOGUIDPartitionScheme/Customer@2
    28.04.14 09:55:31,000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    28.04.14 09:55:31,000 kernel[0]: BTCOEXIST off
    28.04.14 09:55:31,000 kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    28.04.14 09:55:31,000 kernel[0]: 5.10.131.36
    28.04.14 09:55:31,000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    28.04.14 09:48:39,817 com.apple.launchd[1]: *** launchd[1] has started up. ***
    28.04.14 09:48:39,817 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    28.04.14 09:55:30,438 hidd[43]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    28.04.14 09:55:30,439 hidd[43]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    28.04.14 09:55:30,602 com.apple.SecurityServer[25]: Session 100000 created
    28.04.14 09:55:31,684 fseventsd[44]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (3 442 34362)
    28.04.14 09:55:31,738 fseventsd[44]: log dir: /.fseventsd getting new uuid: 4D96DE92-DF6A-4074-A734-C058ACC67177
    28.04.14 09:55:33,000 kernel[0]: VM Swap Subsystem is ON
    28.04.14 09:55:33,000 kernel[0]: Waiting for DSMOS...
    28.04.14 09:55:36,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    28.04.14 09:55:36,000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    28.04.14 09:55:36,000 kernel[0]: NVDAStartup: Official
    28.04.14 09:55:36,000 kernel[0]: init
    28.04.14 09:55:36,000 kernel[0]: probe
    28.04.14 09:55:36,000 kernel[0]: start
    28.04.14 09:55:36,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    28.04.14 09:55:36,000 kernel[0]: IOBluetoothUSBDFU::probe
    28.04.14 09:55:36,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8216 FirmwareVersion - 0x0207
    28.04.14 09:55:36,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xe000 ****
    28.04.14 09:55:36,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xe000 ****
    28.04.14 09:55:36,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xe000
    28.04.14 09:55:36,000 kernel[0]: NVDANV50HAL loaded and registered
    28.04.14 09:55:36,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    28.04.14 09:55:36,000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: Previous Shutdown Cause: 5
    28.04.14 09:55:36,000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    28.04.14 09:55:36,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    28.04.14 09:55:36,000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x6280 -- 0x3800 -- 0xe000 ****
    28.04.14 09:55:36,000 kernel[0]: DSMOS has arrived
    28.04.14 09:55:37,000 kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    28.04.14 09:55:38,000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    28.04.14 09:55:38,142 configd[54]: setting hostname to "Susannes-Mac-mini.local"
    28.04.14 09:55:38,147 configd[54]: network changed.
    28.04.14 09:55:38,368 com.apple.SecurityServer[25]: Entering service
    28.04.14 09:55:38,000 kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    28.04.14 09:55:38,000 kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    28.04.14 09:55:39,000 kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    28.04.14 09:55:39,000 kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    28.04.14 09:55:41,920 digest-service[63]: label: default
    28.04.14 09:55:41,921 digest-service[63]:           dbname: od:/Local/Default
    28.04.14 09:55:41,921 digest-service[63]:           mkey_file: /var/db/krb5kdc/m-key
    28.04.14 09:55:41,921 digest-service[63]:           acl_file: /var/db/krb5kdc/kadmind.acl
    28.04.14 09:55:42,335 mDNSResponder[35]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    28.04.14 09:55:42,768 loginwindow[38]: Login Window Application Started
    28.04.14 09:55:43,026 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    28.04.14 09:55:43,278 airportd[61]: sandbox cache error 3850
    28.04.14 09:55:43,423 digest-service[63]: sandbox cache error 11: database disk image is malformed
    28.04.14 09:55:43,851 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    28.04.14 09:55:44,005 com.apple.usbmuxd[17]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    28.04.14 09:55:44,942 digest-service[63]: digest-request: uid=0
    28.04.14 09:55:45,441 airportd[61]: airportdProcessDLILEvent: en1 attached (up)
    28.04.14 09:55:45,729 awacsd[57]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    28.04.14 09:55:46,356 awacsd[57]: InnerStore CopyAllZones: no info in Dynamic Store
    28.04.14 09:55:46,370 stackshot[21]: Timed out waiting for IOKit to finish matching.
    28.04.14 09:55:47,289 configd[54]: network changed.
    28.04.14 09:55:47,291 configd[54]: network changed: DNS*
    28.04.14 09:55:47,318 systemkeychain[82]: done file: /var/run/systemkeychaincheck.done
    28.04.14 09:55:47,593 apsd[59]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    28.04.14 09:55:47,723 mDNSResponder[35]: D2D_IPC: Loaded
    28.04.14 09:55:47,723 mDNSResponder[35]: D2DInitialize succeeded
    28.04.14 09:55:47,727 mDNSResponder[35]:   4: Listening for incoming Unix Domain Socket client requests
    28.04.14 09:55:48,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xe000 ****
    28.04.14 09:55:48,846 networkd[98]: networkd.98 built Aug 24 2013 22:08:46
    28.04.14 09:55:48,926 digest-service[63]: digest-request: netr probe 0
    28.04.14 09:55:48,927 digest-service[63]: digest-request: init request
    28.04.14 09:55:49,050 digest-service[63]: digest-request: init return domain: BUILTIN server: SUSANNES-MAC-MINI indomain was: <NULL>
    28.04.14 09:55:49,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key BEMB (kSMCKeyNotFound)
    28.04.14 09:55:55,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    28.04.14 09:55:55,395 WindowServer[80]: Server is starting up
    28.04.14 09:55:55,554 WindowServer[80]: Session 256 retained (2 references)
    28.04.14 09:55:55,554 WindowServer[80]: Session 256 released (1 references)
    28.04.14 09:55:55,619 WindowServer[80]: Session 256 retained (2 references)
    28.04.14 09:55:55,689 WindowServer[80]: init_page_flip: page flip mode is on
    28.04.14 09:55:56,015 mds[34]: (Normal) FMW: FMW 0 0
    28.04.14 09:55:56,075 locationd[40]: NBB-Could not get UDID for stable refill timing, falling back on random
    28.04.14 09:55:56,238 WindowServer[80]: Found 27 modes for display 0x00000000 [24, 3]
    28.04.14 09:55:56,569 WindowServer[80]: Found 1 modes for display 0x00000000 [1, 0]
    28.04.14 09:55:56,571 WindowServer[80]: mux_initialize: Couldn't find any matches
    28.04.14 09:55:56,572 WindowServer[80]: Found 27 modes for display 0x00000000 [24, 3]
    28.04.14 09:55:56,778 locationd[40]: Location icon should now be in state 'Inactive'
    28.04.14 09:55:56,964 WindowServer[80]: Found 1 modes for display 0x00000000 [1, 0]
    28.04.14 09:55:56,995 WindowServer[80]: WSMachineUsesNewStyleMirroring: false
    28.04.14 09:55:56,997 WindowServer[80]: Display 0x764bdc00: GL mask 0x1; bounds (0, 0)[1280 x 1024], 27 modes available
    Main, Active, on-line, enabled, boot, Vendor 4dd9, Model 2f70, S/N 0, Unit 0, Rotation 0
    UUID 0x6077c6f135c4c44ddc359cba2050401d
    28.04.14 09:55:56,997 WindowServer[80]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    28.04.14 09:55:56,998 WindowServer[80]: WSSetWindowTransform: Singular matrix
    28.04.14 09:55:57,421 WindowServer[80]: Display 0x764bdc00: GL mask 0x1; bounds (0, 0)[1280 x 1024], 27 modes available
    Main, Active, on-line, enabled, boot, Vendor 4dd9, Model 2f70, S/N 0, Unit 0, Rotation 0
    UUID 0x6077c6f135c4c44ddc359cba2050401d
    28.04.14 09:55:57,421 WindowServer[80]: Display 0x003f003d: GL mask 0x2; bounds (2304, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    28.04.14 09:55:57,421 WindowServer[80]: CGXPerformInitialDisplayConfiguration
    28.04.14 09:55:57,421 WindowServer[80]:   Display 0x764bdc00: Unit 0; Vendor 0x4dd9 Model 0x2f70 S/N 0 Dimensions 13.31 x 10.63; online enabled, Bounds (0,0)[1280 x 1024], Rotation 0, Resolution 1
    28.04.14 09:55:57,422 WindowServer[80]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    28.04.14 09:55:57,592 apsd[59]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180C560 Susannes-Mac-mini.local. (AAAA) that's already in the list
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180C9F0 C.C.C.0.7.2.E.F.F.F.E.9.5.1.6.3.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180E160 Susannes-Mac-mini.local. (Addr) that's already in the list
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180E5F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    28.04.14 09:55:59,615 WindowServer[80]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, accelerator 0x0000428b, unit 0, caps QEX|MIPMAP, vram 256 MB
    28.04.14 09:55:59,715 WindowServer[80]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    28.04.14 09:55:59,716 WindowServer[80]: GLCompositor enabled for tile size [256 x 256]
    28.04.14 09:55:59,716 WindowServer[80]: CGXGLInitMipMap: mip map mode is on
    28.04.14 09:55:59,726 WindowServer[80]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    28.04.14 09:55:59,801 loginwindow[38]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    28.04.14 09:56:00,154 configd[54]: network changed: v4(en0+:192.168.178.24) DNS+ Proxy+ SMB
    28.04.14 09:56:00,166 configd[54]: setting hostname to "susannes-mini.fritz.box"
    28.04.14 09:56:01,357 awacsd[57]: Exiting
    28.04.14 09:56:02,738 WindowServer[80]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fc9bb513090) - enabling OpenGL
    28.04.14 09:56:03,337 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:03,383 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:03,397 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:03,448 ntpd[106]: proto: precision = 1.000 usec
    28.04.14 09:56:03,489 launchctl[126]: com.apple.findmymacmessenger: Already loaded
    28.04.14 09:56:03,785 com.apple.SecurityServer[25]: Session 100004 created
    28.04.14 09:56:04,311 digest-service[63]: digest-request: uid=0
    28.04.14 09:56:04,312 digest-service[63]: digest-request: init request
    28.04.14 09:56:04,316 digest-service[63]: digest-request: init return domain: MACMINI-270CCC server: SUSANNES-MINI indomain was: <NULL>
    28.04.14 09:56:04,363 digest-service[63]: digest-request: uid=0
    28.04.14 09:56:04,364 digest-service[63]: digest-request: init request
    28.04.14 09:56:04,368 digest-service[63]: digest-request: init return domain: SUSANNES-MINI server: SUSANNES-MINI indomain was: <NULL>
    28.04.14 09:56:04,370 UserEventAgent[127]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    28.04.14 09:56:05,219 loginwindow[38]: Login Window Started Security Agent
    28.04.14 09:56:05,648 SecurityAgent[142]: This is the first run
    28.04.14 09:56:05,649 SecurityAgent[142]: MacBuddy was run = 0
    28.04.14 09:56:05,672 SecurityAgent[142]: User info context values set for susannescherwinski
    28.04.14 09:56:06,399 loginwindow[38]: Login Window - Returned from Security Agent
    28.04.14 09:56:06,427 loginwindow[38]: USER_PROCESS: 38 console
    28.04.14 09:56:06,000 kernel[0]: AppleKeyStore:Sending lock change 0
    28.04.14 09:56:06,970 com.apple.launchd.peruser.501[145]: Background: Aqua: Registering new GUI session.
    28.04.14 09:56:06,996 com.apple.launchd.peruser.501[145]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    28.04.14 09:56:06,998 com.apple.launchd.peruser.501[145]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    28.04.14 09:56:07,002 launchctl[147]: com.apple.pluginkit.pkd: Already loaded
    28.04.14 09:56:07,002 launchctl[147]: com.apple.sbd: Already loaded
    28.04.14 09:56:07,029 distnoted[149]: # distnote server agent  absolute time: 479.663146784   civil time: Mon Apr 28 09:56:07 2014   pid: 149 uid: 501  root: no
    28.04.14 09:56:07,530 UserEventAgent[148]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    28.04.14 09:56:07,608 com.apple.audio.DriverHelper[161]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    28.04.14 09:56:07,608 com.apple.audio.DriverHelper[161]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    28.04.14 09:56:07,608 com.apple.audio.DriverHelper[161]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    28.04.14 09:56:07,732 com.apple.SecurityServer[25]: Session 100006 created
    28.04.14 09:56:07,760 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    28.04.14 09:56:07,793 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:07,820 sharingd[170]: Starting Up...
    28.04.14 09:56:07,954 WindowServer[80]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    28.04.14 09:56:08,649 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:09,364 com.apple.IconServicesAgent[201]: IconServicesAgent launched.
    28.04.14 09:56:09,577 accountsd[202]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    28.04.14 09:56:09,719 com.apple.SecurityServer[25]: Session 100009 created
    28.04.14 09:56:10,587 WiFiKeychainProxy[182]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    28.04.14 09:56:10,588 WiFiKeychainProxy[182]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    28.04.14 09:56:10,847 SystemUIServer[156]: Cannot find executable for CFBundle 0x7fb68855c320 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    28.04.14 09:56:10,864 SystemUIServer[156]: Cannot find executable for CFBundle 0x7fb68847aab0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    28.04.14 09:56:12,097 imagent[189]: [Warning] Services all disappeared, removing all dependent devices
    28.04.14 09:56:12,122 imagent[189]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    28.04.14 09:56:12,123 imagent[189]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    28.04.14 09:56:12,163 soagent[184]: [Warning] Services all disappeared, removing all dependent devices
    28.04.14 09:56:12,181 soagent[184]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:12,184 soagent[184]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:12,417 secd[207]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    28.04.14 09:56:12,417 secd[207]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    28.04.14 09:56:12,639 secd[207]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    28.04.14 09:56:12,639 secd[207]:  securityd_xpc_dictionary_handler WiFiKeychainProx[182] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    28.04.14 09:56:12,944 com.apple.time[148]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    28.04.14 09:56:22,465 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:23,038 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:23,156 soagent[184]: Killing soagent.
    28.04.14 09:56:23,156 NotificationCenter[181]: SOHelperCenter main connection interrupted
    28.04.14 09:56:23,159 NotificationCenter[181]: SOHelperCenter main connection interrupted
    28.04.14 09:56:23,160 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:184)
    28.04.14 09:56:23,160 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:184)
    28.04.14 09:56:23,314 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:23,316 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:24,403 parentalcontrolsd[216]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    28.04.14 09:56:33,245 com.apple.time[148]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    28.04.14 09:56:33,310 soagent[217]: [Warning] Services all disappeared, removing all dependent devices
    28.04.14 09:56:33,318 soagent[217]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:33,467 com.apple.dock.extra[212]: No endpoint returned trying to load UnreadCountController.bundle, suspending
    28.04.14 09:56:33,493 soagent[217]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:33,494 soagent[217]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:44,319 soagent[217]: Killing soagent.
    28.04.14 09:56:44,320 com.apple.dock.extra[212]: SOHelperCenter main connection interrupted
    28.04.14 09:56:44,322 com.apple.dock.extra[212]: SOHelperCenter main connection interrupted
    28.04.14 09:56:44,324 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:217)
    28.04.14 09:56:44,324 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:217)
    28.04.14 10:00:56,532 WindowServer[80]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    28.04.14 10:00:57,256 WindowServer[80]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.72 seconds (server forcibly re-enabled them after 1.00 seconds)
    28.04.14 10:00:59,103 com.apple.IconServicesAgent[201]: main Failed to composit image for binding VariantBinding [0x42d] flags: 0x8 binding: FileInfoBinding [0x1f3] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN.
    28.04.14 10:00:59,104 quicklookd[227]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN request size:64 scale: 1
    28.04.14 10:00:59,143 com.apple.IconServicesAgent[201]: main Failed to composit image for binding VariantBinding [0x3df] flags: 0x8 binding: FileInfoBinding [0x2e5] - extension: pdf, UTI: com.adobe.pdf, fileType: ????.
    28.04.14 10:00:59,144 quicklookd[227]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: pdf, UTI: com.adobe.pdf, fileType: ???? request size:64 scale: 1
    28.04.14 10:00:59,208 com.apple.IconServicesAgent[201]: main Failed to composit image for binding VariantBinding [0x1f5] flags: 0x8 binding: FileInfoBinding [0x42f] - extension: mp3, UTI: public.mp3, fileType: MPG3.
    28.04.14 10:00:59,208 quicklookd[227]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: mp3, UTI: public.mp3, fileType: MPG3 request size:64 scale: 1
    28.04.14 10:01:03,377 mds[34]: (Normal) Volume: volume:0x7f9c5c863000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.S2FNIL
    28.04.14 10:01:17,708 System Events[269]: .sdef warning for part of complex type 'any | number | boolean | date | list | record | text | data' used in suite 'Property List Suite': 'data' is not a valid type name.
    28.04.14 10:01:17,709 System Events[269]: .sdef warning for type 'text | missing value | any' attribute 'uniqueID' of class 'XML element' in suite 'XML Suite': AppleScript ID references may not work for this property because its type is not NSNumber- or NSString-derived.
    28.04.14 10:01:24,175 Safari[219]: ERROR: ForceShrinkPersistentStore_NoLock -delete- We do not have a BLOB or TEXT column type.  Instead, we have 5.

    Anybody?
    Did I something wrong? Too many lines of log? Wrong category? Enlighten me. Thx.

  • AP1231G-A-K9 access points - very slow throughput - Is TKIP the issue?

    I recently setup our small office network using the following setup:
    Cablemodem <--> router <--> 1231AP(role root bridge with wireless clients) <-> 1231AP(role non-root bridge with wireless clients)
    Code on both APs: 12.3(8)JEE
    Office network generally has less than 3 wireless clients connected at any one time to either AP.
    AP's are a mere 50' apart; clients are all less than 30' from either AP; they all show excellent signal and connected at 54mbps signaling rates.
    All is/has been working very well & very stable with the exception of speed. We have business class service from RR, approx 25mbps dl, 2mbps ul. Any hardwired client to the router switch ports are able to download at speeds averaging 23mbps. Any wireless client connected to either AP is never able to exceed download speeds of 5mbps. With no other wireless clients connected except my one test client, I was not able to exceed 5mbps throughput from either AP that I connected to.
    I can confirm that the ethernet connection between the router and root bridge is up at 100mbps-FD and not showing any errors:
    ap#sh interfaces FastEthernet0
    FastEthernet0 is up, line protocol is up
      Hardware is PowerPC405GP Ethernet, address is 0013.60cf.bb29 (bia 0013.60cf.bb29)
      MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
         reliability 255/255, txload 1/255, rxload 1/255
      Encapsulation ARPA, loopback not set
      Full-duplex, 100Mb/s, MII
      ARP type: ARPA, ARP Timeout 04:00:00
      Last input 00:00:00, output 00:00:00, output hang never
      Last clearing of "show interface" counters never
      Input queue: 0/160/0/0 (size/max/drops/flushes); Total output drops: 0
      Queueing strategy: fifo
      Output queue: 0/40 (size/max)
      5 minute input rate 5000 bits/sec, 0 packets/sec
      5 minute output rate 1000 bits/sec, 1 packets/sec
         8054605 packets input, 3141009145 bytes
         Received 46005 broadcasts, 0 runts, 0 giants, 0 throttles
         0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
         0 watchdog
         0 input packets with dribble condition detected
         4076106 packets output, 411952731 bytes, 0 underruns
         0 output errors, 0 collisions, 4 interface resets
         0 babbles, 0 late collision, 0 deferred
         0 lost carrier, 0 no carrier
         0 output buffer failures, 0 output buffers swapped out
    Wandering thru the cli on either AP shows that all wireless clients are indeed connected at 54mbps to their respective AP and the two AP's are connected happily at 54mbps signaling:
    Address           : 0013.1a37.b3e0     Name             : ap
    IP Address        : 192.168.0.120      Interface        : Dot11Radio 0
    Device            : 11g-bridge         Software Version : 12.3
    CCX Version       : NONE
    State             : Assoc              Parent           : Our Parent        
    SSID              : Tsunami
    VLAN              : 0
    Hops to Infra     : 0                  Association Id   : 44
    Tunnel Address    : 0.0.0.0
    Key Mgmt type     : WPA PSK            Encryption       : TKIP
    Current Rate      : 54.0               Capability       : WMM ShortHdr ShortSlot
    Supported Rates   : 1.0 2.0 5.5 6.0 9.0 11.0 12.0 18.0 24.0 36.0 48.0 54.0
    Voice Rates       : disabled
    Signal Strength   : -51  dBm           Connected for    : 75169 seconds
    Signal to Noise   : 26  dB            Activity Timeout : 14 seconds
    Power-save        : Off                Last Activity    : 1 seconds ago
    Apsd DE AC(s)     : NONE
    Packets Input     : 1050695            Packets Output   : 296536   
    Bytes Input       : 474651248          Bytes Output     : 96734573 
    Duplicates Rcvd   : 0                  Data Retries     : 63646    
    Decrypt Failed    : 0                  RTS Retries      : 0        
    MIC Failed        : 0                  MIC Missing      : 0        
    Packets Redirected: 0                  Redirect Filtered: 0
    Here is a config snippet from the AP non-root bridge with wireless clients:
    dot11 ssid Tsunami
       authentication open
       authentication key-management wpa
       guest-mode
       infrastructure-ssid optional
       wpa-psk ascii 7 (snipped)
    bridge irb
    interface Dot11Radio0
    no ip address
    no ip route-cache
    encryption mode ciphers tkip
    ssid Tsunami
    speed basic-1.0 2.0 5.5 6.0 9.0 11.0 12.0 18.0 24.0 36.0 48.0 54.0
    station-role non-root bridge wireless-clients
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 spanning-disabled
    interface FastEthernet0
    no ip address
    no ip route-cache
    duplex auto
    speed auto
    bridge-group 1
    bridge-group 1 spanning-disabled
    interface BVI1
    ip address dhcp client-id FastEthernet0
    no ip route-cache
    bridge 1 route ip
    (The AP root-bridge with wireless clients config is identical to this config with the exception of the station-role and a static IP on the BVI1 interface.)
    Are these very slow thoughput speeds normal of this hardware combination?
    I did much searching/googling and found claims that by eliminating TKIP it almost doubles the actual wireless speeds our clients can obtain. Is there any truth to this?
    Any suggestions or recommendations without changing hardware would be very welcome.
    Thanks in Advance!
    D.
    =============

    Ok, thanks for the explanation - I understand. But even at a 22mbps signaling rate shouldn't I be seeing throughputs greater than 5-5.5mbps especially since this location is literally 100% free of any outside interference and the interfaces definitely show the clients and non-root bridge (when connected) all being at the highest rate of 54mbps? I tried even in the same room, approximately 40' away, total line of sight, no obstructions, between my laptop and the root AP.
    I disconnected the non-root bridge and connected directly to the root bridge during my testing. I was still only able to achieve approx 5.5mbps download. Adding back in the non-root bridge and re-connecting to it I notice slightly lower throughput, approx 5mbps. During testing, my laptop was the only device connected to the network, all other clients were shut off.
    Here are the int stats (I've never reset the counters):
    Root Bridge:
    RATE 1.0 Mbps
    Rx Packets:           2178725 /  49    Tx Packets:                   39 /   0
    Rx Bytes:            335124036 /7595    Tx Bytes:                   4965 /   0
    RTS Retries:               61 /   0    Data Retries:                  5 /   0
    Non-Root-Bridge:
    RATE 1.0 Mbps
    Rx Packets:           2323120 /  50    Tx Packets:                  141 /   0
    Rx Bytes:            336455923 /7595    Tx Bytes:                  17869 /   0
    RTS Retries:                2 /   0    Data Retries:                 56 /   0
    All the other rates, 2-12mbps show single or double digit packet/byte counts until I get to the 36mbps section of each interface:
    ap#sh int Dot11Radio0 stati
            DOT11 Statistics        (Cumulative Total/Last 5 Seconds):
    (snipped for brevity)
    Root Bridge:
    RATE 36.0 Mbps
    Rx Packets:            915395 /   1    Tx Packets:              2345589 /   9
    Rx Bytes:            93420936 /  70    Tx Bytes:             3370791285 / 874
    RTS Retries:                0 /   0    Data Retries:             573981 /   4
    RATE 48.0 Mbps
    Rx Packets:           2163192 /   2    Tx Packets:               216861 /   0
    Rx Bytes:            222455730 / 404    Tx Bytes:              182817967 /   0
    RTS Retries:                0 /   0    Data Retries:             106808 /   0
    RATE 54.0 Mbps
    Rx Packets:            987986 /   0    Tx Packets:               168923 /   0
    Rx Bytes:            190467269 /   0    Tx Bytes:               61665042 /   0
    RTS Retries:                0 /   0    Data Retries:              34424 /   0
    Non-Root Bridge:
    RATE 36.0 Mbps
    Rx Packets:           2368679 /   0    Tx Packets:               965419 /   0
    Rx Bytes:            3396819830 /   0    Tx Bytes:               90880825 /   0
    RTS Retries:                0 /   0    Data Retries:             242686 /   0
    RATE 48.0 Mbps
    Rx Packets:            341870 /   0    Tx Packets:              2156282 /   1
    Rx Bytes:            216497093 /   0    Tx Bytes:              215775536 / 210
    RTS Retries:                0 /   0    Data Retries:             478619 /   0
    RATE 54.0 Mbps
    Rx Packets:           1469926 /  15    Tx Packets:              2529678 /  15
    Rx Bytes:            411722698 /1122    Tx Bytes:             1366306113 /5159
    RTS Retries:                0 /   0    Data Retries:             198532 /   0
    I will try disabling the rates below 12mbps and re-test.
    I would like to try disabling all encryption and try as well.
    Do you know if the AP's will associate if there is zero encryption?

  • Window 8.1 Running very slow

    Dear Team
    I am using window 8.1 Pro & office 2013 ,which is running very slow in system , kindly suggest me what  should i do regarding this problem
    Regards
    Saurabh
    Cont No-9997255621

    I had a similar issue with 8.1 early on, looked at task manager and disk was at 100% most of the time upgraded to a newer Hard drive problem was solved, the first hard drive was a slower and smaller cache drive.

Maybe you are looking for

  • {{url_withhost}} Doesn't Render in Head

    I was working on the Blog Post Details Layout and was using {{url_withhost}} in the head for a meta tag and it didn't render. {tag_itemurl_withhost} did render without an issue.

  • Curve 8310 Media Card

    A very basic question from a very green newbie: What is the largest Media Card my 8310 will accomodate? (v4.5.0.110) Solved! Go to Solution.

  • Install location not working??

    In preferences you can change the default install location for apps if you have not a lot of space on your C drive like i do and you can change this to an alternate disklocation like D:\adobe\ Why is this function not working?? It keeps installing al

  • Can not see events screen on the left when open iphoto

    I am unable to see the events and other folders that usually are on the left side. I tried to refresh all of the thumbnails etc but still not seeing the events. When I go into time machine it appears but when go to main screen still unable to see. An

  • Dock, Expose, Dashboard freeze and macbook won't shut down.

    I got a new Macbook about 2 and a half months ago and since then i have this problem with dock, expose and dashboard where they just suddenly don't respond. This has happened about 10 times so far and i can't think of anything that causes it. The pro