Memory Allocation Problems

My application seems to not free resources the way I would like it to. The main interface consumes somewhere around 40MB. The application has an option to export data to a few PDFs (via itext and JFreeChart). This is handled through a popup JFrame where the user can select options for export. During the export, memory usage spikes to near 105MB, which though concerning, isn't the main problem. Once the export JFrame has been disposed and control is returned the main window, memory usage stays at ~ 105MB and if you export again, the memory usage doesn't budge, leading me to believe that the Objects used during the export aren't being released. I know that memory management is temperamental in Java, but I can't figure out what's going on here.
Here is an overview of what's happening:
MainViewer -> SaveView -> ExportFileController:
I am currently exporting two PDFs: One containing graphs created by JFreeChart and another containing a table created by itext. I've tested them independently and both seem to stay in memory even after I've called document.close() and SaveView.dispose().
Here is how I'm writing my charts:
public void writeCharts()
          Iterator chartIter = allCharts.iterator();
          try
               System.out.println("Writing Charts: Total Number: " + allCharts.size());
               String outputFile = outputDir.getPath()+"/curvefits.pdf";               
               writer = PdfWriter.getInstance(document, new FileOutputStream(outputFile));
               document.open();
               while(chartIter.hasNext())               
                    numpages++;
                    JFreeChart currentChart = (JFreeChart)chartIter.next();
                    PdfContentByte cb = writer.getDirectContent();
                    PdfTemplate tp = cb.createTemplate(width, height);
                    Graphics2D g2d = tp.createGraphics(width, height, new DefaultFontMapper());
                    Rectangle2D r2d = new Rectangle2D.Double(0, 0, width, height);
                    System.out.println("Writting Chart: " + currentChart.getTitle().getText());          
                    currentChart.draw(g2d, r2d);
                    g2d.dispose();
                    cb.addTemplate(tp, 0, 0);
                    document.newPage();
                    writer.releaseTemplate(tp);  //I had heap errors before I added this
          catch(Exception e)
               e.printStackTrace();
          document.close();
          writer.flush();
          writer.close();
          allCharts.clear();
          allCharts.trimToSize();          
          System.gc();    //I'm explicitly trying to free up the resources here
          System.runFinalization();
}

warnerja wrote:
Hard to say.
Once it loads classes, it won't give that memory back, but any memory used on the heap which is no longer needed may be reclaimed.
Does it keep climbing on repeated exports, or does it basically peak on one export and remain at that usage level upon repeated exports?It peaks on one export and then remains the same on repeated exports (roughly ~105MB). What scares me is the my test set is relatively small (perhaps as small as 1%) of what this application could be used for. I can do some things to minimize memory usage (like writing one page at a time and then appending so I don't have to keep the whole output stream open) at the expense of speed, but some where there has to be a data structure containing all of the items to be written. If the JVM NEVER gives the memory back then this will pretty much cripple the user's system.

Similar Messages

  • IOS app crashes on return from cameraUI - a memory allocation problem?

    hey all
    trying to finish my first app
    when running on iOS, the app SOMETIMES crashes after returning from cameraUI (either "use"/MediaEvent.COMPLETE or "cancel"/Event.CANCEL).
    when i exit some other running apps on my iPhone 3Gs (and not that many are open), the problem goes away, which makes me think this is some memory allocation problem
    in that aspect, can i trust the iOS to exit inactive applications to allocate more memory for my, currently active, AIR app?
    (there is no memory leak)
    this is an iPhone 3Gs running os version 4.3.5
    the app was made with Flash Pro 5.5 overlayed with the AIR 3.1 sdk, and deployed using the "deploy for app store" type (which should be the most bug-free)
    (no crashes on Android or desktop versions)
    anyone had this cameraUI problem or a similar one where an app crashes if more then some numbers of apps are open?
    thanx
    Saar

    I don't get this. Its beyond frustrating:
    we are not talking about using an uncommon phone capability, access to a phones camera is about the most basic native level of access you would be looking for in a mobile framework
    we are not talking about an edge case in usage, just trying to take a simple picture consistently
    we are not talking about a feature issue where it doesn't quite work the way you want, it crashes the whole app hard! 
    we are not talking about a hard to recreate, only happening to a few people case - it seems from what I have read the Camera integration is fundamentally broken and I have spent days researching this and only found frustration from people out there
    we are not talking about an issue that does not have consequences - in several places on this forum and others people have emphasized how it is affecting their platform decisions, ability to submit apps. You even have people on this board recommending that not to use Flex Mobile and move to other platforms. Not what you want to be happening to when you are at the adoption phase of a new product.
    And that is the response - on this thread and here http://forums.adobe.com/message/4125590#4125590 - we know its an issue but we don't know when it will be fixed and no proactive communication on status - only a growing body of people like me getting increasingly frustrated. What does it take for an issue to be a show stopper? priority 1? affecting customer decisions priority?
    In my case I am in place where I am trying to make a platform decision and since this experience has happened I have subscribed to the live feed for this forum and as many relevant Adoble blogs, news feed etc. as I could find. I did this to get a feel for how well Adobe is supporting the mobile development on the AIR platform. Something increasingly important given recent decisions.
    My perception so far is quite poor especially for a recently released product, i.e. 4.6 release. In fact the release that finally addresses performance enough to make AIR mobile development a risk free decision. You would expect Adobe to be all over the boards like this - with core developers, platform experts contributing actively. My perception, rightly or wrongly, is of a community trying to support itself without much help, or clear communication from Adobe. In fact if you look at the the articles coming out of Adobe recently its all phonegap, html5 etc. It does not fill you with confidence for the future.
    To be clear - I have had a great experience with actionscript, flex etc and as a company we have developed the backend portion of our platform solely on Flex. I don't believe that we could have done it any other way and even now when I look at the alternatives for web development I feel vindicated in our decision.
    However, this rant is caused by a genuine frustration and fear. I don't expect this to get a meaningful response but maybe if there are enough voices it will create an overall improvement.
    Sean

  • Memory Allocation problem when using JNI

    For a Project we need to interface Labwindows-CVI/ Teststand with an application written in Java. we are using JNI. The code uses JNI_CreateJavaVM to start a JVM to run the Java interface code. The code did run for some time , but now ( without any obvious change nor on the CVI side neither on the Java side) JNI_CreateJavaVM fails with -4 error code, that means that the start of the JVM failed due to memory allocation failure. First investigation showed, that even if Windows Task Manager shows about 600M free physical memory, you can allocate in CVI only about 250M as a single block at the time we are calling  JNI_CreateJavaVM. That might be a little bit to less as we need to pass -Xmx192m to the JVM to run our code. Unfortunately just increasing the physical memory of that machine from 1.5G to 2G doesn't change anything. The free memory showed by Task Manager increases, but the allocatable memory block size does not. Are the any trick to optimize CVI/Teststand for that use case ?  Or maybe known problems with JNI ?
    Solved!
    Go to Solution.

    hi,
    have you tried other functions to allocate memory?
    the -Xmx command only sets the maximum heap size. You can try to use -Xms. This command sets the initial Java heap size. 

  • Virtual Memory Allocation problem

    When I run compile some source code in F90, I receive the following error message:
    /usr/bin/ld: can't vm_allocate() buffer for output file of size 1699768758 ((os/kern) no space available)
    What seems to be happening is that the system wants to allocate a large amount of memory. I have over 14 Gb of virtual memory available and over 2.5 GB of RAM available. Another forum ( http://www.archivum.info/gnu.gcc.help/2007-08/msg00083.html ) said the memory needs to be contiguous. I need to compile this, and I have sufficient memory to do so. What must I do to make this work?
    I tried the following:
    cd /usr/bin
    sudo mv ld ld32
    sudo ln -s ld64 ld
    This did not solve the problem as now the error says:
    ld64-62.1 failed: 32-bit pic-base out of range in atexitcommon from /usr/local/gcc/4.2.2-32/lib/gcc/powerpc-apple-darwin8.9.0/4.2.2/crt3.o

    I'm assumming that your operating system is Windows NT 4, Windows 2000, or Windows XP. For others reading, this is a link to the above referenced KnowledgeBase article.
    NI-DAQ does not require you to invoke the VirtualLock function. NI-DAQ will page lock the buffer passed to the SCAN_Start function. It is possible that, since the buffer has already been paged locked by your code, that there are insufficient resources (i.e., kernel-mode Page Table Entries (PTEs)) available for NI-DAQ to page lock the buffer.
    Remove the invocation of the VirtualLock function and see if that helps.
    Geoffrey Schmit
    Fermi National Accelerator Laborary

  • How can I measure memory allocation of a Java Application?

    We built a web application that enables images to be loaded into a database through a servlet running on Tomcat. We have inconsistent behaivor when more than x number of people are loading images simultaneously. No doubt a memory allocation problem, but how can I measure it?
    For example, I'd like to be able to create a graph showing the resources used against the number of people making uploads. I am using Linux and Tomcat/Apache.
    I am hoping for something like Memory counters that are available for measurine Windows applications on MS Windows - comes with the Resource Kit. Does this type of tool exist for the Java/Linux market?

    It is difficult to gauge memory usage from a Java application as the JVM handles garbage collection and even if objects are not referenced they might still be sitting in memory until the next garbage collect.
    Anyhow, a way to query available memory is:
    Runtime.getRuntime().freeMemory()
    You can run this at the begining of a process and at the end and examine the difference. You should call System.gc() before each freeMemory() call in order to try to force garbage collection.
    Another method would be to turn to the underlying OS. On linux you could use 'top' or 'ps'. With ps you could do something like:
    ps -o rss,vsz,%mem <pid>
    Where <pid> is the parent Tomcat process' id. The resulting three columns are:
    - Amount of real memory used.
    - Amount of virtual memory used.
    - Percentage of real memory used.
    'man ps' wil give you more options on how to use ps.
    There are also fancy graphical stuff like 'gtop' as well.
    Hope this helps.

  • Problem in dynamic memory allocation

    Hi,
    My name is Ravi Kumar. I'm working on a project to improve organizational performance which include visual studio for simulation. I'm using dynamic memory allocation to allocate space for the array that are used in the program. Now I have run-time error
    which I can't understand where it is going wrong. Can someone please help me regrading this issue. 
    If anyone interested in helping please leave a comment with your email id so that I will share the whole project folder.
    Thanks,
    Ravi

    Hi Ravi,
    Don is right that this is the forum to discuss questions and feedback for Microsoft Office client.
    Please post in MSDN forum of Visual Studio, where you can get more experienced responses:
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=visualstudiogeneral
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Cache Memory Allocator \ Short Term Memory Allocator Issues

    Hi all
    I have a number of identically configured (High School) Servers which are giving me the same memory errors (some more frequently than others) and I've run out of ideas.
    They are all HP Proliant DL360 G6 Servers, NetWare 6.5 sp8 with eDir 8.8 sp5.
    The error messages are :
    "Cache memory allocator out of available memory." followed by "Short term memory allocator is out of memory. xxx attempts to get more memory failed. request size in bytes xxxxxxxx from Module SWEEP.NLM"
    The module referred to is always "SWEEP.NLM" (Sophos Anti-virus). A Server reset solves the problem but it is normally back within a month.
    I've posted below a config.txt and segstats.txt from one of the servers.
    I would be grateful if someone could help me with this as it's now becoming a 'headache'.
    Cheers
    Neil Hughes
    *** Memory Pool Configuration for : KLDSRV1
    Time and date : 10:34:44 AM 01/18/2012
    Server version : NetWare 6.5 Support Pack 8
    Server uptime : 32d 20h 00m 00s
    SEG.NLM version : v1.72
    0xFFFFFFFF --------------------------------------------------------------
    | Kernel Reserved Space |
    | |
    | Size : 180,355,071 bytes (172.0 MB) |
    | |
    0xF5400000 --------------------------------------------------------------
    | User Address Space (L!=P) |
    | |
    | User Pool Size : 884,998,144 bytes (844.0 MB) |
    | High Water Mark : 2,936,012,800 bytes (2.73 GB) |
    | |
    0xC0800000 --------------------------------------------------------------
    | Virtual Memory Cache Pool (L!=P) |
    | |
    | VM Pool Size : 1,082,130,432 bytes (1.01 GB) |
    | Available : 1,049,260,032 bytes (1000.7 MB) |
    | Total VM Pages : 1,047,080,960 bytes (998.6 MB) |
    | Free Clean VM : 1,025,097,728 bytes (977.6 MB) |
    | Free Cache VM : 21,983,232 bytes (21.0 MB) |
    | Total LP Pages : 0 bytes (0 KB) |
    | Free Clean LP : 0 bytes (0 KB) |
    | Free Cache LP : 0 bytes (0 KB) |
    | Free Dirty : 0 bytes (0 KB) |
    | VM Pages In Use : 2,179,072 bytes (2.1 MB) |
    | NLM Memory In Use : 1,066,545,152 bytes (1017.1 MB) |
    | NLM/VM Memory : 1,050,394,624 bytes (1001.7 MB) |
    | Largest Segment : 16,240,640 bytes (15.5 MB) |
    | High Water Mark : 1,535,295,488 bytes (1.43 GB) |
    | |
    0x80000000 --------------------------------------------------------------
    | File System Cache Pool (L==P or L!=P) |
    | |
    | FS Pool Size : 2,141,048,832 bytes (1.99 GB) |
    | Available : 252,231,680 bytes (240.5 MB) |
    | Largest Segment : 10,547,200 bytes (10.1 MB) |
    | |
    | NSS Memory (85%) : 1,043,554,304 bytes (995.2 MB) |
    | NSS (avail cache) : 958,324,736 bytes (913.9 MB) |
    | |
    0x00623000 --------------------------------------------------------------
    | DOS / SERVER.NLM |
    | |
    | Size : 6,434,816 bytes (6.1 MB) |
    | |
    0x00000000 --------------------------------------------------------------
    Top 6 Memory Consuming NLMs
    NLM Name Version Date Total NLM Memory
    ================================================== ==============================
    1. DS.NLM 20219.15 12 May 2009 242,957,527 bytes (231.7 MB)
    2. NSS.NLM 3.27.03 7 Jun 2010 225,471,568 bytes (215.0 MB)
    3. SERVER.NLM 5.70.08 3 Oct 2008 197,615,392 bytes (188.5 MB)
    4. SWEEP.NLM 4.73 1 Dec 2011 104,793,570 bytes (99.9 MB)
    5. DBSRV6.NLM 6.00.04 16 May 2001 38,735,938 bytes (36.9 MB)
    6. XMGR.NLM 27610.01.01 30 Mar 2009 32,184,593 bytes (30.7 MB)
    Logical Memory Summary Information
    ================================================== ==============================
    File System Cache Information
    FS Cache Free : 63,897,600 bytes (60.9 MB)
    FS Cache Fragmented : 188,334,080 bytes (179.6 MB)
    FS Cache Largest Segment : 10,547,200 bytes (10.1 MB)
    Logical System Cache Information
    LS Cache Free : 138,153,984 bytes (131.8 MB)
    LS Cache Fragmented : 364,015,616 bytes (347.2 MB)
    LS Cache Uninitialized : 333,455,360 bytes (318.0 MB)
    LS Cache Largest Segment : 16,240,640 bytes (15.5 MB)
    LS Cache Largest Position : 34490000
    Summary Statistics
    Total Free : 202,051,584 bytes (192.7 MB)
    Total Fragmented : 552,349,696 bytes (526.8 MB)
    Highest Physical Address : DF62E000
    User Space : 1,065,353,216 bytes (1016.0 MB)
    User Space (High Water Mark) : 2,936,012,800 bytes (2.73 GB)
    NLM Memory (High Water Mark) : 1,535,295,488 bytes (1.43 GB)
    Kernel Address Space In Use : 2,475,212,800 bytes (2.31 GB)
    Available Kernel Address Space : 754,401,280 bytes (719.5 MB)
    Memory Summary Screen (.ms)
    ================================================== ==============================
    KNOWN MEMORY Bytes Pages Bytes Pages
    Server: 3747295616 914867 Video: 8192 2
    Dos: 111232 27 Other: 131072 32
    FS CACHE KERNEL NLM MEMORY
    Original: 3743006720 913820 Code: 48136192 11752
    Current: 252231680 61580 Data: 28098560 6860
    Dirty: 0 0 Sh Code: 40960 10
    Largest seg: 10547200 2575 Sh Data: 20480 5
    Non-Movable: 0 0 Help: 172032 42
    Other: 1890455552 461537 Message: 1249280 305
    Avail NSS: 958328832 233967 Alloc L!=P: 957685760 233810
    Movable: 8192 2 Alloc L==P: 14991360 3660
    Total: 1050394624 256444
    VM SYSTEM
    Free clean VM: 1025097728 250268
    Free clean LP: 0 0
    Free cache VM: 21983232 5367
    Free cache LP: 0 0
    Free dirty: 0 0
    In use: 2179072 532
    Total: 1049260032 256167
    Memory Configuration (set parameters)
    ================================================== ==============================
    Auto Tune Server Memory = OFF
    File Cache Maximum Size = 2147483648
    File Service Memory Optimization = 1
    Logical Space Compression = 1
    Garbage Collection Interval = 299.9 seconds
    VM Garbage Collector Period = 300.0 seconds
    server -u<number> = 884998144
    NSS Configuration File:
    C:\NWSERVER\NSSSTART.CFG
    /AllocAheadBlks=0
    /MinBufferCacheSize=20000
    /MinOSBufferCacheSize=20000
    /CacheBalanceMaxBuffersPerSession=20000
    /NameCacheSize=200000
    /AuthCacheSize=20000
    /NumWorkToDos=100
    /FileFlushTimer=10
    /BufferFlushTimer=10
    /ClosedFileCacheSize=100000
    /CacheBalance=85
    DS Configuration File:
    SYS:\_NETWARE\_NDSDB.INI
    preallocatecache=true
    cache=200000000
    Server High/Low Water Mark Values
    ================================================== ==============================
    NLM Memory High Water Mark = 1,535,295,488 bytes
    File System High Water Mark = 435,727 bytes
    User Space Information:
    User Space High Water Mark = 683,339,776 bytes
    Committed Pages High Water Mark = 91 pages
    Mapped VM Pages High Water Mark = 5,870 pages
    Reserved Pages High Water Mark = 692,325 pages
    Swapped Pages High Water Mark = 5,710 pages
    Available Low Water Mark = 882,774,016
    ESM Memory High Water Mark = 949 pages
    Novell File Server Configuration Report For Server: KLDSRV1
    Novell File Server Configuration Report Created: Wed, Jan 18, 2012 11:15 am
    Novell File Server Configuration Report. [Produced by CONFIG.NLM v3.10.17]
    Novell NetWare 5.70.08 October 3, 2008
    (C) Copyright 1983-2008 Novell Inc. All Rights Reserved.
    Server name...............: KLDSRV1
    OS Version................: v5.70
    OS revision number........: 8
    Product Version...........: v6.50
    Product Revision Number...: 8
    Server Up Time(D:H:M:Sec).: 32:20:51:12
    Serial number.............: XXXXXXXX
    Internal Net. Addr........: 00000000h
    Security Restriction Level: 1
    SFT Level.................: 2
    Engine Type...............: NATIVE
    TTS Level.................: 1
    Total Server memory.......: 3573.81 MB or 3747406848 Bytes
    Processor speed rating....: 197582
    Original cache buffers....: 913820
    Current Cache Buffers.....: 292534
    LRU Sitting Time(D:H:M:S).: 32:20:51:12
    Current FSP's.............: 12
    Current MP FSP's..........: 378
    Current Receive Buffers...: 3000
    Directory cache buffers...: 0
    Workstations Connected....: 1136
    Max Workstations Connected: 1528
    Server language...........: ENGLISH (4)
    Timesync active...........: Yes
    Time is synchronized......: Yes
    Total Processors..........: 4
    Server DOS Country ID.....: 44
    Server DOS Code Page......: 850
    Boot Loader...............: DOS
    Top of Modules List 312 Modules Loaded.
    ACPIASL.NLM v1.05.16 Jan. 16, 2007 ACPI Architecture Services Layer for ACPI compliant systems
    ACPICA.NLM v1.05.16 Jan. 16, 2007 ACPI Component Architecture for ACPI compliant systems
    ACPICMGR.NLM v1.05.16 Jan. 16, 2007 ACPI Component Manager for ACPI compliant systems
    ACPIDRV.PSM v1.05.19 Jan. 16, 2007 ACPI Platform Support Module for ACPI compliant systems
    ACPIPWR.NLM v1.05.16 Jan. 16, 2007 ACPI Power Management Driver for ACPI compliant systems
    AFREECON.NLM v5.00 Jul. 22, 2005 AdRem Free Remote Console (NCPE)
    APACHE2.NLM v2.00.63 Apr. 25, 2008 Apache Web Server 2.0.63
    APRLIB.NLM v0.09.17 Apr. 25, 2008 Apache Portability Runtime Library 0.9.17
    AUTHLDAP.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 LDAP Authentication Module
    AUTHLDDN.NLM v1.00 Nov. 9, 2005 LdapDN Module
    BROKER.NLM v3.00.12 Feb. 20, 2008 NDPS Broker
    BSDSOCK.NLM v6.82.02 Dec. 23, 2009 Novell BSDSOCK Module
    BTCPCOM.NLM v7.90 Jul. 9, 2003 BTCPCOM.NLM v7.90.000, Build 253
    BTRIEVE.NLM v7.90 Mar. 21, 2001 BTRIEVE.NLM v7.90.000
    CALNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWCalls Runtime Library
    CCS.NLM v27610.01.01 Mar. 30, 2009 Controlled Cryptography Services from Novell, Inc.
    CDBE.NLM v6.01 Sep. 21, 2006 NetWare Configuration DB Engine
    CDDVD.NSS v3.27.03 Jun. 7, 2010 NSS Loadable Storage System (LSS) for CD/UDF (Build 212 MP)
    CERTLCM.NLM v28200902.26 Feb. 26, 2009 Novell SASL EXTERNAL Proxy LCM 2.8.2.0 20090226
    CERTLSM.NLM v28200902.26 Feb. 26, 2009 Novell SASL EXTERNAL LSM 2.8.2.0 20090226
    CHARSET.NLM v1.01 Jun. 4, 2003 Display Character Set Support For NetWare
    CIOS.NLM v1.60 Feb. 12, 2008 Consolidated IO System
    CLBACKUP.NLM v8.00 Sep. 22, 2010 NetWare Client Backup
    CLBROWSE.NLM v8.00 Dec. 3, 2008 NetWare Client Browse
    CLIB.NLM v5.90.15 Mar. 10, 2008 (Legacy) Standard C Runtime Library for NLMs
    CLNNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWClient Runtime Library
    CLRESTOR.NLM v8.00 Mar. 31, 2009 NetWare Client Restore
    CLXNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWCLX Runtime Library
    COMN.NSS v3.27.03 Jun. 7, 2010 NSS Common Support Layer (COMN) (Build 212 MP)
    CONFIG.NLM v3.10.17 Feb. 12, 2008 NetWare Server Configuration Reader
    CONLOG.NLM v3.01.02 Aug. 8, 2006 System Console Logger
    CONNAUD.NLM v3.17 May. 10, 2005 NLS - Connection Metering
    CONNMGR.NLM v5.60.01 Sep. 7, 2006 NetWare Connection Manager NLM
    CPQBSSA.NLM v8.20 Jan. 29, 2009 HP Insight Management Base System Agent
    CPQCI.NLM v1.06 Oct. 17, 2005 hp ProLiant iLO Management Interface Driver
    CPQDASA.NLM v8.20.01 Feb. 24, 2009 HP Management Array Subsystem Agent
    CPQHMMO.NLM v3.92 Jun. 10, 2003 Compaq HMMO Services Provider for NetWare
    CPQHOST.NLM v8.20 Jan. 29, 2009 HP Insight Management Host Agent
    CPQHTHSA.NLM v8.20 Jan. 29, 2009 HP Insight Management Health Agent
    CPQNCSA.NLM v8.20 Dec. 11, 2008 HP Insight NIC Agent
    CPQRISA.NLM v8.20 Jan. 29, 2009 HP Insight Management Remote Insight Agent
    CPQSSSA.NLM v8.20.01 Feb. 24, 2009 HP Management Storage Box Subsystem Agent
    CPQTHRSA.NLM v8.20 Jan. 29, 2009 HP Insight Management Threshold Agent
    CPQWEBAG.NLM v8.20 Jan. 29, 2009 HP Web Based Management Agent
    CPUCHECK.NLM v5.60.01 Dec. 6, 2007 NetWare Processor Checking Utility
    CRLSM.NLM v2.08.01 Oct. 28, 2008 Challenge Response LSM v2.8.1.0
    CSL.NLM v2.06.02 Jan. 13, 2000 NetWare Call Support Layer For NetWare
    CSLIND.NLM v4.21 Dec. 7, 1999 TCPIP CSL INDEPENDENCE MODULE 7Dec99 7Dec99
    CVAPPMGR.NLM v8.00 Nov. 22, 2010 AppManager
    CVARCH.NLM v8.00 Nov. 10, 2010 Archive Library
    CVD.NLM v8.00 Apr. 13, 2011 Communications Service
    CVJOBCL.NLM v8.00 Nov. 10, 2010 Job Client
    CVLIB.NLM v8.00 Apr. 13, 2011 Library for NetWare
    CVLZOLIB.NLM v8.00 Dec. 3, 2008 LZO Compression Library
    CVNETCHK.NLM v8.00 Dec. 3, 2008 Network Check
    CVSIM.NLM v8.00 Dec. 3, 2008 Software Installation Manager
    CVSMS.NLM v8.00 Sep. 28, 2009 NetWare SMS Interface
    DBEXTF6.NLM v6.00.04 Sep. 12, 2000 Sybase Adaptive Server Anywhere External Library
    DBNET6.NLM v1.45.02 Mar. 16, 2006 Debug Network IO Support
    DBSRV6.NLM v6.00.04 May. 16, 2001 Sybase Adaptive Server Anywhere
    DFSLIB.NLM v3.27.03 Jun. 7, 2010 DFS Common Library (Build 212 MP)
    DHOST.NLM v10010.97 Sep. 18, 2006 Novell DHost Portability Interface 1.0.0 SMP
    DIAG500.NLM v3.04.03 Oct. 31, 2007 Diagnostic/coredump utility for NetWare 6.x
    DM.NLM v3.01.60 May. 21, 2008 Novell XTier Directory Manager
    DMNDAP.NLM v3.01.60 May. 21, 2008 Novell XTier Directory Manager NDAP Provider
    DPLSV386.NLM v1.15.03 Apr. 16, 2010 NetWare 6.x Distributed Print Library - DPLSV386
    DPRPCNLM.NLM v3.00.17 Oct. 10, 2006 Novell NDPS RPC Library NLM
    DS.NLM v20219.15 May. 12, 2009 Novell eDirectory Version 8.8 SP5 SMP
    DSAPI.NLM v6.00.04 Jan. 27, 2006 NetWare NWNet Runtime Library
    DSEVENT.NLM v6.01.03 Aug. 26, 2008 NetWare DSEvent Runtime Library
    DSLOADER.NLM v20219.15 May. 12, 2009 Novell eDirectory Version 8.8.0 Loader SMP
    DSLOG.NLM v20219.15 May. 12, 2009 DS Log for Novell eDirectory 8.8.0
    DTS.NLM v3.01.05 Sep. 8, 2008 Transaction Server 3.1.0 - Netware
    EHCIDRV.CAD v1.05 Feb. 26, 2008 Novell Universal Serial Bus EHCI driver
    EPWDLSM.NLM v27000508.12 Aug. 12, 2005 Novell Enhanced Password LSM 2.7.0.0 20050812
    ETADVLSM.NLM v27000508.03 Aug. 3, 2005 Novell Entrust LSM 2.7.0.0 20050803
    ETHERTSM.NLM v3.90 Mar. 20, 2006 Novell Ethernet Topology Specific Module
    EVENTMGR.NLM v3.01.60 May. 21, 2008 Novell XTier Event Manager
    EVMGRC.NLM v8.00 Dec. 3, 2008 Event Manager Client
    EXPIRES.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 Expires Module
    FATFS.NLM v1.24 Aug. 27, 2007 FAT Filesystem Module for NetWare
    FILESYS.NLM v5.14 Apr. 16, 2008 NetWare File System NLM
    FSBRWSE.NLM v8.00 Dec. 3, 2008 NetWare File System Browser
    GALAXY.NLM v8.00 Dec. 3, 2008 Loader
    GAMS.NLM v2.00.01 Sep. 2, 2008 Graded Authentication Management Service
    HBNNSP.NLM v3.01.60 May. 21, 2008 Novell XTier GetHostByName Name Service Provider
    HEADERS.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 Headers Module
    HOSTMIB.NLM v5.03.01 Dec. 1, 2006 NetWare 5.x/6.x Host Resources MIB
    HPASMXL.NLM v1.14 Jan. 25, 2009 HP ProLiant Embedded Health Driver
    HPQCISS.HAM v1.16.01 Mar. 3, 2009 HP SAS/SATA Unified RAID driver
    HTTPSTK.NLM v4.03 Sep. 4, 2008 Novell Small Http Interface
    HWDETECT.NLM v1.19.05 Feb. 20, 2003 Novell Hardware Insertion/Removal Detection
    IDEATA.HAM v4.34 May. 5, 2007 Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    IFACE.NLM v7.05.04 Dec. 1, 2011 SAV Interface for NetWare
    IFOLDER.NLM v2.04 Feb. 19, 2007 ifolder
    IFOLDERU.NLM v2.04 Feb. 19, 2007 ifolderu
    IMGSERV.NLM v7.00 Jan. 12, 2009 ZENworks Imaging Server
    IPCTL.NLM v3.01.60 May. 21, 2008 Novell XTier Transport Layer
    IPMCFG.NLM v1.01.16 Oct. 22, 2005 Web Interface for IP Address Management
    IPMGMT.NLM v1.03.01 May. 29, 2007 TCPIP - NetWare IP Address Management
    IPPSRVR.NLM v4.02.02 Jun. 16, 2010 Novell iPrint Server
    JAVA.NLM v1.43 Oct. 16, 2008 java.nlm (based on 1.4.2_18) Build 08101613
    JNCPV2.NLM v1.10 Nov. 13, 2003 Native Wrapper Java Class Libraries for NetWare
    JNET.NLM v1.43 Oct. 16, 2008 Java jnet (based on 1.4.2_18)
    JSMSG.NLM v3.27.03 Jun. 7, 2010 Jetstream Message Layer (Build 212 MP)
    JSOCK.NLM v1.43 Oct. 16, 2008 Support For Java Sockets (loader)
    JSOCK6X.NLM v1.43 Oct. 16, 2008 NetWare 6.x Support For Java Sockets (JDK 1.4.2)
    JSTCP.NLM v3.27.03 Jun. 7, 2010 Jetstream TCP Transport Layer (Build 212 MP)
    JVM.NLM v1.43 Oct. 16, 2008 Java Hotspot 1.4.2_18 Interpreter
    JVMLIB.NLM v1.43 Oct. 16, 2008 Java jvmlib (based on 1.4.2_18)
    KEYB.NLM v2.10 Jul. 26, 2001 NetWare National Keyboard Support
    LANGMANI.NLM v10212.02 Mar. 10, 2009 Novell Cross-Platform Language Manager
    LBURP.NLM v20216.02 Mar. 10, 2009 LDAP Bulkload Update/Replication Protocol service extension for Novell eDirectory 8.8
    LCMCIFS2.NLM v2.00.09 Sep. 14, 2007 Windows Native File Access Login Methods (Build 91 SP)
    LCMMD5.NLM v28000806.23 Jun. 23, 2008 Novell SASL DIGEST-MD5 Proxy LCM 2.8.0.0 20080623
    LDAPSDK.NLM v3.05.02 Apr. 12, 2009 LDAP SDK Library (Clib version)
    LDAPXS.NLM v3.05.01 Apr. 12, 2009 (Clib version)
    LFS.NLM v5.12 Sep. 21, 2005 NetWare Logical File System NLM
    LIB0.NLM v5.90.15 Mar. 10, 2008 Novell Ring 0 Library for NLMs
    LIBC.NLM v9.00.05 Oct. 3, 2008 Standard C Runtime Library for NLMs [optimized, 7]
    LIBCCLIB.NLM v6.00 Oct. 23, 2002 LibC to CLib Shim for NLMs [optimized, 0]
    LIBCVCL.NLM v8.00 Dec. 3, 2008 Cryptography Library
    LIBNICM.NLM v3.01.60 May. 21, 2008 Novell XTier Base Services
    LIBNSS.NLM v3.27.03 Jun. 7, 2010 Generic Library used by NSS (Build 212 MP)
    LIBPERL.NLM v5.00.05 Sep. 13, 2005 Perl 5.8.4 - Script Interpreter and Library
    LIBXML2.NLM v2.06.26 Aug. 27, 2006 libxml2 2.6.26 (LIBC) - The XML C parser and toolkit of Gnome
    LIBXTREG.NLM v3.01.60 May. 21, 2008 Novell XTier Base Services
    LLDAPSDK.NLM v3.05.02 Apr. 12, 2009 LDAP SDK Library (LibC version)
    LLDAPSSL.NLM v3.05.01 Apr. 12, 2009 NetWare SSL Library for LDAP SDK (LibC version)
    LLDAPX.NLM v3.05.01 Apr. 12, 2009 NetWare Extension APIs for LDAP SDK (LibC version)
    LOCNLM32.NLM v6.00.04 Nov. 29, 2005 NetWare NWLocale Runtime Library
    LSAPI.NLM v5.02 Jan. 7, 2003 NLS LSAPI Library
    LSL.MPM v5.70 Feb. 15, 2006 lsl Memory Protection Module
    LSL.NLM v4.86 Feb. 2, 2006 Novell NetWare Link Support Layer
    LSMAFP3.NLM v2.00.11 Sep. 14, 2007 Macintosh Native File Access Login Methods (Build 118 SP)
    LSMCIFS2.NLM v2.00.07 Sep. 14, 2007 Windows Native File Access Login Methods (Build 103 SP)
    LSMMD5.NLM v28000806.23 Jun. 23, 2008 Novell SASL DIGEST-MD5 LSM 2.8.0.0 20080623
    MAL.NSS v3.27.03 Jun. 7, 2010 NSS Media Access Layer (MAL) (Build 212 MP)
    MALHLP.NLM v3.27.03 Jun. 7, 2010 NSS Configure help messages (Build 212 MP)
    MANAGE.NSS v3.27.03 Jun. 7, 2010 NSS Management Functions (Build 212 MP)
    MASV.NLM v2.00.01 Sep. 2, 2008 Mandatory Access Control Service
    MATHLIB.NLM v4.21 Oct. 14, 1999 NetWare Math Library Auto-Load Stub
    MM.NLM v3.22.08 Apr. 24, 2009 ENG TEST - NetWare 6.5 Media Manager
    MOD_IPP.NLM v1.00.04 Jun. 7, 2006 iPrint Module
    MOD_JK.NLM v1.02.23 Apr. 25, 2008 Apache 2.0 plugin for Tomcat
    MOD_XSRV.NLM v3.01.04 May. 21, 2008 Novell XTier Server (Apache2 Module)
    MOMAPSNW.NLM v4.00 May. 7, 2010 4.0 Build: 492 NW FC AB 2010-05-07 NW
    MONDATA.NLM v6.00 Jul. 18, 2003 NetWare 5.x/6.x Monitor MIB
    MONITOR.NLM v12.02.02 Apr. 4, 2006 NetWare Console Monitor
    MSM.NLM v4.12 Aug. 22, 2007 Novell Multi-Processor Media Support Module
    N1000E.LAN v10.47 Oct. 6, 2007 HP NC-Series Intel N1E Ethernet driver
    NBI.NLM v3.01.01 Jul. 13, 2007 NetWare Bus Interface
    NCM.NLM v1.15.01 Oct. 20, 2004 Novell Configuration Manager
    NCP.NLM v5.61.01 Sep. 30, 2008 NetWare Core Protocol (NCP) Engine
    NCPIP.NLM v6.02.01 Sep. 30, 2008 NetWare NCP Services over IP
    NCPL.NLM v3.01.60 May. 21, 2008 Novell XTier Base Services
    NCPNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWNCP Runtime Library
    NDPSGW.NLM v4.01.02 Mar. 2, 2010 NDPS Gateway
    NDPSM.NLM v3.03.02 May. 18, 2010 NDPS Manager
    NDS4.NLM v3.01.60 Apr. 9, 2008 Novell XTier NDS4 Authentication Provider
    NDSAUDIT.NLM v2.09 May. 22, 2003 Directory Services Audit
    NDSIMON.NLM v20216.12 Apr. 15, 2009 NDS iMonitor 8.8 SP5
    NEB.NLM v5.60 Sep. 27, 2004 Novell Event Bus
    NETDB.MPM v5.70 Feb. 15, 2006 netdb Memory Protection Module
    NETDB.NLM v4.11.05 Jan. 6, 2005 Network Database Access Module
    NETLIB.NLM v6.50.22 Feb. 12, 2003 Novell TCPIP NETLIB Module
    NETNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWNet Runtime Library
    NIAM.NLM v3.01.60 May. 21, 2008 Novell XTier Identity Manager
    NICISDI.NLM v27610.01.01 Mar. 30, 2009 Security Domain Infrastructure
    NILE.NLM v7.00.01 Aug. 20, 2007 Novell N/Ties NLM ("") Release Build with symbols
    NIPPED.NLM v1.03.09 Jul. 11, 2006 NetWare 5.x, 6.x INF File Editing Library - NIPPED
    NIPPZLIB.NLM v1.00.01 Nov. 28, 2005 General Purpose ZIP File Library for NetWare
    NIRMAN.NLM v1.06.04 Sep. 18, 2007 TCPIP - NetWare Internetworking Remote Manager
    NIT.NLM v5.90.15 Mar. 10, 2008 NetWare Interface Tools Library for NLMs
    NLDAP.NLM v20219.14 May. 13, 2009 LDAP Agent for Novell eDirectory 8.8 SP5
    NLMLIB.NLM v5.90.15 Mar. 10, 2008 Novell NLM Runtime Library
    NLSADPT2.NLM v2.00 Sep. 9, 2003 NLS and Metering adapter for iManager 2.0 plugin
    NLSAPI.NLM v5.02 Aug. 7, 2003 NLSAPI
    NLSLRUP.NLM v4.01.07 May. 10, 2005 NLS - Usage Metering
    NLSLSP.NLM v5.02 May. 25, 2005 NLS - License Service Provider
    NLSMETER.NLM v3.43 May. 10, 2005 NLS - Software Usage Metering Database
    NLSTRAP.NLM v5.02 Feb. 19, 2004 NetWare License Server Trap
    NMAS.NLM v33200904.07 Apr. 7, 2009 Novell Modular Authentication Service 3.3.2.0 20090407
    NMASGPXY.NLM v33200904.07 Apr. 7, 2009 NMAS Generic Proxy 3.3.2.0 20090407
    NMASLDAP.NLM v33200904.07 Apr. 7, 2009 NMAS LDAP Extensions 3.3.2.0 20090407
    NPKIAPI.NLM v3.33 Apr. 16, 2009 Public Key Infrastructure Services
    NPKIT.NLM v3.33 Apr. 16, 2009 Public Key Infrastructure Services
    NSCM.NLM v3.01.60 May. 21, 2008 Novell XTier Security Context Manager
    NSNS.NLM v3.01.60 May. 21, 2008 Novell XTier Simple Name Service
    NSPDNS.NLM v6.20.03 Sep. 8, 2003 NetWare Winsock 2.0 NSPDNS.NLM Name Service Providers
    NSPNDS.NLM v6.20 Nov. 12, 2001 NetWare Winsock 2.0 NSPNDS.NLM Name Service Provider
    NSPSLP.NLM v6.20.04 Dec. 6, 2007 NetWare Winsock 2.0 NSPSLP.NLM Name Service Provider
    NSS.NLM v3.27.03 Jun. 7, 2010 NSS (Novell Storage Services) (Build 212 MP)
    NSSIDK.NSS v3.27.03 Jun. 7, 2010 NSS Pool Configuration Manager (Build 212 MP)
    NSSWIN.NLM v3.27.03 Jun. 7, 2010 NSS ASCI Window API Library (Build 212 MP)
    NTFYDPOP.ENM v2.00.03 Feb. 26, 1999 Directed Pop-Up Delivery Method
    NTFYLOG.ENM v2.00.03 May. 25, 1999 Log File Delivery Method
    NTFYPOP.ENM v2.00.03 May. 21, 1999 Pop Up Delivery Method
    NTFYRPC.ENM v2.00.03 Feb. 26, 1999 RPC Delivery Method
    NTFYSPX.ENM v2.00.03 Feb. 26, 1999 SPX Delivery Method
    NTFYSRVR.NLM v3.00.05 May. 10, 2005 NDPS Notification Server
    NTFYWSOC.ENM v2.00.03 Feb. 26, 1999 Winsock Delivery Method
    NTLS.NLM v20510.01 Mar. 11, 2009 NTLS 2.0.5.0 based on OpenSSL 0.9.7m
    NWAIF103.NLM v7.94 Nov. 30, 2001 nwaif103.nlm v7.94, Build 251 ()
    NWBSRVCM.NLM v7.90 Mar. 20, 2001 NWBSRVCM.NLM v7.90.000, Build 230
    NWENC103.NLM v7.90 Feb. 24, 2001 NWENC103.NLM v7.90.000 (Text Encoding Conversion Library)
    NWIDK.NLM v3.01.01 Sep. 19, 2003 CDWare Volume Module
    NWKCFG.NLM v2.16 Jun. 24, 2005 NetWare Kernel Config NLM
    NWMKDE.NLM v7.94 Dec. 11, 2001 NWMKDE.NLM v7.94.251.000
    NWMON.NLM v1.20 Dec. 14, 2005 NetWare Monitoring Software
    NWPA.NLM v3.21.02 Oct. 29, 2008 NetWare 6.5 NetWare Peripheral Architecture NLM
    NWPALOAD.NLM v3.00 Jul. 10, 2000 NetWare 5 NWPA Load Utility
    NWSA.NSS v3.27.03 Jun. 7, 2010 NSS NetWare Semantic Agent (NWSA) (Build 212 MP)
    NWSNUT.NLM v7.00.01 Jul. 11, 2008 NetWare NLM Utility User Interface
    NWTERMIO.NLM v1.00 Sep. 11, 2006 NetWare Terminal Emulation
    NWTRAP.NLM v6.00.05 Jun. 6, 2005 NetWare 5.x/6.x Trap Monitor
    NWUCMGR.NLM v1.05 Mar. 14, 2001 NWUCMGR.NLM v1.5 Build 230
    NWUTIL.NLM v3.00.02 Aug. 20, 2007 Novell Utility Library NLM (_NW65[SP7]{""})
    PARTAPI.NLM v2.00 Apr. 17, 2002 Partition APIs for NetWare 6.1
    PDHCP.NLM v2.08 Oct. 20, 2003 Di-NIC Proxy DHCP Server
    PKI.NLM v3.33 Apr. 16, 2009 Novell Certificate Server
    PKIAPI.NLM v2.23.10 Nov. 20, 2004 Public Key Infrastructure Services
    PMAP.NLM v2.01.04 Mar. 6, 2008 ZENworks Port Mapper Service
    PMLODR.NLM v1.26 Oct. 7, 2005 PMLodr for NW65
    PMPORTAL.NLM v2.16 Nov. 21, 2003 NetWare License Information Portal
    POLIMGR.NLM v6.27 Nov. 3, 2005 NetWare License Policy Manager
    PORTAL.NLM v4.03 Sep. 22, 2008 Novell Remote Manager NLM
    PROCMODS.NLM v8.00 Nov. 5, 2010 PipeLine Procedure Module
    PSVCS.NLM v251.00 Nov. 30, 2001 Portability Services
    PVER500.NLM v3.00 Feb. 1, 2007 NetWare 6.XX Version Library
    PWDLCM.NLM v28000806.23 Jun. 23, 2008 Novell Simple Password Proxy LCM 2.8.0.0 20080623
    PWDLSM.NLM v28000806.23 Jun. 23, 2008 Novell Simple Password LSM 2.8.0.0 20080623
    QUEUE.NLM v5.60 May. 24, 2001 NetWare Queue Services NLM
    REGSRVR.NLM v3.00.06 May. 10, 2005 NDPS Service Registry
    REQUESTR.NLM v5.90.15 Mar. 10, 2008 Novell NCP Requestor for NLMs
    REWRITE.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 Rewrite Module
    RMANSRVR.NLM v3.07.02 Mar. 2, 2010 NDPS Resource Manager
    ROLLCALL.NLM v5.00 Jul. 27, 1998 RollCall NLM (101, API 1.0)
    ROTLOGS.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 Log Rotation Utility for NetWare
    SAL.NLM v20413.01 Mar. 25, 2009 Novell System Abstraction Layer Version 2.3.1
    SASDFM.NLM v27610.01.01 Mar. 30, 2009 SAS Data Flow Manager
    SASL.NLM v33200904.07 Apr. 7, 2009 Simple Authentication and Security Layer 3.3.2.0 20090407
    SAVENGIN.NLM v3.27 Dec. 1, 2011 SAV Interface engine
    SCSIHD.CDM v3.03.10 May. 30, 2008 Novell NetWare SCSI Fixed Disk Custom Device Module
    SEG.NLM v1.72 Nov. 4, 2004 NetWare Memory Analyzer
    SERVINST.NLM v5.00.13 Nov. 21, 2005 NetWare 5.x/6.x Instrumentation
    SGUID.NLM v6.01 Sep. 27, 2002 NetWare GUID Services
    SLP.MPM v5.70 Feb. 15, 2006 slp Memory Protection Module
    SLP.NLM v2.13 Nov. 15, 2005 SERVICE LOCATION PROTOCOL (RFC2165/RFC2608)
    SLPTCP.NLM v2.13 Nov. 15, 2005 SERVICE LOCATION TCP/UDP INTERFACE (RFC2165/RFC2608)
    SMDR.NLM v6.58.01 Oct. 16, 2008 SMS - Storage Data Requestor
    SMSUT.NLM v1.01.03 Jun. 26, 2008 SMS - Utility Library for NetWare 6.X
    SNMP.MPM v5.70 Feb. 15, 2006 snmp Memory Protection Module
    SNMP.NLM v4.18 Jul. 25, 2006 Netware 4.x/5.x/6.x SNMP Service
    SPMDCLNT.NLM v33200904.07 Apr. 7, 2009 Novell SPM Client for DClient 3.3.2.0 20090407
    STREAMS.MPM v5.70 Feb. 15, 2006 streams Memory Protection Module
    STREAMS.NLM v6.00.06 May. 4, 2005 NetWare STREAMS PTF
    SVCCOST.NLM v3.01.60 May. 21, 2008 Novell XTier Service Costing Module
    SWEEP.NLM v4.73 Dec. 1, 2011 Sophos Anti-Virus User Interface
    SYSCALLS.NLM v5.61 Aug. 2, 2007 NetWare Operating System Call and Marshalling Library
    SYSLOG.NLM v6.05.03 Oct. 22, 2007 NetWare Logfile Daemon
    TCP.NLM v6.82.06 Dec. 23, 2009 Novell TCP/IP Stack - Transport module (NULL encryption)
    TCPIP.MPM v5.70 Feb. 15, 2006 tcpip Memory Protection Module
    TCPIP.NLM v6.82.02 Sep. 30, 2009 Novell TCP/IP Stack - Network module (NULL encryption)
    TCPSTATS.NLM v6.50.10 Jun. 20, 2003 Web Interface for Protocol Monitoring
    TFTP.NLM v2.05.01 Jan. 15, 2008 ZENworks Preboot TFTP Server
    THREADS.NLM v5.90.15 Mar. 10, 2008 Novell Threads Package for NLMs
    TIMESYNC.NLM v6.61.01 Oct. 14, 2005 NetWare Time Synchronization Services
    TLI.MPM v5.70 Feb. 15, 2006 tli Memory Protection Module
    TLI.NLM v4.30.02 Dec. 19, 2000 NetWare Transport Level Interface Library
    TSAFS.NLM v6.53.03 Oct. 16, 2008 SMS - File System Agent for NetWare 6.X
    TSANDS.NLM v20215.04 Apr. 3, 2009 TSA for Novell eDirectory 7.x, 8.x
    UHCIDRV.CAD v1.07 Feb. 26, 2008 Novell Universal Serial Bus UHCI driver
    UNICODE.NLM v7.00 Oct. 26, 2004 NetWare Unicode Runtime Library (UniLib-based) [optimized]
    USCLSM.NLM v27000507.14 Jul. 14, 2005 Novell Universal SmartCard LSM 2.7.0.0 20050714
    USERLIB.NLM v5.60 Sep. 29, 2008 NetWare Operating System Function Library
    UTILLDAP.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 LDAP Authentication Module
    UTILLDP2.NLM v1.00 Nov. 9, 2005 LdapDN Module
    VDISK.NLM v1.00 Nov. 30, 2004 NetWare Virtual Disk
    VERIFY.NLM v1.43 Oct. 16, 2008 Java verify (based on 1.4.2_18)
    VLRPC.NLM v3.27.03 Jun. 7, 2010 DFS Volume Location Database (VLDB) RPC interface (Build 212 MP)
    VMRPC.NLM v3.27.03 Jun. 7, 2010 DFS Volume Manager RPC interface (Build 212 MP)
    VOLMN.NSS v3.27.03 Jun. 7, 2010 NSS Distributed Volume Manager (Build 212 MP)
    VOLSMS.NLM v3.27.03 Jun. 7, 2010 NSS Distributed Volume Manager (Build 212 MP)
    WS2_32.NLM v6.24.01 Feb. 14, 2008 NetWare Winsock 2.0 NLM
    WSPIP.NLM v6.24 Dec. 4, 2007 NetWare Winsock Service 1.0 NLM for TCP and UDP
    WSPSSL.NLM v6.26 Dec. 4, 2007 NetWare Winsock Service 1.0 NLM for SSL
    X509ALSM.NLM v27000508.03 Aug. 3, 2005 Novell Advanced X.509 LSM 2.7.0.0 20050803
    X509LSM.NLM v27000508.03 Aug. 3, 2005 Novell Simple X.509 LSM 2.7.0.0 20050803
    XENGEXP.NLM v27610.01.01 Mar. 30, 2009 NICI Import Restricted XENG from Novell, Inc.
    XENGNUL.NLM v27610.01.01 Mar. 30, 2009 NICI NULL XENG from Novell, Inc.
    XENGUSC.NLM v27610.01.01 Mar. 30, 2009 NICI U.S./Worldwide XENG from Novell, Inc.
    XI18N.NLM v10310.53 Aug. 2, 2005 Novell Cross-Platform Internationalization Package
    XIM.XLM v27510.02.01 Aug. 25, 2008 Novell NICI Signed Loader
    XMGR.NLM v27610.01.01 Mar. 30, 2009 NICI XMGR from Novell, Inc.
    XNGAUSC.NLM v27610.01.01 Mar. 30, 2009 NICI U.S./Worldwide XMGR Assistant XENG from Novell, Inc.
    XSRVNSP.NLM v3.01.60 May. 21, 2008 Novell XTier XSRVNSP Tree Name Service Provider
    XSUP.NLM v27610.01.01 Mar. 30, 2009 NICI XSUP from Novell, Inc.
    XTNCP.NLM v3.01.60 May. 21, 2008 Novell XTier NCP Session Layer Driver
    XTUTIL.NLM v3.01.60 May. 21, 2008 Novell XTier Utility Functions
    ZENIMGDS.NLM v7.00 Mar. 26, 2007 ZENworks Imaging DS Library
    ZENPXE.NLM v7.00 Apr. 22, 2008 ZENworks Imaging PXE Library
    ZENWS.NLM v1.00 Jul. 29, 2002 Zen Workstation Utility NLM
    ZIP.NLM v1.43 Oct. 16, 2008 Java zip (based on 1.4.2_18)
    ZLIB.NLM v1.01.04 Dec. 20, 2002 ZLIB 1.1.4 General Purpose Compression Library for NetWare
    ZLSS.NSS v3.27.03 Jun. 7, 2010 NSS Journaled Storage System (ZLSS) (Build 212 MP)
    End of Modules List 312 Modules Loaded.
    Top of LAN Driver Configuration Listing
    Signature.....: HardwareDriverMLID
    CFG Version...: 1.15
    Node Address..: 002655D01666
    Board Number..: 1
    Board Instance: 1
    Media Type....: ETHERNET_II
    MLID Version..: 10.47
    Slot..........: 101
    I/O...........: 5000h -> 501Fh
    Memory........: FBFE0000h -> FBFFFFFFh
    and FBFC0000h -> FBFC0FFFh
    IRQ...........: 7
    DMA...........: None
    Logical Name..: N1000E_1_EII
    Signature.....: HardwareDriverMLID
    CFG Version...: 1.15
    Node Address..: 002655D01667
    Board Number..: 2
    Board Instance: 2
    Media Type....: ETHERNET_II
    MLID Version..: 10.47
    Slot..........: 102
    I/O...........: 5020h -> 503Fh
    Memory........: FBFA0000h -> FBFBFFFFh
    and FBF80000h -> FBF80FFFh
    IRQ...........: 11
    DMA...........: None
    Logical Name..: N1000E_2_EII
    End of LAN Driver Configuration Listing
    Top of Boot Drive Information
    SERVER.EXE loaded from...........: C:\NWSERVER\
    SERVER.EXE version...............: 1355757 bytes 10-03-2008 09:53am
    Total Space on Drive.............: 2016 MB
    Available Space..................: 1920 MB
    End of Boot Drive Information
    Top of Storage Device Configuration Information
    Storage Device Summary:
    0x0000 [V100-A100] USB UHCI Controller
    0x0001 [V100-A101] USB UHCI Controller
    0x0002 [V100-A102] USB UHCI Controller
    0x0003 [V100-A103] USB UHCI Controller
    0x0004 [V100-A104] USB EHCI Controller
    0x0005 [V100-A105] USB UHCI Controller
    0x0006 [V505-A0] HP SAS/SATA Unified RAID Driver
    0x0007 [V505-A0-D0:0] HP LOGICAL VOLUME f/w:1.66
    0x0008 DOS Partitioned Media
    0x0019 [V505-A0-D0:0-PAA6BA] Free Partition Space
    0x0009 [V505-A0-D0:0-P0] Big DOS; OS/2; Win95 Partition
    0x000A [V505-A0-D0:0-P7F8] NSS Partition
    0x000B [V505-A0-D0:0-P4678] NSS Partition
    0x000C [V505-A0-D0:0-P1CD18] NSS Partition
    0x000D [V505-A0-D0:0-P21B38] NSS Partition
    0x000F [V505-A0-D0:0-P26B38] NSS Partition
    0x0011 [V505-A0-D0:0-P2BB38] NSS Partition
    0x0012 [V505-A0-D0:0-P30B38] Free Partition Space
    0x0013 [V505-A0-D0:0-P353B8] NSS Partition
    0x0014 [V505-A0-D0:0-P48C38] NSS Partition
    0x0015 [V505-A0-D0:0-P612D8] NSS Partition
    0x0016 [V505-A0-D0:0-P79978] NSS Partition
    0x0017 [V505-A0-D0:0-P92018] NSS Partition
    0x0018 [V505-A0-D0:0-PAA6B8] Free Partition Space
    Storage Device Details:
    [V100-A100] USB UHCI Controller
    Media Manager object ID..: 0x0000
    Media Manager Object Type: Adapter
    Driver name..............: UHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 256
    Primary port address.....: 1000
    Primary port length......: 18
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 18
    Interrupt 1..............: Not used
    Slot.....................: 10027
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V100-A101] USB UHCI Controller
    Media Manager object ID..: 0x0001
    Media Manager Object Type: Adapter
    Driver name..............: UHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 257
    Primary port address.....: 1020
    Primary port length......: 18
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 28
    Interrupt 1..............: Not used
    Slot.....................: 10028
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V100-A102] USB UHCI Controller
    Media Manager object ID..: 0x0002
    Media Manager Object Type: Adapter
    Driver name..............: UHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 258
    Primary port address.....: 1040
    Primary port length......: 18
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 38
    Interrupt 1..............: Not used
    Slot.....................: 10029
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V100-A103] USB UHCI Controller
    Media Manager object ID..: 0x0003
    Media Manager Object Type: Adapter
    Driver name..............: UHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 259
    Primary port address.....: 1060
    Primary port length......: 18
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 28
    Interrupt 1..............: Not used
    Slot.....................: 10030
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V100-A104] USB EHCI Controller
    Media Manager object ID..: 0x0004
    Media Manager Object Type: Adapter
    Driver name..............: EHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 260
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 18
    Interrupt 1..............: Not used
    Slot.....................: 10031
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 006C
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V100-A105] USB UHCI Controller
    Media Manager object ID..: 0x0005
    Media Manager Object Type: Adapter
    Driver name..............: UHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 261
    Primary port address.....: 3800
    Primary port length......: 18
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 38
    Interrupt 1..............: Not used
    Slot.....................: 10037
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V505-A0] HP SAS/SATA Unified RAID Driver
    Media Manager object ID..: 0x0006
    Media Manager Object Type: Adapter
    Driver name..............: HPQCISS.HAM
    Assigned driver ID.......: 1285
    Adapter number...........: 0
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 7
    Interrupt 1..............: Not used
    Slot.....................: 10041
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0400
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V505-A0-D0:0] HP LOGICAL VOLUME f/w:1.66
    Media manager object ID.....: 0x0007
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 858112 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 18785
    Block size, in bytes........: 4294966784
    Activated...................: Yes
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 0
    Adapter Number..............: 0
    System Type.................: 0x90000
    Read after write verify.....: Disabled
    DOS Partitioned Media
    Media Manager object ID..: 0x0008
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V505-A0-D0:0-PAA6BA] Free Partition Space
    Media Manager object ID......: 0x0019
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 1429591200
    Size, in sectors.............: 328023484
    [V505-A0-D0:0-P0] Big DOS; OS/2; Win95 Partition
    Media Manager object ID......: 0x0009
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 32
    Size, in sectors.............: 4177888
    [V505-A0-D0:0-P7F8] NSS Partition
    Media Manager object ID......: 0x000A
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: Yes
    Beginning sector of partition: 4177920
    Size, in sectors.............: 32768000
    [V505-A0-D0:0-P4678] NSS Partition
    Media Manager object ID......: 0x000B
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: Yes
    Beginning sector of partition: 36945920
    Size, in sectors.............: 204800000
    [V505-A0-D0:0-P1CD18] NSS Partition
    Media Manager object ID......: 0x000C
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: Yes
    Beginning sector of partition: 241745920
    Size, in sectors.............: 40960000
    [V505-A0-D0:0-P21B38] NSS Partition
    Media Manager object ID......: 0x000D
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 282705920
    Size, in sectors.............: 41943040
    [V505-A0-D0:0-P26B38] NSS Partition
    Media Manager object ID......: 0x000F
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 324648960
    Size, in sectors.............: 41943040
    [V505-A0-D0:0-P2BB38] NSS Partition
    Media Manager object ID......: 0x0011
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 366592000
    Size, in sectors.............: 41943040
    [V505-A0-D0:0-P30B38] Free Partition Space
    Media Manager object ID......: 0x0012
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 408535040
    Size, in sectors.............: 38010880
    [V505-A0-D0:0-P353B8] NSS Partition
    Media Manager object ID......: 0x0013
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: Yes
    Beginning sector of partition: 446545920
    Size, in sectors.............: 163840000
    [V505-A0-D0:0-P48C38] NSS Partition
    Media Manager object ID......: 0x0014
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: Yes
    Beginning sector of partition: 610385920
    Size, in sectors.............: 204800000
    [V505-A0-D0:0-P612D8] NSS Partition
    Media Manager object ID......: 0x0015
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 815185920
    Size, in sectors.............: 204800000
    [V505-A0-D0:0-P79978] NSS Partition
    Media Manager object ID......: 0x0016
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: Yes
    Beginning sector of partition: 1019985920
    Size, in sectors.............: 204800000
    [V505-A0-D0:0-P92018] NSS Partition
    Media Manager object ID......: 0x0017
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 1224785920
    Size, in sectors.............: 204800000
    [V505-A0-D0:0-PAA6B8] Free Partition Space
    Media Manager object ID......: 0x0018
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 1429585920
    Size, in sectors.............: 5280
    End of Storage Device Configuration Information
    * Volume Statistics for SYS *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 15934 MB
    Block Size.................: 4 KB
    Total Blocks...............: 4079171
    Free Blocks................: 3072770
    Purgable Blocks............: 158
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147439380
    Sectors per Block..........: 8
    Free Disk Space............: 12003 MB
    Purgable Disk Space........: 0 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for _ADMIN *
    File System................: Unknown
    Volume Size................: 4 MB
    Block Size.................: 4 KB
    Total Blocks...............: 1024
    Free Blocks................: 1024
    Purgable Blocks............: 0
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147483647
    Sectors per Block..........: 8
    Free Disk Space............: 4 MB
    Purgable Disk Space........: 0 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for IMAGES *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 99702 MB
    Block Size.................: 4 KB
    Total Blocks...............: 25523833
    Free Blocks................: 12760577
    Purgable Blocks............: 0
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147483627
    Sectors per Block..........: 8
    Free Disk Space............: 49846 MB
    Purgable Disk Space........: 0 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for PRINTING *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 19932 MB
    Block Size.................: 4 KB
    Total Blocks...............: 5102598
    Free Blocks................: 4766787
    Purgable Blocks............: 55
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147480871
    Sectors per Block..........: 8
    Free Disk Space............: 18620 MB
    Purgable Disk Space........: 0 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for STAFF *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 140541 MB
    Block Size.................: 4 KB
    Total Blocks...............: 35978535
    Free Blocks................: 4278115
    Purgable Blocks............: 428
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147301305
    Sectors per Block..........: 8
    Free Disk Space............: 16711 MB
    Purgable Disk Space........: 1 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for FCLTY *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 120121 MB
    Block Size.................: 4 KB
    Total Blocks...............: 30751101
    Free Blocks................: 6551019
    Purgable Blocks............: 2
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147231898
    Sectors per Block..........: 8
    Free Disk Space............: 25589 MB
    Purgable Disk Space........: 0 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for APPS *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 79761 MB
    Block Size.................: 4 KB
    Total Blocks...............: 20418911
    Free Blocks................: 8163253
    Purgable Blocks............: 0
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147246784
    Sectors per Block..........: 8
    Free Disk Space............: 31887 MB
    Purgable Disk Space........: 0 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for ACDMC *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 99700 MB
    Block Size.................: 4 KB
    Total Blocks...............: 25523381
    Free Blocks................: 9816828
    Purgable Blocks............: 0
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147069762
    Sectors per Block..........: 8
    Free Disk Space............: 38346 MB
    Purgable Disk Space........: 0 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for PUPILS *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 99702 MB
    Block Size.................: 4 KB
    Total Blocks...............: 25523813
    Free Blocks................: 13579469
    Purgable Blocks............: 0
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147417601
    Sectors per Block..........: 8
    Free Disk Space............: 53044 MB
    Purgable Disk Space........: 0 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    Volume Name Name Spaces Loaded
    SYS DOS
    SYS MACINTOSH
    SYS NFS
    SYS LONG_NAMES
    _ADMIN DOS
    _ADMIN MACINTOSH
    _ADMIN NFS
    _ADMIN LONG_NAMES
    IMAGES DOS
    IMAGES MACINTOSH
    IMAGES NFS
    IMAGES LONG_NAMES
    PRINTING DOS
    PRINTING MACINTOSH
    PRINTING NFS
    PRINTING LONG_NAMES
    STAFF DOS
    STAFF MACINTOSH
    STAFF NFS
    STAFF LONG_NAMES
    FCLTY DOS
    FCLTY MACINTOSH
    FCLTY NFS
    FCLTY LONG_NAMES
    APPS DOS
    APPS MACINTOSH
    APPS NFS
    APPS LONG_NAMES
    ACDMC DOS
    ACDMC MACINTOSH
    ACDMC NFS
    ACDMC LONG_NAMES
    PUPILS DOS
    PUPILS MACINTOSH
    PUPILS NFS
    PUPILS LONG_NAMES
    ************************************************** ***************************

    Hi.
    On 18.01.2012 15:36, gayfield wrote:
    >
    > Hi Massimo
    >
    > Many thanks for your quick response. I've been into the console.log and
    > pasted the last few entries below :
    >
    > 17-01-2012 6:19:58 pm: SERVER-5.70-0 [nmID=6001D]
    > Cache memory allocator out of available memory.
    >
    >
    > 17-01-2012 6:19:58 pm: SERVER-5.70-0 [nmID=2000A]
    > Short term memory allocator is out of memory.
    > 1 attempts to get more memory failed.
    > request size in bytes 14807040 from Module SWEEP.NLM
    >
    > Loading Module FSIFIND.NLM [
    > OK ]
    > Loading Module FSBACK.NLM [
    > OK ]
    >
    > 17-01-2012 8:24:13 pm: SERVER-5.70-0 [nmID=6001D]
    > Cache memory allocator out of available memory.
    >
    >
    > 17-01-2012 8:24:13 pm: SERVER-5.70-0 [nmID=2000A]
    > Short term memory allocator is out of memory.
    > 2 attempts to get more memory failed.
    > request size in bytes 11403264 from Module SWEEP.NLM
    >
    >
    > 17-01-2012 8:34:17 pm: SERVER-5.70-0 [nmID=6001D]
    > Cache memory allocator out of available memory.
    >
    >
    > 17-01-2012 8:34:17 pm: SERVER-5.70-0 [nmID=2000A]
    > Short term memory allocator is out of memory.
    > 3 attempts to get more memory failed.
    > request size in bytes 15418880 from Module SWEEP.NLM
    >
    >
    > 17-01-2012 8:48:14 pm: SERVER-5.70-0 [nmID=6001D]
    > Cache memory allocator out of available memory.
    >
    >
    > 17-01-2012 8:48:14 pm: SERVER-5.70-0 [nmID=2000A]
    > Short term memory allocator is out of memory.
    > 4 attempts to get more memory failed.
    > request size in bytes 14807040 from Module SWEEP.NLM
    >
    >
    > 17-01-2012 8:58:18 pm: SERVER-5.70-0 [nmID=6001D]
    > Cache memory allocator out of available memory.
    >
    >
    > 17-01-2012 8:58:18 pm: SERVER-5.70-0 [nmID=2000A]
    > Short term memory allocator is out of memory.
    > 5 attempts to get more memory failed.
    > request size in bytes 14680064 from Module SWEEP.NLM
    >
    > Hope this better clarifies the situation.
    Somewhat. From the time of day, and the loading of commvault modules
    inbetween, this looks like a combined backup / AV scan issue. The
    requests of Sophos are comparably big in size, and they vary a lot. That
    will lead to fragmentation of your memory, until the memory can't be
    allocated in one chunk any more. It also *seems* as if Sophos actually
    scans the data while it gets backed up. That is *bad*.
    CU,
    Massimo Rosen
    Novell Knowledge Partner
    No emails please!
    http://www.cfc-it.de

  • OSX inactive memory management problems

    On my 2010 Macbook Air 11" running OSX 10.8 Mountain Lion, I have run into some major issues with memory management. This problem persists across both my Mac machines and multiple generations of OSX. I have a 2007 2.2 Ghz Core 2 Duo Macbook Pro Running Lion (upgraded from Tiger) with 3 gb 667Mhz DDR2 RAM and my 2010 Air 1.4Ghz Core 2 Duo (Upgraded from Snow Leopard to Mountain Lion) with 2gb 1067mhz DDR3 RAM. On both machines, for some time now, during normal usage; especially web browsing using Chrome and Safari (respectively); the inactive RAM on both machines will grow to consume around 30% of all RAM and force time consuming page outs to the mass storage drives on both machines. The Pro has a slower hard drive and the problem is the worst here, the air has a much faster SSD. I have found myself constantly having a window of Activity Monitor up on at least one of my desktops watching my RAM usage, using terminal to purge ram upwards of 10 times an hour to prevent costly page outs, especially on the Pro. I know Apple claims that inactive RAM is essentially free RAM that is temporarily storing recently used information for ease of access later and that it's supposed to be released as free memory when needed, but this obviously is not happening. Right now on my air my swap file is over 650Mb and I've seen it top 2Gb before. The air is exponentially better than the Pro due to the faster SSD, but I do notice substantial UI lag and a massive drop in fluidity as soon as my meager 2Gb is full and I start paging. The Pro is another story entirely, the entire system will essentially become unusable, having to wait several seconds for mouse clicks to even register. That's why I upgraded the stock 2Gb of RAM it comes with to 3Gb hoping that a 150% increase in RAM would help, but it just prolonged the inevitable. I still end up paging out just as bad across both systems if un checked. Even when I keep a close eye on memory usage and purge often, I still end up paging out because I'm not vigilant enough.
    I have to limit my browsing to less than 5 tabs and keep my number of open programs less than 2 on both machines. My active and wired memory rarely seem to top 70%, meaning the rest gets taken by inactive, which isn't functioning as Apple claims. Even if my conclusions aobut what is happening under the hood are incorrect, something is going terribly wrong. I can't upgrade the RAM on my Air at all, and the RAM on my Pro is capped at 4Gb. I'm holding on upgrading because I don't think the excess hardware will solve this software memory problem. Whatever is happening is causing a serious drop in performance for me (yes I do know I have underpowered machines), but there has to be something I can do to speed performance. I've read about disabling the dynamic page file entirely, which just seems to crash the system when free memory is gone, and I've read about programs that claim to free memory. Those programs seem to work by taking a high priority in the process heigharchy of the OS and then proceeding to eat up large portions of RAM and releasing them as needed in an attempt to replicate the true intentions of inactive RAM, but I've heard of problems with this method as well. Does anyone have a viable solution? Monitoring my RAM usage myself and ensuring I don't end up paging out is costly, time consuming, annoying, and inefficient since I fail to catch the problem before I page if I get particularly busy. There is no other OS I've ever been acquainted with that has this problem, not any flavor of Linux, not even the dreaded windows. I seriously hope Apple can do something to manage this runaway memory problem. I'd like to be able to open more than 3 windows in Safari. I've had to purge 3 seperate times while writing this on my Air, and I now have 678 inactive memory, 741 inactive, 582 wired, and less than 14Mb free out of 2Gb with a growing swap at 680Mb. Each purge becomes less and less effective and the last one I did freed up only about 100Mb and it got eaten up again by inactive in less than 10 seconds. On my Air, the memory hog is Safari right now at 700Mb between the web content and flash player with only Facebook, youtube, and this Apple Supprt tab open. I have NO other applications running in the fore or background other than Activity Monitor and Terminal. On my Pro the memory hog is always kernel task, I use Chrome and Safari both. While the memory used by the browser does not usually take up the most substantial portion of the total used RAM out of any process, the more tabs I open, the more RAM I use. The browser is usually the second heaviest RAM hog to Kernel Task. So it seems that across the two machines there are two lsightly different manifestations of the same problem with the same results: massive performance drops and extremely annoying and costly page outs no matter the reason. I just want this problem to go away. I've used underpowered windows laptops that can open a dozen tabs in a heavier browser like IE or Firefox while using other programs like Word or Excel and more with no memory lag issues. There's no way in **** I could manage to open that many pages in a browser while using Pages and/or Numbers on either of my machines and expect reliable (swap free performance). This is just kind of sad in my opinion. Does anyone have a way to get my OSX machine running smooth so that I can remove the one thing that windows and Linux fan boys get the right to laugh at my Macs for?

    Hi Zephryl,
    I was actually able to get an initial response from Sun on this a few months ago. However, the Sun Swing team has not followed up on a resolution for this pervasive problem, even though they noticed the same problem when running a test applet I had created for them. Apparently, I.E. is not releasing memory from the heap.
    Below is a quote from a Sun rep. on this in an e-mail sent to me on Dec 4, 2002:
    "I suspected the leak is in the native code because the # of handles and GDI objects keep increasing but no obvious Java objects are left behind in the Java heap during page switch."
    So, until Sun and/or Microsoft work out a solution to this, anyone who uses I.E. 6 and applets for their UI seems to be in a lot of trouble.
    As a note, trying to invoke the Garbage Collector does not do anything, but generally a very small amount of memory will be released (like maybe 5-10% of the memory allocated for the applet).
    Cheers!
    Avi Gray
    Global Computer Enterprises

  • ICMP Timeout Alarm due to TCP Protocol Memory Allocation Failure ?

    Hello Experts ,
      >> Device uptime suggests there was no reboot
    ABCSwitch uptime is 28 weeks, 13 hours, 50 minutes
    System returned to ROM by power-on
    System restarted at 13:09:45 UTC Mon Aug 5 2013
    System image file is "flash:c2950-i6k2l2q4-mz.121-22.EA12.bin"
    >> But observed logs mentioning Memory Allocation Failure for TCP Protocol Process ( Process ID 43) due to Memory Fragmentation
    003943: Feb 18 02:14:27.393 UTC: %SYS-2-MALLOCFAIL: Memory allocation of 36000 bytes failed from 0x801E876C, alignment 0
    Pool: Processor Free: 120384 Cause: Memory fragmentation
    Alternate Pool: I/O Free: 682800 Cause: Memory fragmentation
    -Process= "TCP Protocols", ipl= 0, pid= 43
    -Traceback= 801C422C 801C9ED0 801C5264 801E8774 801E4CDC 801D9A8C 8022E324 8022E4BC
    003944: Feb 18 02:14:27.397 UTC: %SYS-2-CFORKMEM: Process creation of TCP Command failed (no memory).
    -Process= "TCP Protocols", ipl= 0, pid= 43
    -Traceback= 801E4D54 801D9A8C 8022E324 8022E4BC
    According to Cisco documentation for Troubleshooting Memory issues on Cisco IOS 12.1 (http://www.cisco.com/c/en/us/support/docs/ios-nx-os-software/ios-software-releases-121-mainline/6507-mallocfail.html#tshoot4 ), which suggests the TCP Protocols Process could not be started due to Memory being fragmented
    Memory Fragmentation Problem or Bug
    This situation means that a process has consumed a large amount of processor memory and then released most or all of it, leaving fragments of memory still allocated either by this process, or by other processes that allocated memory during the problem. If the same event occurs several times, the memory may fragment into very small blocks, to the point where all processes requiring a larger block of memory cannot get the amount of memory that they need. This may affect router operation to the extent that you cannot connect to the router and get a prompt if the memory is badly fragmented.
    This problem is characterized by a low value in the "Largest" column (under 20,000 bytes) of the show memory command, but a sufficient value in the "Freed" column (1MB or more), or some other wide disparity between the two columns. This may happen when the router gets very low on memory, since there is no defragmentation routine in the IOS.
    If you suspect memory fragmentation, shut down some interfaces. This may free the fragmented blocks. If this works, the memory is behaving normally, and all you have to do is add more memory. If shutting down interfaces doesn't help, it may be a bug. The best course of action is to contact your Cisco support representative with the information you have collected.
    >>Further TCP -3- FORKFAIL logs were seen
    003945: Feb 18 02:14:27.401 UTC: %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    -Traceback= 8022E33C 8022E4BC
    003946: Feb 18 02:14:27.585 UTC: %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    -Traceback= 8022E33C 8022E4BC
    003947: Feb 18 02:14:27.761 UTC: %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    -Traceback= 8022E33C 8022E4BC
    003948: Feb 18 02:14:27.929 UTC: %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    -Traceback= 8022E33C 8022E4BC
    003949: Feb 18 02:14:29.149 UTC: %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    -Traceback= 8022E33C 8022E4BC
    According to Error Explanation from Cisco Documentation (http://www.cisco.com/c/en/us/td/docs/ios/12_2sx/system/messages/122sxsms/sm2sx09.html#wp1022051)
    suggests the TCP handles from a client could not be created or initialized
    Error Message %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    Explanation The system failed to create a process to handle requests  from a client. This condition could be caused by insufficient  memory.
    Recommended Action Reduce other system activity to ease  memory demands.
    But I am still not sure about the exact root cause is as
    1.The GET/GETNEXT / GET BULK messages from SNMP Manager (Here, IBM Tivoli Netcool  ) uses default SNMP Port 161 which is
       UDP and not TCP
    2. If its ICMP Polling failure from IBM Tivoli Netcool , ICMP is Protocol Number 1 in Internet Layer of TCP/IP Protocol Suite  and TCP is Protocol                 Number 6 in the Transport Layer of TCP/IP Protocol Suite .
    So I am still not sure how TCP Protocol Process Failure could have caused ICMP Timeout . Please help !
    Could you please help me on what TCP Protocol Process handles in a Cisco Switch ?
    Regards,
    Anup

    Hello Experts ,
      >> Device uptime suggests there was no reboot
    ABCSwitch uptime is 28 weeks, 13 hours, 50 minutes
    System returned to ROM by power-on
    System restarted at 13:09:45 UTC Mon Aug 5 2013
    System image file is "flash:c2950-i6k2l2q4-mz.121-22.EA12.bin"
    >> But observed logs mentioning Memory Allocation Failure for TCP Protocol Process ( Process ID 43) due to Memory Fragmentation
    003943: Feb 18 02:14:27.393 UTC: %SYS-2-MALLOCFAIL: Memory allocation of 36000 bytes failed from 0x801E876C, alignment 0
    Pool: Processor Free: 120384 Cause: Memory fragmentation
    Alternate Pool: I/O Free: 682800 Cause: Memory fragmentation
    -Process= "TCP Protocols", ipl= 0, pid= 43
    -Traceback= 801C422C 801C9ED0 801C5264 801E8774 801E4CDC 801D9A8C 8022E324 8022E4BC
    003944: Feb 18 02:14:27.397 UTC: %SYS-2-CFORKMEM: Process creation of TCP Command failed (no memory).
    -Process= "TCP Protocols", ipl= 0, pid= 43
    -Traceback= 801E4D54 801D9A8C 8022E324 8022E4BC
    According to Cisco documentation for Troubleshooting Memory issues on Cisco IOS 12.1 (http://www.cisco.com/c/en/us/support/docs/ios-nx-os-software/ios-software-releases-121-mainline/6507-mallocfail.html#tshoot4 ), which suggests the TCP Protocols Process could not be started due to Memory being fragmented
    Memory Fragmentation Problem or Bug
    This situation means that a process has consumed a large amount of processor memory and then released most or all of it, leaving fragments of memory still allocated either by this process, or by other processes that allocated memory during the problem. If the same event occurs several times, the memory may fragment into very small blocks, to the point where all processes requiring a larger block of memory cannot get the amount of memory that they need. This may affect router operation to the extent that you cannot connect to the router and get a prompt if the memory is badly fragmented.
    This problem is characterized by a low value in the "Largest" column (under 20,000 bytes) of the show memory command, but a sufficient value in the "Freed" column (1MB or more), or some other wide disparity between the two columns. This may happen when the router gets very low on memory, since there is no defragmentation routine in the IOS.
    If you suspect memory fragmentation, shut down some interfaces. This may free the fragmented blocks. If this works, the memory is behaving normally, and all you have to do is add more memory. If shutting down interfaces doesn't help, it may be a bug. The best course of action is to contact your Cisco support representative with the information you have collected.
    >>Further TCP -3- FORKFAIL logs were seen
    003945: Feb 18 02:14:27.401 UTC: %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    -Traceback= 8022E33C 8022E4BC
    003946: Feb 18 02:14:27.585 UTC: %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    -Traceback= 8022E33C 8022E4BC
    003947: Feb 18 02:14:27.761 UTC: %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    -Traceback= 8022E33C 8022E4BC
    003948: Feb 18 02:14:27.929 UTC: %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    -Traceback= 8022E33C 8022E4BC
    003949: Feb 18 02:14:29.149 UTC: %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    -Traceback= 8022E33C 8022E4BC
    According to Error Explanation from Cisco Documentation (http://www.cisco.com/c/en/us/td/docs/ios/12_2sx/system/messages/122sxsms/sm2sx09.html#wp1022051)
    suggests the TCP handles from a client could not be created or initialized
    Error Message %TCP-3-FORKFAIL: Failed to start a process to negotiate options.
    Explanation The system failed to create a process to handle requests  from a client. This condition could be caused by insufficient  memory.
    Recommended Action Reduce other system activity to ease  memory demands.
    But I am still not sure about the exact root cause is as
    1.The GET/GETNEXT / GET BULK messages from SNMP Manager (Here, IBM Tivoli Netcool  ) uses default SNMP Port 161 which is
       UDP and not TCP
    2. If its ICMP Polling failure from IBM Tivoli Netcool , ICMP is Protocol Number 1 in Internet Layer of TCP/IP Protocol Suite  and TCP is Protocol                 Number 6 in the Transport Layer of TCP/IP Protocol Suite .
    So I am still not sure how TCP Protocol Process Failure could have caused ICMP Timeout . Please help !
    Could you please help me on what TCP Protocol Process handles in a Cisco Switch ?
    Regards,
    Anup

  • Can't use memory allocated in C to write then read BitmapData in AS

    Hi all,
    I've been attempting to use Alchemy to allocate a chunk of memory in C, and then write a bitmap to the memory (via getPixels) which is I would then be able to modify using my super fast C image processing functions.  I've been following the "Memory allocation in C with direct access in Actionscript (FAST!!)" section from here.
    The problem is that when I allocate the memory in C, then try to display the image using setImage, all I see is a black box on the screen.  The code below shows how I use getPixels to fill the C memory region with my bitmap data, then use setPixels to fill the BitmapData object which is displayed on the screen.  Does anyone know what I'm doing wrong here?  I've been really stuck on this
    ActionScript variables, and event function which runs after my Bitmap is loaded
            private var _dataPosition:uint;
            private var displayedImage:Image;
            private var bmp:Bitmap;
    public function loaded(e:Event):void {
                bmp = e.target.content as Bitmap;
                // A setImage at the beggining of this function properly displays my image
                displayedImage.setImage(bmp.bitmapData);
                var loader:CLibInit = new CLibInit();
                var lib:Object = loader.init();
                var ns:Namespace = new Namespace("cmodule.alchemyrgr");
                var byteArray:ByteArray = (ns::gstate).ds; //point to memory
                var tmpByteArray:ByteArray = new ByteArray();
                var imgSize:int = bmp.width * bmp.height * 4;
                _dataPosition = lib.initByteArray(imgSize); //This is the position of the data in memory           
                var bounds:Rectangle = new Rectangle(0, 0, bmp.width, bmp.height);
                tmpByteArray = bmp.bitmapData.getPixels(bounds);
                byteArray.readBytes(tmpByteArray, 0, imgSize);
                byteArray.position = _dataPosition;
                bmp.bitmapData.setPixels(bounds, byteArray);
                displayedImage.setImage(bmp.bitmapData);
                //lib.clearByteArray(); //Free the bytearray
    C memory allocation function
    static AS3_Val initByteArray(void* self, AS3_Val args)
        AS3_ArrayValue(args, "IntType", &bufferSize);
        //Allocate buffer of size "bufferSize"
        buffer = (unsigned char*)malloc(bufferSize*sizeof(char));
        //return pointer to the location in memory
        return AS3_Int((int)buffer);
    Thanks in advance!
    Mark

    Hi Mark,
    I too attempted to use a method similar to yours to no avail. I posted my solution for passing bytearray data to/from alchemy here:
    http://forums.adobe.com/thread/773517?tstart=0
    There is full flash code and C++ code so you should be able to answer all your questions just by reading my post. However, one thing I see about how you're passing your pointer back to flash is:
        //return pointer to the location in memory
        return AS3_Int((int)buffer);
    I think should be:
        //return pointer to the location in memory
        return AS3_Ptr(buffer);
    You shouldn't be casting your char array as an int and returning it, just use AS3_Ptr(buffer) and that will return the actual memory address as an int to flash. I'm not 100% sure but I think this could be an issue. I use this method also in my code you can find in the link above so you can see the full implementation there. Hope that helps.

  • Memory increase problem on Solaris

    We need your help in understanding and solving a memory problem in one of our products running on Soalris. The server memory keeps growing and there is a fear of a server crash.
    We've run our product with Purify and libumem to identify memory leaks. Both of these products didn't report any leak. So, we are very much confident that there are no memory leaks in the product. Still the memory increase is seen on Unix systems. We've done extensive analysis on this subject and absorbed some key points regarding memory management in Unix.
    1) Memory doesn't shrink on Unix systems. This is for the libc to retain the released memory and reuse it for further memory requirements.
    2) Based on the memory requirements to our application there can be a stabilization point where in the application can serve all memory requests.
    After reaching this point the Server memory doesn't increase.But the fear is that it may exceed the hardware resources constraint.
    3) Rapid increase in memory can be because of Memory Fragmentation problem. There are environmental variables like Small Block Allocator (_M_SBA_OPTS) and Arena (_M_ARENA_OPTS) on HP-Unix machines which can be used to address Fragmentation issues. We've performed some tests using these variables and found significant improvement in the usage of memory. This confirms that there are no memory leaks. These variables are specific to HP-Unix machines and we are unaware of similar variables/mechanism on Sun Solaris Platform. Please recommend some environmental variables/mechanism on Sun Solaris platform to solve fragmentation problem.
    We are performing some tests to observe memory stabilization over a period of time .
    The memory bloat is following a pattern. Memory is increasing in chunks of (MB) 2,4,8,16,32,64,128,256,512,1024 MB pattern.
    For example if Memory increase is 64 MB, then it stabilizes for some time and the next increase would be 128 MB at a time.
    Then it stabilizes for double the time consumed earlier for 64 MB and after that only increases by 256 MB.
    So the memory increase and stabilization time are getting doubled each time. Please validate our analysis and kindly suggest what can be done on Unix platforms for solving this memory increase problem.

    Thanks MaximKartashev for your inputs.
    Ours is a Multithreading application. We are testing it with Hoard for the last three days. The observation so far has been that the performance of Hoard is high but the bloat pattern is not avoided.
    Even with Hoard, memory bloat is following a pattern. Memory is increasing in chunks of (MB) 2,4,8,16,32,64,128,256,512,1024 MB pattern.
    We are searching for other ways to control this pattern and stabilize the application by making it to reuse the fragmented memory completely.
    We have also tried Solaris libgc memory allocator (http://developers.sun.com/solaris/articles/libgc.html). It worked well initially and memory drop was seen. But on heavy load, it crashed the application with 'Can't allocate header' error. So this can't be used for heavy load.
    We are trying to use Boehm-Demers-Weiser Garbage Collector (http://www.hpl.hp.com/personal/Hans_Boehm/gc/). Do any one have idea, if it controls memory fragmentation ?

  • Dynamic memory allocation failure

    Dear reader,
    We sometimes have a problem where our windows 2012 r2 RDS virtual servers, that reside on windows 2012r2 hyper-v hosts, loose their dynamic memory and only have their startup memory left to work with. Users start complaining that things are very slow etc.
    If I check several screens (RDS Broker load balancing, hyper-v manager, cluster manager and the vm's task manager) it's clear that the vm only has its startup memory allocated. I'm not sure if this happens instantly or immidiatly after the nightly reboot.
    To resolve the problem we have to call all users on the vm where it happens and ask them to logoff (if they are even able to), and then we reboot the machine.
    I have checked the logs from the machine where the VM resides on and the logs from the vm itself. But I cannot find anything. We also have alot of windows 2008r2 vm's with dynamivc memory, but none of those have ever had this problem.
    Searched the internet, but so far it seems we are only.
    Can anyone give me a lead to troubleshoot this?
    Best regards,
    Ruud Boersma
    MCITP Enterprise administrator

    Hi all,
    I'm going to be "one of those people" who revives dead posts for something that is relevant but obviously not fixed... sorry in advance!
    We have the exact same situation, a bunch of RDSH guests with Dynamic memory turned on (60+ of them). every day between 1-8 of them will fail to allocate Dynamic memory and will be stuck on their startup RAM amount. This really hurts our users at peak
    times.
    I have engaged our TAM and have raised a case with PSS, Usual story "your the only one with this problem". Which obviously isn't true.
    So, we have tons of free RAM on the hosts, 600GB+ on most of them, the issue affects RDSH hosts at random, across multiple hosts and clusters.
    The screen shots attached are of one of our hosts from this morning. it has 8GB startup, 8GB minimum, 32GB Maximum RAM configured, with a 23% buffer. the host has 752GB RAM FREE. Notice how the perf counter "Hyper-V Dynamic Memory Integration Service"
    is reporting "0", it should be reporting "32768". also under task manager on the VM we are missing "Maximum memory" which should be just below "Hardware reserved" in the bottom right hand corner.
    Looks like the balloon driver is being delayed at boot time, we are going to XPerf all the servers in the hope that we can catch the critter. It's an unusual problem.
    We only have Acrobat PDF viewer, word viewer, excel viewer and two custom dot.NET applications installed on the guests. Some of the servers are also just dumb RDSH hosts, with not connection broker configured, using an F5 loadbalancer for load distribution
    and session management. All guests are 2012R2 patched up to March 2015, integration Services are installed and up to date (its an enlightened OS remember).

  • Memory Allocation

    I have Premiere Elements 2 and Windows XP SP3. We have 1GB of RAM and 500 GB Hard drive with only 50% used. I save my videos on an external hard drive.
    I have always satifactorily burnt my DVDs with the system as it is, including a short DVD last week. In the last couple of days I've been trying to burn my DVd but Adobe fails part through the burning process as it is running short of memory allocation. We have followed previous instructions on the forum and turned off background applications. Can anyone help? I burnt something much longer without a problem about 3 weeks ago and am a loss as to what to do.
    Thanks Erika

    Thanks. I don't use any stills in my DVD, just music which I import in the way I have always done and it's been ok. For information my audio clips are either MP3 Audio or Windows Media and files are up to 4.3MB. These are ripped from CD via Real Player (Windows Media seems to encode them and I cannot download to Adobe via WM)
    Source: 44100HZ 16 bit and Data rate approx 23.4375 KB.
    SHould I be doing anything else?
    Any further suggestions would be appreciated.
    Kind Regards
    Erika

  • "Memory Allocation Error" when Building a DVD

    Hi all!
    I have a problem. When I start to build a DVD. Encore stops with a "memory allocation error". The project I tried to build is 3.06 GB, so it's must fit to a simple DVD. My HDD has enought free space.
    I tried to build it on two totally different computers but the error is the same. I didn't find any answer for this error. Can anybody help me?
    I use Encore CS4, and the project is made in Premiere Pro CS3.
    The computer #1:
    Windows Vista (but I tried also with XP)
    1 GB RAM
    250 GB HDD
    The computer #2:
    Windows Vista
    2 GB RAM
    160 GB HDD

    I get the same! I was having an issue with video files from my digital camera, so I opened up Premiere CS3, which took them in and encoded them to MPEG-2 just fine (tisk-tisk! Premiere and Encore CS4 both failed to play them or encode them properly!!!)
    Them I put these MP2 files into a project which has 2 menus, 4 video timelines, 2 slideshows with 200+ images and some background audio files (one linked to a menu, another plays in sequence after first finishes). The project is for PAL screen, and it is 4-some Gb, but less than a disk. I have 4Gb of RAM and 6Gb of page file, 70Gb free on my HDD. Running Vista Ultimate x64.
    Slideshows render, and videos do not require transcoding, so the project is ready to build, it starts writing the ISO file, and crashes after 1.8-1.9Gb is written.
    There seems to be no easy way to re-create my slideshow, or I would have just re-built the entire Encore file to see if that would work.
    My PC is overclocked, I admit, I have not tried it without an overclock, but my system has been uber-stable for 12+ months! I will try and report if it fixes anything, but I doubt it. I have also tried to run this build after a fresh reboot with mostly everything turned off, to prevent system conflicts. If that's what it is, I must have missed something. But Encore CS4 is BUGGY LIKE GOD KNOWS WHAT!!!!! This is one crash I can't get around, but it's not the only one I've had. If anyone knows an answer, PLEASE post it here! Adobe guys please please please please! My project's already held up for a month!

  • Memory Allocation Error during Boot

    Hi,
    I am posting this on a different computer than the one on which I istalled Java because I can no longer get it to boot.
    Here's the history:
    I am working in Windows 98
    I added a line to the autoexec.bat so that the PATH lines looked like this:
    SET PATH=C:PROGRA~1\UTILIT~1\SYMATEC\PCANYW~1
    PATH=%PATH%;"C:Program Files\Mts";"C:j2sdk1.4.0_02\bin
    I then rebooted and tried the javac and java commands in different folders and everything worked fine. I shut down the computer and tried to reboot a day later. The following are pieces of the message I received (I don't usually go near the autoexec.bat or system settings so I have no idea how to get past these errors, nor fix them):
    SET PATH=C:PROGRA~1\UTILIT~1\SYMATEC\PCANYW~1
    PATH=C:WINDOWS;C:WINDOWS\COMMAND;C:PROGRA~1\UTILIT~1\SYMATEC\PCANYW~1;"C:Program Files\Mts";"C:j2sdk1.4.0_02\bin
    General Protection Fault in C:WINDOWS\SCANDISK.ALT at 0090:1921
    Memory Allocation Error
    Cannot load COMMAND, system halted
    Please help!
    Thanks,
    Julie

    SET PATH=C:PROGRA~1\UTILIT~1\SYMATEC\PCANYW~1
    PATH=C:WINDOWS;C:WINDOWS\COMMAND;C:PROGRA~1\UTILIT~1\SY
    ATEC\PCANYW~1;"C:Program
    Files\Mts";"C:j2sdk1.4.0_02\bin
    General Protection Fault in C:WINDOWS\SCANDISK.ALT at
    0090:1921This shouldn't have been caused by the Java installation. As I understand the situation, at load time scandisk has been called. This is usually due to the computer not having been shut down properly, or a sign of real problems. However, scandisk is unable to run.
    You should try a forum/newsgroup for Windows for more help. My own suggestion would be to load to the command prompt (or try safe mode). (Press F8 during boot to get a menu.) And then run scandisk manually. If it works, try renaming the C:\WINDOWS\SCANDISK.ALT file and rebooting.
    Regards,
    Bhaveet

Maybe you are looking for