Cpu Restrict

hi
We useuse Oracle 10g R2(10203) on hp-ux
Few Users are takeing 50 % Cpu Usage
How to Restrict the Users?
please Advise the Standard/ Ideal Values in Creating the Profile For the Below
Session per User
CPU per Session
CPU Per Call
Connect time
Idle Time
Logical Reads/Session
Logical Reads/Call
Composite Limit
Private SGA
Many thanks for the Advise

You need to analyze Your system for CPU usage, one of the ways You can do the following
select a.sid, a.value, a.value/b.value from v$sesstat a, v$sesstat b where a.sid=b.sid and a.statistic#=12 and b.statistic#=6 and a.value>0 and b.value>0 order by a.value desc;
first column will be SID, second CPU usage by session and third CPU usage by call.
Analyze and make decisions!

Similar Messages

  • Restrict weblogic server process to single CPU

    Hi,
    Can anyone tell me how to restrict a weblogic server instance to a single CPU
    on a multiple CPU Windows 2000 box.
    Also if this is possible can I have two weblogic server instances which run parallel
    on a two CPU Windows 2000 box.
    Thanks,
    Bhushan Kowshik

    If you want a process on Windows to only use a subset of the available CPUs
    you can use Task Manager to set the affinity. Right click on a process (in
    your case java.exe) and choose "Set Affinity...".
    Regards,
    /Staffan
    "Bhushan Kowshik" <[email protected]> skrev i meddelandet
    news:3de6161b$[email protected]..
    >
    Hi,
    Can anyone tell me how to restrict a weblogic server instance to a singleCPU
    on a multiple CPU Windows 2000 box.
    Also if this is possible can I have two weblogic server instances whichrun parallel
    on a two CPU Windows 2000 box.
    Thanks,
    Bhushan Kowshik

  • Restricting/ Turning off CPU Cores

    Is there any way that i can turn off any number of cores e.g. i want to use 10 cores out of available 32 cores in multicore machine. Is it possible?
    Also How can i restrict Java Virtual Machine (JVM) to use only certain number of cores.
    Thanks.

    You can use psrset to put certain VCPUs into a set that isn't used.
    You can use 'prsadm' to disable certain VCPUs.
    Just do either of those with the VCPUs that are part of the cores you're interested in. Use 'kstat' cpu information to see which CPUs are part of which cores.
    Darren

  • Restrict Backups to Low CPU Usage Times

    I have been doing some pretty CPU intensive work lately, a lot of it in iTunes. I'm seeing the spinning beachball quite a bit when doing these tasks. To make it worse, Time Machine often picks these times to do a backup. I usually just end up canceling it.
    Is there any way to set Time Machine to only do its backups at time CPU usage is below a certain threshold? If not, there's an option for a future release.
    Thanks.
    Tony

    Hi Dave
    Don't know if You know about the computer stonage. When You could set a
    CPU to do just one task. Not so any more.
    Mac computers are realy UNIX ditos. So they behave likvise.
    To get it to work with better speed one has to get it from doing meaningless
    tasks. This by giving it so much free space on the internal hard disk so that
    it doesn't start virtual memory managment and joggling a lot of temp files.
    To run iDVD I set free at least 25Gb free space on my internal hard disk and
    run no un-necessary programs in the back-ground like "Screen, Energy-savers"
    FileVault etc. incl. ActivityMonitor, Internet and other needless activities.
    Ps. Activity Monitor - lies when running under iDVD and says that iDVD doesn't
    respond. Let it be and it eventually succeedes with it's task.
    Yours Bengt W

  • 20 Index Restriction on Remote Tables (i.e. using Database Links)

    The Oracle Database Administrator's Guides for 10g and 11g document a performance restriction that "No more than 20 indexes are considered for a remote table." If I go back to the 8i documentation it says "In cost-based optimization, no more than 20 indexes per remote table are considered when generating query plans. The order of the indexes varies; if the 20-index limitation is exceeded, random variation in query plans may result."
    Does anyone have more details on this performance restriction? In particular I am trying to answer these questions:
    1) Are the 20 indexes which are considered by the CBO still random in 10g?
    2) Can I influence which indexes are considered with index hints or will my hints only be considered if they are for one of the "random" 20 indexes which are being considered by the CBO?
    3) Are there any other approaches or work-arounds to this restriction assuming you need to select from a large remote table with more than 20 indexes (and need to perform the selection using 1 of those indexes to get adequate performance) or do we need to abandon database links for this table?
    Thanks in advance for your input.

    So, here's my simple test.
    SQL>
    SQL> create table gurnish.indexes20plus ( n1 number, n2 number, n3 number, n4 number, n5 number, n6 number, n7 number,
    2 n8 number, n9 number, n10 number, n11 number, n12 number, n13 number, n14 number, n15 number, n16 number,
    3 n17 number, n18 number, n19 number, n20 number, n21 number, n22 number, n23 number, n24 number,
    4 n25 number, n26 number, n28 number);
    create index xin1 on indexes20plus (n1);
    Table created.
    SQL> SQL> create index xin2 on indexes20plus (n2);
    create index xin3 on indexes20plus (n3);
    Index created.
    SQL> SQL>
    Index created.
    SQL> SQL> create index xin4 on indexes20plus (n4);
    Index created.
    SQL> SQL>
    Index created.
    SQL> SQL> create index xin5 on indexes20plus (n5);
    create index xin6 on indexes20plus (n6);
    Index created.
    SQL> SQL>
    Index created.
    SQL> SQL> create index xin7 on indexes20plus (n7);
    Index created.
    SQL> SQL> create index xin8 on indexes20plus (n8);
    Index created.
    SQL> SQL> create index xin9 on indexes20plus (n9);
    Index created.
    SQL>
    SQL> create index xin10 on indexes20plus (n10);
    Index created.
    SQL> SQL> create index xin11 on indexes20plus (n11);
    create index xin12 on indexes20plus (n12);
    create index xin13 on indexes20plus (n13);
    Index created.
    SQL> SQL>
    Index created.
    SQL> SQL>
    Index created.
    SQL> SQL> create index xin14 on indexes20plus (n14);
    Index created.
    SQL> SQL> create index xin15 on indexes20plus (n15);
    Index created.
    SQL>
    SQL> create index xin16 on indexes20plus (n16);
    Index created.
    SQL>
    SQL> create index xin17 on indexes20plus (n17);
    Index created.
    SQL> SQL> create index xin18 on indexes20plus (n18);
    Index created.
    SQL> SQL> create index xin19 on indexes20plus (n19);
    Index created.
    SQL> SQL> create index xin20 on indexes20plus (n20);
    Index created.
    SQL> SQL> create index xin21 on indexes20plus (n21);
    Index created.
    declare
    i number;
    begin
    for i in 1..100
    loop
    dbms_random.seed(i+100);
    insert into indexes20plus values (dbms_random.value(1,5),dbms_random.value(1,21),dbms_random.RANDOM, dbms_random.RANDOM,dbms_random.value(1,20),
    dbms_random.value(1,4),dbms_random.value(1,6), dbms_random.value(1,7),dbms_random.value(1,9),dbms_random.value(1,10),
    dbms_random.value(1,11),dbms_random.value(1,12),dbms_random.value(1,13),dbms_random.value(1,14),dbms_random.value(1,1),
    dbms_random.value(1,1),dbms_random.value(1,19),dbms_random.value(1,122),dbms_random.value(1,20),dbms_random.value(1,20)
    ,dbms_random.value(4,20),dbms_random.value(1,20),dbms_random.value(1,20),dbms_random.value(1,20),dbms_random.value(1,20)
    ,dbms_random.value(4,20),dbms_random.value(4,20));
    end loop;
    commit;
    end;
    SQL> set autotrace traceonly
    SQL> l
    1* select * from gurnish.indexes20plus@lvoprds where n1 = 4
    SQL> /
    no rows selected
    Execution Plan
    Plan hash value: 441368878
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU
    )| Time | Inst |
    | 0 | SELECT STATEMENT REMOTE | | 1 | 351 | 1 (0
    )| 00:00:01 | |
    | 1 | TABLE ACCESS BY INDEX ROWID| INDEXES20PLUS | 1 | 351 | 1 (0
    )| 00:00:01 | LVPRD |
    |* 2 | INDEX RANGE SCAN | XIN1 | 1 | | 1 (0
    )| 00:00:01 | LVPRD |
    Predicate Information (identified by operation id):
    2 - access("A1"."N1"=4)
    Note
    - fully remote statement
    - dynamic sampling used for this statement
    Statistics
    0 recursive calls
    0 db block gets
    0 consistent gets
    0 physical reads
    0 redo size
    1897 bytes sent via SQL*Net to client
    481 bytes received via SQL*Net from client
    1 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    0 rows processed
    SQL> select * from gurnish.indexes20plus@lvoprds where n21 = 4;
    no rows selected
    Execution Plan
    Plan hash value: 2929530649
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU
    )| Time | Inst |
    | 0 | SELECT STATEMENT REMOTE | | 1 | 351 | 1 (0
    )| 00:00:01 | |
    | 1 | TABLE ACCESS BY INDEX ROWID| INDEXES20PLUS | 1 | 351 | 1 (0
    )| 00:00:01 | LVPRD |
    |* 2 | INDEX RANGE SCAN | XIN21 | 1 | | 1 (0
    )| 00:00:01 | LVPRD |
    Predicate Information (identified by operation id):
    2 - access("A1"."N21"=4)
    Note
    - fully remote statement
    - dynamic sampling used for this statement
    Statistics
    1 recursive calls
    0 db block gets
    0 consistent gets
    0 physical reads
    0 redo size
    1897 bytes sent via SQL*Net to client
    481 bytes received via SQL*Net from client
    1 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    0 rows processed
    SQL>

  • High CPU & Memory issues - Excessive and unnecessary CPU usage in Firefox for Windows (see also questions1003966 & 998289)

    I am using the latest version of Firefox, 32.0.1, on an HP Pavilion dv7-4141sa laptop computer, running Windows 8.1 Pro 64-bit. There should be more than enough power here to run a browser without any problem, yet the computer is regularly being overloaded by the browser's resource usage.
    I am currently measuring typical average CPU usage of 45% - with the browser minimised. That is to say, Firefox is not doing any browser jobs - it is not drawing on the screen - but it is using the most CPU of any process currently running. Why?
    I am an ex-software engineer, and my understanding of current application development technology is limited, but I think I can say with some confidence that many techniques and software architectures exist that enable the suspension of program activity, or at least its reduction to a very low bare minimum, when the program is not actually carrying out its design function, which is in this case to draw pictures of website data on a screen.
    There is a very serious problem here, one which means that I cannot run Firefox all the time, but have to kill it when I am not actively browsing, otherwise other applications cannot run to their full capacity. This is a great pity, because I have committed a lot of effort to making Firefox my primary web tool. It manages all my many bookmarks, contains my secure password manager (LastPass), manages my web security (via NoScript, AdBlock, and FlashBlock), just for a start.
    Before any well-meaning moderators or other commenters start down the usual trail of "have you done this, tried that, disabled the other", I should point out that I have followed all the advice I can find, with no positive outcome. This computer is running a fresh installation of Windows, and a fresh installation of Firefox. At the moment I am running a new test Firefox profile.
    The latest version of Adobe Flash, 14.0.0.179, is installed but disabled. When it is enabled and in use, Firefox's CPU usage seems high over longer periods, but overall there is little difference. It doesn't look as though the problem can be laid at Flash's door. A few other add-ins are installed, mainly those mentioned above, and Firefox is skinned with LavaFox v2-Green, but I have previously started from a clean installation, which has made little difference after an initial period during which things seemed to be better. Turning off or disabling various add-ons has made no discernible difference.
    Just now I turned Flash on, and after a long period with Firefox minimised, Resource Monitor reported Firefox at 8% average CPU and FlashPlayerPlugin at 0.32%. While running a small video, RM reports FlashPlayerPlugin at about 45% and Firefox at 8%. After the video, Flash went back down to around 0.4%, and after a bit more browsing Firefox went to around 17% minimised. There seems little rhyme or reason here, except that Flash does not seem to be the culprit, although Firefox does seem to consume less when fewer tabs are actually active, as you might expect. I just refreshed more than a dozen tabs, and now Firefox is at 30%, but still not back up to the higher figures. Weird.
    The CPU usage does vary a lot around the average, but 30% is still a lot for a program that shouldn't be doing anything above the minimum status maintenance, and still puts it at the top of my Top Process Monitor list. (Right now it's gone back up to 45%, without my using it in any way).
    I have Telemetry turned on, so presumably Mozilla is recording some of the relevant data.
    This is a very serious fault, which is more or less reproducible and which a lot of people seem to be experiencing. Probably more people have it than realise, because most users will not know anything other than that their computer slows down for some non-obvious reason; they may just think it's something to do with the computer itself, not knowing how to use the Resource Monitor and interpret the results.
    Oddly, the problem does not seem to occur when running Firefox under Linux Mint 17, where the response is snappy and the CPU usage ostensibly low; I am going to look at this in more detail shortly.
    I am not posting here for advice, but for information and as a form of bug report which hopefully other users will see. It will hopefully spare them a lot of effort and time in trying a lot of recommended "solutions" which will not work. The problem is inherent in the software, and can be solved only by Mozilla.
    I am willing to supply any diagnostic data requested; as I said above, I have also turned on "Telemetry". However, I will not be trying out any more reinstallation/new-profile/add-on disable-enable-delete cycles unless I am asked to for very specific reasons. Please do not suggest courses of action which have already been mentioned elsewhere on this forum. I have tried them all.
    The situation is very disappointing, but I have confidence that the Firefox developers will pin down the fault eventually and engineer a satisfactory solution that makes it viable to leave Firefox open all the time. Even with that restriction, it's still far better than the alternatives.

    I share jmward's frustration. This is not a bug report so much as a request for a badly needed feature, ie the ability to have Firefox be able to tell us which tabs on which windows are eating time so we can target them. There are some very poorly written web pages out there which just plain loop while making no updates or inconsequential updates on the page.
    This is not a OS problem; jmward runs Windows and I run Linux but we have the same issue. It is not a question of Firefox plugins or extensions, or even viruses; I have a new, clean Linux install but have the same problem on both my regular Firefox AND on a FRESH install of the latest Firefox (35.0.1) which has *NO* non-default plugins or extensions.
    Here is an example of a web page which will eat 100% of one CPU's time:
    http://patch.com/massachusetts/arlington/arlington-woman-allegedly-attacks-neighbor-snow-blower-0
    I will attach 3 images to back up my claim. All of the images show my dark blue system monitor (gkrellm) superimposed on the web page. The top graph shows CPU time. I have 4 CPUs in my machine, so 25% means the web page is eating 100% of one CPU equivalent.
    The first image shows the load of the offending page with elevated CPU usage along with the download net activity on eth0, but the CPU activity does not stop when the download activity is over.
    The second images show the steady state 100% CPU equivalent of this page just sitting there apparently doing nothing. It IS, however, doing at least two different things. I know from my regular Firefox where I have "Remove It Permanently" installed that if I remove the the little weather indicator in the upper right of the offending page that CPU utilization drops to about 40% of one CPU equivalent. If I use RIP to remove everything else right down to a bare screen that 40% utilization stays until I delete the tab.
    The third image shows the CPU utilization drop to zero when I delete the tab holding the offending page.
    Now I will add a note here: If the offending page is NOT the top tab in a window then it stops eating time. The offender will also stop eating time if I minimize the window. However if I have another window up but leave the offender up on top in its window it continues to eat time even tho I am looking at another window. The offender will continue to eat time even if its window is completely covered by another window, and it will also eat time if I switch to another desktop.
    I will often have half a dozen windows open, and there are many pages out there which will suck endless CPU time. Unless I want to open up a new tab on each window before I leave it there is likely to be some tab on top eating time uselessly. Get a couple of those going and Firefox becomes sluggish and can even stop responding for many seconds.
    I guess I not only want to have Firefox tell us which tabs are eating time, but I would also like it if Firefox would stop giving CPU time to any tab which is not visible because it is covered by some other window and/or it is on a desktop which is currently not showing. If you can stop a tab's CPU usage by reason of tab-not-showing then you should also be able to stop its CPU usage when the window is covered or on the not-top desktop. Indeed is there any reason to not schedule absolute CPU utilization priority to the visible tab on the window with focus and give time to the other tabs only when the visible tab isn't using time?
    My final thought on this is that I have had Firefox SO tied up sometimes that I swear their are web pages which are eating time even tho they are not the top tab. I regret that I do not have an example to show you. But Firefox grinds to a complete halt on a regular basis, and that is not acceptable. I am a programmer with long experience in multi-threaded programs so I *know* there is no reason you cannot do better. If there were another browser around which had the commitment to privacy which Firefox has I would probably switch out of shear annoyance. :-(

  • Help! Kernel_task more than 300% of CPU and extremely laggy

    Hi, I am using MacBook Pro 13 inch Early 2011 and using OS X 10.9.2 Mavericks
    It has been a few days that my computer was running extremely slow and I need to hold the power button for 10 seconds for it to boot (if i press it once the white power light on the mac body would only light for a while then turns off again)
    I did not know what triggered it, it was just like thay when i tried booting by mac
    I checked activity monitor and the kernel_task was actually taking up more than 300% of my cpu!
    I googled for answers but I can't find any. Is it due to third party software?
    Furthermore, when I safe boot the kernel_task would actually be low and the speed will revert back to normal.
    Please help me
    Thank you

    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|[nst]):/p;' ' {sub(/^ +/,"")};/r:/;/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[ ,]|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 { 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$|POSIX 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:' -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,Compon,Ex,Inter,iTu,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -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 the results. 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.

  • Netware 6.5 sp8 CPU Hog abend

    Hi the following abends seem to be happening every few months. Any help
    would be appreciated.
    Novell Open Enterprise Server, NetWare 6.5
    PVER: 6.50.08
    Server FS2 halted Saturday, 13 December 2014 5:25:40.354 am
    Abend 3 on P03: Server-5.70.08-1937: CPU Hog Detected by Timer
    Registers:
    CS = 0008 DS = 0023 ES = 0023 FS = 0023 GS = 0023 SS = 0010
    EAX = FBF17BA3 EBX = 8AA0A5E0 ECX = 8AA48018 EDX = 00000000
    ESI = 8AAA3748 EDI = 0003C128 EBP = 8A156F54 ESP = 8A156F40
    EIP = 00000000 FLAGS = 00000046
    Running process: Interrupt service routine (nested count 0)
    Interrupted process: Processor 3: IDLE Thread Process
    Thread Owned by NLM: SERVER.NLM
    Stack pointer: 8A156FB8
    OS Stack limit: 8A155000
    CPU 3 (Thread 8A154520) is in a NO SLEEP state
    Scheduling priority: 67371008
    Wait state: 3031111 Intermedidate Goto READY
    Stack: --FBF17BA3 ?
    8A73D179 (LIBNSS.NLM|nssSpinLock+9)
    8A9FA122 (NSS.NLM|NSSMPK_LockNss+62)
    -8AA48018 (NSS.NLM|NSSMPK_spinlock+0)
    8AA0A5E0 (NSS.NLM|fireAlarm+0)
    --8A156F70 ?
    8AA0A5EE (NSS.NLM|fireAlarm+E)
    --00000003 (LOADER.NLM|KernelAddressSpace+3)
    -00132180 (LOADER.NLM|interruptVectorPool+1B80)
    --0003C128 (LOADER.NLM|NestedInterruptCount+28)
    -8AAA3748 (NSS.NLM|AlarmWorkToDo+0)
    8AA0A5E0 (NSS.NLM|fireAlarm+0)
    -8AAA3748 (NSS.NLM|AlarmWorkToDo+0)
    00365B18 (SERVER.NLM|kDoFastWorkToDo+28)
    -8AAA3748 (NSS.NLM|AlarmWorkToDo+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000001 (LOADER.NLM|KernelAddressSpace+1)
    --0003C128 (LOADER.NLM|NestedInterruptCount+28)
    -8AAA3748 (NSS.NLM|AlarmWorkToDo+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    -8AAA3748 (NSS.NLM|AlarmWorkToDo+0)
    00228FEC (SERVER.NLM|kWorkToDoCheckAllRunFast+A4)
    -8AAA3748 (NSS.NLM|AlarmWorkToDo+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --000003E0 (LOADER.NLM|KernelAddressSpace+3E0)
    00229768 (SERVER.NLM|MpkSystemWork+68)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    0021E945 (SERVER.NLM|SchedProcessorIdleLoop+4B9)
    --FE1561A0 ?
    --FE1561A0 ?
    --00000001 (LOADER.NLM|KernelAddressSpace+1)
    --00000003 (LOADER.NLM|KernelAddressSpace+3)
    0020CDA4 (SERVER.NLM|kAddNewProcessor+39C)
    --06100800 ?
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000003 (LOADER.NLM|KernelAddressSpace+3)
    8A0D172D (ACPIDRV.PSM|PSMProcessorEntryPoint+23)
    --00000003 (LOADER.NLM|KernelAddressSpace+3)
    00108873 (LOADER.NLM|Start+CA)
    --00000003 (LOADER.NLM|KernelAddressSpace+3)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    Additional Information:
    The NetWare OS detected a problem with the system while executing a
    process owned by SERVER.NLM. It may be the source of the problem or there
    may have been a memory corruption.
    Loaded Modules:
    NDPSGW.NLM NDPS Gateway
    Version 4.01.02 2 March 2010
    Code Address: 9C4B4000h Length: 0000E7FCh
    Data Address: 9C4C3000h Length: 0000737Ch
    IPPSRVR.NLM Novell iPrint Server
    Version 4.02.03 13 August 2012
    Code Address: 9C044000h Length: 00017540h
    Data Address: 9C05C000h Length: 00008210h
    PHP_GD2.NLM PHP 5.0.5 - GD2 Extension - Zend API Number 20041030
    Version 1.00.02 3 October 2005
    Code Address: 9BFDB000h Length: 0000F96Dh
    Data Address: 9BFEB000h Length: 000348DCh
    PHP_OSSL.NLM PHP 5.0.5 - OpenSSL Extension - Zend API Number 20041030
    Version 1.00.02 3 October 2005
    Code Address: 9BF39000h Length: 00073E97h
    Data Address: 9BFAD000h Length: 0002D004h
    RMANSRVR.NLM NDPS Resource Manager
    Version 3.07.02 2 March 2010
    Code Address: 9BE05000h Length: 0001DE5Fh
    Data Address: 9BDBB000h Length: 00004A24h
    NIPPZLIB.NLM General Purpose ZIP File Library for NetWare
    Version 1.00.01 28 November 2005
    Code Address: 9BDFD000h Length: 00002A23h
    Data Address: 9BE00000h Length: 00000048h
    ZLIB.NLM ZLIB 1.1.4 General Purpose Compression Library for NetWare
    Version 1.01.04 20 December 2002
    Code Address: 9BDE8000h Length: 0000BAB4h
    Data Address: 9BDF4000h Length: 000014D8h
    PHP_XML.NLM PHP 5.0.5 - XML Extension - Zend API Number 20041030
    Version 1.00.02 3 October 2005
    Code Address: 9BD89000h Length: 00003C3Dh
    Data Address: 9BD8D000h Length: 0000121Ch
    EXPATLBC.NLM Scripting - Expat XML Parser Library (LibC Based) 1.95.2
    Version 1.00.02 31 August 2004
    Code Address: 9BD3F000h Length: 0001E59Dh
    Data Address: 9BD5E000h Length: 00006B30h
    PHP2UCS.NLM PHP 5.0.5 - UCS Extension - Zend API Number 20041030
    Version 1.00.02 3 October 2005
    Code Address: 9BD2E000h Length: 00001C1Dh
    Data Address: 9BD30000h Length: 00000FACh
    UCSCORE.NLM Novell UCS Core NLM
    Version 1.02.02 3 October 2005
    Code Address: 9BCFD000h Length: 0000801Bh
    Data Address: 9BD06000h Length: 000023EDh
    PHPMYSQL.NLM PHP 5.0.5 - MySQL-4.1.18 Extension - Zend API Number
    20041030
    Version 1.00.02 20 March 2006
    Code Address: 9BCCE000h Length: 00005CFDh
    Data Address: 9BCD4000h Length: 00001E84h
    LIBMYSQL.NLM MySQL Client Library
    Version 4.00.26 30 November 2005
    Code Address: 9BC82000h Length: 00012F4Bh
    Data Address: 9BC95000h Length: 0001D270h
    PHP_LDAP.NLM PHP 5.0.5 - LDAP Extension - Zend API Number 20041030
    Version 1.00.02 3 October 2005
    Code Address: 9BC5B000h Length: 00004BFDh
    Data Address: 9BC60000h Length: 0000173Ch
    ROTLOGS.NLM Apache 2.0.63 Log Rotation Utility for NetWare
    Version 2.00.63 25 April 2008
    Code Address: 97A0A000h Length: 000009F9h
    Data Address: 982ED000h Length: 00000438h
    ROTLOGS.NLM Apache 2.0.63 Log Rotation Utility for NetWare
    Version 2.00.63 25 April 2008
    Code Address: 98552000h Length: 000009F9h
    Data Address: 985B7000h Length: 00000438h
    SERVICTL.NLM eDirectory Management Tool Box DSService eMTool
    Version 10554.29 15 May 2007
    Code Address: 996F4000h Length: 0000BA02h
    Data Address: 9B7F3000h Length: 000045C0h
    NTFYDPOP.ENM Directed Pop-Up Delivery Method
    Version 2.00.03 26 February 1999
    Code Address: 9B7DF000h Length: 000049C5h
    Data Address: 996D4000h Length: 000002F5h
    MOD_PERL.NLM Perl 5.8.4 - Apache 2.0 Module
    Version 1.01 13 September 2005
    Code Address: 996C0000h Length: 000135A0h
    Data Address: 9B7DA000h Length: 00004FA0h
    MOD_PHP5.NLM PHP 5.0.5 - Apache 2.0 Module
    Version 1.00.02 3 October 2005
    Code Address: 99358000h Length: 000027CDh
    Data Address: 99650000h Length: 00000DE0h
    NTFYWSOC.ENM Winsock Delivery Method
    Version 2.00.03 26 February 1999
    Code Address: 9B7BA000h Length: 000049C5h
    Data Address: 9964A000h Length: 000002F5h
    SCHEMACR.NLM eDirectory Management Tool Box Schema eMTool
    Version 10554.29 15 May 2007
    Code Address: 995FA000h Length: 00012881h
    Data Address: 9960D000h Length: 0000FF2Ch
    MOD_NSN.NLM NSN - Apache Interface Module
    Version 1.01.01 22 September 2006
    Code Address: 99344000h Length: 0000281Ah
    Data Address: 99347000h Length: 0000164Ch
    REWRITE.NLM Apache 2.0.63 Rewrite Module
    Version 2.00.63 25 April 2008
    Code Address: 9B7AC000h Length: 00006C99h
    Data Address: 9933E000h Length: 00001EA8h
    HEADERS.NLM Apache 2.0.63 Headers Module
    Version 2.00.63 25 April 2008
    Code Address: 995D2000h Length: 00000E39h
    Data Address: 995D3000h Length: 00000538h
    EXPIRES.NLM Apache 2.0.63 Expires Module
    Version 2.00.63 25 April 2008
    Code Address: 995D0000h Length: 00000B89h
    Data Address: 995D1000h Length: 00000388h
    NTFYSPX.ENM SPX Delivery Method
    Version 2.00.03 26 February 1999
    Code Address: 9B778000h Length: 00004648h
    Data Address: 99588000h Length: 000002DDh
    MOD_IPP.NLM iPrint Module
    Version 1.00.04 7 June 2006
    Code Address: 99586000h Length: 00000B76h
    Data Address: 99587000h Length: 000004CCh
    AUTHLDDN.NLM LdapDN Module
    Version 1.00 9 November 2005
    Code Address: 95C92000h Length: 00001926h
    Data Address: 99585000h Length: 00000EC8h
    NTFYRPC.ENM RPC Delivery Method
    Version 2.00.03 26 February 1999
    Code Address: 9B75D000h Length: 000042E1h
    Data Address: 99580000h Length: 00000328h
    UTILLDP2.NLM LdapDN Module
    Version 1.00 9 November 2005
    Code Address: 9932F000h Length: 00002A56h
    Data Address: 95C24000h Length: 00001E80h
    MOD_JK.NLM Apache 2.0 plugin for Tomcat
    Version 1.02.23 25 April 2008
    Code Address: 99530000h Length: 00025B33h
    Data Address: 99556000h Length: 0000CDD0h
    AUTHLDAP.NLM Apache 2.0.63 LDAP Authentication Module
    Version 2.00.63 25 April 2008
    Code Address: 95C1A000h Length: 00001BB9h
    Data Address: 95C1C000h Length: 000019D0h
    NTFYPOP.ENM Pop Up Delivery Method
    Version 2.00.03 21 May 1999
    Code Address: 95C14000h Length: 00001047h
    Data Address: 994D8000h Length: 000004C1h
    UTILLDAP.NLM Apache 2.0.63 LDAP Authentication Module
    Version 2.00.63 25 April 2008
    Code Address: 9931F000h Length: 000034A9h
    Data Address: 99323000h Length: 00002598h
    SCHEMATL.NLM eDirectory Management Tool Box Schema eMTool
    Version 10554.29 15 May 2007
    Code Address: 99478000h Length: 00009CB2h
    Data Address: 9B74D000h Length: 00005EDCh
    NTFYLOG.ENM Log File Delivery Method
    Version 2.00.03 25 May 1999
    Code Address: 95C02000h Length: 00001461h
    Data Address: 99469000h Length: 00000C81h
    NDMPD.NLM VERITAS Backup Exec NDMP Server Module
    Version 9.10 7 June 2005
    Code Address: 95C33000h Length: 0005AB83h
    Data Address: 99425000h Length: 00018A20h
    AD_ASPI.NLM Backup Exec ASPI Device Driver for NetWare
    Version 7.50 25 May 2005
    Code Address: 99406000h Length: 00013ED8h
    Data Address: 9941B000h Length: 00008D6Fh
    NRLTLI.NLM Backup Exec - Remote Workstation Backup Software
    Version 9.10 7 June 2005
    Code Address: 975A6000h Length: 0000240Fh
    Data Address: 97643000h Length: 00000BE0h
    NTFYSRVR.NLM NDPS Notification Server
    Version 3.00.05 10 May 2005
    Code Address: 99303000h Length: 00014717h
    Data Address: 95BF8000h Length: 0000145Ch
    TSANDS.NLM TSA for Novell eDirectory 7.x, 8.x
    Version 10551.71 19 July 2005
    Code Address: 9B6C9000h Length: 000125DCh
    Data Address: 95BF0000h Length: 00001410h
    REPAIRCR.NLM eDirectory Management Tool Box DSRepair eMTool
    Version 10554.29 15 May 2007
    Code Address: 9B604000h Length: 0003D921h
    Data Address: 9B642000h Length: 0001FD64h
    REPAIRTL.NLM eDirectory Management Tool Box DSRepair eMTool
    Version 10554.29 15 May 2007
    Code Address: 9B30D000h Length: 00010562h
    Data Address: 9B31E000h Length: 0001E094h
    REGSRVR.NLM NDPS Service Registry
    Version 3.00.06 10 May 2005
    Code Address: 9B302000h Length: 0000A071h
    Data Address: 9799D000h Length: 00000BFCh
    MERGECR.NLM eDirectory Management Tool Box DSMerge eMTool
    Version 10554.29 15 May 2007
    Code Address: 9B2CF000h Length: 0001B251h
    Data Address: 9B2EB000h Length: 00016FE4h
    DBNET6.NLM Debug Network IO Support
    Version 1.45.02 16 March 2006
    Code Address: 9B0A0000h Length: 0001B831h
    Data Address: 9B0BC000h Length: 000127B8h
    MERGETL.NLM eDirectory Management Tool Box DSMerge eMTool
    Version 10554.29 15 May 2007
    Code Address: 9AE5E000h Length: 0000B812h
    Data Address: 9AE6A000h Length: 0000FC65h
    NIRMAN.NLM TCPIP - NetWare Internetworking Remote Manager
    Version 1.06.04 18 September 2007
    Code Address: 9AD75000h Length: 00060760h
    Data Address: 9ADD6000h Length: 00018FCAh
    TCPSTATS.NLM Web Interface for Protocol Monitoring
    Version 6.50.10 20 June 2003
    Code Address: 9AA74000h Length: 0000E5ECh
    Data Address: 9AAB8000h Length: 00005460h
    BACKUPCR.NLM eDirectory Management Tool Box DSBackup eMTool
    Version 10554.29 15 May 2007
    Code Address: 9AB8C000h Length: 0000A0D1h
    Data Address: 9AAB4000h Length: 00003218h
    NLSADPT2.NLM NLS and Metering adapter for iManager 2.0 plugin
    Version 2.00 9 September 2003
    Code Address: 992AB000h Length: 0000665Dh
    Data Address: 985A3000h Length: 00000E7Dh
    BACKUPTL.NLM eDirectory Management Tool Box DSBackup eMTool
    Version 10554.29 15 May 2007
    Code Address: 9AA58000h Length: 0000AEE2h
    Data Address: 99178000h Length: 00005560h
    NLSLRUP.NLM NLS - Usage Metering
    Version 4.01.07 10 May 2005
    Code Address: 9A9FE000h Length: 0003BA0Ah
    Data Address: 9AA3A000h Length: 00010AE0h
    HWDETECT.NLM Novell Hardware Insertion/Removal Detection
    Version 1.19.05 20 February 2003
    Code Address: 9A5D2000h Length: 00002B33h
    Data Address: 98F3C000h Length: 00000D3Ch
    LOGGER.NLM eDirectory Management Tool Box Logger
    Version 10554.29 15 May 2007
    Code Address: 9A5A7000h Length: 0000DF82h
    Data Address: 98E79000h Length: 00006A24h
    STATUSLG.NLM Report and Notification Service
    Version 1.00 24 June 2004
    Code Address: 98FE4000h Length: 00058ADEh
    Data Address: 9A565000h Length: 00018814h
    NATCOMM.NLM natcomm.nlm
    Code Address: 9A4BF000h Length: 000039A6h
    Data Address: 963F2000h Length: 000012A8h
    JSPNW.NLM jspnw.nlm
    Code Address: 98E67000h Length: 00004BA6h
    Data Address: 9A49E000h Length: 00002544h
    EMSECURE.NLM eDirectory Management Tool Box Security Service
    Version 10554.29 15 May 2007
    Code Address: 99250000h Length: 00009782h
    Data Address: 9925A000h Length: 000033C0h
    AIOCOMX.NLM Novell AIO Serial Port Driver
    Version 6.00.02 18 December 2002
    Code Address: 98D0B000h Length: 00004159h
    Data Address: 961FF000h Length: 00001170h
    AIO.NLM NetWare Asynchronous I/O Library
    Version 7.00.08 18 November 2003
    Code Address: 991AA000h Length: 0001A137h
    Data Address: 9876C000h Length: 00051A10h
    RSS.NLM eDirectory Management Tool Box Remote Subscription Service
    Version 10554.29 15 May 2007
    Code Address: 99130000h Length: 00009932h
    Data Address: 9913A000h Length: 0000261Ch
    EMBOXMGR.NLM eDirectory Management Tool Box Manager
    Version 10554.29 15 May 2007
    Code Address: 98ECB000h Length: 00018E62h
    Data Address: 98B74000h Length: 00007CE2h
    EMBOXMSG.NLM eDirectory Management Tool Box Message API
    Version 10554.29 15 May 2007
    Code Address: 98E9E000h Length: 0000B2F2h
    Data Address: 98EAA000h Length: 0000273Dh
    BKUPEXEC.NLM Backup Exec SureStart
    Version 9.10 7 June 2005
    Code Address: 98D36000h Length: 0001D43Eh
    Data Address: 98D54000h Length: 00015E58h
    HT2SOAP.NLM eDirectory Management Tool Box HTTP to SOAP shim
    Version 10554.29 15 May 2007
    Code Address: 98CC1000h Length: 00009B02h
    Data Address: 98CCB000h Length: 000037E0h
    NDPSM.NLM NDPS Manager
    Version 3.03.02 18 May 2010
    Code Address: 98851000h Length: 00083318h
    Data Address: 98BBE000h Length: 00025E80h
    DPLSV386.NLM NetWare 6.x Distributed Print Library - DPLSV386
    Version 1.15.03 16 April 2010
    Code Address: 96018000h Length: 000541E9h
    Data Address: 98B84000h Length: 0000C724h
    NIPPED.NLM NetWare 5.x, 6.x INF File Editing Library - NIPPED
    Version 1.03.09 26 February 2010
    Code Address: 98846000h Length: 00005345h
    Data Address: 98B1C000h Length: 0000016Ch
    LANGMAN.NLM Novell Cross-Platform Language Manager
    Version 10310.56 25 January 2006
    Code Address: 98B33000h Length: 0000E670h
    Data Address: 98B42000h Length: 0000B489h
    BROKER.NLM NDPS Broker
    Version 3.00.12 20 February 2008
    Code Address: 98B1F000h Length: 0000FFECh
    Data Address: 986E7000h Length: 000071A5h
    DPRPCNLM.NLM Novell NDPS RPC Library NLM
    Version 3.00.17 10 October 2006
    Code Address: 986E1000h Length: 00005324h
    Data Address: 95DC4000h Length: 00001F20h
    PHP5LIB.NLM PHP 5.0.5 - Script Interpreter and Library - Zend API
    Number 20041030
    Version 1.00.03 6 December 2005
    Code Address: 988E8000h Length: 00153CB8h
    Data Address: 95F93000h Length: 00084425h
    EMBOX.NLM eDirectory Management Tool Box Engine
    Version 10554.29 15 May 2007
    Code Address: 985C5000h Length: 00007C32h
    Data Address: 985CD000h Length: 000052F8h
    XIS11.NLM XML Integration Service
    Version 1.00.02 7 April 2005
    Code Address: 98348000h Length: 00099332h
    Data Address: 96080000h Length: 00043FDEh
    _PROFILE.NLM NSN - Profile UCX Component
    Version 2.02.04 3 October 2005
    Code Address: 95DAC000h Length: 0000127Dh
    Data Address: 98322000h Length: 00000874h
    NWSEC.NLM Scripting - Security Library
    Version 1.00.02 13 September 2005
    Code Address: 982F8000h Length: 00003B69h
    Data Address: 982FC000h Length: 00000ADCh
    DHCPSRVR.NLM DHCP Server
    Version 3.14 30 October 2008
    Code Address: 98513000h Length: 00023754h
    Data Address: 98537000h Length: 0000BD58h
    IPCLINFO.NLM IP Client Info Module 17Dec99
    Version 1.11.01 17 December 1999
    Code Address: 982D7000h Length: 00000F1Ch
    Data Address: 982D8000h Length: 00000490h
    JNET.NLM Java jnet (based on 1.4.2_18)
    Version 1.43 16 October 2008
    Code Address: 97D0F000h Length: 0000653Eh
    Data Address: 95D8C000h Length: 00001100h
    UCXMGR.NLM NSN - UCX Library Manager
    Version 2.02.04 3 October 2005
    Code Address: 98177000h Length: 0000D23Dh
    Data Address: 95D7C000h Length: 00001DE8h
    NAMED.NLM eDirectory integrated Novell DNS Server
    Version 6.07.03 5 August 2008
    Code Address: 960FC000h Length: 00102DD0h
    Data Address: 97FC4000h Length: 0009853Fh
    CSATPXY.NLM CS Audit Trail Proxy Agent
    Version 1.02 17 November 1999
    Code Address: 97C02000h Length: 0000225Ch
    Data Address: 97FC3000h Length: 00000A80h
    CSAUDIT.NLM CSLIB: Audit Trail Facility
    Version 6.00.02 4 September 2003
    Code Address: 97F7B000h Length: 000098F5h
    Data Address: 95D68000h Length: 0000169Ch
    CSSYSMSG.NLM CSLIB: System Messages Facility
    Version 1.01.08 18 March 1999
    Code Address: 97D63000h Length: 00010A57h
    Data Address: 97D74000h Length: 00004298h
    NWSNUT.NLM NetWare NLM Utility User Interface
    Version 7.00.01 11 July 2008
    Code Address: 97D33000h Length: 000134EBh
    Data Address: 97D48000h Length: 00000790h
    IPMCFG.NLM Web Interface for IP Address Management
    Version 1.01.16 22 October 2005
    Code Address: 97CD0000h Length: 0000A479h
    Data Address: 97CDB000h Length: 0000B610h
    SPXS.MPM spxs Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: 97C51000h Length: 0000002Ah
    Data Address: 97C52000h Length: 00000018h
    SPXS.NLM NetWare SPX/SPXII Protocol (PTF)
    Version 5.14 18 January 2000
    Code Address: 97C43000h Length: 0000A021h
    Data Address: 97C4E000h Length: 00000FD8h
    Global Code Address: 97C4F000h Length: 00001000h
    TSAFS.NLM SMS - File System Agent for NetWare 6.X
    Version 6.53.03 16 October 2008
    Code Address: 95DD6000h Length: 0005F9A2h
    Data Address: 97AFD000h Length: 0000D7B0h
    SMDR.NLM SMS - Storage Data Requestor
    Version 6.58.01 16 October 2008
    Code Address: 957D1000h Length: 00047EF8h
    Data Address: 97A2F000h Length: 0000D8E0h
    SMSUT.NLM SMS - Utility Library for NetWare 6.X
    Version 1.01.03 26 June 2008
    Code Address: 979A7000h Length: 00010201h
    Data Address: 9562C000h Length: 00001DF0h
    LSL.MPM lsl Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: 9776E000h Length: 000001C2h
    Data Address: 9776F000h Length: 00000138h
    SLP.MPM slp Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: 97753000h Length: 000002E9h
    Data Address: 97754000h Length: 00000090h
    STREAMS.MPM streams Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: 976E4000h Length: 000006E9h
    Data Address: 976E5000h Length: 00000188h
    TLI.MPM tli Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: 95464000h Length: 00001276h
    Data Address: 976E3000h Length: 00000344h
    SNMP.MPM snmp Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: 976E1000h Length: 000009F7h
    Data Address: 976E2000h Length: 000000FCh
    SASL.NLM Simple Authentication and Security Layer 3.3.1.0 20081112
    Version 33100811.12 12 November 2008
    Code Address: 976C3000h Length: 00000C4Ch
    Data Address: 976C4000h Length: 00000160h
    TCPIP.MPM tcpip Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: 953FE000h Length: 00001F5Bh
    Data Address: 976A6000h Length: 00000918h
    NETDB.MPM netdb Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: 9768B000h Length: 00000AEFh
    Data Address: 9768C000h Length: 000001C4h
    IPXSPX.MPM ipxspx Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: 97650000h Length: 00000C33h
    Data Address: 97651000h Length: 000004B8h
    IPXS.MPM ipxs Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: 9764E000h Length: 0000002Ah
    Data Address: 9764F000h Length: 00000018h
    SYSCALLS.NLM NetWare Operating System Call and Marshalling Library
    Version 5.61 2 August 2007
    Code Address: 975C6000h Length: 0000F50Eh
    Data Address: 975D6000h Length: 0000B4ECh
    LDAPXS.NLM (Clib version)
    Version 3.04 22 February 2008
    Code Address: 97567000h Length: 00004307h
    Data Address: 9756C000h Length: 00000870h
    NMASLDAP.NLM NMAS LDAP Extensions 3.3.1.0 20081112
    Version 33100811.12 12 November 2008
    Code Address: 9750C000h Length: 00004E5Ch
    Data Address: 97514000h Length: 000007D0h
    APACHE2.NLM Apache Web Server 2.0.63
    Version 2.00.63 25 April 2008
    Code Address: 97473000h Length: 00039D29h
    Data Address: 974AD000h Length: 00011A9Ch
    APRLIB.NLM Apache Portability Runtime Library 0.9.17
    Version 0.09.17 25 April 2008
    Code Address: 973E6000h Length: 0002E688h
    Data Address: 97415000h Length: 00008088h
    LBURP.NLM LDAP Bulkload Update/Replication Protocol service
    extension for Novell eDirectory 8.7.
    Version 10552.76 7 August 2006
    Code Address: 94ECC000h Length: 000010ECh
    Data Address: 973E5000h Length: 00000444h
    NCPL.NLM Novell XTier Base Services
    Version 3.01.60 21 May 2008
    Code Address: 973BB000h Length: 0000C46Dh
    Data Address: 94EC6000h Length: 000012C0h
    LIBXTREG.NLM Novell XTier Base Services
    Version 3.01.60 21 May 2008
    Code Address: 973B9000h Length: 000004F7h
    Data Address: 973BA000h Length: 000000F8h
    LIBNICM.NLM Novell XTier Base Services
    Version 3.01.60 21 May 2008
    Code Address: 97273000h Length: 00003271h
    Data Address: 9739C000h Length: 00000494h
    SCRCB.NLM Scripting - LibC-CLib Context Broker
    Version 1.00 3 October 2005
    Code Address: 972D4000h Length: 0000046Dh
    Data Address: 972D5000h Length: 00000554h
    NSPSAP.NLM NetWare Winsock 2.0 NLM NSPSAP.NLM Name Service Provider
    Version 6.20.02 8 September 2003
    Code Address: 94EB4000h Length: 00001EE7h
    Data Address: 972A9000h Length: 00000610h
    NLDAP.NLM LDAP Agent for Novell eDirectory 8.7.3.10
    Version 10555.98 23 April 2008
    Code Address: 9582B000h Length: 00075DB8h
    Data Address: 958A1000h Length: 00045A54h
    WSPIPX.NLM NetWare Winsock Service 1.0 NLM for IPX and SPX
    Version 6.22 4 December 2007
    Code Address: 9727F000h Length: 0000E359h
    Data Address: 94EAA000h Length: 00001762h
    NCPIPX.NLM Novell NCP/IPX Stack NLM
    Version 5.60.01 30 September 2008
    Code Address: 97213000h Length: 00005720h
    Data Address: 94EA8000h Length: 00001308h
    IPXS.NLM NetWare STREAMS IPX Protocol
    Version 4.10.01 12 February 1998
    Code Address: 94EA2000h Length: 00001C95h
    Data Address: 97265000h Length: 000000ECh
    Global Code Address: 97266000h Length: 00001000h
    IPXSPX.NLM NetWare IPX/SPX Protocol Stack NLM
    Version 5.60 1 February 2006
    Code Address: 97237000h Length: 0000FDF2h
    Data Address: 97248000h Length: 00009A3Ah
    PMPORTAL.NLM NetWare License Information Portal
    Version 2.16 21 November 2003
    Code Address: 97206000h Length: 000071C9h
    Data Address: 9720E000h Length: 00004360h
    OWCIMOMD.NLM OpenWBEM CIMOM Daemon with Novell providers
    Version 3.02 27 November 2007
    Code Address: 964A3000h Length: 005C17E4h
    Data Address: 96A79000h Length: 001AA8F4h
    LIBGCC_S.NLM gcc runtime and intrinsics support
    Version 3.04.03 29 April 2005
    Code Address: 96270000h Length: 00004ABCh
    Data Address: 96275000h Length: 00000A74h
    LLDAPX.NLM NetWare Extension APIs for LDAP SDK (LibC version)
    Version 3.05.01 26 September 2007
    Code Address: 96269000h Length: 00005DC5h
    Data Address: 9626F000h Length: 00000EF0h
    LLDAPSSL.NLM NetWare SSL Library for LDAP SDK (LibC version)
    Version 3.05.01 26 September 2007
    Code Address: 9631F000h Length: 00097B47h
    Data Address: 963B7000h Length: 00032034h
    NISSWDD.NLM NetWare NFS - NIS Password Management Support Module
    Version 15.02.02 14 October 2008
    Code Address: 95660000h Length: 000031D9h
    Data Address: 95664000h Length: 00002380h
    NDSILIB.NLM NetWare NFS - eDirectory Interface Library
    Version 15.05.01 14 October 2008
    Code Address: 95606000h Length: 00011488h
    Data Address: 95618000h Length: 0000CE90h
    NISBIND.NLM NetWare NFS - NIS Client Module
    Version 15.02.02 14 October 2008
    Code Address: 955E1000h Length: 00009079h
    Data Address: 955EB000h Length: 000039A0h
    PKERNEL.NLM NetWare NFS - Portmapper and RPC Module
    Version 15.01 14 October 2008
    Code Address: 95565000h Length: 00016F37h
    Data Address: 9557D000h Length: 0000F790h
    RPCBSTUB.NLM NetWare NFS - Portmapper & Rpcbind co-existance Support
    Module
    Version 15.00.16 14 October 2008
    Code Address: 95563000h Length: 00000041h
    Data Address: 95564000h Length: 00000008h
    NETDB.NLM Network Database Access Module
    Version 4.11.05 6 January 2005
    Code Address: 954C8000h Length: 0001394Dh
    Data Address: 954DC000h Length: 000025FCh
    UNICRYPT.NLM TCP/IP Encryption NLM
    Version 9.11 15 December 1998
    Code Address: 95454000h Length: 000004D9h
    Data Address: 95455000h Length: 000007C8h
    CIFSPROX.NLM NMAS Proxy for CIFS (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 95408000h Length: 0001325Eh
    Data Address: 9541C000h Length: 00005A60h
    LDAPX.NLM NetWare Extension APIs for LDAP SDK (Clib version)
    Version 3.05.01 26 September 2007
    Code Address: 953E5000h Length: 00005D95h
    Data Address: 953EB000h Length: 00000EF0h
    CIFS.NLM CIFS Semantic Agent (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 94EE4000h Length: 00065E61h
    Data Address: 95164000h Length: 00012870h
    AFPTCP.NLM AFPTCP (Build 163 SP)
    Version 2.07 13 November 2008
    Code Address: 95128000h Length: 0003146Dh
    Data Address: 9515A000h Length: 000096C0h
    WSPDSI.NLM NetWare Winsock Service 1.0 NLM for Data Stream Interface
    Version 6.21.01 25 October 2005
    Code Address: 94DE6000h Length: 00002EA4h
    Data Address: 94DE9000h Length: 000006D4h
    NFAP4NRM.NLM NFAP Simple Password Management NLM
    Version 1.04 8 December 2003
    Code Address: 94FE6000h Length: 000080A2h
    Data Address: 94FEF000h Length: 00017CA0h
    SETMD4.NLM Windows Native File Access CIFS Library (Build 163 SP)
    Version 2.01 13 November 2008
    Code Address: 94CD9000h Length: 000012ECh
    Data Address: 94CDB000h Length: 00000130h
    NDSIMON.NLM NDS iMonitor 2.3.1
    Version 20212.12.05 14 May 2007
    Code Address: 946A0000h Length: 0010E789h
    Data Address: 947AF000h Length: 0008BFF0h
    LANGMANI.NLM Novell Cross-Platform Language Manager
    Version 10310.47 9 August 2004
    Code Address: 9469B000h Length: 000040F2h
    Data Address: 9305E000h Length: 00001084h
    XI18N.NLM Novell Cross-Platform Internationalization Package
    Version 10310.49 3 February 2005
    Code Address: 94F80000h Length: 0001CA12h
    Data Address: 94693000h Length: 00007EC8h
    BTCPCOM.NLM BTCPCOM.NLM v7.90.000, Build 253
    Version 7.90 9 July 2003
    Code Address: 93EDE000h Length: 00004450h
    Data Address: 92950000h Length: 00000CECh
    PORTAL.NLM Novell Remote Manager NLM
    Version 4.03 22 September 2008
    Code Address: 948F7000h Length: 0010147Ch
    Data Address: 92F9D000h Length: 00069EA4h
    HTTPSTK.NLM Novell Small Http Interface
    Version 4.03 4 September 2008
    Code Address: 9446E000h Length: 000317C6h
    Data Address: 944A0000h Length: 00019C10h
    WSPSSL.NLM NetWare Winsock Service 1.0 NLM for SSL
    Version 6.26 4 December 2007
    Code Address: 94454000h Length: 00008AFFh
    Data Address: 9445D000h Length: 0001095Fh
    NILE.NLM Novell N/Ties NLM ("") Release Build with symbols
    Version 7.00.01 20 August 2007
    Code Address: 93E43000h Length: 00090A31h
    Data Address: 943DC000h Length: 00030C70h
    NPKIAPI.NLM Public Key Infrastructure Services
    Version 3.32 24 September 2008
    Code Address: 94210000h Length: 00035E17h
    Data Address: 94246000h Length: 0001D9AFh
    NPKIT.NLM Public Key Infrastructure Services
    Version 3.32 24 September 2008
    Code Address: 941A9000h Length: 0002E51Eh
    Data Address: 941D8000h Length: 00016683h
    NTLS.NLM NTLS 2.0.4.0 based on OpenSSL 0.9.7m
    Version 20410.01 12 August 2008
    Code Address: 93C8B000h Length: 000A72C6h
    Data Address: 94166000h Length: 0003915Fh
    LLDAPSDK.NLM LDAP SDK Library (LibC version)
    Version 3.05.02 26 September 2007
    Code Address: 94078000h Length: 00021E83h
    Data Address: 93167000h Length: 00006BA0h
    PKI.NLM Novell Certificate Server
    Version 3.32 25 August 2008
    Code Address: 9426B000h Length: 00170AE5h
    Data Address: 93C0A000h Length: 00080F60h
    PKIAPI.NLM Public Key Infrastructure Services
    Version 2.23.10 20 November 2004
    Code Address: 94020000h Length: 00037721h
    Data Address: 930EF000h Length: 00006A14h
    LDAPSDK.NLM LDAP SDK Library (Clib version)
    Version 3.05.02 26 September 2007
    Code Address: 93FFF000h Length: 00020C63h
    Data Address: 930A3000h Length: 00006B8Dh
    NWUTIL.NLM Novell Utility Library NLM (_NW65[SP7]{""})
    Version 3.00.02 20 August 2007
    Code Address: 93F9F000h Length: 0000EE40h
    Data Address: 93FAE000h Length: 00023BD4h
    NWBSRVCM.NLM NWBSRVCM.NLM v7.90.000, Build 230
    Version 7.90 20 March 2001
    Code Address: 92F68000h Length: 00006776h
    Data Address: 92F72000h Length: 00000AD0h
    MONDATA.NLM NetWare 5.x/6.x Monitor MIB
    Version 6.00 18 July 2003
    Code Address: 93F46000h Length: 00008C9Fh
    Data Address: 92F39000h Length: 00004DD1h
    NWIDK.NLM CDWare Volume Module
    Version 3.01.01 19 September 2003
    Code Address: 92F5A000h Length: 00004640h
    Data Address: 92F5F000h Length: 00000730h
    SERVINST.NLM NetWare 5.x/6.x Instrumentation
    Version 5.00.13 21 November 2005
    Code Address: 93F35000h Length: 00010D4Ch
    Data Address: 92F27000h Length: 00007744h
    NWTRAP.NLM NetWare 5.x/6.x Trap Monitor
    Version 6.00.05 6 June 2005
    Code Address: 92E2F000h Length: 000066C3h
    Data Address: 93F2A000h Length: 0000A2E0h
    HOSTMIB.NLM NetWare 5.x/6.x Host Resources MIB
    Version 5.03.01 1 December 2006
    Code Address: 93F15000h Length: 0000BB80h
    Data Address: 92D27000h Length: 00003D88h
    ZIP.NLM Java zip (based on 1.4.2_18)
    Version 1.43 16 October 2008
    Code Address: 939C6000h Length: 0000ADCCh
    Data Address: 92376000h Length: 00001C90h
    JVMLIB.NLM Java jvmlib (based on 1.4.2_18)
    Version 1.43 16 October 2008
    Code Address: 9398F000h Length: 00017134h
    Data Address: 939A7000h Length: 00008670h
    VERIFY.NLM Java verify (based on 1.4.2_18)
    Version 1.43 16 October 2008
    Code Address: 9385C000h Length: 000087B4h
    Data Address: 93699000h Length: 00001BC0h
    NLSTRAP.NLM NetWare License Server Trap
    Version 5.02 19 February 2004
    Code Address: 927D2000h Length: 0000298Ah
    Data Address: 93828000h Length: 00000695h
    LIBPERL.NLM Perl 5.8.4 - Script Interpreter and Library
    Version 5.00.05 13 September 2005
    Code Address: 92E4B000h Length: 000B3D60h
    Data Address: 937A0000h Length: 0001ADE0h
    JVM.NLM Java Hotspot 1.4.2_18 Interpreter
    Version 1.43 16 October 2008
    Code Address: 9328C000h Length: 00222FFFh
    Data Address: 934AF000h Length: 00065A60h
    IPMGMT.NLM TCPIP - NetWare IP Address Management
    Version 1.03.01 29 May 2007
    Code Address: 92C1E000h Length: 000307CDh
    Data Address: 92C4F000h Length: 0000D778h
    JSOCK6X.NLM NetWare 6.x Support For Java Sockets (JDK 1.4.2)
    Version 1.43 16 October 2008
    Code Address: 929A3000h Length: 0000FDB1h
    Data Address: 929B3000h Length: 00002C44h
    JAVA.NLM java.nlm (based on 1.4.2_18) Build 08101613
    Version 1.43 16 October 2008
    Code Address: 928D0000h Length: 000385DEh
    Data Address: 92909000h Length: 0003DD40h
    JSOCK.NLM Support For Java Sockets (loader)
    Version 1.43 16 October 2008
    Code Address: 928C4000h Length: 00000086h
    Data Address: 928C5000h Length: 00000064h
    VOLSMS.NLM NSS Distributed Volume Manager (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 9287E000h Length: 00018771h
    Data Address: 9283D000h Length: 00001780h
    VLRPC.NLM DFS Volume Location Database (VLDB) RPC interface (Build
    163 MP)
    Version 3.27 13 November 2008
    Code Address: 92871000h Length: 00003383h
    Data Address: 92875000h Length: 000002FDh
    VMRPC.NLM DFS Volume Manager RPC interface (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 92829000h Length: 00003703h
    Data Address: 9286F000h Length: 000002FDh
    JSTCP.NLM Jetstream TCP Transport Layer (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 92849000h Length: 000050F0h
    Data Address: 9284F000h Length: 000001E0h
    JSMSG.NLM Jetstream Message Layer (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 92840000h Length: 00006E80h
    Data Address: 9282D000h Length: 00000220h
    DFSLIB.NLM DFS Common Library (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 92832000h Length: 000005C3h
    Data Address: 92833000h Length: 00000080h
    LSMAFP3.NLM Macintosh Native File Access Login Methods (Build 106 SP)
    Version 2.00.11 3 January 2005
    Code Address: 926C6000h Length: 0000F24Eh
    Data Address: 926D6000h Length: 000013C0h
    PWDLCM.NLM Novell Simple Password Proxy LCM 2.7.1.0 20050902
    Version 27100509.02 2 September 2005
    Code Address: 9268D000h Length: 0000E29Bh
    Data Address: 9269C000h Length: 000014D0h
    PWDLSM.NLM Novell Simple Password LSM 2.7.1.0 20050902
    Version 27100509.02 2 September 2005
    Code Address: 92628000h Length: 0001073Bh
    Data Address: 92639000h Length: 00001AA0h
    EPWDLSM.NLM Novell Enhanced Password LSM 2.7.0.0 20050812
    Version 27000508.12 12 August 2005
    Code Address: 92609000h Length: 0001249Bh
    Data Address: 9261C000h Length: 000018C0h
    CRLSM.NLM Novell Challenge Response LSM 2.7.3.0 20060620
    Version 27300606.20 20 June 2006
    Code Address: 92584000h Length: 00020D0Bh
    Data Address: 925A5000h Length: 00001C00h
    LCMCIFS2.NLM Windows Native File Access Login Methods (Build 84 SP)
    Version 2.00.09 29 November 2005
    Code Address: 924FA000h Length: 0000E011h
    Data Address: 92509000h Length: 000016B0h
    LSMCIFS2.NLM Windows Native File Access Login Methods (Build 95 SP)
    Version 2.00.07 29 November 2005
    Code Address: 924B7000h Length: 0000F051h
    Data Address: 924C7000h Length: 000017B0h
    NMASGPXY.NLM NMAS Generic Proxy 3.3.1.0 20081112
    Version 33100811.12 12 November 2008
    Code Address: 92490000h Length: 0000153Ch
    Data Address: 92492000h Length: 000000E0h
    SPMDCLNT.NLM Novell SPM Client for DClient 3.3.1.0 20081112
    Version 33100811.12 12 November 2008
    Code Address: 9237A000h Length: 000145D8h
    Data Address: 9238F000h Length: 00001370h
    NSPDNS.NLM NetWare Winsock 2.0 NSPDNS.NLM Name Service Providers
    Version 6.20.03 8 September 2003
    Code Address: 9236E000h Length: 00002527h
    Data Address: 92371000h Length: 000004E4h
    SLPTCP.NLM SERVICE LOCATION TCP/UDP INTERFACE (RFC2165/RFC2608)
    Version 2.13 15 November 2005
    Code Address: 92283000h Length: 0000386Ah
    Data Address: 92287000h Length: 0000108Ch
    WSPIP.NLM NetWare Winsock Service 1.0 NLM for TCP and UDP
    Version 6.24 4 December 2007
    Code Address: 92103000h Length: 000124C4h
    Data Address: 92116000h Length: 0000287Ch
    NCPIP.NLM NetWare NCP Services over IP
    Version 6.02.01 30 September 2008
    Code Address: 92064000h Length: 000168E9h
    Data Address: 9207B000h Length: 00003540h
    BSDSOCK.NLM Novell BSDSOCK Module
    Version 6.82 20 November 2007
    Code Address: 91FCE000h Length: 00011BF9h
    Data Address: 91FE0000h Length: 0000C0E0h
    TCPIP.NLM Novell TCP/IP Stack - Network module (NULL encryption)
    Version 6.82 20 November 2007
    Code Address: 916C9000h Length: 0004E7ECh
    Data Address: 918F2000h Length: 00038D30h
    TCP.NLM Novell TCP/IP Stack - Transport module (NULL encryption)
    Version 6.82.04 30 September 2008
    Code Address: 9177B000h Length: 000253E2h
    Data Address: 91873000h Length: 0007EEE0h
    NETLIB.NLM Novell TCPIP NETLIB Module
    Version 6.50.22 12 February 2003
    Code Address: 9090E000h Length: 00005AACh
    Data Address: 917A2000h Length: 000D0710h
    CSLIND.NLM TCPIP CSL INDEPENDENCE MODULE 7Dec99 7Dec99
    Version 4.21 7 December 1999
    Code Address: 90908000h Length: 000003CCh
    Data Address: 90AF3000h Length: 000024E0h
    LSAPI.NLM NLS LSAPI Library
    Version 5.02 7 January 2003
    Code Address: 91621000h Length: 0000A51Bh
    Data Address: 908E8000h Length: 00001B00h
    Q57.LAN HP NC10xx/NC32xx/NC67xx/NC77xx Gigabit Server Adapter
    Version 9.72 24 August 2006
    Code Address: 915B6000h Length: 0002341Ah
    Data Address: 1A0D1000h Length: 00008D34h
    ETHERTSM.NLM Novell Ethernet Topology Specific Module
    Version 3.90 20 March 2006
    Code Address: 90AEA000h Length: 000024CEh
    Data Address: 80250000h Length: 000002BCh
    MSM.NLM Novell Multi-Processor Media Support Module
    Version 4.12 22 August 2007
    Code Address: 915A7000h Length: 0000E5B3h
    Data Address: 90AE3000h Length: 00003DFCh
    NLSAPI.NLM NLSAPI
    Version 5.02 7 August 2003
    Code Address: 9158B000h Length: 000124DBh
    Data Address: 909C6000h Length: 000022A4h
    CONNAUD.NLM NLS - Connection Metering
    Version 3.17 10 May 2005
    Code Address: 90ADC000h Length: 000034D3h
    Data Address: 80189000h Length: 00000A9Ch
    NLSMETER.NLM NLS - Software Usage Metering Database
    Version 3.43 10 May 2005
    Code Address: 9157C000h Length: 0000E597h
    Data Address: 908C1000h Length: 0000759Ch
    NLSLSP.NLM NLS - License Service Provider
    Version 5.02 25 May 2005
    Code Address: 90A40000h Length: 0006DF03h
    Data Address: 90AAE000h Length: 000205DCh
    CSL.NLM NetWare Call Support Layer For NetWare
    Version 2.06.02 13 January 2000
    Code Address: 91527000h Length: 0000CB32h
    Data Address: 909A0000h Length: 000028F4h
    BTRIEVE.NLM BTRIEVE.NLM v7.90.000
    Version 7.90 21 March 2001
    Code Address: 9097A000h Length: 000013BFh
    Data Address: 9097C000h Length: 00000980h
    NWMKDE.NLM NWMKDE.NLM v7.94.251.000
    Version 7.94 11 December 2001
    Code Address: 907CC000h Length: 00053D55h
    Data Address: 910CF000h Length: 0000F784h
    NWENC103.NLM NWENC103.NLM v7.90.000 (Text Encoding Conversion Library)
    Version 7.90 24 February 2001
    Code Address: 909DA000h Length: 0004D0F5h
    Data Address: 90F1E000h Length: 001B0208h
    NWAIF103.NLM nwaif103.nlm v7.94, Build 251 ()
    Version 7.94 30 November 2001
    Code Address: 90EFC000h Length: 00010E51h
    Data Address: 907BA000h Length: 00006828h
    PSVCS.NLM Portability Services
    Version 251.00 30 November 2001
    Code Address: 90E92000h Length: 0001270Fh
    Data Address: 90EA5000h Length: 00009464h
    NWUCMGR.NLM NWUCMGR.NLM v1.5 Build 230
    Version 1.05 14 March 2001
    Code Address: 90E51000h Length: 0000D920h
    Data Address: 901D5000h Length: 000078D4h
    SNMP.NLM Netware 4.x/5.x/6.x SNMP Service
    Version 4.18 25 July 2006
    Code Address: 90DFE000h Length: 00013E90h
    Data Address: 901D1000h Length: 00003220h
    TLI.NLM NetWare Transport Level Interface Library
    Version 4.30.02 19 December 2000
    Code Address: 8FC0B000h Length: 00003859h
    Data Address: 8F61D000h Length: 00000164h
    Global Code Address: 8FC0F000h Length: 00001000h
    Global Data Address: 802D0000h Length: 00002000h
    CONLOG.NLM System Console Logger
    Version 3.01.02 8 August 2006
    Code Address: 8A983000h Length: 0000243Ch
    Data Address: 802C2000h Length: 00001CE0h
    DHOST.NLM Novell DHost Portability Interface 1.0.0 SMP
    Version 10010.97 18 September 2006
    Code Address: 8A90F000h Length: 00006621h
    Data Address: 8A957000h Length: 0000234Ch
    NSPNDS.NLM NetWare Winsock 2.0 NSPNDS.NLM Name Service Provider
    Version 6.20 12 November 2001
    Code Address: 8930B000h Length: 00006547h
    Data Address: 892CA000h Length: 00000518h
    DS.NLM Novell eDirectory Version 8.7.3.10 SMP
    Version 10554.34 23 April 2008
    Code Address: 90B07000h Length: 0026E87Eh
    Data Address: 900E6000h Length: 00078FB0h
    ROLLCALL.NLM RollCall NLM (101, API 1.0)
    Version 5.00 27 July 1998
    Code Address: 900E4000h Length: 0000055Dh
    Data Address: 900E5000h Length: 000002D4h
    SAL.NLM Novell System Abstraction Layer Version 2.3.1
    Version 20350.95 18 September 2006
    Code Address: 900D9000h Length: 00007CD6h
    Data Address: 900E1000h Length: 000012A8h
    POLIMGR.NLM NetWare License Policy Manager
    Version 6.27 3 November 2005
    Code Address: 906EF000h Length: 00013F5Ch
    Data Address: 90703000h Length: 00008E90h
    SPMNWCC.NLM Novell SPM Client for NWCC 3.3.1.0 20081112
    Version 33100811.12 12 November 2008
    Code Address: 906DD000h Length: 00011688h
    Data Address: 9008F000h Length: 00001340h
    NMAS.NLM Novell Modular Authentication Service 3.3.1.0 20081112
    Version 33100811.12 12 November 2008
    Code Address: 90030000h Length: 00059BA8h
    Data Address: 906CF000h Length: 0000D2F0h
    GAMS.NLM Graded Authentication Management Service
    Version 1.30.03 2 November 2007
    Code Address: 906C1000h Length: 0000D8F7h
    Data Address: 90025000h Length: 000012E8h
    NDSAUDIT.NLM Directory Services Audit
    Version 2.09 22 May 2003
    Code Address: 906B0000h Length: 00010844h
    Data Address: 90021000h Length: 00002ED0h
    NICISDI.NLM Security Domain Infrastructure
    Version 27510.02.01 25 August 2008
    Code Address: 9066D000h Length: 0000ADA2h
    Data Address: 2C85B000h Length: 00001320h
    SASDFM.NLM SAS Data Flow Manager
    Version 27510.02.01 25 August 2008
    Code Address: 8FF13000h Length: 000040AEh
    Data Address: 32F18000h Length: 00000980h
    CALNLM32.NLM NetWare NWCalls Runtime Library
    Version 6.01.03 26 August 2008
    Code Address: 90641000h Length: 0001CEB9h
    Data Address: 8FF12000h Length: 00000510h
    TIMESYNC.NLM NetWare Time Synchronization Services
    Version 6.61.01 14 October 2005
    Code Address: 905E1000h Length: 0000E13Ch
    Data Address: 8FEEE000h Length: 00004240h
    CLXNLM32.NLM NetWare NWCLX Runtime Library
    Version 6.01.03 26 August 2008
    Code Address: 8FF74000h Length: 000011F3h
    Data Address: 8FF10000h Length: 000001B0h
    DSAPI.NLM NetWare NWNet Runtime Library
    Version 6.00.04 27 January 2006
    Code Address: 8FF0E000h Length: 00000043h
    Data Address: 8FF0F000h Length: 00000024h
    DSEVENT.NLM NetWare DSEvent Runtime Library
    Version 6.01.03 26 August 2008
    Code Address: 8FF0C000h Length: 00000633h
    Data Address: 8FF0D000h Length: 00000034h
    NETNLM32.NLM NetWare NWNet Runtime Library
    Version 6.01.03 26 August 2008
    Code Address: 905AB000h Length: 00035B77h
    Data Address: 8FEE9000h Length: 00004DA5h
    NCPNLM32.NLM NetWare NWNCP Runtime Library
    Version 6.01.03 26 August 2008
    Code Address: 9058B000h Length: 0001F473h
    Data Address: 00000000h Length: 00000000h
    CLNNLM32.NLM NetWare NWClient Runtime Library
    Version 6.01.03 26 August 2008
    Code Address: 8FF5B000h Length: 00001CC2h
    Data Address: 8FF0B000h Length: 00000150h
    CLIB.NLM (Legacy) Standard C Runtime Library for NLMs
    Version 5.90.15 10 March 2008
    Code Address: 9054D000h Length: 0001898Eh
    Data Address: 8FF58000h Length: 00002FB0h
    NIT.NLM NetWare Interface Tools Library for NLMs
    Version 5.90.15 10 March 2008
    Code Address: 90530000h Length: 0001C694h
    Data Address: 8FF09000h Length: 00000690h
    NLMLIB.NLM Novell NLM Runtime Library
    Version 5.90.15 10 March 2008
    Code Address: 904E7000h Length: 000263EDh
    Data Address: 8FF4C000h Length: 000038C0h
    STREAMS.NLM NetWare STREAMS PTF
    Version 6.00.06 4 May 2005
    Code Address: 904D4000h Length: 0001206Dh
    Data Address: 8FDE0000h Length: 000010A0h
    Global Code Address: 8FDE2000h Length: 00001000h
    REQUESTR.NLM Novell NCP Requestor for NLMs
    Version 5.90.15 10 March 2008
    Code Address: 9049C000h Length: 00020DE3h
    Data Address: 8FDDE000h Length: 000010D0h
    THREADS.NLM Novell Threads Package for NLMs
    Version 5.90.15 10 March 2008
    Code Address: 90471000h Length: 00018CF8h
    Data Address: 9048A000h Length: 000116A0h
    LIB0.NLM Novell Ring 0 Library for NLMs
    Version 5.90.15 10 March 2008
    Code Address: 9020D000h Length: 000250EAh
    Data Address: 90233000h Length: 00228070h
    MASV.NLM Mandatory Access Control Service
    Version 1.50 27 July 2006
    Code Address: 8FEBE000h Length: 00011F26h
    Data Address: 8FE27000h Length: 00002390h
    NSPSLP.NLM NetWare Winsock 2.0 NSPSLP.NLM Name Service Provider
    Version 6.20.04 6 December 2007
    Code Address: 8FE1B000h Length: 00005ED3h
    Data Address: 8FDCE000h Length: 00000B30h
    PMLODR.NLM PMLodr for NW65
    Version 1.26 7 October 2005
    Code Address: 8FE2D000h Length: 0000E63Ah
    Data Address: 8FDCC000h Length: 00001658h
    SLP.NLM SERVICE LOCATION PROTOCOL (RFC2165/RFC2608)
    Version 2.13 15 November 2005
    Code Address: 8FDF7000h Length: 0001A658h
    Data Address: 8FE12000h Length: 00005384h
    CCS.NLM Controlled Cryptography Services from Novell, Inc.
    Version 27510.02.01 25 August 2008
    Code Address: 8FD84000h Length: 00019EE4h
    Data Address: 00098000h Length: 00002F90h
    DSLOADER.NLM Novell eDirectory Version 8.7.3 Loader SMP
    Version 10554.34 23 April 2008
    Code Address: 8FCFD000h Length: 0000C73Ch
    Data Address: 8FD0A000h Length: 00001278h
    XENGUSC.NLM NICI U.S./Worldwide XENG from Novell, Inc.
    Version 27510.02.01 25 August 2008
    Code Address: 8FCEA000h Length: 00000058h
    Data Address: 00000000h Length: 00000000h
    XNGAUSC.NLM NICI U.S./Worldwide XMGR Assistant XENG from Novell, Inc.
    Version 27510.02.01 25 August 2008
    Code Address: 8FCB6000h Length: 000153E4h
    Data Address: 2D149000h Length: 00004864h
    XENGEXP.NLM NICI Import Restricted XENG from Novell, Inc.
    Version 27510.02.01 25 August 2008
    Code Address: 8A8B6000h Length: 00050DD4h
    Data Address: 2D166000h Length: 00014C3Ch
    XENGNUL.NLM NICI NULL XENG from Novell, Inc.
    Version 27510.02.01 25 August 2008
    Code Address: 8FCA5000h Length: 00001DC9h
    Data Address: 32F64000h Length: 00000860h
    XMGR.NLM NICI XMGR from Novell, Inc.
    Version 27510.02.01 25 August 2008
    Code Address: 8FB23000h Length: 00026001h
    Data Address: 2D536000h Length: 0000AA10h
    XSUP.NLM NICI XSUP from Novell, Inc.
    Version 27510.02.01 25 August 2008
    Code Address: 8FAAE000h Length: 00006EF2h
    Data Address: 2D549000h Length: 00023170h
    XIM.XLM Novell NICI Signed Loader
    Version 27510.02.01 25 August 2008
    Code Address: 8FA4C000h Length: 0002C680h
    Data Address: 2D541000h Length: 00007CE4h
    WS2_32.NLM NetWare Winsock 2.0 NLM
    Version 6.24.01 14 February 2008
    Code Address: 8F6A8000h Length: 00037F28h
    Data Address: 8F6E0000h Length: 00011B84h
    NCP.NLM NetWare Core Protocol (NCP) Engine
    Version 5.61.01 30 September 2008
    Code Address: 8F667000h Length: 00026DEFh
    Data Address: 8F68E000h Length: 00018B24h
    QUEUE.NLM NetWare Queue Services NLM
    Version 5.60 24 May 2001
    Code Address: 8F65E000h Length: 00006D8Dh
    Data Address: 8F665000h Length: 00000473h
    VDISK.NLM NetWare Virtual Disk
    Version 1.00 30 November 2004
    Code Address: 8F61E000h Length: 00001FEEh
    Data Address: 8ACB4000h Length: 00001160h
    NWTERMIO.NLM NetWare Terminal Emulation
    Version 1.00 11 September 2006
    Code Address: 8AC68000h Length: 00007570h
    Data Address: 8AC70000h Length: 00004560h
    MALHLP.NLM NSS Configure help messages (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 8ACBC000h Length: 000000BAh
    Data Address: 8ACBD000h Length: 0000002Ah
    CDDVD.NSS NSS Loadable Storage System (LSS) for CD/UDF (Build 163
    MP)
    Version 3.27 13 November 2008
    Code Address: 8AFC6000h Length: 00014B00h
    Data Address: 8A801000h Length: 00001050h
    NSSIDK.NSS NSS Pool Configuration Manager (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 8A7FD000h Length: 000039C5h
    Data Address: 8ACB9000h Length: 00000090h
    PARTAPI.NLM Partition APIs for NetWare 6.1
    Version 2.00 17 April 2002
    Code Address: 8ACB8000h Length: 00000007h
    Data Address: 00000000h Length: 00000000h
    VOLMN.NSS NSS Distributed Volume Manager (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 8AF96000h Length: 0000A6A3h
    Data Address: 8ACB7000h Length: 000005B0h
    NWSA.NSS NSS NetWare Semantic Agent (NWSA) (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 80271000h Length: 0004ADCEh
    Data Address: 8AEE3000h Length: 000A1390h
    ZLSS.NSS NSS Journaled Storage System (ZLSS) (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 8AE09000h Length: 000CD166h
    Data Address: 8AED7000h Length: 0000BE30h
    MAL.NSS NSS Media Access Layer (MAL) (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 8A7E7000h Length: 00003196h
    Data Address: 8ABB7000h Length: 00000170h
    MANAGE.NSS NSS Management Functions (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 8A791000h Length: 0004F275h
    Data Address: 8ABB5000h Length: 00000C20h
    COMN.NSS NSS Common Support Layer (COMN) (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 8ACF7000h Length: 000EF3F8h
    Data Address: 8ADE7000h Length: 00015E50h
    NSS.NLM NSS (Novell Storage Services) (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 8A9E8000h Length: 00030420h
    Data Address: 8AA19000h Length: 00091830h
    SYSLOG.NLM NetWare Logfile Daemon
    Version 6.05.03 22 October 2007
    Code Address: 8A719000h Length: 0000616Ah
    Data Address: 8A9BF000h Length: 00026140h
    LIBNSS.NLM Generic Library used by NSS (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 8A739000h Length: 0000464Ch
    Data Address: 8A98F000h Length: 000003D0h
    NSSWIN.NLM NSS ASCI Window API Library (Build 163 MP)
    Version 3.27 13 November 2008
    Code Address: 8A734000h Length: 000047DCh
    Data Address: 8A98D000h Length: 000000FCh
    LOCNLM32.NLM NetWare NWLocale Runtime Library
    Version 6.00.04 29 November 2005
    Code Address: 8A712000h Length: 000044BBh
    Data Address: 8A8B5000h Length: 00000B30h
    UNICODE.NLM NetWare Unicode Runtime Library (UniLib-based) [optimized]
    Version 7.00 26 October 2004
    Code Address: 8A6CD000h Length: 000016F5h
    Data Address: 8A8B4000h Length: 00000504h
    FILESYS.NLM NetWare File System NLM
    Version 5.14 16 April 2008
    Code Address: 8A805000h Length: 0008E4E7h
    Data Address: 8A894000h Length: 00012C90h
    LFS.NLM NetWare Logical File System NLM
    Version 5.12 21 September 2005
    Code Address: 8A720000h Length: 000098A2h
    Data Address: 8A72A000h Length: 000084BCh
    CONNMGR.NLM NetWare Connection Manager NLM
    Version 5.60.01 7 September 2006
    Code Address: 8A6D2000h Length: 0001172Bh
    Data Address: 8A67D000h Length: 00003CE8h
    ACPIPWR.NLM ACPI Power Management Driver for ACPI compliant systems
    Version 1.05.16 16 January 2007
    Code Address: 8A6B0000h Length: 00000C9Ah
    Data Address: 8A6B1000h Length: 00000904h
    ACPICMGR.NLM ACPI Component Manager for ACPI compliant systems
    Version 1.05.16 16 January 2007
    Code Address: 8A670000h Length: 00000A6Fh
    Data Address: 8A671000h Length: 000002F4h
    IDEATA.HAM Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    Version 4.34 5 May 2007
    Code Address: 8A650000h Length: 00010F67h
    Data Address: 31361000h Length: 00005880h
    HPQCISS.HAM HP SAS/SATA Unified RAID driver
    Version 1.16.02 16 September 2010
    Code Address: 8A1E7000h Length: 0001AC2Dh
    Data Address: 0072A000h Length: 00005460h
    IDECD.CDM Novell ATA/IDE CD/DVD Custom Device Module
    Version 4.13 4 April 2007
    Code Address: 8A1E2000h Length: 00004201h
    Data Address: 007E1000h Length: 00001084h
    CPQSHD.CDM HP NWPA SCSI Disk Driver
    Version 2.08 19 February 2008
    Code Address: 8A166000h Length: 000173C7h
    Data Address: 009F8000h Length: 0000122Dh
    ACPIDRV.PSM ACPI Platform Support Module for ACPI compliant systems
    Version 1.05.19 16 January 2007
    Code Address: 8A0CB000h Length: 0000AD1Eh
    Data Address: 00A12000h Length: 0000C694h
    ACPICA.NLM ACPI Component Architecture for ACPI compliant systems
    Version 1.05.16 16 January 2007
    Code Address: 8A023000h Length: 0002BA90h
    Data Address: 8A04F000h Length: 00011C74h
    ACPIASL.NLM ACPI Architecture Services Layer for ACPI compliant
    systems
    Version 1.05.16 16 January 2007
    Code Address: 8A021000h Length: 00000F9Bh
    Data Address: 8A022000h Length: 0000019Ch
    EHCIDRV.CAD Novell Universal Serial Bus EHCI driver
    Version 1.05 26 February 2008
    Code Address: 89FE5000h Length: 00004C28h
    Data Address: 00A5D000h Length: 00000B20h
    UHCIDRV.CAD Novell Universal Serial Bus UHCI driver
    Version 1.07 26 February 2008
    Code Address: 896FB000h Length: 00004F7Fh
    Data Address: 00A5E000h Length: 00000694h
    CIOS.NLM Consolidated IO System
    Version 1.60 12 February 2008
    Code Address: 80330000h Length: 00042C15h
    Data Address: 31961000h Length: 00008B4Ah
    LSL.NLM Novell NetWare Link Support Layer
    Version 4.86 2 February 2006
    Code Address: 89740000h Length: 0000A7A7h
    Data Address: 8974B000h Length: 00009EC8h
    NWPALOAD.NLM NetWare 5 NWPA Load Utility
    Version 3.00 10 July 2000
    Code Address: 89722000h Length: 00000007h
    Data Address: 00000000h Length: 00000000h
    NWPA.NLM NetWare 6.5 NetWare Peripheral Architecture NLM
    Version 3.21.02 29 October 2008
    Code Address: 89707000h Length: 00016C82h
    Data Address: 89695000h Length: 00002A5Ch
    MM.NLM NetWare 6.5 Media Manager
    Version 3.22.07 20 August 2008
    Code Address: 802D9000h Length: 0004CAB0h
    Data Address: 896BC000h Length: 0000BA1Ch
    SGUID.NLM NetWare GUID Services
    Version 6.01 27 September 2002
    Code Address: 896BA000h Length: 00000E04h
    Data Address: 896BB000h Length: 0000018Ah
    NBI.NLM NetWare Bus Interface
    Version 3.01.01 13 July 2007
    Code Address: 896AC000h Length: 0000D72Dh
    Data Address: 89672000h Length: 00003D8Dh
    NEB.NLM Novell Event Bus
    Version 5.60 27 September 2004
    Code Address: 8967B000h Length: 00005843h
    Data Address: 892BE000h Length: 0000097Ch
    DIAG500.NLM Diagnostic/coredump utility for NetWare 6.x
    Version 3.04.03 31 October 2007
    Code Address: 8962E000h Length: 00007FC0h
    Data Address: 89637000h Length: 0001DF84h
    CPUCHECK.NLM NetWare Processor Checking Utility
    Version 5.60.01 6 December 2007
    Code Address: 80269000h Length: 00001B5Ch
    Data Address: 895FD000h Length: 00004B3Ch
    NWKCFG.NLM NetWare Kernel Config NLM
    Version 2.16 24 June 2005
    Code Address: 895ED000h Length: 00003F4Fh
    Data Address: 895F1000h Length: 00003CA4h
    CDBE.NLM NetWare Configuration DB Engine
    Version 6.01 21 September 2006
    Code Address: 89343000h Length: 000116E6h
    Data Address: 89355000h Length: 000161FAh
    FATFS.NLM FAT Filesystem Module for NetWare
    Version 1.24 27 August 2007
    Code Address: 80972000h Length: 00020526h
    Data Address: 80993000h Length: 0002B32Fh
    LIBC.NLM Standard C Runtime Library for NLMs [optimized, 7]
    Version 9.00.05 3 October 2008
    Code Address: 80800000h Length: 000D0CD6h
    Data Address: 803A9000h Length: 000415E0h
    PVER500.NLM NetWare 6.XX Version Library
    Version 3.00 1 February 2007
    Code Address: 80254000h Length: 00000837h
    Data Address: 80255000h Length: 000003DCh
    SERVER.NLM NetWare Server Operating System
    Version 5.70.08 3 October 2008
    Code Address: 002058A0h Length: 0016A000h
    Data Address: 004058A0h Length: 00217760h
    Memory at EAX
    FBF17BA3 20555043 20676F48-65746544 64657463 UPC goH eteD detc
    FBF17BB3 20796220 656D6954-69460072 7320656C yb emiT iF.r s el
    FBF17BC3 65767265 616E2072-6820656D 63207361 evre an r h em c sa
    FBF17BD3 676E6168 66206465-206D6F72 0A2E7325 gnah f de mor ..s%
    FBF17BE3 616F4C00 676E6964-646F4D20 20656C75 aoL. gnid doM elu
    FBF17BF3 4C005325 6964616F-6D20676E 6C75646F L.S% idao m gn ludo
    FBF17C03 53252065 6F4C000A-6E696461 6E692067 S% e oL.. nida ni g
    FBF17C13 64646120 73736572-61707320 25206563 dda sser aps % ec
    FBF17C23 000A2E73 6E492020-696C6176 6F6C2064 ...s nI ilav ol d
    FBF17C33 66206461 20656C69-6D726F66 000A7461 f da eli mrof ..ta
    FBF17C43 6E492020 696C6176-6F6C2064 66206461 nI ilav ol d f da
    FBF17C53 20656C69 73726576-0A6E6F69 4D202000 eli srev .noi M .
    FBF17C63 6C75646F 616E2065-6920656D 53252073 ludo an e i em S% s
    FBF17C73 746F6E20 0A532520-41202000 6D657474 ton .S% A . mett
    FBF17C83 74207470 6572206F-74696E69 696C6169 t tp er o tini ilai
    FBF17C93 7220657A 6E652D65-6E617274 6F6D2074 r ez ne-e nart om t
    Memory at EBX
    8AA0A5E0 53E58955 EC835756-FAD2E808 3D83FFFE Se.U l.WV zRh. =..~
    8AA0A5F0 8AAA3760 83417400-AA37683D 1775FD8A .*7` .At. *7h= .u}.
    8AA0A600 376805C7 FFFF8AAA-81E8FFFF 8DFFFEFB 7h.G ...* .h.. ..~{
    8AA0A610 5E5FF465 31C35D5B-643D8BF6 898AAA37 ^_te 1C][ d=.v ..*7
    8AA0A620 AA376835 74FF858A-376468E1 4DE88AAA *7h5 t... 7dha Mh.*
    8AA0A630 83FFFF88 D2EB04C4-37700D8B 28BF8AAA .... Rk.D 7p.. (?.*
    8AA0A640 418AAA33 0420878D-0D890000 8AAA3770 A.*3 . .. .... .*7p
    8AA0A650 8BEC4589 F8894637-7510FE83 89F63102 .lE. x.F7 u.~. .v1.
    8AA0A660 04C08330 00F5148D-01000000 3320BAD0 [email protected] .u.. .... 3 :P
    8AA0A670 C3898AAA 5589088B-74C839F0 24158B47 C..* U... tH9p $..G
    8AA0A680 818AAA33 AA33203A-AA840F8A 68000000 ..*3 *3 : *... h...
    8AA0A690 8AA0A470 6FE45DE8-04C48375 8B04438B . $p od]h .D.u ..C.
    8AA0A6A0 1089F055 528B038B-04508904 8BF0558B ..pU R... .P.. .pU.
    8AA0A6B0 038B0452 558B0289-04438BF0 89044289 ...R U... .C.p ..B.

    On Mon, 15 Dec 2014 03:16:01 +0000, ataubman wrote:
    > That's just Abend 3 and 4, which are not a lot of use in diagnosis. Are
    > there any Abend 1 or Abend 0 entries that relate to this problem?
    >
    > But I do see you are on an outdated version of NSS.nlm , and that abend
    > info mentions NSS.nlm quite a bit. I would update NSS to the latest and
    > last update of that, and related, module
    > https://download.novell.com/Download...d=tMWCI1cdI7s~
    Thanks ataubman
    There are no Abend 0,1 or 2. Only the ones posted.
    I will update the NSS asap and wait and see what happens.

  • Database Started In Restricted Mode...

    Dear Exports,
    We are using Oracle 10gR2 on Windows server 2008. My database size is approximately 2tb. Now we are going to setup Dataguard for our primary. We started the database with the changer parameters for dataguard and create spfile from pfile. And started the database with Spfile. But after some time i noticed that the database started automatically in Restricted mode. As in our database Previously dataguard was configured, due to the some problem that setup is not working and the logs are not applied in Standby server. I thought may be for this reason database going to restricted mode automatically so i set the log_archive_dest_state_2='DEFFER' and Now I scanned the whore alert.log file and found the same situation of restricted is happening from Jan 2010. Please Suggest some solution how i can over come the problem.
    The alertlog when i started the database recently...
    ALTER DATABASE CLOSE NORMAL
    ORA-1507 signalled during: ALTER DATABASE CLOSE NORMAL...
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Fri Apr 12 19:12:39 2013
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =97
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.4.0.
    System parameters with non-default values:
    processes = 800
    sessions = 885
    sga_max_size = 10737418240
    __shared_pool_size = 1325400064
    __large_pool_size = 16777216
    __java_pool_size = 16777216
    __streams_pool_size = 0
    sga_target = 8589934592
    control_files = G:\ORADATA\CONTROL01.CTL, G:\ORADATA\CONTROL02.CTL, G:\ORADATA\CONTROL03.CTL
    db_block_size = 8192
    __db_cache_size = 7214202880
    compatible = 10.2.0.3.0
    log_archive_config = DG_CONFIG=(orcl,stdby)
    log_archive_dest_1 = LOCATION=I:\archive_log VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=orcl
    log_archive_dest_2 = SERVICE=stdby NOAFFIRM ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=stdby
    log_archive_dest_state_1 = enable
    log_archive_max_processes= 30
    log_archive_format = ARC%D_%s_%R.%T
    fal_client = orcl
    fal_server = stdby
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = D:\oracle\product\10.2.0\flash_recovery_area
    db_recovery_file_dest_size= 2147483648
    standby_file_management = AUTO
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    undo_retention = 5400
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=orclXDB)
    local_listener = (ADDRESS=(PROTOCOL=TCP)(HOST=192.168.12.86)(PORT=1521))
    job_queue_processes = 10
    audit_file_dest = D:\ORACLE\PRODUCT\10.2.0\ADMIN\ORCL\ADUMP
    background_dump_dest = D:\ORACLE\PRODUCT\10.2.0\ADMIN\ORCL\BDUMP
    user_dump_dest = D:\ORACLE\PRODUCT\10.2.0\ADMIN\ORCL\UDUMP
    core_dump_dest = D:\ORACLE\PRODUCT\10.2.0\ADMIN\ORCL\CDUMP
    db_name = orcl
    open_cursors = 500
    pga_aggregate_target = 10737418240
    PMON started with pid=2, OS id=14328
    PSP0 started with pid=3, OS id=15420
    MMAN started with pid=4, OS id=9092
    DBW0 started with pid=5, OS id=12360
    DBW1 started with pid=6, OS id=18112
    LGWR started with pid=7, OS id=18360
    CKPT started with pid=8, OS id=18448
    SMON started with pid=9, OS id=17160
    RECO started with pid=10, OS id=18512
    CJQ0 started with pid=11, OS id=19324
    MMON started with pid=12, OS id=14380
    Fri Apr 12 19:12:40 2013
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    MMNL started with pid=13, OS id=2996
    Fri Apr 12 19:12:40 2013
    starting up 1 shared server(s) ...
    Fri Apr 12 19:12:41 2013
    ALTER DATABASE MOUNT
    Fri Apr 12 19:12:45 2013
    Setting recovery target incarnation to 2
    Fri Apr 12 19:12:45 2013
    Successful mount of redo thread 1, with mount id 1340307369
    Fri Apr 12 19:12:45 2013
    Allocated 15937344 bytes in shared pool for flashback generation buffer
    Starting background process RVWR
    RVWR started with pid=17, OS id=5524
    Fri Apr 12 19:12:45 2013
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Fri Apr 12 19:12:46 2013
    ALTER DATABASE OPEN
    Fri Apr 12 19:12:46 2013
    LGWR: STARTING ARCH PROCESSES
    ARC0 started with pid=18, OS id=11964
    ARC1 started with pid=19, OS id=13472
    ARC2 started with pid=20, OS id=17960
    ARC3 started with pid=21, OS id=18548
    ARC4 started with pid=22, OS id=15660
    ARC5 started with pid=23, OS id=15548
    ARC6 started with pid=24, OS id=14720
    ARC7 started with pid=25, OS id=15780
    ARC8 started with pid=26, OS id=17992
    ARC9 started with pid=27, OS id=17988
    ARCa started with pid=28, OS id=19436
    ARCb started with pid=29, OS id=16104
    ARCc started with pid=30, OS id=6656
    ARCd started with pid=31, OS id=6900
    ARCe started with pid=32, OS id=10568
    ARCf started with pid=33, OS id=16992
    ARCg started with pid=34, OS id=14372
    ARCh started with pid=35, OS id=18084
    ARCi started with pid=36, OS id=5788
    ARCj started with pid=37, OS id=4940
    ARCk started with pid=38, OS id=18816
    ARCl started with pid=39, OS id=14588
    ARCm started with pid=40, OS id=16820
    ARCn started with pid=41, OS id=8068
    ARCo started with pid=42, OS id=18736
    ARCp started with pid=43, OS id=8316
    ARCq started with pid=44, OS id=5952
    ARCr started with pid=45, OS id=16304
    ARCs started with pid=46, OS id=14884
    Fri Apr 12 19:12:46 2013
    ARC0: Archival started
    ARCt started with pid=47, OS id=19408
    Fri Apr 12 19:12:46 2013
    ARC1: Archival started
    ARC2: Archival started
    ARC3: Archival started
    ARC4: Archival started
    ARC5: Archival started
    ARC6: Archival started
    ARC7: Archival started
    ARC8: Archival started
    ARC9: Archival started
    ARCa: Archival started
    ARCb: Archival started
    ARCc: Archival started
    ARCd: Archival started
    ARCe: Archival started
    ARCf: Archival started
    ARCg: Archival started
    ARCh: Archival started
    ARCi: Archival started
    ARCj: Archival started
    ARCk: Archival started
    ARCl: Archival started
    ARCm: Archival started
    ARCn: Archival started
    ARCo: Archival started
    ARCp: Archival started
    ARCq: Archival started
    ARCr: Archival started
    ARCs: Archival started
    ARCt: Archival started
    LGWR: STARTING ARCH PROCESSES COMPLETE
    Thread 1 opened at log sequence 117446
    Current log# 10 seq# 117446 mem# 0: G:\ORADATA\REDO10A.LOG
    Current log# 10 seq# 117446 mem# 1: H:\ORADATA\REDO10B.LOG
    Fri Apr 12 19:12:46 2013
    ARC0: Becoming the 'no FAL' ARCH
    Fri Apr 12 19:12:46 2013
    ARC0: Becoming the 'no SRL' ARCH
    Fri Apr 12 19:12:46 2013
    ARC8: Becoming the heartbeat ARCH
    Fri Apr 12 19:12:47 2013
    Successful open of redo thread 1
    Fri Apr 12 19:12:47 2013
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Fri Apr 12 19:12:47 2013
    SMON: enabling cache recovery
    Fri Apr 12 19:12:48 2013
    Successfully onlined Undo Tablespace 1.
    Fri Apr 12 19:12:48 2013
    SMON: enabling tx recovery
    Fri Apr 12 19:12:48 2013
    Database Characterset is WE8MSWIN1252
    Opening with internal Resource Manager plan
    where NUMA PG = 1, CPUs = 16
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=48, OS id=10048
    Fri Apr 12 19:12:51 2013
    Completed: ALTER DATABASE OPEN
    Fri Apr 12 19:12:51 2013
    Errors in file d:\oracle\product\10.2.0\admin\orcl\bdump\orcl_mmon_14380.trc:
    ORA-19815: WARNING: db_recovery_file_dest_size of 2147483648 bytes is 99.56% used, and has 9486336 remaining bytes available.
    Fri Apr 12 19:12:51 2013
    You have following choices to free up space from flash recovery area:
    1. Consider changing RMAN RETENTION POLICY. If you are using Data Guard,
    then consider changing RMAN ARCHIVELOG DELETION POLICY.
    2. Back up files to tertiary device such as tape using RMAN
    BACKUP RECOVERY AREA command.
    3. Add disk space and increase db_recovery_file_dest_size parameter to
    reflect the new space.
    4. Delete unnecessary files using RMAN DELETE command. If an operating
    system command was used to delete files, then use RMAN CROSSCHECK and
    DELETE EXPIRED commands.
    Dump file d:\oracle\product\10.2.0\admin\orcl\bdump\alert_orcl.log
    Fri Apr 12 19:13:26 2013
    ORACLE V10.2.0.4.0 - 64bit Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows NT Version V6.0 Service Pack 1
    CPU : 16 - type 8664, 16 Physical Cores
    Process Affinity : 0x0000000000000000
    Memory (Avail/Total): Ph:55999M/65533M, Ph+PgF:183151M/193356M
    Fri Apr 12 19:13:26 2013
    Starting ORACLE instance (restrict)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =97
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.4.0.
    System parameters with non-default values:
    processes = 800
    sessions = 885
    sga_max_size = 10737418240
    __shared_pool_size = 1325400064
    __large_pool_size = 16777216
    __java_pool_size = 16777216
    __streams_pool_size = 0
    sga_target = 8589934592
    control_files = G:\ORADATA\CONTROL01.CTL, G:\ORADATA\CONTROL02.CTL, G:\ORADATA\CONTROL03.CTL
    db_block_size = 8192
    __db_cache_size = 7214202880
    compatible = 10.2.0.3.0
    log_archive_config = DG_CONFIG=(orcl,stdby)
    log_archive_dest_1 = LOCATION=I:\archive_log VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=orcl
    log_archive_dest_2 = SERVICE=stdby NOAFFIRM ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=stdby
    log_archive_dest_state_1 = enable
    log_archive_max_processes= 30
    log_archive_format = ARC%D_%s_%R.%T
    fal_client = orcl
    fal_server = stdby
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = D:\oracle\product\10.2.0\flash_recovery_area
    db_recovery_file_dest_size= 2147483648
    standby_file_management = AUTO
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    undo_retention = 5400
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=orclXDB)
    local_listener = (ADDRESS=(PROTOCOL=TCP)(HOST=192.168.12.86)(PORT=1521))
    job_queue_processes = 10
    audit_file_dest = D:\ORACLE\PRODUCT\10.2.0\ADMIN\ORCL\ADUMP
    background_dump_dest = D:\ORACLE\PRODUCT\10.2.0\ADMIN\ORCL\BDUMP
    user_dump_dest = D:\ORACLE\PRODUCT\10.2.0\ADMIN\ORCL\UDUMP
    core_dump_dest = D:\ORACLE\PRODUCT\10.2.0\ADMIN\ORCL\CDUMP
    db_name = orcl
    open_cursors = 500
    pga_aggregate_target = 10737418240
    PMON started with pid=2, OS id=18668
    PSP0 started with pid=3, OS id=17668
    MMAN started with pid=4, OS id=16896
    DBW0 started with pid=5, OS id=18204
    DBW1 started with pid=6, OS id=16976
    LGWR started with pid=7, OS id=14552
    CKPT started with pid=8, OS id=4480
    SMON started with pid=9, OS id=10236
    RECO started with pid=10, OS id=11832
    CJQ0 started with pid=11, OS id=18844
    MMON started with pid=12, OS id=15320
    Fri Apr 12 19:13:27 2013
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    MMNL started with pid=13, OS id=14944
    Fri Apr 12 19:13:27 2013
    starting up 1 shared server(s) ...
    Fri Apr 12 19:13:27 2013
    alter database orcl mount exclusive
    Fri Apr 12 19:13:31 2013
    Setting recovery target incarnation to 2
    Fri Apr 12 19:13:31 2013
    Successful mount of redo thread 1, with mount id 1340305111
    Fri Apr 12 19:13:31 2013
    Allocated 15937344 bytes in shared pool for flashback generation buffer
    Starting background process RVWR
    RVWR started with pid=17, OS id=12880
    Fri Apr 12 19:13:31 2013
    Database mounted in Exclusive Mode
    Completed: alter database orcl mount exclusive
    Fri Apr 12 19:13:31 2013
    alter database open
    Fri Apr 12 19:13:31 2013
    Beginning crash recovery of 1 threads
    parallel recovery started with 15 processes
    Fri Apr 12 19:13:31 2013
    Started redo scan
    Fri Apr 12 19:13:31 2013
    Completed redo scan
    735 redo blocks read, 211 data blocks need recovery
    Fri Apr 12 19:13:31 2013
    Started redo application at
    Thread 1: logseq 117446, block 97761
    Fri Apr 12 19:13:31 2013
    Recovery of Online Redo Log: Thread 1 Group 10 Seq 117446 Reading mem 0
    Mem# 0: G:\ORADATA\REDO10A.LOG
    Mem# 1: H:\ORADATA\REDO10B.LOG
    Fri Apr 12 19:13:31 2013
    Completed redo application
    Fri Apr 12 19:13:32 2013
    Completed crash recovery at
    Thread 1: logseq 117446, block 98496, scn 7310601900
    211 data blocks read, 211 data blocks written, 735 redo blocks read
    Fri Apr 12 19:13:33 2013
    LGWR: STARTING ARCH PROCESSES
    ARC0 started with pid=33, OS id=18508
    ARC1 started with pid=34, OS id=14692
    ARC2 started with pid=35, OS id=17728
    ARC3 started with pid=36, OS id=12476
    ARC4 started with pid=37, OS id=19228
    ARC5 started with pid=38, OS id=11552
    ARC6 started with pid=39, OS id=7576
    ARC7 started with pid=40, OS id=6244
    ARC8 started with pid=41, OS id=18468
    ARC9 started with pid=42, OS id=18492
    ARCa started with pid=43, OS id=10352
    ARCb started with pid=44, OS id=15516
    ARCc started with pid=45, OS id=18216
    ARCd started with pid=46, OS id=5660
    ARCe started with pid=47, OS id=18756
    ARCf started with pid=48, OS id=17828
    ARCg started with pid=49, OS id=8696
    ARCh started with pid=50, OS id=17736
    ARCi started with pid=51, OS id=16736
    ARCj started with pid=52, OS id=13208
    ARCk started with pid=53, OS id=12012
    ARCl started with pid=54, OS id=19180
    ARCm started with pid=55, OS id=16632
    ARCn started with pid=56, OS id=17588
    ARCo started with pid=57, OS id=11948
    ARCp started with pid=58, OS id=18416
    ARCq started with pid=59, OS id=17888
    ARCr started with pid=60, OS id=2144
    ARCs started with pid=61, OS id=14392
    Fri Apr 12 19:13:33 2013
    ARC0: Archival started
    ARCt started with pid=62, OS id=19264
    Fri Apr 12 19:13:33 2013
    ARC1: Archival started
    ARC2: Archival started
    ARC3: Archival started
    ARC4: Archival started
    ARC5: Archival started
    ARC6: Archival started
    ARC7: Archival started
    ARC8: Archival started
    ARC9: Archival started
    ARCa: Archival started
    ARCb: Archival started
    ARCc: Archival started
    ARCd: Archival started
    ARCe: Archival started
    ARCf: Archival started
    ARCg: Archival started
    ARCh: Archival started
    ARCi: Archival started
    ARCj: Archival started
    ARCk: Archival started
    ARCl: Archival started
    ARCm: Archival started
    ARCn: Archival started
    ARCo: Archival started
    ARCp: Archival started
    ARCq: Archival started
    ARCr: Archival started
    ARCs: Archival started
    ARCt: Archival started
    LGWR: STARTING ARCH PROCESSES COMPLETE
    Fri Apr 12 19:13:33 2013
    Thread 1 advanced to log sequence 117447 (thread open)
    Thread 1 opened at log sequence 117447
    Current log# 8 seq# 117447 mem# 0: G:\ORADATA\REDO08A.LOG
    Current log# 8 seq# 117447 mem# 1: H:\ORADATA\REDO08B.LOG
    Successful open of redo thread 1
    Fri Apr 12 19:13:33 2013
    ARC3: Becoming the 'no FAL' ARCH
    Fri Apr 12 19:13:33 2013
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Fri Apr 12 19:13:33 2013
    ARC3: Becoming the 'no SRL' ARCH
    Fri Apr 12 19:13:33 2013
    ARCr: Becoming the heartbeat ARCH
    Fri Apr 12 19:13:33 2013
    SMON: enabling cache recovery
    Fri Apr 12 19:13:33 2013
    Successfully onlined Undo Tablespace 1.
    Fri Apr 12 19:13:33 2013
    SMON: enabling tx recovery
    Fri Apr 12 19:13:33 2013
    Database Characterset is WE8MSWIN1252
    Opening with internal Resource Manager plan
    where NUMA PG = 1, CPUs = 16
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=63, OS id=14896
    Fri Apr 12 19:13:34 2013
    Completed: alter database open
    Fri Apr 12 19:13:34 2013
    ALTER SYSTEM disable restricted session;
    Fri Apr 12 19:13:35 2013
    Errors in file d:\oracle\product\10.2.0\admin\orcl\bdump\orcl_mmon_15320.trc:
    ORA-19815: WARNING: db_recovery_file_dest_size of 2147483648 bytes is 99.56% used, and has 9486336 remaining bytes available.
    Fri Apr 12 19:13:35 2013
    You have following choices to free up space from flash recovery area:
    1. Consider changing RMAN RETENTION POLICY. If you are using Data Guard,
    then consider changing RMAN ARCHIVELOG DELETION POLICY.
    2. Back up files to tertiary device such as tape using RMAN
    BACKUP RECOVERY AREA command.
    3. Add disk space and increase db_recovery_file_dest_size parameter to
    reflect the new space.
    4. Delete unnecessary files using RMAN DELETE command. If an operating
    system command was used to delete files, then use RMAN CROSSCHECK and
    DELETE EXPIRED commands.
    Fri Apr 12 19:13:36 2013
    Error 12514 received logging on to the standby
    Fri Apr 12 19:13:36 2013
    Errors in file d:\oracle\product\10.2.0\admin\orcl\bdump\orcl_arc0_18508.trc:
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    FAL[server, ARC0]: Error 12514 creating remote archivelog file 'stdby'
    FAL[server, ARC0]: FAL archive failed, see trace file.
    Fri Apr 12 19:13:36 2013
    Errors in file d:\oracle\product\10.2.0\admin\orcl\bdump\orcl_arc0_18508.trc:
    ORA-16055: FAL request rejected
    ARCH: FAL archive failed. Archiver continuing
    Fri Apr 12 19:19:33 2013
    Error 12514 received logging on to the standby
    Fri Apr 12 19:19:33 2013
    Errors in file d:\oracle\product\10.2.0\admin\orcl\bdump\orcl_arcr_2144.trc:
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    PING[ARCr]: Heartbeat failed to connect to standby 'stdby'. Error is 12514.
    Fri Apr 12 19:22:52 2013
    PING[ARCr]: Heartbeat failed to connect to standby 'stdby'. Error is 12514.
    Fri Apr 12 20:09:34 2013
    Error 12514 received logging on to the standby
    Fri Apr 12 20:09:34 2013
    Errors in file d:\oracle\product\10.2.0\admin\orcl\bdump\orcl_arcr_2144.trc:
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    PING[ARCr]: Heartbeat failed to connect to standby 'stdby'. Error is 12514.
    Fri Apr 12 20:13:50 2013
    Sat Apr 13 01:54:52 2013
    Error 12514 received logging on to the standby
    Sat Apr 13 01:54:52 2013
    Errors in file d:\oracle\product\10.2.0\admin\orcl\bdump\orcl_arcr_2144.trc:
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    PING[ARCr]: Heartbeat failed to connect to standby 'stdby'. Error is 12514.
    Sat Apr 13 12:35:12 2013
    Error 12514 received logging on to the standby
    Sat Apr 13 12:35:12 2013
    Errors in file d:\oracle\product\10.2.0\admin\orcl\bdump\orcl_arcr_2144.trc:
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    PING[ARCr]: Heartbeat failed to connect to standby 'stdby'. Error is 12514.
    Sat Apr 13 12:37:01 2013
    ALTER SYSTEM SET log_archive_dest_state_2='DEFER' SCOPE=MEMORY;
    Sat Apr 13 12:38:23 2013
    Unable to allocate flashback log of 1946 blocks from
    current recovery area of size 2147483648 bytes.
    Current Flashback database retention is less than target
    because of insufficient space in the flash recovery area.
    Flashback will continue to use available space, but the
    size of the flash recovery area must be increased to meet
    the Flashback database retention target
    Use ALTER SYSTEM SET db_recovery_file_dest_size command
    to add space. DO NOT manually remove flashback log files
    to create space.
    Sat Apr 13 12:38:41 2013
    ALTER SYSTEM SET db_recovery_file_dest_size='5G' SCOPE=MEMORY;
    Sat Apr 13 12:38:41 2013
    db_recovery_file_dest_size of 5120 MB is 39.82% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Sat Apr 13 15:42:21 2013
    ORA-01555 caused by SQL statement below (SQL ID: 2zb70pwz9p06q, Query Duration=1365847941 sec, SCN: 0x0001.b3c0f735):
    Sat Apr 13 15:42:21 2013
    SELECT * FROM RELATIONAL("ORISSA_TRANSACTION"."SELLER_BIOMETRICS_TBL")
    Sat Apr 13 15:48:37 2013
    Thread 1 advanced to log sequence 117452 (LGWR switch)
    Current log# 10 seq# 117452 mem# 0: G:\ORADATA\REDO10A.LOG
    Current log# 10 seq# 117452 mem# 1: H:\ORADATA\REDO10B.LOG
    Sat Apr 13 20:31:00 2013
    The value (30) of MAXTRANS parameter ignored.
    kupprdp: master process DM00 started with pid=31, OS id=16196
    to execute - SYS.KUPM$MCP.MAIN('SYS_EXPORT_SCHEMA_30', 'ORISSA_TRANSACTION', 'KUPC$C_1_20130413203100', 'KUPC$S_1_20130413203100', 0);
    kupprdp: worker process DW01 started with worker id=1, pid=66, OS id=16200
    to execute - SYS.KUPW$WORKER.MAIN('SYS_EXPORT_SCHEMA_30', 'ORISSA_TRANSACTION');
    Sun Apr 14 00:00:11 2013
    Thread 1 advanced to log sequence 117453 (LGWR switch)
    Current log# 8 seq# 117453 mem# 0: G:\ORADATA\REDO08A.LOG
    Current log# 8 seq# 117453 mem# 1: H:\ORADATA\REDO08B.LOG
    Sun Apr 14 00:00:52 2013
    Thread 1 advanced to log sequence 117454 (LGWR switch)
    Current log# 9 seq# 117454 mem# 0: G:\ORADATA\REDO09A.LOG
    Current log# 9 seq# 117454 mem# 1: H:\ORADATA\REDO09B.LOG

    like you show in the alert.log:
    PROBLEM
    Unable to allocate flashback log of 1946 blocks from
    current recovery area of size 2147483648 bytes.
    Current Flashback database retention is less than target
    because of insufficient space in the flash recovery area.
    Flashback will continue to use available space, but the
    size of the flash recovery area must be increased to meet
    the Flashback database retention target
    Use ALTER SYSTEM SET db_recovery_file_dest_size command
    to add space. DO NOT manually remove flashback log files
    to create space.
    SOLUTION
    Fri Apr 12 19:12:51 2013
    You have following choices to free up space from flash recovery area:
    1. Consider changing RMAN RETENTION POLICY. If you are using Data Guard,
    then consider changing RMAN ARCHIVELOG DELETION POLICY.
    2. Back up files to tertiary device such as tape using RMAN
    BACKUP RECOVERY AREA command.
    3. Add disk space and increase db_recovery_file_dest_size parameter to
    reflect the new space.
    4. Delete unnecessary files using RMAN DELETE command. If an operating
    system command was used to delete files, then use RMAN CROSSCHECK and
    DELETE EXPIRED commands.
    ************************************************************************choose one and try again. Post if you have more issues.

  • Windows XP Mode (Virtual PC) only uses half a CPU core/thread.

    Not only does windows xp mode not support multiple cores, to me it looks like it only uses half a core/thread.
    I noticed this because I just setup windows xp mode (virtual pc) on my computer.  I updated it, joined it to our domain and then installed our legacy ERP software.  This ERP software was designed and programmed to run on windows 98 or 2000, I can't
    remember right now, but its hardware requirements are very low.  This software runs very slows in the virtual pc, with the processor being the problem.  
    Matching the processor spike on the virtual pc using both performance monitor and task manager I compared it to task manager running on the host (my windows 7 machine).  The spikes in cpu matched one of the threads on my i7 processor (I use threads
    because an i7 has 8 threads but only 4 cores).  To my surprise when the CPU reached near 100% on the virtual PC the same spike on the host was only about 50% of the cpu thread.
    The host has a i7 950, 3.07GHz processor.  So this means that the virtual pc can only use up to 1.5GHz.  I have not run into the problem reported in other posts on this forum where the CPU is always at 50% or 100% on the virtual PC because when
    their is no activity the CPU drops to 10% or less and stays there.
    I will now have to use vmplayer, problem is having enough xp licenses for all users.
    Was anyone else aware of this?

    You can't use a half a thread.  Windows VPC uses one core at 3.07GHz, there's no halving the speed of the CPU. 
    The only way WVPC would use a lower clock speed is if there is power management throttling the CPU speed down.  Do you have a power management setting throttling your CPU?  Are you sure the problem is the CPU and not disk or network related? 
    Task manager on the host is not a very accurate way to determine CPU usage of the VM.
    If you have the correct version of Windows 7 (Pro or higher) there are no issues with XP Mode licenses, you get one license included with Windows 7.  There's no restriction requiring you to use XP Mode with Windows VPC, it will work under 3rd party
    virtualization solutions.

  • Help with BBOD!  Can't seem to get to the bottom of it.  Have tried SMC reset, PRAM reset, reinstall of Mavericks, Carbon copy clone, checked my CPU, Memory is 500GB and I'm only using 250GB thereabouts.

    Here's what I've tried;
    SMC reset
    Pram reset
    Looked at activity monitor - mostly seems OK aside from a kernel task taking up memory (approx 460MB) but CPU is around 96% idle.
    Fan seems to be running constantly - heats up noticeably when I close the MBP
    Despite a re-install of Mavericks, MBP is running frustratingly slow.  Just typing is enough to bring on the beach ball.
    Have backed up everything, reinstalled from a clone, checked through Apple Hardware test and carried out a Verify Disk Permission - nothing was reported, erased the drive and set up again - problem still stands.
    Memory is running at 3.43 GB without anything really running bar Safari.
    A little loath to install SMC fan control without knowing what's wrong.
    Checked software updates.
    Can anyone tell me what the matter is?  Does this have a fix?
    Have been reading up various posts but to no avail so have resorted to posting myself.
    Does this sound familiar to anyone?
    Many, many thanks
    Roque

    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.
    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. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    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.
    4. 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.
    5. 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.
    6. 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 51 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports 'com.autodesk.AutoCad com.evenflow.dropbox com.google.GoogleDrive' 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 );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[45]}')" { 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/^ +//;5p;6p;8p;12p;' ' {sub(/^ +/,"")};NR==6;NR==13&&$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/) ' ' /:$/{ s/ *:$//;x;s/\n//;/Apple|Genesy|Intel|SMSC/d;s/\n.*//;/\)/p;};/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;} ' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/:/;END { if(NR<100)print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { $4="";gsub("  "," ");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'"`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}//;s/ .+//p ' ' /Launch[AD].+\.plist$/;END{if(NR<100)print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$/ { print $3;} ' '/\.(framew|lproj)/d;/plist:|:.+(M.+exec|scrip)/s/:[^:]+//p' '/root/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/;END{if(NR<100)print "/System/"};' '/^\/usr\/lib\/.+dylib$/p' '/\/etc\/(auto_m|hosts[^.]|peri)/s/^\.\/[^/]+//p' ' /\/(Contents\/.+\/Contents|Frameworks)\//d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| ","||kMDItem'${p[35]}'=");sub("^.."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[9]}'{$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|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' /lR/ { if($2<='${p[25]}')print $2;} ' ' BEGIN { FS=":";} $3~/(sh|ng|ic)$/ { n=split($3,a,".");sub(/_2.+/,"",a[n-1]);b=b"\n"$2" "a[n-1]" "a[n]" "$1;c=c$1;} END { d="sort|tail -n'${p[38]}'";print b|d;close(d);if(c)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!~/^(A.+ E.+ text$|POSIX 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);} ' ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ +B/{ s/.+= |(-[0-9]+)?\.s.+//g;p;} ' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' /:/{$0="'"${p[28]}"'"};1;' '/ en/!s/\.//p' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil PlistBuddy 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 );c2=(com.apple.loginwindow\ LoginHook '-c Print /L*/P*/loginw*' '-c Print L*/P*/*loginit*' '-c Print L*/Saf*/*/E*.plist' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' '-c Print\ :'${p[35]}' 2>&1' '-c Print\ :Label 2>&1' '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status '-F bsd -k Sender kernel -k Message Req "Beac|caug|dead[^bl]|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|timed? ?o|WARN" -k Message Rne "Goog|ksadm|SMC:" -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/*/*.{BS,Bas,Es,OSXU,Rem}*.bom' '{/,}L*/Lo*/Diag* -type f \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;' '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo}* -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto_master,{cron,fs}tab,hosts,{launchd,sysctl}.conf} /usr/local/etc/periodic/*/* .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers -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\ / );N1=${#c2[@]};for j in {0..8};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 RSSI Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight );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;};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 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: <(echo "${v[$1]}") <(echo "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ test "$v"&&echo "$_";};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 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;A0;{ A2 0 $((N1+1)) 2;C0;A1 0 $N1 1;C0;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D22 0 $((N1+4)) 5 4;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 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};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;D23 24 24 32 31;D13 25 37 32 33;A1 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;};D23 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;D22 32 31 43 38;D23 20 42 32 41;D23 14 2 48 43;D13 4 5 32 1;D22 4 4 50 0;D13 14 3 49 5;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.
    7. 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.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. 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.
    10. 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 the results. No harm will be done.
    11. 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 "Model Identifier." 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.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: 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.

  • Restrictions on the size of blog entry

    When I publish a blog entry 200 words about it is appeared properly. But if I write a great article, I see only a blank space on the blog page. But on the front page of the blog in summary form, everything is fine. Does anyone know what is the problem.

    James Christopher wrote:
    is their any restrictions on the size of the internal Hard drive
    mac book G4 12in.
    You might take a look at your System Profiler description of the machine.  Select "About this Mac" from the Apple menu, then click the "More Info" button (at least that's what is says in Tiger).  Or you can just launch System Profiler from the Utilities folder.
    In either event, you will open to a Hardware Overview like this (except yours will be for the laptop)
    Hardware Overview:
      Machine Name:          Power Mac G5
      Machine Model:          PowerMac7,2
      CPU Type:          PowerPC 970  (2.2)
      Number Of CPUs:          2
      CPU Speed:          2 GHz
      L2 Cache (per CPU):          512 KB
      Memory:          5 GB
      Bus Speed:          1 GHz
      Boot ROM Version:          5.1.4f0
    (Note, if you post, do not post your machine's serial number, which will be in the display.)
    That being said, my TiBook from 2003 now has a 160G Hitachi Travelstar in it, which was the largest IDE little drive I could get at the time.  If your machine is in that time frame or newer, you can put in pretty much anything they make now.  Of course, if it is truly a MacBook, then the SATA laptop drives are getting very big.
    You can get some more information at this OWC link which will allow you to see how big an IDE drive you can put into a G5 PowerBook.

  • Kernel_task is spending too much CPU and Ram

    I have Macbook Pro 13' mid 2012 I bought it 9/2013 and its started to become too slow like seriously slowed when I check the Activity Monitor kernel_task spend too much RAM and CPU and because of the usage of CPU my computer becomes overheated. This what comes up when I do the EtreCheck;
    EtreCheck version: 1.9.15 (52)
    Report generated 5 Sep 2014 18:00:42 GMT+3
    Hardware Information: ?
      MacBook Pro (13-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,2
      1 2.5 GHz Intel Core i5 CPU: 2 cores
      4 GB RAM
    Video Information: ?
      Intel HD Graphics 4000 - VRAM: (null)
      Color LCD 1280 x 800
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:36:17
    Disk Information: ?
      APPLE HDD HTS547550A9E384 disk0 : (500,11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209,7 MB
      Macintosh HD (disk0s2) / [Startup]: 499,25 GB (321,73 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-8A8 
    USB Information: ?
      Logitech USB Receiver
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Anywhere
    Kernel Extensions: ?
      [not loaded] com.devguru.driver.SamsungACMControl (1.4.20 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungACMData (1.4.20 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungComposite (1.4.20 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungMTP (1.4.20 - SDK 10.5) Support
      [not loaded] com.devguru.driver.SamsungSerial (1.4.20 - SDK 10.6) Support
    Startup Items: ?
      FanControlDaemon: Path: /Library/StartupItems/FanControlDaemon
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.skype.skypeinstaller.plist Support
      [loaded] com.teamviewer.Helper.plist Support
      [not loaded] com.teamviewer.teamviewer_service.plist Support
    Launch Agents: ?
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [not loaded] com.teamviewer.teamviewer.plist Support
      [not loaded] com.teamviewer.teamviewer_desktop.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.BlueStacks.AppPlayer.LogRotator.plist Support
      [loaded] com.BlueStacks.AppPlayer.Service.plist Support
      [loaded] com.BlueStacks.AppPlayer.UninstallAgent.plist Support
      [loaded] com.BlueStacks.AppPlayer.UpdaterAgent.plist Support
      [loaded] com.facebook.videochat.[redacted].plist Support
      [loaded] com.google.keystone.agent.plist Support
    User Login Items: ?
      None
    Internet Plug-ins: ?
      DirectorShockwave: Version: 12.1.3r153 - SDK 10.6 Support
      Flash Player: Version: 11.9.900.170 - SDK 10.6 Outdated! Update
      FlashPlayer-10.6: Version: 11.9.900.170 - SDK 10.6 Support
      JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
      QuickTime Plugin: Version: 7.7.3
      Default Browser: Version: 537 - SDK 10.9
    Safari Extensions: ?
      Searchme-2
    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
    User Internet Plug-ins ?
      BlueStacks Install Detector: Version: 0.3.6 - SDK 10.7 Support
    3rd Party Preference Panes: ?
      Fan Control  Support
      Flash Player  Support
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          22% Skype
          10% WindowServer
          7% coreaudiod
          4% Google Chrome
          3% sysmond
    Top Processes by Memory: ?
      181 MB Skype
      84 MB Google Chrome
      61 MB mds_stores
      57 MB systemstats
      57 MB WindowServer
    Virtual Memory Information: ?
      1.48 GB Free RAM
      1.51 GB Active RAM
      392 MB Inactive RAM
      637 MB Wired RAM
      561 MB Page-ins
      0 B 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.

  • Discoveryd process uses 100% CPU - Safari Can't find the server

    Hello
    Since upgrading to Yosemite, I lose connection to the internet 2 or 3 times a day. (Outlook goes offline at the same time)
    This is with a wired connection. (Wi-Fi is turned off)
    Safari gives me the "Safari Can't Find the Server" message.
    Restarting the computer solves the issue temporarily.
    While I'm unable to connect to the internet, Activity Monitor shows a process named "discoveryd" that uses 100% CPU.
    Force quitting this process gives me back access to the internet instantly. Unfortunately, I suffered a kernel panic (auto restart) a few minutes after force quitting discoveryd. I'm not 100% sure those 2 are related but it would be an odd coincidence as I never experienced had a single kernel on that system. Haven't tried force quitting that process since.
    I'm using this iMac in a work environment. (Connected to a windows file server and exchange)
    This issue has been happening 2-3 times a day since the day I upgraded to Yosemite.
    Any pointers on what could fix this issue ?
    Thanks

    Start time: 10:04:31 11/11/14
    Model Identifier: iMac11,3
    System Version: OS X 10.10 (14A389)
    Kernel Version: Darwin 14.0.0
    Time since boot: 1:39
    SATA
       WDC WD1001FALS-40Y6A0                  
    USB
       USB-PS/2 Optical Mouse (Logitech Inc.)
    Diagnostic reports
       2014-10-30 Adobe InDesign CC 2014 hang
       2014-10-30 Adobe InDesign CS6 hang
       2014-10-30 Adobe InDesign CS6 crash
       2014-10-30 FileMaker Pro hang x5
       2014-10-30 Finder crash* x2
       2014-10-30 Finder hang
       2014-10-30 Microsoft Outlook hang
       2014-10-30 iTunes hang
       2014-10-31 Adobe InDesign CC 2014 hang
       2014-11-04 Adobe InDesign CC 2014 crash x2
       2014-11-04 Adobe InDesign CC 2014 hang
       2014-11-04 Adobe InDesign CS6 crash x2
       2014-11-04 Microsoft Excel hang
       2014-11-05 Adobe InDesign CS6 hang
       2014-11-05 FileMaker Pro hang
       2014-11-10 Adobe InDesign CC 2014 hang
       2014-11-10 FileMaker Pro hang
       2014-11-11 Adobe Illustrator hang
        * Code injection
    Log
       Nov  5 08:25:33 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  5 10:07:01 process discoveryd[49] thread 1190 caught burning CPU! It used more than 50% CPU (Actual recent usage: 82%) over 180 seconds. thread lifetime cpu usage 91.907001 seconds, (77.250009 user, 14.656992 system) ledger info: balance: 90001960650 credit: 91780798965 debit: 1778838315 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 109240779280
       Nov  5 10:09:03 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  5 11:46:47 process discoveryd[49] thread 1256 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 91.591946 seconds, (75.959886 user, 15.632060 system) ledger info: balance: 90000109700 credit: 91486467544 debit: 1486357844 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90105095085
       Nov  5 11:54:53 PM notification timeout (pid 275, Creative Cloud)
       Nov  5 11:54:53 PM notification timeout (pid 344, Adobe CEF Helper)
       Nov  5 11:54:53 PM notification timeout (pid 343, Adobe CEF Helper)
       Nov  5 12:35:03 jnl: b(1, 2): replay_journal: from: 57934848 to: 61127168 (joffset 0x1721c000)
       Nov  5 12:35:03 jnl: b(1, 2): journal replay done.
       Nov  5 12:38:37 jnl: b(1, 2): replay_journal: from: 61127168 to: 67488768 (joffset 0x1721c000)
       Nov  5 12:38:37 jnl: b(1, 2): journal replay done.
       Nov  5 12:38:40 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  5 13:26:28 process mdworker32[357] thread 8766 caught burning CPU! It used more than 85% CPU (Actual recent usage: 86%) over 40 seconds. thread lifetime cpu usage 81.048638 seconds, (76.580865 user, 4.467773 system) ledger info: balance: 34001309838 credit: 80940733771 debit: 46939423933 limit: 34000000000 (85%) period: 40000000000 time since last refill (ns): 39339579198 [fatal violation]
       Nov  5 14:26:53 PM notification timeout (pid 231, Creative Cloud)
       Nov  5 14:26:53 PM notification timeout (pid 325, Adobe CEF Helper)
       Nov  5 14:26:53 PM notification timeout (pid 326, Adobe CEF Helper)
       Nov  5 14:45:49 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  5 14:45:49 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  5 14:47:27 process discoveryd[49] thread 1023 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 91.572722 seconds, (77.540749 user, 14.031973 system) ledger info: balance: 90015163759 credit: 91483527972 debit: 1468364213 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90121915160
       Nov  5 15:13:33 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  6 08:25:36 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  6 11:59:36 PM notification timeout (pid 286, Creative Cloud)
       Nov  6 11:59:36 PM notification timeout (pid 355, Adobe CEF Helper)
       Nov  6 11:59:36 PM notification timeout (pid 356, Adobe CEF Helper)
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smbsmb2_sm2_b_parse_smchabnge_no_tipfary: ssmb_er_chq_replya failngeed_n ot6if0
       Nov  6 12:29:24 y: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_ssmmb2_b_spmabr_sparsee_c_hancgeh_naotinfgy: smb_rq_re_epnlyoti failfedy :60 sm
       Nov  6 12:29:24 b_rq_reply failed 60
       Nov  6 12:29:24 rs failed Qsmumber2b_sy m_Inrqfbo __pa60rr
       Nov  6 12:29:24 rse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 ply failed 60smb2_smb_parse_change
       Nov  6 12:29:24 _notify: smsmb_rq_reply failb2_ed smb_6parse_0
       Nov  6 12:29:24 ply failed smb2_smb_pa60
       Nov  6 12:29:24 rse_change_nsmb2otif_smy:b_ spmb_rq_reply failedars e_c60han
       Nov  6 12:29:24 ge_notify: smb_smb2_smb_parse_chrqange__repnotify: smb_rly fq_ailed reply failed 60
       Nov  6 12:29:24 smb2_smb_parssmb2_e_smbchange_pa_nrsote_chifany:ge _nosmb_tifrq_y:re smplb_y rq_fareilply failed 60
       Nov  6 12:29:24 y failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 q_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 14:01:02 process discoveryd[49] thread 1259 caught burning CPU!; EXC_RESOURCE supressed due to audio playback
       Nov  6 15:49:49 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  6 16:10:23 process Adobe InDesign C[435] caught causing excessive wakeups. Observed wakeups rate (per sec): 309; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45011
       Nov  7 08:25:38 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 10 09:28:46 process discoveryd[49] thread 1195 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 152.284113 seconds, (127.648543 user, 24.635570 system) ledger info: balance: 90002963251 credit: 152063056684 debit: 62060093433 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90142287445
       Nov 10 09:42:09 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 10 11:20:45 process discoveryd[49] thread 1182 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 150.526060 seconds, (126.552866 user, 23.973194 system) ledger info: balance: 90000111985 credit: 150369654672 debit: 60369542687 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90164134478
       Nov 10 12:14:06 PM notification timeout (pid 261, Creative Cloud)
       Nov 10 12:14:06 PM notification timeout (pid 332, Adobe CEF Helper)
       Nov 10 12:14:06 PM notification timeout (pid 333, Adobe CEF Helper)
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 y failed 60
       Nov 10 12:43:27 failed mb60
       Nov 10 12:43:27 smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:46:06 process WindowServer[121] caught causing excessive wakeups. EXC_RESOURCE supressed due to audio playback
       Nov 10 12:49:29 jnl: b(1, 2): replay_journal: from: 27704832 to: 35355648 (joffset 0x1721c000)
       Nov 10 12:49:29 jnl: b(1, 2): journal replay done.
       Nov 10 12:54:05 jnl: b(1, 2): replay_journal: from: 35355648 to: 40313344 (joffset 0x1721c000)
       Nov 10 12:54:05 jnl: b(1, 2): journal replay done.
       Nov 10 12:54:08 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 10 14:31:43 PM notification timeout (pid 232, Creative Cloud)
       Nov 10 14:31:43 PM notification timeout (pid 327, Adobe CEF Helper)
       Nov 10 14:31:43 PM notification timeout (pid 324, Adobe CEF Helper)
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 : smb_rq_reply failesmbd 2_smb_60
       Nov 10 15:07:47 parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 tify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_nsotify:mb2 sm_b_rq_reply sfailmed b60
       Nov 10 15:07:47 _parse_change_notify: smbsmb2_rq__rsepmb_parsly failee_d ch60ange_notify
       Nov 10 15:07:47 : smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:47:46 process discoveryd[49] thread 1013 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 153.503446 seconds, (128.774521 user, 24.728925 system) ledger info: balance: 90007455004 credit: 153327303891 debit: 63319848887 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90099512937
       Nov 11 08:25:38 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 11 09:38:05 process Adobe InDesign C[553] caught causing excessive wakeups. Observed wakeups rate (per sec): 283; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45017
       Nov 10 14:31:43 PM notification timeout (pid 327, Adobe CEF Helper)
       Nov 10 14:31:43 PM notification timeout (pid 324, Adobe CEF Helper)
       Nov 10 14:31:43 com.apple.dpd: Service exited with abnormal code: 75
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 : smb_rq_reply failesmbd 2_smb_60
       Nov 10 15:07:47 parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 tify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_nsotify:mb2 sm_b_rq_reply sfailmed b60
       Nov 10 15:07:47 _parse_change_notify: smbsmb2_rq__rsepmb_parsly failee_d ch60ange_notify
       Nov 10 15:07:47 : smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:47:46 process discoveryd[49] thread 1013 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 153.503446 seconds, (128.774521 user, 24.728925 system) ledger info: balance: 90007455004 credit: 153327303891 debit: 63319848887 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90099512937
       Nov 10 16:47:01 com.apple.WebKit.Networking.UUID: Service exited with abnormal code: 1
       Nov 11 08:25:37 com.apple.Kerberos.kdc: Service exited with abnormal code: 1
       Nov 11 08:25:38 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 11 08:56:36 com.apple.dpd: Service exited with abnormal code: 75
       Nov 11 09:38:05 process Adobe InDesign C[553] caught causing excessive wakeups. Observed wakeups rate (per sec): 283; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45017
    CPU per process: com.apple.WebKit (UID 501) is using 41.2  %
    Daemons
       com.apple.installer.osmessagetracing
       com.microsoft.office.licensing.helper
       com.adobe.fpsaud
    Agents
       com.adobe.CS4ServiceManager
       com.adobe.AdobeCreativeCloud
       com.adobe.ARM.UUID
       com.adobe.ARM.UUID
       com.apple.Safari
       com.adobe.ARM.UUID
       com.google.keystone.user.agent
       com.apple.AirPortBaseStationAgent
    App extensions
       com.apple.InternalFiltersXPC
    Contents of /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist (checksum 461455494)
       <?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.AdobeCreativeCloud</string>
        <key>Program</key>
        <string>/Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/Creative Cloud</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/Creative Cloud</string>
        <string>--showwindow=false</string>
              <string>--onOSstartup=true</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist (checksum 4071182229)
       <?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.AAM.Scheduler-1.0</string>
         <key>Program</key>
         <string>/Library/Application Support/Adobe/OOBE/PDApp/UWA/UpdaterStartupUtility</string>
         <key>ProgramArguments</key>
         <array>
            <string>/Library/Application Support/Adobe/OOBE/PDApp/UWA/UpdaterStartupUtility</string>
            <string>-mode=scheduled</string>
         </array>
         <key>StartCalendarInterval</key>
         <dict>
           <key>Minute</key>
           <integer>0</integer>
           <key>Hour</key>
           <integer>2</integer>
         </dict>
        </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 394026997)
       <?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>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 4116814193)
       <?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 Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 926752576)
       <?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 Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.apple.SafariBookmarksSyncer.plist (checksum 4209634474)
       <?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.apple.Safari</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Safari.app/Contents/SafariSyncClient.app/Contents/MacOS/S afariSyncClient</string>
        <string>--sync</string>
        <string>com.apple.Safari</string>
        <string>--entitynames</string>
        <string>com.apple.bookmarks.Bookmark,com.apple.bookmarks.Folder</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>ThrottleInterval</key>
        <integer>60</integer>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/Library/Safari/Bookmarks.plist</string>
        </array>
       </dict>
       ...and 1 more line(s)
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist (checksum 64800286)
       <?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.google.keystone.user.agent</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
         <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bu ndle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftw areUpdateAgent</string>
         <string>-runMode</string>
         <string>ifneeded</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>3523</integer>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
       </dict>
       </plist>
    Bad plists
       Library/Preferences/com.apple.iphotomosaic.plist
    Listeners
       launchd: afpovertcp
       launchd: afpovertcp
       launchd: microsoft-ds
       launchd: ssh
       launchd: microsoft-ds
       launchd: ssh
       kdc: kerberos
    User login items
       Microsoft Outlook
       - /Applications/Microsoft Office 2011/Microsoft Outlook.app
       TransmitMenu
       - /Applications/Transmit.app/Contents/MacOS/TransmitMenu.app
       ClipMenu
       - /Applications/ClipMenu.app
       Dept
       - /Volumes/Dept
       Public
       - /Volumes/Public
       Apps
       - /Volumes/Apps
    Restricted files: 4584
    Lockfiles: 99
    Elapsed time (s): 352

  • Problem:100 % cpu usage with tcp server dll

    Hello,
     I am trying to write a dll with labwindows/cvi that allows me to create a TCP Server. This dll is integrated in labview.I created this Dll with example provides by Labwindows/cvi(rtserver.dll).
    Description of my problem: when i execute this dll in a "While Loop" in labview,the TCp server wait a connection and 100% cpu usage occurs. However when a client is connect to the server,the CPU is normaly used because the program stop when he meets the timeout of the tcpread() function. I would like to know how i could limit CPU usage  when the server is awaiting a client in the labview "While loop".
    I know I could use a DELAY() to limit Cpu usage ,but I would like to know if there are any others solutions.
    thank you.

    i dont know your exact application, but i generally use Q to transfer data to TCP loop in my prgram it helps me in two ways.
    1. it automatically restricts the iteration when ther is no data (Less CPU Usage, Less Unnecessary Trafic)
    2. Q can eliminate problems arising due to non synchronization of loop
    Tushar Jambhekar
    [email protected]
    Jambhekar Automation Solutions
    LabVIEW Consultancy, LabVIEW Training
    Rent a LabVIEW Developer, My Blog

Maybe you are looking for

  • My external drive keeps setting to read only, why???

    Periodically a 1TB external drive suddenly switches to read only and won't let me save edited documents to it any longer.  It shows as read and write for my access but still won't accept written items.  I'm curious as to why.  It's getting a lot of f

  • Extent Management in Oracle 8i

    Hi all, i want to ask about extent management in oracle 8i maybe some people here can help me about this. I have some question about extent : 1. Which is better Local Extent Management or Dictionary management. 2. Which is better Many Extents or less

  • Getting hotspot  VM error 4F530E43505002E6

    I was running Tomcat on Debian Linux .It is using Hotspot client VM 1.4.1_03-b02 sometimes it is crashing and giving error ID:4F530E43505002E6 i saw old forum posts and they were telling that if we run using hotspot server instead of hotspot -client

  • I am struggling to move an app from my library to my ipod.  Help!!

    i purchased an app and added it to my library.  I needed to get a new ipod touch and I can't get it to move from my library to my new ipod.  Can someone help?  I already tried using the back up feature to reload my previously purchased apps and it di

  • Something is trying to load on my bookmark bar. Can I get rid of it?

    above my bookmarks on the bookmark bar is a white box that is trying to load something. It has silhouette of a person and a blue circle that says Tweet this web page. Never saw it before. How can I get rid of it?