Data memory erasure

How do I erase the data memory from the C7280 printer.  I want to get rid of the printer.

The C7280 does not have a hard drive or other memory that stores information on what is printed, it will forget all this as soon as the power is removed.  It does have a FAX log that stores information on what numbers have sent you faxes as well as your FAX setup information.  This information can be erased by performing a semi-reset as shown in Solution Ten of the page here.  Using # and 6 when performing the reset will perform a more thorough reset.
Bob Headrick,  HP Expert
I am not an employee of HP, I am a volunteer posting here on my own time.
If your problem is solved please click the "Accept as Solution" button ------------V
If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

Similar Messages

  • Why data memory is not completely wiped out while closing a VI?

    I am facing some memory allocation issue in my LabVIEW project. Help me sorting it out. Followed below steps,
    1. Launching LabVIEW 2011.
    2. Checking memory allocation (say it is n kB) 3. Opening my project VI.
    4. Again checking memory allocation (say it is n + 10 kB) 5. Closing the VI.
    6. Again checking memory allocation.
    7. Expected it to be n KB. But it is not. There is some residual memory which is not properly wiped out.
    8. Repeated these same steps for NI example VI (C:\Program Files\National Instruments\LabVIEW 2011\examples\control\PID\Autotuning PID Online with Gain
    Scheduling.vi) found same results.
    Explain me why the data memory allocated while opening the VI is not completely wiped out after closing it.
    We are doing some memeory optimization in our LabVIEW project. So a clear justification is required for this question.
    Thanks,
    Rameshkannan

    mrk1 wrote:
    I am facing some memory allocation issue in my LabVIEW project. Help me sorting it out. Followed below steps,
    1. Launching LabVIEW 2011.
    2. Checking memory allocation (say it is n kB) 3. Opening my project VI.
    4. Again checking memory allocation (say it is n + 10 kB) 5. Closing the VI.
    6. Again checking memory allocation.
    7. Expected it to be n KB. But it is not. There is some residual memory which is not properly wiped out.
    8. Repeated these same steps for NI example VI (C:\Program Files\National Instruments\LabVIEW 2011\examples\control\PID\Autotuning PID Online with Gain
    Scheduling.vi) found same results.
    Explain me why the data memory allocated while opening the VI is not completely wiped out after closing it.
    We are doing some memeory optimization in our LabVIEW project. So a clear justification is required for this question.
    Thanks,
    Rameshkannan
    YOu may be seeing the file alloaction info being cached. LV will try to remeber where it found files so it can find them faster next time.
    I suspect you should ignore that part and focus on the parts of your code that is suffering from memory abuse.
    You can use the Profile VIs tools to locate who is gobling up the memory.
    Then use "show buffer allocations" to figure out where the issue is.
    Post image if you want the gang here to "play along".
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • N73ME not holding time & Date memory

    My N73ME is not holding time & Date memory when switched on again. Anybody can help ?? Tnx

    Your nearest Nokia repair center can help (most likely a hardware problem): http://www.nokia.com/repair

  • Java Card Data Memory

    Hi,
    i am using java card applet for get data & Put data. Here, how can i get storage data memory , available data memory & Free memory.....
    Thanks in advance...
    Edited by: user12298678 on May 26, 2011 2:22 AM

    What is your use case? Do you want to be able to know how much space is available at runtime or is it for development purposes?
    If it is at runtime, you should be allocating all of your memory up front. This way you know your card will always work and you wont just run out of memory at some point and have an operation fail.
    Cheers,
    Shane

  • How to free persistent data memory?

    Hi,
    Recently I have been working on card applet developing.In my applet I want to use EEPROM to hold a large file, so I apply byte array[] in class constructor.
    In Write method I write data to the byte array[]; In Delete method I want to make the byte array[] null,so I used "byte array[] = null".
    When I test it in emluator it works well, the data I wrote in the byte array can be removed. But when I test it in the real card, if I want to delete the file (equals with making the byte array null) I always got the error.
    So I want to know how to free persistent data memory, dos "= null"work?
    Thanks

    Java Cards are not required to support automatic garbage collection, although some do.
    On Java Card there is a feature called object deletion which can be implemented as garbage collection but can also be implemented differently. Please read the related section in the Java Card Runtime Environment Specification.
    With
    javacard.framework.JCSystem.isObjectDeletionSupported()
    you can check if object deletion is supported on your card.
    With
    javacard.framework.JCSystem.requestObjectDeletion()
    you can request it for the next call of the process method.
    And don't forget to clear all your references to the object which is to be deleted.

  • Avoiding data memory duplication in subVI calls

    Hi,
    I am on a Quest to better understand some of the subtle ways of the LabVIEW memory manager. Overall, I want to (as much as practically possible) eliminate calls to the memory manager while the code is running.
    (I mainly do RT code that is expected to run "forever", the more static and "quiet" the memory manager activity is, the faster and simpler it is to prove beyond reasonable doubt that your application does not have memory leaks, and that if will not run into memory fragmentation (out of memory) issues etc. What I like to see as much as possible, are near static "used memory" and "largest contiguous block available" stats over days and weeks of deployed RT code.)
    In my first example (attached, "IPE vs non-IPE.png"), I compared IPE buffer allocation (black dots) for doing some of the operations in an IPE structure vs. "the old way". I see fewer dots the old way, and removed the IPE structure.
    Next I went from initializing an array of size x to values y to using a constant array (0 values) with an "array add" to get an array with the same values as my first version of the code. ("constant array.png")
    The length of the constant array is set to my "worst case" of 25 elements (in example). Since "replace sub-array" does not change the size of the input array even when the sub-array is "too long", this saves me from constantly creating small, variable sized arrays at run-time. (not sure what the run-time cpu/memory hit is if you tried to replace the last 4 elements with a sub-array that is 25 elements long...??)
    Once I arrived at this point, I found myself wondering "how exactly the constant array is handled during run-time?". Is it allocated the first time that this sub-vi is called then remains in memory until the main/top VI terminates, or is it unloaded every time the SubVI finishes execution? (I -think- Mac's could unload, while windows and linux/unix it remains in memory until top level closes?)  When thinking (and hopefully answering),  consider that the the code is compiled to an RTEXE runningg on a cRIO-9014 (vxWorks OS).  
    In this case, I could make the constant array a control, and place the constant on the diagram of the caller, and pipe the constant all the way up to the top level VI, but this seems cumbersome and I'm not convinced that the compiler would properly reckognize that at the end of a long chain of sub-sub-sub VI's all those "controls" are actually always tied off to a single constant. Another way would perhaps be to initialize a FG with this constant array and always "read it" out from the FG. (using this cool trick on creating large arrays on a shift register with only one copy which avoids the dual copy (one for shift register, one from "initialize array" function)).
    This is just one example of many cases where I'm trying to avoid creating memory manager activity by making LabVIEW assign memory space once, then only operate on that data "in-place" as much as possible. In another discussion on "in-place element" structures (here), I got the distinct sense that in-place very rarely adds any advantage as the compiler can pick up on and do "in-place" automatically in pretty much any situation. I find the NI documentation on IPE's lacking in that it doesn't really show good examples of when it works and when it doesn't. In particular, this already great article would vastly benefit from updates showing good/bad use of IPE's.
    I've read the following NI links to try and self-help (all links should open in new window/tab):
    cool trick on creating large arrays on a shift register with only one copy
    somewhat dated but good article on memory optimization
    IPE caveats and recommendations
    How Can I Optimize the Memory Use in My LabVIEW VI?
    Determining When and Where LabVIEW Allocates a New Buffer
    I do have the memory profiler tool, but it shows min/max/average allocations, it doesn't really tell me (or I don't know how to read it properly) how many times blocks are allocated or re-allocated.
    Thanks, and I hope to build on this thread with other examples and at the end of the thread, hopefully everyone have found one or two neat things that they can use to memory optimize their own applications.  Next on my list are probably handling of large strings, lots of array math operations on various input arrays to create a result output array etc.
    -Q
    QFang
    CLD LabVIEW 7.1 to 2013
    Attachments:
    IPE vs non-IPE.png ‏4 KB
    constant array.png ‏3 KB

    I sense a hint of frustration on your part, I'm not trying to be dense or difficult, but do realize that this is more towards the "philosophical" side than "practical" side. Code clarity and practicalities are not necessarily the objectives here.
    Also, I have greatly appreciated all your time and input on this and the other thread!
    The answer to your first question is actually "yes, sort of". I had a RT application that developed a small memory leak (through a bug with the "get volume info.vi' from NI), but to isolate it and prove it out took a very long time because the constant large allocation/deallocations would mask out the leak. (Trace's didn't work out either since it was a very very slow leak and the traces would bomb out before showing anythinng conclusive.) The leak is a few bytes, but in addition to short term memory oscilations and  long term (days) cyclical "saw-tooth" ramps in memory usage, made this very hard to see. A more "static" memory landscape would possibly have made this simpler to narrow down and diagnose. or maybe not. 
    Also, you are missing my point entierely, this is not about "running out of memory" (and the size of 25 in my screen-shot may or may not be what that array (and others) end up being). This is about having things allocated in memory ONCE then not de-allocated or moved, and how/when this is possible to accomplish.  Also this is a quest (meaning something  I'm undertaking to improve and expand my knowledge, who said it has to be practical).
    You may find this document really interesting, its the sort of thing you could end up being forced to code to, albeit, I don't see how 100% compliance with this document would ever be possible in LabVIEW, thats not to say its worthless: JPL Institutional Coding Standard for the C Programming Language (while it is directed at C, they have a lot of valid general points in there.)
    Yes, you are right that the IPE would grow the output if the lenght of my replacement array is not the same, and since I can't share the full VI's its a bit of a stretch to expect people to infer from the small screen dummp that the I32 wires on the right guarantee the lengths will match up in the IPE example.
    Once, on recomendation of NI support, I actually did use the Request deallocation primitive during the hunt for what was going on in that RT app I was debugging last year. At that particular time, the symptom was constant fragmentation of memory, until the largest contiguous block would be less than a couple of kB and the app would terminate with 60+MB of free memory space.. (AKA memory leak, though we could not yet prove that from diagnostic memory consumption statistics due to the constant dynamic behavior of the program)  I later removed them. Also, they would run counter to my goal of "allocate once, re-use forever" that I'm chasing. and again, I'm chasing this more as a way to learn than because all my code MUST run this way. 
    I'm not sure I see what you mean by "copying data in and out of some temporary array". Previously (before the constant array) at every call to the containing sub-vi, I used to "initialize array" with x elements of value y (where x depends to a large degree on a configuration parameter, and y is determined by the input data array). Since I would call to "initialize" a new array each time the code was called, and the size of the array could change, I looked for a way that I could get rid of the dynamic size, and get rid of dynamically creating the array from scratch each time the sub-vi was called. What I came up with is perhaps not as clear as the old way I did it, but with some comments, I think its clear enough. In the new way, the array is created as a constant, so I would think that would cause less "movement" in memory as it at that point should be preventing the "source" array from (potentially) moving around in memory?  Considering the alternative of always re-creating a new array, how is this adding an "extra" copy that creating new ones would not create?
    How would you accomplish the task of creating an array of "n" elements, all of value "y" without creating "extra" copies? -auto-indexing using a for loop is certainly a good option, but again, is that sure to reuse the same memory location with each call? Would that not, in a nit-picking way, use more CPU cycles since you are building the array one element at the time instead of just using a primitive array add operation (which I have found to be wicked fast operations) and operate on a constant data structure?
    I cannot provide full VI's without further isolation, maybe down the road (once my weekends clear up a bit). Again, I appreciate your attention and your time!
    QFang
    CLD LabVIEW 7.1 to 2013

  • ALL Data Memory keeps getting cleared

    My Pearl 8120 memory (calls data, email messages, SMS's etc..) randomly keep getting cleared off. for some reason. 
    Please HELP ME!!! 
    Solved!
    Go to Solution.

    i figured it out...no problem..
    i read the previous posts and figured out theres barely any memory on my phone to sotre anything...

  • Java Card Data Memory - how can a 16k array fit on my 8k card?

    Hi all,
    I tried to guess the memory size I can use in my applets by allocating arrays of bytes.
    I noticed that I am allowed to allocate a lot more memory than my physical RAM. For instance my card is 8KB ram but in my install method I create an array of 16384 bytes. How can it be possible ? Is there a swap mechanism or a virtual memory mechanism like classic computers ? I am working with a Javacard 3.0 Classic.
    Thanks a lot for your explanation.

    lexdabear wrote:
    >
    If you want to create a buffer in RAM you need to use: byte[] buffer = JCSystem.createTransientByteArray(16384);
    Oh, I didn't see this method before :).Thanks for picking that up. That is what I get for typing code into a text box when tired :(
    Correction:
    JCSystem.makeTransientByteArray(length, event)Shane

  • Memory is low after some days

    Hello.
    We're running a NW6.5.8 machine on a HP Proliant ML350 G3. The server works
    well since several years. Three weeks ago the server makes some problems.
    After restarting the machine the memory runs low after 3 or for days. I
    can't see a reason for this.
    Do you have an idea for this?
    Here is my config.txt of this machine:
    Novell File Server Configuration Report For Server: FS1
    Novell File Server Configuration Report Created: Tue, Apr 6, 2010 8:24 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...............: FS1
    OS Version................: v5.70
    OS revision number........: 8
    Product Version...........: v6.50
    Product Revision Number...: 8
    Server Up Time(D:H:M:Sec).: 5:00:07:55
    Serial number.............: XXXXXXXX
    Internal Net. Addr........: 0EB0C408h
    Security Restriction Level: 1
    SFT Level.................: 2
    Engine Type...............: NATIVE
    TTS Level.................: 1
    Total Server memory.......: 2559.60 MB or 2683933696 Bytes
    Processor speed rating....: 200081
    Original cache buffers....: 654204
    Current Cache Buffers.....: 153274
    LRU Sitting Time(D:H:M:S).: 5:00:07:55
    Current FSP's.............: 26
    Current MP FSP's..........: 58
    Current Receive Buffers...: 3000
    Directory cache buffers...: 0
    Workstations Connected....: 48
    Max Workstations Connected: 58
    Server language...........: ENGLISH (4)
    Timesync active...........: Yes
    Time is synchronized......: Yes
    Total Processors..........: 1
    Server DOS Country ID.....: 49
    Server DOS Code Page......: 850
    Boot Loader...............: DOS
    Top of Modules List 286 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
    ADPT160M.HAM v18.33.13 Nov. 17, 2005 Adaptec Ultra160 Host Adapter
    Module
    AD_ASPI.NLM v7.50 Feb. 17, 2006 Backup Exec ASPI Device Driver
    for NetWare
    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
    BKUPEXEC.NLM v9.20 Jan. 11, 2006 Backup Exec SureStart
    BROKER.NLM v3.00.12 Feb. 20, 2008 NDPS Broker
    BSDSOCK.NLM v6.82 Nov. 20, 2007 Novell BSDSOCK Module
    BSPXCOM.NLM v7.90 Apr. 15, 2003 BSPXCOM.NLM v7.90.000, Build
    253
    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 v27510.02.01 Aug. 25, 2008 Controlled Cryptography
    Services from Novell, Inc.
    CDBE.NLM v6.01 Sep. 21, 2006 NetWare Configuration DB
    Engine
    CDDVD.NSS v3.27 Nov. 13, 2008 NSS Loadable Storage System
    (LSS) for CD/UDF (Build 163 MP)
    CERTLCM.NLM v28000806.23 Jun. 23, 2008 Novell SASL EXTERNAL Proxy LCM
    2.8.0.0 20080623
    CERTLSM.NLM v28000806.23 Jun. 23, 2008 Novell SASL EXTERNAL LSM
    2.8.0.0 20080623
    CHARSET.NLM v1.01 Jun. 4, 2003 Display Character Set Support
    For NetWare
    CIOS.NLM v1.60 Feb. 12, 2008 Consolidated IO System
    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
    CLXNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWCLX Runtime Library
    COMN.NSS v3.27 Nov. 13, 2008 NSS Common Support Layer
    (COMN) (Build 163 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
    CPQASM.NLM v1.20 May. 11, 2007 HP ProLiant Server Health
    Driver Tier 2
    CPQBSSA.NLM v7.90 Jul. 6, 2007 HP Insight Management Base
    System Agent
    CPQDASA.NLM v7.90 Jun. 21, 2007 HP Management Array Subsystem
    Agent
    CPQFCASA.NLM v7.90 Jun. 21, 2007 HP Management Fibre Channel
    Array Agent
    CPQHLTH.NLM v5.22 May. 11, 2007 HP ProLiant Server Health
    Driver Tier 1
    CPQHMMO.NLM v3.92 Jun. 10, 2003 Compaq HMMO Services Provider
    for NetWare
    CPQHOST.NLM v7.90 Jul. 6, 2007 HP Insight Management Host
    Agent
    CPQHTHSA.NLM v7.90 Jul. 6, 2007 HP Insight Management Health
    Agent
    CPQIDESA.NLM v7.90 Jun. 21, 2007 HP Management IDE Subsystem
    Agent
    CPQNCSA.NLM v7.90 May. 24, 2007 HP Insight NIC Agent
    CPQRAID.HAM v2.15 Jul. 5, 2005 HP Unified RAID driver
    CPQSCSA.NLM v7.90 Jun. 21, 2007 HP Management SCSI Subsystem
    Agent
    CPQSHD.CDM v2.08 Feb. 19, 2008 HP NWPA SCSI Disk Driver
    CPQSSSA.NLM v7.90 Jun. 21, 2007 HP Management Storage Box
    Subsystem Agent
    CPQTHRSA.NLM v7.90 Jul. 6, 2007 HP Insight Management
    Threshold Agent
    CPQWEBAG.NLM v7.90 Jul. 6, 2007 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
    CRON.NLM v1.70 Jun. 8, 1998 NetWare Scheduler
    CSATPXY.NLM v1.02 Nov. 17, 1999 CS Audit Trail Proxy Agent
    CSAUDIT.NLM v6.00.02 Sep. 4, 2003 CSLIB: Audit Trail Facility
    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
    CSSYSMSG.NLM v1.01.08 Mar. 18, 1999 CSLIB: System Messages
    Facility
    DBNET6.NLM v1.45.02 Mar. 16, 2006 Debug Network IO Support
    DFSLIB.NLM v3.27 Nov. 13, 2008 DFS Common Library (Build 163
    MP)
    DHCPSRVR.NLM v3.14 Oct. 30, 2008 DHCP Server
    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
    DPLSV386.NLM v1.15.01 May. 21, 2007 NetWare 6.x Distributed Print
    Library - DPLSV386
    DPRPCNLM.NLM v3.00.17 Oct. 10, 2006 Novell NDPS RPC Library NLM
    DS.NLM v20216.83 Jul. 6, 2008 Novell eDirectory Version 8.8
    SP3 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 v20216.83 Jul. 6, 2008 Novell eDirectory Version
    8.8.0 Loader SMP
    DSLOG.NLM v20216.83 Jul. 6, 2008 DS Log for Novell eDirectory
    8.8.0
    ETHERTSM.NLM v3.90 Mar. 20, 2006 Novell Ethernet Topology
    Specific Module
    EXPATLBC.NLM v1.00.02 Aug. 31, 2004 Scripting - Expat XML Parser
    Library (LibC Based) 1.95.2
    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
    FLOPPY.HAM v1.03 Feb. 3, 2006 Novell FLOPPY Driver
    GAMS.NLM v2.00 Mar. 19, 2008 Graded Authentication
    Management Service
    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
    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
    IDECD.CDM v4.13 Apr. 4, 2007 Novell ATA/IDE CD/DVD Custom
    Device Module
    IFACE.NLM v7.02.10 Mar. 5, 2010 SAV Interface for NetWare
    INETCFG.NLM v6.51.03 Jul. 17, 2007 Internetworking Configuration
    Production_17July2007
    IPCLINFO.NLM v1.11.01 Dec. 17, 1999 IP Client Info Module
    17Dec99
    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.01.04 Oct. 14, 2008 Novell iPrint Server
    IPXS.NLM v4.10.01 Feb. 12, 1998 NetWare STREAMS IPX Protocol
    IPXSPX.NLM v5.60 Feb. 1, 2006 NetWare IPX/SPX Protocol Stack
    NLM
    JAVA.NLM v1.43 Oct. 16, 2008 java.nlm (based on 1.4.2_18)
    Build 08101613
    JNET.NLM v1.43 Oct. 16, 2008 Java jnet (based on 1.4.2_18)
    JSMSG.NLM v3.27 Nov. 13, 2008 Jetstream Message Layer (Build
    163 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 Nov. 13, 2008 Jetstream TCP Transport Layer
    (Build 163 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 v10310.47 Aug. 9, 2004 Novell Cross-Platform Language
    Manager
    LBURP.NLM v20214.51 Jul. 1, 2008 LDAP Bulkload
    Update/Replication Protocol service extension for Novell eDirectory 8.8
    LCMCIFS2.NLM v2.00.09 Nov. 29, 2005 Windows Native File Access
    Login Methods (Build 84 SP)
    LCMMD5.NLM v28000806.23 Jun. 23, 2008 Novell SASL DIGEST-MD5 Proxy
    LCM 2.8.0.0 20080623
    LDAPSDK.NLM v3.05.02 Jul. 10, 2008 LDAP SDK Library (Clib
    version)
    LDAPXS.NLM v3.05.01 Jul. 10, 2008 (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]
    LIBGCC_S.NLM v3.04.03 Apr. 29, 2005 gcc runtime and intrinsics
    support
    LIBNSS.NLM v3.27 Nov. 13, 2008 Generic Library used by NSS
    (Build 163 MP)
    LIC_API.NLM v2.01 Jun. 30, 1997 License APIs IP020A.G03
    LLDAPSDK.NLM v3.05.02 Jul. 10, 2008 LDAP SDK Library (LibC
    version)
    LLDAPSSL.NLM v3.05.01 Jul. 10, 2008 NetWare SSL Library for LDAP
    SDK (LibC version)
    LLDAPX.NLM v3.05.01 Jul. 10, 2008 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.NLM v4.86 Feb. 2, 2006 Novell NetWare Link Support
    Layer
    LSMAFP3.NLM v2.00.11 May. 10, 2004 Macintosh Native File Access
    Login Methods (Build 103 SP)
    LSMCIFS2.NLM v2.00.07 Nov. 29, 2005 Windows Native File Access
    Login Methods (Build 95 SP)
    LSMMD5.NLM v28000806.23 Jun. 23, 2008 Novell SASL DIGEST-MD5 LSM
    2.8.0.0 20080623
    LSSS.NLM v3.40 Aug. 8, 2008 Novell SecretStore LDAP
    Extension Manager 3.4.1.2
    MAL.NSS v3.27 Nov. 13, 2008 NSS Media Access Layer (MAL)
    (Build 163 MP)
    MALHLP.NLM v3.27 Nov. 13, 2008 NSS Configure help messages
    (Build 163 MP)
    MANAGE.NSS v3.27 Nov. 13, 2008 NSS Management Functions
    (Build 163 MP)
    MASV.NLM v2.00.01 Sep. 2, 2008 Mandatory Access Control
    Service
    MM.NLM v3.22.07 Aug. 20, 2008 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_PHP5.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - Apache 2.0 Module
    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
    NAMED.NLM v6.07.05 Dec. 18, 2009 eDirectory integrated Novell
    DNS Server
    NBI.NLM v3.01.01 Jul. 13, 2007 NetWare Bus Interface
    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
    NCPIPX.NLM v5.60.01 Sep. 30, 2008 Novell NCP/IPX Stack NLM
    NCPNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWNCP Runtime Library
    NDMPD.NLM v9.20 Jan. 25, 2006 Backup Exec NDMP Server
    Module
    NDPSGW.NLM v4.00.17 Aug. 5, 2008 NDPS Gateway
    NDPSM.NLM v3.02.07 Oct. 7, 2008 NDPS Manager
    NDSAUDIT.NLM v2.09 May. 22, 2003 Directory Services Audit
    NDSIMON.NLM v20113.18 Oct. 24, 2007 NDS iMonitor 2.4
    NEB.NLM v5.60 Sep. 27, 2004 Novell Event Bus
    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
    NICISDI.NLM v27510.02.01 Aug. 25, 2008 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 v20216.73 Jul. 10, 2008 LDAP Agent for Novell
    eDirectory 8.8 SP3
    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 v33100811.12 Nov. 12, 2008 Novell Modular Authentication
    Service 3.3.1.0 20081112
    NMASGPXY.NLM v33100811.12 Nov. 12, 2008 NMAS Generic Proxy 3.3.1.0
    20081112
    NMASLDAP.NLM v33100811.12 Nov. 12, 2008 NMAS LDAP Extensions 3.3.1.0
    20081112
    NPKIAPI.NLM v3.32 Sep. 24, 2008 Public Key Infrastructure
    Services
    NPKIT.NLM v3.32 Sep. 24, 2008 Public Key Infrastructure
    Services
    NRLTLI.NLM v9.20 Jan. 11, 2006 Backup Exec - Remote
    Workstation Backup Software
    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
    NSPSAP.NLM v6.20.02 Sep. 8, 2003 NetWare Winsock 2.0 NLM
    NSPSAP.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 Nov. 13, 2008 NSS (Novell Storage Services)
    (Build 163 MP)
    NSSIDK.NSS v3.27 Nov. 13, 2008 NSS Pool Configuration Manager
    (Build 163 MP)
    NSSWIN.NLM v3.27 Nov. 13, 2008 NSS ASCI Window API Library
    (Build 163 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 v20410.01 Aug. 12, 2008 NTLS 2.0.4.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
    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 Nov. 13, 2008 NSS NetWare Semantic Agent
    (NWSA) (Build 163 MP)
    NWSEC.NLM v1.00.02 Sep. 13, 2005 Scripting - Security Library
    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]{""})
    N_PRDDAT.NLM v1.00 Feb. 3, 2003 N_PRDDAT
    OHCIDRV.CAD v1.07 Feb. 26, 2008 Novell Universal Serial Bus
    OHCI driver
    PARTAPI.NLM v2.00 Apr. 17, 2002 Partition APIs for NetWare
    6.1
    PHP2UCS.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - UCS Extension -
    Zend API Number 20041030
    PHP5LIB.NLM v1.00.03 Dec. 6, 2005 PHP 5.0.5 - Script Interpreter
    and Library - Zend API Number 20041030
    PHP_GD2.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - GD2 Extension -
    Zend API Number 20041030
    PHP_LDAP.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - LDAP Extension -
    Zend API Number 20041030
    PHP_OSSL.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - OpenSSL Extension
    - Zend API Number 20041030
    PHP_XML.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - XML Extension -
    Zend API Number 20041030
    PKI.NLM v3.32 Aug. 25, 2008 Novell Certificate Server
    PKIAPI.NLM v2.23.10 Nov. 20, 2004 Public Key Infrastructure
    Services
    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
    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
    Q57.LAN v10.41 Feb. 1, 2007 HP NC10xx/NC32xx/NC67xx/NC77xx
    Gigabit Server Adapter
    QUEUE.NLM v5.60 May. 24, 2001 NetWare Queue Services NLM
    RCONAG6.NLM v6.11 Nov. 20, 2007 RConsole Agent for Netware
    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.06.04 Oct. 23, 2008 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 v20411.47 Jul. 1, 2008 Novell System Abstraction
    Layer Version 2.3.1
    SAS.NLM v1.75 Mar. 13, 2004 Secure Authentication
    Services
    SASDFM.NLM v27510.02.01 Aug. 25, 2008 SAS Data Flow Manager
    SASL.NLM v33100811.12 Nov. 12, 2008 Simple Authentication and
    Security Layer 3.3.1.0 20081112
    SAVENGIN.NLM v3.06 Mar. 5, 2010 SAV Interface engine
    SCRCB.NLM v1.00 Oct. 3, 2005 Scripting - LibC-CLib Context
    Broker
    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.NLM v2.13 Nov. 15, 2005 SERVICE LOCATION PROTOCOL
    (RFC2165/RFC2608)
    SLPDA.NLM v2.13 Nov. 15, 2005 SERVICE LOCATION NDS DIRECTORY
    AGENT (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.NLM v4.18 Jul. 25, 2006 Netware 4.x/5.x/6.x SNMP
    Service
    SPMDCLNT.NLM v33100811.12 Nov. 12, 2008 Novell SPM Client for DClient
    3.3.1.0 20081112
    SPMNWCC.NLM v33100811.12 Nov. 12, 2008 Novell SPM Client for NWCC
    3.3.1.0 20081112
    SSLDP.NLM v3.40 Aug. 8, 2008 Novell SecretStore LDAP
    Transport Plugin 3.4.1.2
    SSNCP.NLM v3.40 Aug. 8, 2008 Novell SecretStore NCP
    Transport Plugin 3.4.1.2
    SSS.NLM v3.40 Aug. 8, 2008 Novell SecretStore 3.4.1.2
    STREAMS.NLM v6.00.06 May. 4, 2005 NetWare STREAMS PTF
    SWEEP.NLM v4.52 Mar. 5, 2010 Sophos Anti-Virus User
    Interface
    SYSLOG.NLM v6.05.03 Oct. 22, 2007 NetWare Logfile Daemon
    TCP.NLM v6.82.04 Sep. 30, 2008 Novell TCP/IP Stack -
    Transport module (NULL encryption)
    TCPIP.NLM v6.82 Nov. 20, 2007 Novell TCP/IP Stack - Network
    module (NULL encryption)
    TCPSTATS.NLM v6.50.10 Jun. 20, 2003 Web Interface for Protocol
    Monitoring
    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.NLM v4.30.02 Dec. 19, 2000 NetWare Transport Level
    Interface Library
    TOOLBOX.NLM v2.16 Aug. 28, 2002 Utility Toolbox for NetWare 4
    - 6
    TSAFS.NLM v6.53.03 Oct. 16, 2008 SMS - File System Agent for
    NetWare 6.X
    TSANDS.NLM v20213.93 Jul. 1, 2008 TSA for Novell eDirectory 7.x,
    8.x
    TUI.NLM v1.05.03 May. 28, 1998 Textual User Interface
    MOAB_B40.528
    UCSCORE.NLM v1.02.02 Oct. 3, 2005 Novell UCS Core NLM
    UNICODE.NLM v7.00 Oct. 26, 2004 NetWare Unicode Runtime
    Library (UniLib-based) [optimized]
    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 Nov. 13, 2008 DFS Volume Location Database
    (VLDB) RPC interface (Build 163 MP)
    VMRPC.NLM v3.27 Nov. 13, 2008 DFS Volume Manager RPC
    interface (Build 163 MP)
    VOLMN.NSS v3.27 Nov. 13, 2008 NSS Distributed Volume Manager
    (Build 163 MP)
    VOLSMS.NLM v3.27 Nov. 13, 2008 NSS Distributed Volume Manager
    (Build 163 MP)
    WPSD.NLM v2.00 Aug. 8, 2005 ServiceDescriptor Natives NLM
    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
    WSPIPX.NLM v6.22 Dec. 4, 2007 NetWare Winsock Service 1.0
    NLM for IPX and SPX
    WSPSSL.NLM v6.26 Dec. 4, 2007 NetWare Winsock Service 1.0
    NLM for SSL
    X509LSM.NLM v1.04 Mar. 31, 2004 Novell X.509 LSM
    XENGEXP.NLM v27510.02.01 Aug. 25, 2008 NICI Import Restricted XENG
    from Novell, Inc.
    XENGNUL.NLM v27510.02.01 Aug. 25, 2008 NICI NULL XENG from Novell,
    Inc.
    XENGUSC.NLM v27510.02.01 Aug. 25, 2008 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
    XIS11.NLM v1.00.02 Apr. 7, 2005 XML Integration Service
    XMGR.NLM v27510.02.01 Aug. 25, 2008 NICI XMGR from Novell, Inc.
    XNGAUSC.NLM v27510.02.01 Aug. 25, 2008 NICI U.S./Worldwide XMGR
    Assistant XENG from Novell, Inc.
    XSUP.NLM v27510.02.01 Aug. 25, 2008 NICI XSUP from Novell, Inc.
    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 Nov. 13, 2008 NSS Journaled Storage System
    (ZLSS) (Build 163 MP)
    End of Modules List 286 Modules Loaded.
    Top of LAN Driver Configuration Listing
    Signature.....: HardwareDriverMLID
    CFG Version...: 1.15
    Node Address..: 0012793A26F8
    Board Number..: 1
    Board Instance: 1
    Media Type....: ETHERNET_II
    MLID Version..: 10.41
    Slot..........: 10007
    I/O...........: None
    Memory........: F5FE0000h -> F5FEFFFFh
    IRQ...........: 5
    DMA...........: None
    Logical Name..: Q57_1_EII_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.............: 496 MB
    Available Space..................: 312 MB
    End of Boot Drive Information
    Top of Storage Device Configuration Information
    Storage Device Summary:
    0x0000 [V024-A0] Legacy FLOPPY Controller
    0x0001 [V024-A0-D1:0] Legacy Floppy
    0x0002 [V100-A100] USB OHCI Controller
    0x0003 [V321-A1] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    0x0004 [V321-A2] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    0x0005 [V025-A3] Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    0x0016 [V025-A3-D0:0] HL-DT-ST DVD-ROM GDR8163B f/w:0E15
    0x0006 [V504-A4] HP Unified RAID Driver
    0x0009 [V504-A4-D0:2] HP Smart Array 642 Slot 1 ID 0 LUN 2
    0x000E DOS Partitioned Media
    0x0015 [V504-A4-D0:2-P10F53] Free Partition Space
    0x0012 [V504-A4-D0:2-P0] NSS Partition
    0x0007 [V504-A4-D0:0] HP Smart Array 642 Slot 1 ID 0 LUN 0
    0x000A DOS Partitioned Media
    0x0013 [V504-A4-D0:0-P21EA6] Free Partition Space
    0x000B [V504-A4-D0:0-P0] Big DOS; OS/2; Win95 Partition
    0x000C [V504-A4-D0:0-P1F6] NSS Partition
    0x000F [V504-A4-D0:0-P2136] NSS Partition
    0x0008 [V504-A4-D0:1] HP Smart Array 642 Slot 1 ID 0 LUN 1
    0x000D DOS Partitioned Media
    0x0014 [V504-A4-D0:1-P10F53] Free Partition Space
    0x0011 [V504-A4-D0:1-P0] NSS Partition
    Storage Device Details:
    [V024-A0] Legacy FLOPPY Controller
    Media Manager object ID..: 0x0000
    Media Manager Object Type: Adapter
    Driver name..............: FLOPPY.HAM
    Assigned driver ID.......: 36
    Adapter number...........: 0
    Primary port address.....: 3F2
    Primary port length......: 4
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 6
    Interrupt 1..............: Not used
    Slot.....................: 0
    DMA0.....................: 2
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V024-A0-D1:0] Legacy Floppy
    Media manager object ID.....: 0x0001
    Media manager Object Type...: Device
    Device type.................: Unknown
    Capacity....................: 0 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 18
    Heads.......................: 2
    Cylinders...................: 80
    Block size, in bytes........: 1474560
    Activated...................: No
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 1
    Device Number...............: 0
    Adapter Number..............: 0
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    [V100-A100] USB OHCI Controller
    Media Manager object ID..: 0x0002
    Media Manager Object Type: Adapter
    Driver name..............: OHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 256
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: B
    Interrupt 1..............: Not used
    Slot.....................: 10011
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0090
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V321-A1] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    Media Manager object ID..: 0x0003
    Media Manager Object Type: Adapter
    Driver name..............: ADPT160M.HAM
    Assigned driver ID.......: 801
    Adapter number...........: 1
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 3
    Interrupt 1..............: Not used
    Slot.....................: 10004
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0010
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V321-A2] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    Media Manager object ID..: 0x0004
    Media Manager Object Type: Adapter
    Driver name..............: ADPT160M.HAM
    Assigned driver ID.......: 801
    Adapter number...........: 2
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 3
    Interrupt 1..............: Not used
    Slot.....................: 10005
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0010
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V025-A3] Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    Media Manager object ID..: 0x0005
    Media Manager Object Type: Adapter
    Driver name..............: IDEATA.HAM
    Assigned driver ID.......: 37
    Adapter number...........: 3
    Primary port address.....: 1F0
    Primary port length......: 8
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: E
    Interrupt 1..............: Not used
    Slot.....................: 0
    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
    [V025-A3-D0:0] HL-DT-ST DVD-ROM GDR8163B f/w:0E15
    Media manager object ID.....: 0x0016
    Media manager Object Type...: Device
    Device type.................: CD-ROM
    Capacity....................: Unavailable
    Unit Size, in bytes.........: 512
    Sectors.....................: 0
    Heads.......................: 0
    Cylinders...................: 0
    Block size, in bytes........: 134215680
    Activated...................: No
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: Yes
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 0
    Adapter Number..............: 3
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    Removable drive mount status: Dismounted
    Removable drive lock status.: Not locked
    [V504-A4] HP Unified RAID Driver
    Media Manager object ID..: 0x0006
    Media Manager Object Type: Adapter
    Driver name..............: CPQRAID.HAM
    Assigned driver ID.......: 1284
    Adapter number...........: 4
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: F
    Interrupt 1..............: Not used
    Slot.....................: 1
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0200
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V504-A4-D0:2] HP Smart Array 642 Slot 1 ID 0 LUN 2
    Media manager object ID.....: 0x0009
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 69120 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 17433
    Block size, in bytes........: 131072
    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...............: 2
    Adapter Number..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000E
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:2-P10F53] Free Partition Space
    Media Manager object ID......: 0x0015
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 142252064
    Size, in sectors.............: 1216
    [V504-A4-D0:2-P0] NSS Partition
    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: 32
    Size, in sectors.............: 142252032
    [V504-A4-D0:0] HP Smart Array 642 Slot 1 ID 0 LUN 0
    Media manager object ID.....: 0x0007
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 138752 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 34866
    Block size, in bytes........: 131072
    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..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000A
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:0-P21EA6] Free Partition Space
    Media Manager object ID......: 0x0013
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 284505280
    Size, in sectors.............: 1280
    [V504-A4-D0:0-P0] Big DOS; OS/2; Win95 Partition
    Media Manager object ID......: 0x000B
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 32
    Size, in sectors.............: 1028128
    [V504-A4-D0:0-P1F6] 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: 1028160
    Size, in sectors.............: 16384000
    [V504-A4-D0:0-P2136] NSS Partition
    Media Manager object ID......: 0x000F
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 17412160
    Size, in sectors.............: 267093120
    [V504-A4-D0:1] HP Smart Array 642 Slot 1 ID 0 LUN 1
    Media manager object ID.....: 0x0008
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 69120 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 17433
    Block size, in bytes........: 131072
    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...............: 1
    Adapter Number..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000D
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:1-P10F53] Free Partition Space
    Media Manager object ID......: 0x0014
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 142252064
    Size, in sectors.............: 1216
    [V504-A4-D0:1-P0] 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: 32
    Size, in sectors.............: 142252032
    End of Storage Device Configuration Information
    * Volume Statistics for SYS *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 7934 MB
    Block Size.................: 4 KB
    Total Blocks...............: 2031143
    Free Blocks................: 351563
    Purgable Blocks............: 33219
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147265132
    Sectors per Block..........: 8
    Free Disk Space............: 1373 MB
    Purgable Disk Space........: 129 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 DATA *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 268529 MB
    Block Size.................: 4 KB
    Total Blocks...............: 68743547
    Free Blocks................: 31780189
    Purgable Blocks............: 411553
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147220714
    Sectors per Block..........: 8
    Free Disk Space............: 124141 MB
    Purgable Disk Space........: 1607 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
    DATA DOS
    DATA MACINTOSH
    DATA NFS
    DATA LONG_NAMES
    Top of NDS/eDirectory Configuration Listing
    NDS Tree Name............: Organisation
    NDS Server Name..........: CN=FS1.O=City.T=Organisation
    NDS Version..............: v20216.83
    sys:_netware attributes..: Hidden System SubDir ImmediatePurge
    Partition Name...........: T=Organisation
    Partition Type...........: Master
    Partition State..........: On
    Partition Name...........: O=City.T=Organisation
    Partition Type...........: Master
    Partition State..........: On
    End of NDS/eDirectory Configuration Listing
    Top of Installed Product List
    Product ID...........: AP2WEB
    Product Version......: 2.0.63
    Product Description..: APACHE2 Web Server and Tomcat 4 Servlet Container
    Product ID...........: APACHE2
    Product Version......: 2.0.63
    Product Description..: APACHE2 Admin Server
    Product ID...........: BNS
    Product Version......: 1.1.0
    Product Description..: Beans for Novell Services
    Product ID...........: C1RPTING
    Product Version......: 1.3.6
    Product Description..: ConsoleOne Reporting Snapin
    Product ID...........: CONSOLE1
    Product Version......: 1.3.6
    Product Description..: ConsoleOne 1.3.6
    Product ID...........: CPQCSP
    Product Version......: 7.91
    Product Description..: HP ProLiant Support Pack (PSP) Utility For Novell
    NetWare
    Product ID...........: DNSDHCP
    Product Version......: 6.2.1
    Product Description..: Novell DNS/DHCP Services
    Product ID...........: EDIR
    Product Version......: 88.3.0
    Product Description..: eDirectory (tm) 8.8 SP3
    Product ID...........: EMBOX
    Product Version......: 88.3.0
    Product Description..: eDirectory Management Utilities Toolbox
    Product ID...........: LDAP
    Product Version......: 88.0.0
    Product Description..: LDAP Services
    Product ID...........: NDPS
    Product Version......: 4.0.7
    Product Description..: iPrint
    Product ID...........: NDS8
    Product Version......: 88.3.0
    Product Description..: eDirectory (tm) 8.8 SP3
    Product ID...........: NICI
    Product Version......: 2.7.4
    Product Description..: Novell International Cryptographic Infrastructure
    (NICI)
    Product ID...........: NICIU0
    Product Version......: 2.7.4
    Product Description..: NICI U.S./Canada (128bit) Crypto XENG
    Product ID...........: NLS
    Product Version......: 5.0.2
    Product Description..: Novell Licensing Services
    Product ID...........: NMAS
    Product Version......: 3.3.0
    Product Description..: Novell Modular Authentication Service
    Product ID...........: NSBS2
    Product Version......: 6.5.8
    Product Description..: Novell Small Business Suite
    Product ID...........: NSN
    Product Version......: 2.0.0
    Product Description..: NSN
    Product ID...........: NTLS
    Product Version......: 2.0.3
    Product Description..: Novell TLS Library
    Product ID...........: OES
    Product Version......: 2.0.0
    Product Description..: Open Enterprise Server
    Product ID...........: OPENWBEM
    Product Version......: 3.1.0
    Product Description..: OpenWBEM
    Product ID...........: PATCHKIT
    Product Version......: 1.0.0
    Product Description..: v1.0 Patch Kit for NetWare 6.5 SP5
    Product ID...........: PERVASIV
    Product Version......: 7.9.4
    Product Description..: Pervasive SQL 2000i
    Product ID...........: PHP
    Product Version......: 5.0.5
    Product Description..: PHP
    Product ID...........: PKIS
    Product Version......: 3.3.2
    Product Description..: Novell Certificate Server
    Product ID...........: PORTAL
    Product Version......: 4.3.0
    Product Description..: NetWare Remote Manager
    Product ID...........: Pattern
    Product Version......: 1.0.0
    Product Description..: Customized NetWare Server
    Product ID...........: Perl
    Product Version......: 5.8.4
    Product Description..: Perl
    Product ID...........: SAS
    Product Version......: 1.7.4
    Product Description..: SSL Security Authentication Services
    Product ID...........: SMS
    Product Version......: 1.1.6
    Product Description..: Storage Management Services
    Product ID...........: SPACK
    Product Version......: 6.5.8
    Product Description..: v8.0 Support Pack for NetWare 6.5
    Product ID...........: SS
    Product Version......: 3.4.0
    Product Description..: Novell SecretStore
    Product ID...........: TOMCAT5
    Product Version......: 5.0.30
    Product Description..: Tomcat 5 Server
    Product ID...........: Tomcat
    Product Version......: 4.1.37
    Product Description..: Tomcat 4 Admin Instance
    Product ID...........: WANMAN
    Product Version......: 1.0.3
    Product Description..: WAN Traffic Manager Services
    Product ID...........: ZDM
    Product Version......: 7.0.1
    Product Description..: ZENworks Desktop Management
    Product ID...........: iFolder
    Product Version......: 2.1.9
    Product Description..: Novell iFolder Storage Services
    Product ID...........: iManager
    Product Version......: 2.7.2
    Product Description..: Novell iManager
    Product ID...........: iMonitor
    Product Version......: 2.4.0
    Product Description..: NDS iMonitor Services
    End of Installed Product List
    Top of Running Java Processes 2 Processes Running
    Class Name...........: com.apcc.m11.arch.application.Application
    Class ID.............: 626
    Class State..........: Running
    Class Name...........: org.apache.catalina.startup.Bootstrap
    Class ID.............: 518
    Class State..........: Running
    End of Running Java Processes
    Top of Server Memory Statistics
    Allocated Memory.................: 961.6 MB
    Cache Buffer Memory..............: 598.7 MB
    Cache Moveable Memory............: 0.0 MB
    Cache Non-moveable Memory........: 0.0 MB
    Code Memory......................: 39.7 MB
    Data Memory......................: 19.2 MB
    Total Work Memory................: 1619.3 MB
    Other Cache Pages Memory.........: 719.0 MB
    System Memory Under 4GB..........: 2559.6 MB
    Total Known Memory...............: 2559.6 MB
    End of Server Memory Statistics
    Top of file. [SYS:ETC\CRONTAB]
    # Run perl script to rotate logs each midnight.
    0 0 * * * perl sys:/apache2/rotate.pl sys:/apache2/rotate.ini --noscreen
    # 30 23 * * 4 sys:/SYSTEM/cr_image.ncf
    15 20 * * 1-5 unload sweep.nlm
    55 23 * * 1-5 sys:/sweep/sweep.nlm
    End of file. [SYS:ETC\CRONTAB]
    Top of file. [SYS:ETC\GATEWAYS]
    # SYS:ETC\GATEWAYS
    # List of unusual routes which must be added to the routing
    # database statically.
    # Normally you will not need this file, as most routing information
    # should be available through the routing protocols.
    # Examples. These entries will not be useful to you.
    #net milnet gateway sj-in5 metric 3 active # to milnet through in5.
    #net arpa gateway sj-in1 passive # to arpanet. in1 is passive.
    #host 130.57.6.40 gateway 192.67.172.55 # route with numbers.
    Net 0 Gateway xxx.xxx.xxx.104 Metric 1 Passive
    End of file. [SYS:ETC\GATEWAYS]
    Top of file. [SYS:ETC\HOSTS]
    # SYS:ETC\HOSTS
    # Mappings of host names and host aliases to IP address.
    127.0.0.1 loopback lb localhost # normal loopback address
    # examples from Novell network
    # 130.57.4.2 ta tahiti ta.novell.com loghost
    # 130.57.6.40 osd-frog frog
    # 130.57.6.144 sj-in5 in5
    # 192.67.172.71 sj-in1 in1
    # interesting addresses on the Internet
    # 192.67.67.20 sri-nic.arpa nic.ddn.mil nic
    # 26.2.0.74 wsmr-simtel20.army.mil simtel20
    xxx.xxx.xxx.102 fs1.intranet.ntb FS1
    xxx.xxx.xxx.203 MAIL_SVR.intranet.ntb MAIL_SVR
    xxx.xxx.xxx.106 dc-01.ntb.local
    xxx.xxx.xxx.107 fs2.intranet.ntb FS2
    End of file. [SYS:ETC\HOSTS]
    Top of file. [SYS:ETC\HOSTNAME]
    xxx.xxx.xxx.102 fs1.intranet.ntb
    End of file. [SYS:ETC\HOSTNAME]
    Top of file. [SYS:ETC\JAVA.CFG]
    End of file. [SYS:ETC\JAVA.CFG]
    Top of file. [SYS:ETC\NETINFO.CFG]
    #!VERSION=2.3
    #! --- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING ----
    #! This file was created by the Internetworking Configuration Console.
    #! It is intended to be modified ONLY by the configurator (INETCFG.NLM).
    #! Tampering with this file may cause severe malfunctioning of the system.
    #! The configurator will check for tampering and abort if it is detected.
    #!SERVERTYPE=NORMAL
    #!UIMODE=NORMAL
    #!BEGINGENLOAD
    LOAD SNMP
    LOAD BCALLSRV
    #!END
    #!BEGINTSMLOAD
    #!END
    #!BEGINBOARD DRVR=Q57 NAME=Q57_1_EII STATUS=ENABLED NUMPORTS=1 DRVRTYPE=LAN
    VARIABLEPORTS=NO PORTPARAM=CHANNEL SLOT=10007
    #Transferred from AUTOEXEC.NCF
    #!BEGINPORT NAME=Q57_1_EII NUMBER=1 STATUS=ENABLED FRAMES=YES NUMLINKS=1
    MEDIA=EtherTsm WANFRAME=UNCONFIGURED
    #Transferred from AUTOEXEC.NCF
    #!REFCOUNT=1
    LOAD Q57 NAME=Q57_1_EII_EII FRAME=ETHERNET_II SLOT=10007
    #!END
    #!END
    #!BEGINPROTO PROTO=TCPIP STATUS=ENABLED
    LOAD Tcpip RIP=No Static=Yes LoadSharing=No Forward=No VIPASupport=No
    #!BEGINBIND STATUS=ENABLED
    BIND IP Q57_1_EII_EII ARP=Yes Mask=255.255.255.0 Address=xxx.xxx.xxx.102
    #xxx.xxx.xxx.102
    #!END
    #!END
    End of file. [SYS:ETC\NETINFO.CFG]
    Top of file. [SYS:ETC\RESOLV.CFG]
    domain intranet.ntb
    domain ntb.local
    nameserver xxx.xxx.xxx.102
    End of file. [SYS:ETC\RESOLV.CFG]
    Top of file. [SYS:ETC\SLP.CFG]
    ; This is a sample of the slp configuration file.
    ; Two types of entries can be made: 1) DA entries, 2) SA Register Filters.
    ; The DA entry allows static configuration of a known DA. This would be
    used
    ; when the DA was out of multicast range and DHCP was not being used to
    ; configure the DA.
    ; The static DA configuration format is as follows 'DA <addr type>,
    <addr>'.
    ; The first word must be "DA". The addr type is the address type.
    Currently, only
    ; IPV4 has been defined. IPV6 will be defined in the future. The addr is
    ; the address specified.
    ; The following is an example of a static DA.
    ; DA IPV4, 130.1.1.1
    ; The SA Register Filter would be used when the administrator wanted all
    services
    ; of a specific service type being mapped to a single scope. For example,
    ; the administrator wanted all "lpr" printers being registered to scope
    "printer".
    ; The format is as follows: 'REGISTER TYPE "<type name>" to SCOPE "<scope
    name>"'.
    ; The parser will look for REGISTER, TYPE, and SCOPE as keywords followed
    by quote on
    ; a single line. Example:
    ; REGISTER TYPE "lpr" to SCOPE "eng"
    ; The last line must contain a line feed and char return. A semi-colon
    specifies a
    ; comment.
    DA IPV4, xxx.xxx.xxx.102
    End of file. [SYS:ETC\SLP.CFG]
    Top of file. [SYS:ETC\TCPIP.CFG]
    AutonomousSystem 0
    Protocol rip off {
    Interface {
    Address xxx.xxx.xxx.102
    Port Q57_1_EII_EII
    Status on
    Cost 1
    Poison off
    SplitHorizon on
    UpdateTime 30
    GarbageTime 120
    ExpireTime 180
    OriginateDefault off
    Version ripI
    Mode normal
    Protocol egp off {
    Protocol ospf off {
    Interface {
    Address xxx.xxx.xxx.102
    Port Q57_1_EII_EII
    Status on
    Cost 1
    AreaId 0.0.0.0
    Priority 1
    RetransmissionInterval 5
    TransitDelay 1
    HelloInterval 10
    RouterDeadInterval 40
    Nbma {
    PollInterval 120
    Neighbor {
    Interface {
    Address xxx.xxx.xxx.102
    AddressMask 255.255.255.0
    Port Q57_1_EII_EII
    Type lan
    RouterDiscovery no
    SolicitationAddress multicast
    NATStatus Disabled
    SecIPStatus Disabled
    TOSStatus Disabled
    TOSValue 0
    ARPTimerStatus Disabled
    ARPCacheUpdateTimeout 300
    ARPCacheStaleTimeout 300
    GroupedInterface no
    PrimaryInterface no
    LBPolicy 0
    Arpable yes
    NetworkAddress xxx.xxx.xxx.0
    VIPASupport Enabled
    BdgStatus Enabled
    ForwardIPSourceRouting off
    NATFiltering off
    Deadgatewaydetection off {
    T0 30
    T1 2
    LoadBalancing off {
    LBInterval 2
    FaultTolerance on {
    FTInterval 2
    DefIPAddr 0.0.0.0
    End of file. [SYS:ETC\TCPIP.CFG]
    Top of file. [SYS:ETC\IPWAN.CFG]
    End of file. [SYS:ETC\IPWAN.CFG]
    Top of file. [SYS:SYSTEM\ABEND.LOG]
    File size is 177707 bytes.
    PVER: 6.50.07
    Server FS1 halted Tuesday, 25 March 2008 17.31.47,196
    Abend 1 on P00: Server-5.70.07: Page Fault Processor Exception (Error code
    00000000)
    Registers:
    CS = 0008 DS = 0023 ES = 0023 FS = 0023 GS = 0023 SS = 0010
    EAX = 00000001 EBX = 00000000 ECX = 00000000 EDX = 00000202
    ESI = 41035242 EDI = 00000000 EBP = A4EF2A04 ESP = A4EF29E4
    EIP = 971A9187 FLAGS = 00010293
    971A9187 3808 C

    Hello Andrew.
    Thanks for your answer.
    >>> ataubman<[email protected]> schrieb am Donnerstag, 8.
    April
    2010 um 01:46:
    > That looks basically fine, although the CPQ drivers and utilities are
    > really old and need updating from HP.
    >
    > What actual symptoms are you seeing, any errors or messages? Post them
    > here verbatim, if so.
    >
    > Can you please get SEG version 2 from 'Cool Solutions: SEG.NLM: NetWare
    > Memory Analyzer' (http://www.novell.com/coolsolutions/tools/14445.html),
    > load it, wait til the problem occurs, and get a copy of the segstats.txt
    > for the server (load seg, then from the seg main screen '/' ‑> Info
    ‑>
    > Write Segstats) then post that here.
    >
    > Can you also get config.nlm from fconfig17.zip, extract it to
    > SYS:SYSTEM on the problem server and do a "load config /jumba1se" from
    > the server, then post the resulting sys:system\config.txt, after
    > removing the file listing that occurs after the set commands, and any
    > sensitive infomation‑ eg serial number, public IP addresses, snmp
    > community strings, remote access passwords etc.
    Here is the Config.txt content:
    Novell File Server Configuration Report For Server: Fileserver
    Novell File Server Configuration Report Created: Thu, Apr 8, 2010 9:26 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...............: Fileserver
    OS Version................: v5.70
    OS revision number........: 8
    Product Version...........: v6.50
    Product Revision Number...: 8
    Server Up Time(D:H:M:Sec).: 0:00:39:05
    Serial number.............: XXXXXXXX
    Internal Net. Addr........: 0EB0C408h
    Security Restriction Level: 1
    SFT Level.................: 2
    Engine Type...............: NATIVE
    TTS Level.................: 1
    Total Server memory.......: 2559.60 MB or 2683933696 Bytes
    Processor speed rating....: 251285
    Original cache buffers....: 654207
    Current Cache Buffers.....: 481131
    LRU Sitting Time(D:H:M:S).: 0:00:39:04
    Current FSP's.............: 18
    Current MP FSP's..........: 45
    Current Receive Buffers...: 3000
    Directory cache buffers...: 0
    Workstations Connected....: 64
    Max Workstations Connected: 64
    Server language...........: ENGLISH (4)
    Timesync active...........: Yes
    Time is synchronized......: Yes
    Total Processors..........: 1
    Server DOS Country ID.....: 49
    Server DOS Code Page......: 850
    Boot Loader...............: DOS
    Top of LAN Driver Configuration Listing
    Signature.....: HardwareDriverMLID
    CFG Version...: 1.15
    Node Address..: 0012793A26F8
    Board Number..: 1
    Board Instance: 1
    Media Type....: ETHERNET_II
    MLID Version..: 10.70
    Slot..........: 10007
    I/O...........: None
    Memory........: F5FE0000h -> F5FEFFFFh
    IRQ...........: 5
    DMA...........: None
    Logical Name..: Q57_1_EII_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.............: 496 MB
    Available Space..................: 312 MB
    End of Boot Drive Information
    Top of Storage Device Configuration Information
    Storage Device Summary:
    0x0000 [V024-A0] Legacy FLOPPY Controller
    0x0001 [V024-A0-D1:0] Legacy Floppy
    0x0002 [V100-A100] USB OHCI Controller
    0x0003 [V321-A1] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    0x0004 [V321-A2] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    0x0005 [V025-A3] Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    0x0016 [V025-A3-D0:0] HL-DT-ST DVD-ROM GDR8163B f/w:0E15
    0x0006 [V504-A4] HP Unified RAID Driver
    0x0009 [V504-A4-D0:2] HP Smart Array 642 Slot 1 ID 0 LUN 2
    0x000E DOS Partitioned Media
    0x0015 [V504-A4-D0:2-P10F53] Free Partition Space
    0x0012 [V504-A4-D0:2-P0] NSS Partition
    0x0007 [V504-A4-D0:0] HP Smart Array 642 Slot 1 ID 0 LUN 0
    0x000A DOS Partitioned Media
    0x0013 [V504-A4-D0:0-P21EA6] Free Partition Space
    0x000B [V504-A4-D0:0-P0] Big DOS; OS/2; Win95 Partition
    0x000C [V504-A4-D0:0-P1F6] NSS Partition
    0x000F [V504-A4-D0:0-P2136] NSS Partition
    0x0008 [V504-A4-D0:1] HP Smart Array 642 Slot 1 ID 0 LUN 1
    0x000D DOS Partitioned Media
    0x0014 [V504-A4-D0:1-P10F53] Free Partition Space
    0x0010 [V504-A4-D0:1-P0] NSS Partition
    Storage Device Details:
    [V024-A0] Legacy FLOPPY Controller
    Media Manager object ID..: 0x0000
    Media Manager Object Type: Adapter
    Driver name..............: FLOPPY.HAM
    Assigned driver ID.......: 36
    Adapter number...........: 0
    Primary port address.....: 3F2
    Primary port length......: 4
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 6
    Interrupt 1..............: Not used
    Slot.....................: 0
    DMA0.....................: 2
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V024-A0-D1:0] Legacy Floppy
    Media manager object ID.....: 0x0001
    Media manager Object Type...: Device
    Device type.................: Unknown
    Capacity....................: 0 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 18
    Heads.......................: 2
    Cylinders...................: 80
    Block size, in bytes........: 1474560
    Activated...................: No
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 1
    Device Number...............: 0
    Adapter Number..............: 0
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    [V100-A100] USB OHCI Controller
    Media Manager object ID..: 0x0002
    Media Manager Object Type: Adapter
    Driver name..............: OHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 256
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: B
    Interrupt 1..............: Not used
    Slot.....................: 10011
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0090
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V321-A1] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    Media Manager object ID..: 0x0003
    Media Manager Object Type: Adapter
    Driver name..............: ADPT160M.HAM
    Assigned driver ID.......: 801
    Adapter number...........: 1
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 3
    Interrupt 1..............: Not used
    Slot.....................: 10004
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0010
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V321-A2] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    Media Manager object ID..: 0x0004
    Media Manager Object Type: Adapter
    Driver name..............: ADPT160M.HAM
    Assigned driver ID.......: 801
    Adapter number...........: 2
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 3
    Interrupt 1..............: Not used
    Slot.....................: 10005
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0010
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V025-A3] Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    Media Manager object ID..: 0x0005
    Media Manager Object Type: Adapter
    Driver name..............: IDEATA.HAM
    Assigned driver ID.......: 37
    Adapter number...........: 3
    Primary port address.....: 1F0
    Primary port length......: 8
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: E
    Interrupt 1..............: Not used
    Slot.....................: 0
    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
    [V025-A3-D0:0] HL-DT-ST DVD-ROM GDR8163B f/w:0E15
    Media manager object ID.....: 0x0016
    Media manager Object Type...: Device
    Device type.................: CD-ROM
    Capacity....................: Unavailable
    Unit Size, in bytes.........: 512
    Sectors.....................: 0
    Heads.......................: 0
    Cylinders...................: 0
    Block size, in bytes........: 134215680
    Activated...................: No
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: Yes
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 0
    Adapter Number..............: 3
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    Removable drive mount status: Dismounted
    Removable drive lock status.: Not locked
    [V504-A4] HP Unified RAID Driver
    Media Manager object ID..: 0x0006
    Media Manager Object Type: Adapter
    Driver name..............: CPQRAID.HAM
    Assigned driver ID.......: 1284
    Adapter number...........: 4
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: F
    Interrupt 1..............: Not used
    Slot.....................: 1
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0200
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V504-A4-D0:2] HP Smart Array 642 Slot 1 ID 0 LUN 2
    Media manager object ID.....: 0x0009
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 69120 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 17433
    Block size, in bytes........: 131072
    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...............: 2
    Adapter Number..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000E
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:2-P10F53] Free Partition Space
    Media Manager object ID......: 0x0015
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 142252064
    Size, in sectors.............: 1216
    [V504-A4-D0:2-P0] NSS Partition
    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: 32
    Size, in sectors.............: 142252032
    [V504-A4-D0:0] HP Smart Array 642 Slot 1 ID 0 LUN 0
    Media manager object ID.....: 0x0007
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 138752 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 34866
    Block size, in bytes........: 131072
    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..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000A
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:0-P21EA6] Free Partition Space
    Media Manager object ID......: 0x0013
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 284505280
    Size, in sectors.............: 1280
    [V504-A4-D0:0-P0] Big DOS; OS/2; Win95 Partition
    Media Manager object ID......: 0x000B
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 32
    Size, in sectors.............: 1028128
    [V504-A4-D0:0-P1F6] 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: 1028160
    Size, in sectors.............: 16384000
    [V504-A4-D0:0-P2136] NSS Partition
    Media Manager object ID......: 0x000F
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 17412160
    Size, in sectors.............: 267093120
    [V504-A4-D0:1] HP Smart Array 642 Slot 1 ID 0 LUN 1
    Media manager object ID.....: 0x0008
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 69120 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 17433
    Block size, in bytes........: 131072
    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...............: 1
    Adapter Number..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000D
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:1-P10F53] Free Partition Space
    Media Manager object ID......: 0x0014
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 142252064
    Size, in sectors.............: 1216
    [V504-A4-D0:1-P0] NSS Partition
    Media Manager object ID......: 0x0010
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 32
    Size, in sectors.............: 142252032
    End of Storage Device Configuration Information
    * Volume Statistics for SYS *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 7933 MB
    Block Size.................: 4 KB
    Total Blocks...............: 2031080
    Free Blocks................: 319471
    Purgable Blocks............: 60225
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147261491
    Sectors per Block..........: 8
    Free Disk Space............: 1247 MB
    Purgable Disk Space........: 235 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 DATA *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 268528 MB
    Block Size.................: 4 KB
    Total Blocks...............: 68743338
    Free Blocks................: 31625590
    Purgable Blocks............: 498549
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147209156
    Sectors per Block..........: 8
    Free Disk Space............: 123537 MB
    Purgable Disk Space........: 1947 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
    DATA DOS
    DATA MACINTOSH
    DATA NFS
    DATA LONG_NAMES
    Top of NDS/eDirectory Configuration Listing
    NDS Tree Name............: TREE
    NDS Server Name..........: CN=Fileserver.O=Han.T=TREE
    NDS Version..............: v20216.83
    sys:_netware attributes..: Hidden System SubDir ImmediatePurge
    *.NDS files..........: 402 (18.1 MB)
    *.DSD files..........: 1 (0 bytes)
    *.DSB files..........: 0 (0 bytes)
    NDS.* files..........: 5 (28.9 MB)
    NDS*.LOG files.......: 0 (0 bytes)
    NDO.* files..........: 3 (21.2 MB)
    NDO*.LOG files.......: 0 (0 bytes)
    *.41X files..........: 0 (0 bytes)
    *.OLD files..........: 0 (0 bytes)
    *.DOD files..........: 0 (0 bytes)
    *.DOB files..........: 0 (0 bytes)
    *.__D files..........: 0 (0 bytes)
    *.__B files..........: 0 (0 bytes)
    *.DTD files..........: 0 (0 bytes)
    *.DTB files..........: 0 (0 bytes)
    *.TAO files..........: 0 (0 bytes)
    *.WBQ files..........: 0 (0 bytes)
    Partition Name...........: T=TREE
    Partition Type...........: Master
    Partition State..........: On
    Partition Name...........: O=Han.T=TREE
    Partition Type...........: Master
    Partition State..........: On
    End of NDS/eDirectory Configuration Listing
    Top of Running Java Processes 2 Processes Running
    Class Name...........: com.apcc.m11.arch.application.Application
    Class ID.............: 729
    Class State..........: Running
    Class Name...........: org.apache.catalina.startup.Bootstrap
    Class ID.............: 641
    Class State..........: Running
    End of Running Java Processes
    Top of Server Memory Statistics
    Allocated Memory.................: 255.5 MB
    Cache Buffer Memory..............: 1879.4 MB
    Cache Moveable Memory............: 0.0 MB
    Cache Non-moveable Memory........: 0.0 MB
    Code Memory......................: 38.7 MB
    Data Memory......................: 19.0 MB
    Total Work Memory................: 2192.6 MB
    Other Cache Pages Memory.........: 1719.4 MB
    System Memory Under 4GB..........: 2559.6 MB
    Total Known Memory...............: 2559.6 MB
    End of Server Memory Statistics
    Top of SM BIOS Information
    BIOS Information
    Vendor.........................: Compaq
    Version........................: D14
    Starting Address Segment.......: F000h
    Release Date...................: 09/15/2004
    ROM Size.......................: 1984 kB
    ISA Supported..................: No
    MCA Supported..................: No
    EISA Supported.................: No
    PCI Supported..................: Yes
    PC Card (PCMCIA) Supported.....: No
    Plug and Play Supported........: Yes
    APM Supported..................: No
    Flash BIOS.....................: Yes
    BIOS Shadowing Allowed.........: Yes
    VL-VESA Supported..............: No
    ESCD Supported.................: No
    Boot From CD Supported.........: Yes
    Selectable Boot Supported......: Yes
    BIOS ROM Socketed..............: No
    Boot From PC Card Supported....: No
    EDD Supported..................: No
    ACPI Supported.................: Yes
    Legacy USB Supported...........: Yes
    AGP Supported..................: No
    I2O Boot Supported.............: No
    LS-120 Boot Supported..........: No
    ZIP Drive Boot Supported.......: No
    1394 Boot Supported............: No
    Smart Battery Supported........: No
    BIOS Boot Spec. Supported......: Yes
    Network Boot Supported.........: No
    System Information
    Manufacturer...................: Compaq
    Product Name...................: ProLiant ML350 G3
    Version........................: N/A
    Serial Number..................: 8087KZRZ3P
    Universal Unique ID............: 38303837 4B5A525A 33502020 20202020
    Wake-up Type...................: Power Switch
    System Enclosure
    Manufacturer...................: Compaq
    Type...........................: Rack Mount Chassis
    Version........................: N/A
    Serial Number..................: 8087KZRZ3P
    Asset Tag Number...............:
    Bootup State...................: Unknown
    Power Supply State.............: Unknown
    Thermal State..................: Unknown
    Security Status................: Unknown
    Processor Information
    Socket Designation.............: Proc 1
    Processor Type.................: Central Processor
    Processor Family...............: Intel Xeon
    Processor Manufacturer.........: Intel
    Processor ID...................: BFEBFBFF 00000F29
    Processor Version..............: N/A
    Voltage........................: 1 V
    External Clock.................: 533 MHz
    Max Speed......................: 3600 MHz
    Current Speed..................: 3066 MHz
    Socket Populated...............: Yes
    Status.........................: Enabled
    Processor Upgrade..............: ZIF Socket
    L1 Cache.......................: 8 kB
    L2 Cache.......................: 512 kB
    L3 Cache.......................: N/A
    Processor Information
    Socket Designation.............: Proc 2
    Processor Type.................: Central Processor
    Processor Family...............: Intel Xeon
    Processor Manufacturer.........: Intel
    Processor ID...................: 00000000 00000000
    Processor Version..............: N/A
    Voltage........................: 1 V
    External Clock.................: 100 MHz
    Max Speed......................: 3600 MHz
    Current Speed..................: N/A
    Socket Populated...............: No
    Status.........................: Unknown
    Processor Upgrade..............: ZIF Socket
    L1 Cache.......................: N/A
    L2 Cache.......................: N/A
    L3 Cache.......................: N/A
    Cache Information
    Socket Designation.............: Processor 1 Internal L1 Cache
    Operational Mode...............: Write Back
    Enabled........................: Yes
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 1
    Maximum Size...................: 32 kB
    Installed Size.................: 8 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: 4-way Set-Associative
    Cache Information
    Socket Designation.............: Processor 2 Internal L1 Cache
    Operational Mode...............: Unknown
    Enabled........................: No
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 1
    Maximum Size...................: 32 kB
    Installed Size.................: 0 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: 4-way Set-Associative
    Cache Information
    Socket Designation.............: Processor 1 Internal L2 Cache
    Operational Mode...............: Write Back
    Enabled........................: Yes
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 2
    Maximum Size...................: 2048 kB
    Installed Size.................: 512 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: Other
    Cache Information
    Socket Designation.............: Processor 2 Internal L2 Cache
    Operational Mode...............: Unknown
    Enabled........................: No
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 2
    Maximum Size...................: 2048 kB
    Installed Size.................: 0 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: Other
    Cache Information
    Socket Designation.............: Processor 1 Internal L3 Cache
    Operational Mode...............: Write Back
    Enabled........................: Yes
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 3
    Maximum Size...................: 1024 kB
    Installed Size.................: 0 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: Other
    Cache Information
    Socket Designation.............: Processor 2 Internal L3 Cache
    Operational Mode...............: Unknown
    Enabled........................: No
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 3
    Maximum Size...................: 1024 kB
    Installed Size.................: 0 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: Other
    Port Connector Information
    Internal Reference Designator..: J50
    Internal Connector Type........: Access Bus (USB)
    External Reference Designator..: USB Port 1
    External Connector Type........: Access Bus (USB)
    Port Type......................: USB
    Port Connector Information
    Internal Reference Designator..: J50
    Internal Connector Type........: Access Bus (USB)
    External Reference Designator..: USB Port 2
    External Connector Type........: Access Bus (USB)
    Port Type......................: USB
    System Slots
    Slot Designation...............: PCI Slot 1
    Slot Type......................: PCI-X
    Slot Data Bus Width............: 64 bit
    Current Usage..................: In use
    Slot Length....................: Long
    Provides 5.0 Volts.............: No
    Provides 3.3 Volts.............: Yes
    Shared Slot....................: No
    Hot-plug Devices Supported.....: No
    System Slots
    Slot Designation...............: PCI Slot 2
    Slot Type......................: PCI-X
    Slot Data Bus Width............: 64 bit
    Current Usage..................: Available
    Slot Length....................: Long
    Provides 5.0 Volts.............: No
    Provides 3.3 Volts.............: Yes
    Shared Slot....................: No
    Hot-plug Devices Supported.....: No
    System Slots
    Slot Designation...............: PCI Slot 3
    Slot Type......................: PCI-X
    Slot Data Bus Width............: 64 bit
    Current Usage..................: Available
    Slot Length....................: Long
    Provides 5.0 Volts.............: No
    Provides 3.3 Volts.............: Yes
    Shared Slot....................: No
    Hot-plug Devices Supported.....: No
    System Slots
    Slot Designation...............: PCI Slot 4
    Slot Type......................: PCI-X
    Slot Data Bus Width............: 64 bit
    Current Usage..................: Available
    Slot Length....................: Long
    Provides 5.0 Volts.............: No
    Provides 3.3 Volts.............: Yes
    Shared Slot....................: No
    Hot-plug Devices Supported.....: No
    System Slots
    Slot Designation...............: PCI Slot 5
    Slot Type......................: PCI
    Slot Data Bus Width............: 32 bit
    Current Usage..................: Available
    Slot Length....................: Short
    Provides 5.0 Volts.............: Yes
    Provides 3.3 Volts.............: No
    Shared Slot....................: No
    Hot-plug Devices Supported.....: No
    Physical Memory Array
    Location.......................: System Board or Motherboard
    Use............................: System Memory
    Memory Error Correction........: Single-bit ECC
    Maximum Capacity...............: 8192 MB
    Error Detected.................: N/A
    Number of Memory Devices.......: 4
    Memory Device
    Error Detected.................: N/A
    Total Width....................: 72 bits
    Data Width.....................: 64 bits
    Size...........................: 512 MB
    Form Factor....................: DIMM
    Device Locator.................: DIMM 01
    Bank Locator...................: N/A
    Memory Type....................: DDR
    Memory Type Details............: CMOS
    Speed..........................: 266 MHz
    Memory Device
    Error Detected.................: N/A
    Total Width....................: 72 bits
    Data Width.....................: 64 bits
    Size...........................: 512 MB
    Form Factor....................: DIMM
    Device Locator.................: DIMM 02
    Bank Locator...................: N/A
    Memory Type....................: DDR
    Memory Type Details............: CMOS
    Speed..........................: 266 MHz
    Memory Device
    Error Detected.................: N/A
    Total Width....................: 72 bits
    Data Width.....................: 64 bits
    Size...........................: 512 MB
    Form Factor....................: DIMM
    Device Locator.................: DIMM 03
    Bank Locator...................: N/A
    Memory Type....................: DDR
    Memory Type Details............: CMOS
    Speed..........................: 266 MHz
    Memory Device
    Error Detected.................: N/A
    Total Width....................: 72 bits
    Data Width.....................: 64 bits
    Size...........................: 1024 MB
    Form Factor....................: DIMM
    Device Locator.................: DIMM 04
    Bank Locator...................: N/A
    Memory Type....................: DDR
    Memory Type Details............: CMOS
    Speed..........................: 266 MHz
    End of SM BIOS Info
    Top of file. [SYS:ETC\CRONTAB]
    # Run perl script to rotate logs each midnight.
    0 0 * * * perl sys:/apache2/rotate.pl sys:/apache2/rotate.ini --noscreen
    # 30 23 * * 4 sys:/SYSTEM/cr_image.ncf
    End of file. [SYS:ETC\CRONTAB]
    Top of file. [SYS:ETC\GATEWAYS]
    # SYS:ETC\GATEWAYS
    # List of unusual routes which must be added to the routing
    # database statically.
    # Normally you will not need this file, as most routing information
    # should be available through the routing protocols.
    # Examples. These entries will not be useful to you.
    #net milnet gateway sj-in5 metric 3 active # to milnet through in5.
    #net arpa gateway sj-in1 passive # to arpanet. in1 is passive.
    #host 130.57.6.40 gateway 192.67.172.55 # route with numbers.
    Net 0 Gateway xxx.xxx.xxx.104 Metric 1 Passive
    End of file. [SYS:ETC\GATEWAYS]
    Top of file. [SYS:ETC\HOSTS]
    # SYS:ETC\HOSTS
    # Mappings of host names and host aliases to IP address.
    127.0.0.1 loopback lb localhost # normal loopback address
    # examples from Novell network
    # 130.57.4.2 ta tahiti ta.novell.com loghost
    # 130.57.6.40 osd-frog frog
    # 130.57.6.144 sj-in5 in5
    # 192.67.172.71 sj-in1 in1
    # interesting addresses on the Internet
    # 192.67.67.20 sri-nic.arpa nic.ddn.mil nic
    # 26.2.0.74 wsmr-simtel20.army.mil simtel20
    xxx.xxx.xxx.102 Fileserver.local.net Fileserver
    xxx.xxx.xxx.203 MAIL.local.net MAIL
    xxx.xxx.xxx.106 dc-01.local.net2
    xxx.xxx.xxx.107 Fileserver2.local.net Fileserver2
    End of file. [SYS:ETC\HOSTS]
    Top of file. [SYS:ETC\HOSTNAME]
    xxx.xxx.xxx.102 Fileserver.local.net
    End of file. [SYS:ETC\HOSTNAME]
    Top of file. [SYS:ETC\JAVA.CFG]
    End of file. [SYS:ETC\JAVA.CFG]
    Top of file. [SYS:ETC\NETINFO.CFG]
    #!VERSION=2.3
    #! --- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING ----
    #! This file was created by the Internetworking Configuration Console.
    #! It is intended to be modified ONLY by the configurator (INETCFG.NLM).
    #! Tampering with this file may cause severe malfunctioning of the system.
    #! The configurator will check for tampering and abort if it is detected.
    #!SERVERTYPE=NORMAL
    #!UIMODE=NORMAL
    #!BEGINGENLOAD
    LOAD SNMP
    LOAD BCALLSRV
    #!END
    #!BEGINTSMLOAD
    #!END
    #!BEGINBOARD DRVR=Q57 NAME=Q57_1_EII STATUS=ENABLED NUMPORTS=1 DRVRTYPE=LAN
    VARIABLEPORTS=NO PORTPARAM=CHANNEL SLOT=10007
    #Transferred from AUTOEXEC.NCF
    #!BEGINPORT NAME=Q57_1_EII NUMBER=1 STATUS=ENABLED FRAMES=YES NUMLINKS=1
    MEDIA=EtherTsm WANFRAME=UNCONFIGURED
    #Transferred from AUTOEXEC.NCF
    #!REFCOUNT=1
    LOAD Q57 NAME=Q57_1_EII_EII FRAME=ETHERNET_II SLOT=10007
    #!END
    #!END
    #!BEGINPROTO PROTO=TCPIP STATUS=ENABLED
    LOAD Tcpip RIP=No Static=Yes LoadSharing=No Forward=No VIPASupport=No
    #!BEGINBIND STATUS=ENABLED
    BIND IP Q57_1_EII_EII ARP=Yes Mask=255.255.255.0 Address=xxx.xxx.xxx.102
    #xxx.xxx.xxx.102
    #!END
    #!END
    End of file. [SYS:ETC\NETINFO.CFG]
    Top of file. [SYS:ETC\RESOLV.CFG]
    domain local.net
    domain local.net2
    nameserver xxx.xxx.xxx.102
    End of file. [SYS:ETC\RESOLV.CFG]
    Top of file. [SYS:ETC\SLP.CFG]
    ; This is a sample of the slp configuration file.
    ; Two types of entries can be made: 1) DA entries, 2) SA Register Filters.
    ; The DA entry allows static configuration of a known DA. This would be
    used
    ; when the DA was out of multicast range and DHCP was not being used to
    ; configure the DA.
    ; The static DA configuration format is as follows 'DA <addr type>,
    <addr>'.
    ; The first word must be "DA". The addr type is the address type.
    Currently, only
    ; IPV4 has been defined. IPV6 will be defined in the future. The addr is
    ; the address specified.
    ; The following is an example of a static DA.
    ; DA IPV4, 130.1.1.1
    ; The SA Register Filter would be used when the administrator wanted all
    services
    ; of a specific service type being mapped to a single scope. For example,
    ; the administrator wanted all "lpr" printers being registered to scope
    "printer".
    ; The format is as follows: 'REGISTER TYPE "<type name>" to SCOPE "<scope
    name>"'.
    ; The parser will look for REGISTER, TYPE, and SCOPE as keywords followed
    by quote on
    ; a single line. Example:
    ; REGISTER TYPE "lpr" to SCOPE "eng"
    ; The last line must contain a line feed and char return. A semi-colon
    specifies a
    ; comment.
    DA IPV4, xxx.xxx.xxx.102
    End of file. [SYS:ETC\SLP.CFG]
    Top of file. [SYS:ETC\TCPIP.CFG]
    AutonomousSystem 0
    Protocol rip off {
    Interface {
    Address xxx.xxx.xxx.102
    Port Q57_1_EII_EII
    Status on
    Cost 1
    Poison off
    SplitHorizon on
    UpdateTime 30
    GarbageTime 120
    ExpireTime 180
    OriginateDefault off
    Version ripI
    Mode normal
    Protocol egp off {
    Protocol ospf off {
    Interface {
    Address xxx.xxx.xxx.102
    Port Q57_1_EII_EII
    Status on
    Cost 1
    AreaId 0.0.0.0
    Priority 1
    RetransmissionInterval 5
    TransitDelay 1
    HelloInterval 10
    RouterDeadInterval 40
    Nbma {
    PollInterval 120
    Neighbor {
    Interface {
    Address xxx.xxx.xxx.102
    AddressMask 255.255.255.0
    Port Q57_1_EII_EII
    Type lan
    RouterDiscovery no
    SolicitationAddress multicast
    NATStatus Disabled
    SecIPStatus Disabled
    TOSStatus Disabled
    TOSValue 0
    ARPTimerStatus Disabled
    ARPCacheUpdateTimeout 300
    ARPCacheStaleTimeout 300
    GroupedInterface no
    PrimaryInterface no
    LBPolicy 0
    Arpable yes
    NetworkAddress xxx.xxx.xxx.0
    VIPASupport Enabled
    BdgStatus Enabled
    ForwardIPSourceRouting off
    NATFiltering off
    Deadgatewaydetection off {
    T0 30
    T1 2
    LoadBalancing off {
    LBInterval 2
    FaultTolerance on {
    FTInterval 2
    DefIPAddr 0.0.0.0
    End of file. [SYS:ETC\TCPIP.CFG]
    Top of file. [SYS:ETC\IPWAN.CFG]
    End of file. [SYS:ETC\IPWAN.CFG]
    Top of file. [SYS:SYSTEM\ABEND.LOG]
    File size is 177707 bytes.
    Top of file. [SYS:SYSTEM\TIMESYNC.CFG]
    # TimeSync.Cfg is now updated automatically,
    # when changes are made on the System Console
    # TIMESYNC Configuration Parameters
    Configured Sources = ON
    DEBUG = 7
    Polling Count = 3
    Polling Interval = 600
    Service Advertising = ON
    Synchronization Radius = 2000
    Type = SINGLE
    NTP Client Port = 0
    # TIMESYNC Configured time source list
    TIME SOURCE = 130.133.1.10:123
    End of file. [SYS:SYSTEM\TIMESYNC.CFG]
    Top of file. [SYS:SYSTEM\AUTOEXEC.NCF]
    SEARCH ADD SYS:\ni\update\bin
    SET BINDERY CONTEXT = O=HAN
    SET DAYLIGHT SAVINGS TIME OFFSET = 1:00:00
    SET START OF DAYLIGHT SAVINGS TIME = (MARCH SUNDAY LAST 2:00:00 AM)
    SET END OF DAYLIGHT SAVINGS TIME = (OCTOBER SUNDAY LAST 3:00:00 AM)
    SET TIME ZONE = ECT-1ECTD
    SET MAXIMUM RECORD LOCKS PER CONNECTION = 10000
    SET MAXIMUM RECORD LOCKS = 20000
    # Note: The Time zone information mentioned above
    # should always precede the SERVER name.
    SEARCH ADD SYS:\JAVA\BIN
    SEARCH ADD SYS:\JAVA\NWGFX\BIN
    SEARCH ADD SYS:\JAVA\NJCLV2\BIN
    SEARCH ADD SYS:\NI\UPDATE\BIN
    # WARNING!!
    FILE SERVER NAME Fileserver
    # WARNING!!
    # If you change the name of this server, you must update
    # the server name in all the licenses that are assigned
    # to it using iManager.
    SERVERID EB0C408
    load conlog MAXIMUM=100
    ; Network driver LOADs and BINDs are initiated via
    ; INITSYS.NCF. The actual LOAD and BIND commands
    ; are contained in INITSYS.NCF and NETINFO.CFG.
    ; These files are in SYS:ETC.
    sys:etc\initsys.ncf
    #LOAD TCPIP
    #LOAD Q57.LAN SLOT=10007 FRAME=Ethernet_II NAME=Q57_1_EII
    #BIND IP Q57_1_EII addr=xxx.xxx.xxx.102 mask=255.255.255.0
    gate=xxx.xxx.xxx.104
    MOUNT ALL
    IPMINIT.NCF
    LOAD SLPDA
    load nile.nlm
    load httpstk.nlm /SSL /keyfile:"SSL CertificateIP"
    LOAD NICISDI.XLM
    LOAD SASDFM.XLM
    #RCONAG6.NLM is required by RConsoleJ
    #LOAD SPXS
    LOAD RCONAG6 xxxxxxxxxx 2034 16800 2036
    LOAD CPQHLTH
    CPQSNMP
    # Monitor laden
    LOAD MONITOR
    # Drucker
    LOAD BROKER "Fileserver_Broker.HQ"
    LOAD NDPSM "NDPS-Manager"
    #SET TIMESYNC TYPE = SINGLE
    # Loading Posix Semantic Agent
    # -- Added by Scripting Install --
    SCRIPT.NCF
    SEARCH ADD SYS:\APACHE2
    AP2WEBUP
    LOAD NLDAP.NLM
    LOAD NAMED.NLM
    LOAD DHCPSRVR.NLM
    # ADMSRVUP
    SYS:\SYSTEM\NMA\NMA5.NCF
    BSTART.NCF
    LOAD PORTAL.NLM
    LOAD NDSIMON.NLM
    # tc4admin begin
    SEARCH ADD SYS:/tomcat/4/bin
    tcadmup.ncf
    # tc4admin end
    # tomcat4 begin
    # sys:/tomcat/4/bin/tomcat4.ncf
    # tomcat4 end
    # Storage Management Services components required for Backup
    SMSSTART.NCF
    LOAD EMBOX.NLM
    openwbem.ncf
    #SEARCH ADD SYS:\zenworks\OnDemand\bin
    #UsageServer.ncf
    #CommerceMaintenance.ncf
    # Start APC's PowerChute Network Shutdown application
    SYS:/BIN/UNIXENV.NCF
    #---Added by rcd.rpm install ---
    SEARCH ADD sys:/usr/sbin
    #---Added by rug.rpm install ---
    SEARCH ADD sys:/usr/bin
    SEARCH ADD sys:\powerchute
    delay 5
    SYS:\PowerChute\APCpcns
    #ZENworks Database Settings
    # SYS:\system\mgmtdbs.ncf
    #ZENworks Inventory Settings
    # StartInv.ncf
    # SYS:\system\zfdstart.ncf
    # search add sys:\sweep
    # SWEEP.NLM
    LOAD CRON.NLM
    # SEARCH ADD SYS:\tomcat\5.0\bin
    # tomcat5
    LOAD TOOLBOX
    # load SURVEY -w10 -cWed.12,7
    # -- Added by CIFS Install --
    #CIFSSTRT.NCF
    # -- End of CIFS Install --
    # --The following line should be uncommented if the SNMP subagent is
    desired
    #load dssnmpsa.nlm
    LOAD PKI.NLM
    # Begin SecretStore commands
    LOAD NICISDI.XLM s
    LOAD SASDFM.XLM
    # SSNCP automatically loads SSS.NLM without any command line options.
    # If you want to specify options, uncomment the following line and add
    # the appropriate options.
    # LOAD SSS
    LOAD SSNCP
    # End SecretStore commands
    # BackupExec Agent starten
    BESTART
    load SURVEY -w10 -cWed.12,7
    End of file. [SYS:SYSTEM\AUTOEXEC.NCF]
    Top of file. [C:\CONFIG.SYS]
    Files=50
    Buffers=30
    Lastdrive=Z
    End of file. [C:\CONFIG.SYS]
    Top of file. [C:\AUTOEXEC.BAT]
    C:
    CD \NWSERVER
    SERVER -nl
    End of file. [C:\AUTOEXEC.BAT]
    Top of file. [C:\NWSERVER\STARTUP.NCF]
    LOAD ACPIDRV.PSM
    ######## End PSM Drivers ########
    LOAD CPQSHD.CDM
    LOAD IDECD.CDM
    ######## End CDM Drivers ########
    LOAD ADPT160M.HAM SLOT=10004
    LOAD ADPT160M.HAM SLOT=10005
    LOAD IDEATA.HAM SLOT=10010
    LOAD CPQRAID.HAM SLOT=1
    ######## End HAM Drivers ########
    LOAD KEYB.NLM Germany
    LOAD CHARSET.NLM CP850
    End of file. [C:\NWSERVER\STARTUP.NCF]
    Top of SET Parameters.
    * Communications *
    UNAUTHORIZED IP SCAN INTERVAL = 4
    DHCP TEST = OFF
    DHCP DUMP = 0
    DHCP GLOBAL POLL = 30
    DHCP DEBUG = 0
    IPX CMD Mode Routing = OFF
    Preserve Secondary Ipaddress after Reinitialize System = ON
    Routing Table Cleanup Interval = 3
    UDP Min Port Limit = 1024
    UDP Max Port Limit = 5000
    TCP Min Port Limit = 1024
    NIRMan Transaction Time-out Period = 10
    IPMGMT Debug = OFF
    IPMGMT Push Pull Interval = 2
    IPMGMT Fetch Expiry Time = 5
    Tcp Maximum Initial Receive Window = 6
    Maximum Pending TCP Connection Requests = 128
    PGM Socket Send Buffer Size = 409600
    BSD Socket default Buffer Size in Bytes = 65536
    Tcp Sockets Debug = 0
    IPSEC maximum incoming queue length = 0
    IPSEC maximum incoming WorkToDos = 0
    Discard Oversized Ping Packets = ON
    Largest Ping Packet Size = 10240
    Tcp IPCP Debug = 0
    Tcp WAN Debug = 0
    Tcp ICMP Debug = 0
    Tcp ECB Debug = 0
    Tcp IP Debug = 0
    Maximum Interface MTU = 576
    IP Load Sharing = ON
    RIP2 aggregation override = OFF
    Always Allow IP Fragmentation = OFF
    UDP Debug = 0
    Tcp RIP Debug = 0
    Tcp Arp Debug = OFF
    Use Specified MTU = OFF
    ip address management override = OFF
    Allow IP Address Duplicates = OFF
    Allow non local broadcasts = 0
    TOS for IP packets = 0
    Arp entry update time = 300
    Arp entry expiry time = 300
    Tcp Ip Maximum Small ECBs = 65534
    ICMP Redirect Timeout = 3
    Maximum Wait States = 0
    Largest UDP Packet Size = 33792
    Discard Oversized UDP Packets = ON
    TCP UDP Diagnostic Services = OFF
    Tcp Maximum Packet Retransmission = 12
    TCP Path MTU Black Hole Detection and Recovery = OFF
    Tcp Minimum Retransmission Timeout = 2
    Tcp Maximum Initial Window = 4
    Tcp Connection Establishment timeout = 335
    Tcp Trace = 0
    TCP Max Port Limit = 54999
    Tcp Timer Schedule Rate = 3
    TCP Minshall Algorithm = OFF
    TCP Nagle Algorithm = ON
    TCP Delayed Acknowledgement = ON
    Tcp Number Of Preallocated PCBs = 1024
    TCP Sack Option = ON
    TCP Large Window Option = ON
    TCP Defend Land Attacks = ON
    TCP Secure ISN = ON
    Netlib Maximum Small ECBs = 1024
    TCPIP Scheduler Inactive = OFF
    DISPLAY CSL OPERATIONAL STATUS = OFF
    CALL SUPPORT LAYER DEBUG = OFF
    Enable Packet Burst Statistics Screen = OFF
    Maximum RIP SAP Events = 100
    Allow IPXRTR load in CMD Mode = ON
    Allow IPX Bind in CMD Mode = OFF
    IPX Router Broadcast Delay = 0
    IPX NetBIOS Replication Option = 2
    Use Old Watchdog Packet Type = OFF
    REPLY TO GET NEAREST SERVER = OFF
    Connection Table Expansion Count = 16
    Dead Connection Timeout = 4.9 SEC
    Enable Connection Manager Screen = OFF
    Maximum Connection Object Reuse Count = 32
    Disable Broadcast Notifications Process = OFF
    Disable Watchdog Process = OFF
    Enable Watchdog Screen = OFF
    Number Of Watchdog Packets = 10
    Delay Between Watchdog Packets = 59.3 SEC
    Delay Before First Watchdog Packet = 4 MIN 56.6 SEC
    Console Display Watchdog Logouts = OFF
    Maximum Packet Receive Buffers = 10000
    Minimum Packet Receive Buffers = 3000
    Maximum Physical Receive Packet Size = 4224
    New Packet Receive Buffer Wait Time = 0.1 SEC
    Maximum Interrupt Events = 10
    * Memory *
    Cache Pool Control Type = 1
    Auto Tune Server Memory = ON
    Restart Server on Address Space Cleanup Failure = OFF
    Memory Protection Abend After Restart Count = OFF
    Memory Protection Restart Count = 1
    Memory Protection No Restart Interval = 1
    Memory Protection Fault Cleanup = ON
    VM Allocation Information = OFF
    VM Cache Pool Percentage = 80
    VM Cache Pool Maximum Pages Percentage = 0
    VM Cache Pool Free Minimum Pages = 48
    VM Cache Pool Free Lots of Pages = 512
    VM Cache Pool Free Desired Pages = 256
    VM Cache Pool Minimum Pages = 10
    VM Cache Pool Maximum Pages = 4294967295
    Upper Page IO Threshold = 32
    Maximum RSS Pages = 5000
    Max Deficit = 256
    FS Cache Pool Transfer In Yield Type = 0
    FS Cache Pool Minimum Percentage To Transfer Out = 4
    FS Cache Pool Minimum Percentage To Transfer In = 4
    FS Cache Pool Minimum Pages To Transfer Out = 5
    FS Cache Pool Minimum Pages To Transfer In = 5
    FS Cache Pool Minimum Pages = 1000
    FS Cache Pool Maximum Percentage To Transfer Out = 10
    FS Cache Pool Maximum Percentage To Transfer In = 10
    FS Cache Pool Maximum Pages To Transfer Out = 20000
    FS Cache Pool Maximum Pages To Transfer In = 2000
    FS Cache Pool LRU Medium = 30
    FS Cache Pool LRU Low = 45
    FS Cache Pool LRU High = 60
    FS Cache Pool Lots of Pages = 1500
    FS Cache Pool Desired Pages = 1250
    FS Cache Pool Constrain Transfer Out Type = 1
    FS Cache Pool Constrain Transfer In Type = 1
    FS Cache Pool Blocks Transferred In Before Yield = 10
    Dynamic VM Versus Cache Subsystem Differential = OFF
    Dynamic Maximum RSS = OFF
    Desired VM Versus Cache Subsystem Differential = 0
    Deficit Age = 10
    Cache Pool Thread Yield Type = 0
    Cache Pool Thread Timeout = 5
    Cache Pool Pages Transferred Before Yield = 100
    Cache Pool Minimum Percentage To Transfer Out = 4
    Cache Pool Minimum Percentage To Transfer In = 4
    Cache Pool Minimum Pages To Transfer Out = 5
    Cache Pool Minimum Pages To Transfer In = 5
    Cache Pool Maximum Percentage To Transfer Out = 10
    Cache Pool Maximum Percentage To Transfer In = 10
    Cache Pool Maximum Pages To Transfer Out = 20000
    Cache Pool Maximum Pages To Transfer In = 10000
    Constrain Pages To Transfer Out Type = 0
    Constrain Pages To Transfer = 0
    Cache Pool Block Transfer Mode = ON
    Average Page In Alert Threshold = 2000
    VM Garbage Collector Period = 4 MIN 59.9 SEC
    VM Garbage Collector Looks = 10000
    Interactive Screen Timeout = 59 MIN 58.7 SEC
    Wakeup Page Cleaner Delay = 25
    Max Page Cleaner Outstanding IOs = 50
    Max Page Cleaner Pushes = 1000
    Max Page Cleaner Looks = 1000
    Min Age Quantum = 1
    Max Age Quantum = 60
    Init Age Quantum = 5
    Elapse Time Ager Interval = 144
    Nonlocked Minimum Pages = 5
    Low Grow Rate = 2
    High Grow Rate = 8
    Maximum Pages To Trim = 10
    Dynamic Age Quantum = OFF
    Engage Ager = ON
    APT Free Dirty Page Threshold = 1000
    APT Free Clean Page Threshold = 50
    VM Debug Screen = OFF
    File Cache Maximum Size = 1073741825
    File Service Memory Optimization = 1
    Logical Space Compression = ON
    Garbage Collection Interval = 5 MIN
    Alloc Memory Check Flag = OFF
    Reserved Buffers Below 16 Meg = 300
    Jiggle Memory = OFF
    Check Cache = OFF
    * Traditional File System *
    Volume Log File State = 1
    Volume TTS Log File State = 1
    Volume Log File Overflow Size = 4194304
    Volume TTS Log File Overflow Size = 4194304
    TTS Screen = OFF
    Auto TTS Backout Flag = ON
    TTS Abort Dump Flag = OFF
    TTS UnWritten Cache Wait Time = 1 MIN 5.9 SEC
    TTS Backout File Truncation Wait Time = 59 MIN 19.2 SEC
    Dirty Directory Cache Delay Time = 0.5 SEC
    Directory Cache Allocation Wait Time = 2.2 SEC
    Directory Cache Buffer NonReferenced Delay = 5.5 SEC
    Maximum Directory Cache Buffers = 2000
    Minimum Directory Cache Buffers = 500
    Maximum Number Of Internal Directory Handles = 100
    Maximum Number Of Directory Handles = 20
    Open Callback Timeout = 29.7 SEC
    Maximum Record Locks Per Connection = 10000
    Maximum File Locks Per Connection = 2500
    Maximum Record Locks = 20000
    Maximum File Locks = 200000
    Maximum Rights Vector Entry Pool = 128
    Read Ahead Enabled = ON
    Read Ahead LRU Sitting Time Threshold = 10 SEC
    Minimum File Cache Buffers = 20
    Maximum Concurrent Disk Cache Writes = 750
    Dirty Disk Cache Delay Time = 3.3 SEC
    Minimum File Cache Report Threshold = 20
    Maximum Concurrent opens per file and connection = 10000
    Maximum Wait Time For Limbo Space during Volume Mount = 19.8 SEC
    Automatically Repair Bad Volumes = ON
    Check SubAllocation = OFF
    Minimum File Delete Wait Time = 1 MIN 5.9 SEC
    File Delete Wait Time = 5 MIN 29.6 SEC
    Allow Deletion Of Active Directories = ON
    Maximum Percent of Volume Space allowed for Extended Attributes = 10
    Maximum Extended Attributes per File or Path = 16
    Purge Files On Dismount = OFF
    Fast Volume Mounts = ON
    Maximum Percent Of Volume Used By Directory = 13
    Maximum Subdirectory Tree Depth = 25
    Volume Low Warn All Users = ON
    Volume Low Warning Reset Threshold = 256
    Volume Low Warning Threshold = 256
    Turbo FAT Re-Use Wait Time = 5 MIN 29.6 SEC
    Compress Screen = OFF
    Allow Unowned Files To Be Extended = ON
    Auto Mount Mirrored Volume Containing Inactive Device = OFF
    * Common File System *
    Maximum Transactions = 10000
    Maximum Concurrent Directory Cache Writes = 75
    Immediate Purge Of Deleted Files = OFF
    Compression Daily Check Stop Hour = 6
    Compression Daily Check Starting Hour = 0
    Minimum Compression Percentage Gain = 20
    Enable File Compression = ON
    Maximum Concurrent Compressions = 2
    Convert Compressed To Uncompressed Option = 1
    Decompress Percent Disk Space Free To Allow Commit = 10
    Decompress Free Space Warning Interval = 31 MIN 18.5 SEC
    Deleted Files Compression Option = 1
    Days Untouched Before Compression = 14
    * Novell Storage Services *
    *************************************

  • Is there a way to selectively put on and off your data-connection(3G)?

    Hi there!
    I'm currently working on an app that uses GPS to track a person's location, this location is than in turn send to an online database.
    Obviously sending that location to the database requires an internet connection, I could use WIFI for that which is no issue but what if there's no WIFI available, if that's the case I want to use the phone's 3G data connection.
    Since I only need that connection for a short period(just to send the location to the database) I think it's rather dumb to put it on when opening the app and keeping it on as long as the app is running.-->It would quickly drain the available data memory.
    So my question is, is there a way to put the 3G connection ON and OFF in code? So the app would have the rights to do that.
    To clarify: Suppose whenever I track a person's location(every 5 minutes for example --> that's sufficient for my app even though it doesn't seem so useful) I want to put on the 3G connection to send the location to the database.
    The following 5 minutes however I've no need of that internet connection since no communication with the Database is required so I would want to put the 3G connection off then.
    -->Is this possible?
    Thanks in advance!
    My best regards
    Jan

    There is no way to turn on and off the phones 3g connection via code.

  • How can I use Automator to extract specific Data from a text file?

    I have several hundred text files that contain a bunch of information. I only need six values from each file and ideally I need them as columns in an excel file.
    How can I use Automator to extract specific Data from the text files and either create a new text file or excel file with the info? I have looked all over but can't find a solution. If anyone could please help I would be eternally grateful!!! If there is another, better solution than automator, please let me know!
    Example of File Contents:
    Link Time =
    DD/MMM/YYYY
    Random
    Text
    161 179
    bytes of CODE    memory (+                68 range fill )
    16 789
    bytes of DATA    memory (+    59 absolute )
    1 875
    bytes of XDATA   memory (+ 1 855 absolute )
    90 783
    bytes of FARCODE memory
    What I would like to have as a final file:
    EXCEL COLUMN1
    Column 2
    Column3
    Column4
    Column5
    Column6
    MM/DD/YYYY
    filename1
    161179
    16789
    1875
    90783
    MM/DD/YYYY
    filename2
    xxxxxx
    xxxxx
    xxxx
    xxxxx
    MM/DD/YYYY
    filename3
    xxxxxx
    xxxxx
    xxxx
    xxxxx
    Is this possible? I can't imagine having to go through each and every file one by one. Please help!!!

    Hello
    You may try the following AppleScript script. It will ask you to choose a root folder where to start searching for *.map files and then create a CSV file named "out.csv" on desktop which you may import to Excel.
    set f to (choose folder with prompt "Choose the root folder to start searching")'s POSIX path
    if f ends with "/" then set f to f's text 1 thru -2
    do shell script "/usr/bin/perl -CSDA -w <<'EOF' - " & f's quoted form & " > ~/Desktop/out.csv
    use strict;
    use open IN => ':crlf';
    chdir $ARGV[0] or die qq($!);
    local $/ = qq(\\0);
    my @ff = map {chomp; $_} qx(find . -type f -iname '*.map' -print0);
    local $/ = qq(\\n);
    #     CSV spec
    #     - record separator is CRLF
    #     - field separator is comma
    #     - every field is quoted
    #     - text encoding is UTF-8
    local $\\ = qq(\\015\\012);    # CRLF
    local $, = qq(,);            # COMMA
    # print column header row
    my @dd = ('column 1', 'column 2', 'column 3', 'column 4', 'column 5', 'column 6');
    print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    # print data row per each file
    while (@ff) {
        my $f = shift @ff;    # file path
        if ( ! open(IN, '<', $f) ) {
            warn qq(Failed to open $f: $!);
            next;
        $f =~ s%^.*/%%og;    # file name
        @dd = ('', $f, '', '', '', '');
        while (<IN>) {
            chomp;
            $dd[0] = \"$2/$1/$3\" if m%Link Time\\s+=\\s+([0-9]{2})/([0-9]{2})/([0-9]{4})%o;
            ($dd[2] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of CODE\\s/o;
            ($dd[3] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of DATA\\s/o;
            ($dd[4] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of XDATA\\s/o;
            ($dd[5] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of FARCODE\\s/o;
            last unless grep { /^$/ } @dd;
        close IN;
        print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    EOF
    Hope this may help,
    H

  • Memory Leak In DataService

    Hi All,
          I had posted this query to couple of other groups ..I am still struglling with this issue..Hope someone  will  help me out here
          I have  very basic application which uses  DataSerives over RTMP channel  to populate dataGrid , I have not used any  user defined component.
    This application has got LOAD data and Remove data  Button just to simulate the actual application
    What happens , when I click on LOAD data , It  loads the data from server(JBOSS) then I Remove all the data and force the GC to run
    If I continuously keep loading and removing the  data ,  memory goes up every time and after some times It reaches to threshold and  finally crashes the Browser.
    In actual application as soon as user logs in a dedicated DS destination is created..
        private function createDestination(destName:String):void{
                 var remoteService:RemoteObject = new RemoteObject("DestinationManager");
                 remoteService.addEventListener(ResultEvent.RESULT, resultHandler,false,0,true);
                 var operation:AbstractOperation = remoteService.getOperation("createDestination");
                 operation.send(destName);
                 var cs:ChannelSet = new ChannelSet();
                 var rtmpChannel:RTMPChannel = ServerConfig.getChannel("my-rtmp") as  RTMPChannel;
                 cs.addChannel(rtmpChannel);
                 tradeService = new DataService() ;
                 tradeService.destination=destName;
                 tradeService.channelSet = cs;  
    Now when user hits on Load data button to load the trade data ...
       public function loadData():void
             var remoteService:RemoteObject  = new RemoteObject("filterRemoteVO");
             var operation:AbstractOperation = remoteService.getOperation("loadData");
             tradeService.fill(tradeCollection);
             operation.send(rowData.text ,GUIID);
             tradeList.dataProvider = tradeCollection;
    Remove Data  hit I clean all the resource and released collection :-
          public  function  removeAll():void{
             if(tradeList.dataProvider){
                  tradeCollection.source = new Array();
                  tradeList.dataProvider.source = new Array();
                  tradeList.dataProvider = null;
                tradeService.release();
               tradeService.releaseCollection(tradeCollection);
              tradeService.channelSet.disconnectAll();
              tradeService.disconnect();
               tradeService.logout();
               System.gc();
    Except these 3 function I don't have any code which could cause memory leak.
    I m using
    LCDS 2.5
    Flex 3.0
    JBoss4.2
    Please see the mxml file below   , If  possible please have a look at it , I might  not be using dataSerice API correctly.
    I have been trying to solve this leak for last two week , I really need help from you guys.
    My client has already evaluating other contemporary technology because of this memory issue.
    I have also created scalled down war file which can be deployed on any  java application server.
    Any help will greatly be appreciated
    Regards,
    Dam
    ######################## MXML##########################
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
          creationComplete="init();" height="100%" width="100%"
         >
         <mx:Script >
         <![CDATA[
             import mx.containers.GridRow;
               import mx.utils.Base64Decoder;
             import mx.utils.StringUtil;
                import mx.events.CollectionEvent;
             import mx.formatters.Formatter;
             import mx.events.ResizeEvent;
             import mx.controls.DataGrid;
             import mx.effects.Fade;
             import mx.events.DataGridEvent;
             import mx.utils.ObjectUtil;
             import mx.events.ScrollEvent;
           import mx.formatters.DateFormatter;
           import mx.events.ListEvent;
           import mx.data.mxml.DataService;
           import mx.messaging.config.ServerConfig;
           import mx.messaging.channels.RTMPChannel;
           import mx.messaging.ChannelSet;
           import mx.rpc.AbstractOperation;
           import mx.rpc.remoting.RemoteObject;
           import mx.collections.ArrayCollection;
           import mx.controls.Alert;
           import mx.rpc.events.ResultEvent;
           import mx.messaging.messages.*;
           import mx.messaging.events.*;
           import mx.controls.Alert;
            private var GUIID:String;
            private var lastRollOverIndex:Number;
            public var tradeService:DataService=null;
            public var tradeCollection:ArrayCollection = new ArrayCollection();
           public var flag:Boolean = false;
            private function init():void {
               var guiId:String ="TEST";
                createDestination(GUIID);
            public function getData():void{
                 // memory.text =""+ ((System.totalMemory / 1024)/1024);
            public function releaseDataServices():void {
               //  tradeService.fill(null);
                    tradeService.release();
                   // tradeService.releaseCollection(tradeCollection);
                   tradeService.channelSet.disconnectAll();
                    tradeService.disconnect();
                    tradeService.logout();
                    //tradeService.dataStore = null;
                    /*Function for creating destination*/
              private function createDestination(destName:String):void{
                 var remoteService:RemoteObject = new RemoteObject("DestinationManager");
                 remoteService.addEventListener(ResultEvent.RESULT, resultHandler,false,0,true);
                 var operation:AbstractOperation = remoteService.getOperation("createDestination");
                 operation.send(destName);
                 var cs:ChannelSet = new ChannelSet();
                 var rtmpChannel:RTMPChannel = ServerConfig.getChannel("my-rtmp") as RTMPChannel;
                 cs.addChannel(rtmpChannel);
                 tradeService = new DataService() ;
                 tradeService.destination=destName;
                 tradeService.channelSet = cs;  
             //This function calls dataservice fill method depending on wheather destination is created or not
            private function resultHandler(event:ResultEvent):void{
               //call data service as destination is created successfully
                var status:Boolean = event.result as Boolean
               // Alert.show("status="+status);
                if(status){
                 getData();
               else{
                   //TODO report error to MATS app  
          public  function  removeAll():void{
             if(tradeList.dataProvider){
                  tradeCollection.source = new Array();
                  tradeList.dataProvider.source = new Array();
                  tradeList.dataProvider = null;
                tradeService.release();
               // tradeService.releaseCollection(tradeCollection);
              tradeService.channelSet.disconnectAll();
              tradeService.disconnect();
               tradeService.logout();
               System.gc();
           public function loadData():void
             var remoteService:RemoteObject  = new RemoteObject("filterRemoteVO");
             var operation:AbstractOperation = remoteService.getOperation("loadData");
             tradeService.fill(tradeCollection);
             operation.send(rowData.text ,GUIID);
             tradeList.dataProvider = tradeCollection;
       ]]>
    </mx:Script>
          <mx:DataGrid   id="tradeList"
                 initialize="tradeList.dataProvider = tradeCollection" horizontalScrollPolicy="auto"
                   height="659" x="0" y="84">
                <mx:columns>
                     <mx:DataGridColumn  headerText="Security Description" dataField="securityDesc"
                      />
                     <mx:DataGridColumn  headerText="B/S" dataField="transactionType"
                     />
                     <mx:DataGridColumn  headerText="Amount" dataField="amount"
                     />
                     <mx:DataGridColumn  headerText="Price Text" dataField="priceText"
                     />
                     <mx:DataGridColumn  headerText="Counterparty" dataField="counterParty"
                     />
                     <mx:DataGridColumn  headerText="Trade Date" dataField="tradeDate"
                     />
                     <mx:DataGridColumn  headerText="Settle Date" dataField="settleDate"
                     />
                     <mx:DataGridColumn  headerText="Trade Status" dataField="tradeStatusId"
                     />
                     <mx:DataGridColumn  headerText="Trader" dataField="trader"
                     />
                     <mx:DataGridColumn  headerText="Salesperson" dataField="salesperson"
                     />
                     <mx:DataGridColumn  headerText="Ticket Number" dataField="tradeNumber"
                     />
                     <mx:DataGridColumn  headerText="Entry Date" dataField="tradeTime"
                     />
                     <mx:DataGridColumn  headerText="Cancel Date" dataField="cancelDate"
                     />
                     <mx:DataGridColumn  headerText="Cancel Time" dataField="cancelTime"
                     />
                 </mx:columns>
              </mx:DataGrid >
             <mx:Grid x="149" y="23" width="995">
                     <mx:GridRow width="100%" height="100%">
                                <mx:GridItem width="100%" height="100%">
                                     <mx:Label text="Enter No of obejcts"   width="111"/>
                             </mx:GridItem>
                             <mx:GridItem width="100%" height="100%">
                                     <mx:TextInput name="row" id="rowData"   width="97"/>
                             </mx:GridItem>
                             <mx:GridItem width="100%" height="100%">
                                     <mx:Button  label="Load Data" click='loadData()'/>
                             </mx:GridItem>
                             <mx:GridItem width="100%" height="100%">
                                     <mx:Button  label="removeAll" click='removeAll()'/>
                             </mx:GridItem>
                             <mx:GridItem width="100%" height="100%">
                                     <mx:Label text="Total Memory"/>
                             </mx:GridItem>
                             <mx:GridItem width="100%" height="100%">
                                     <mx:TextInput text="Total Memory" id="memory"   width="97"/>
                             </mx:GridItem>
                             <mx:GridItem width="100%" height="100%">
                                     <mx:Label text="Grid Row Count"/>
                             </mx:GridItem>
                             <mx:GridItem width="100%" height="100%">
                                     <mx:TextInput name="GridRowCountN" id="GridRowCount"   width="97"/>
                             </mx:GridItem>
                     </mx:GridRow>
             </mx:Grid>
    </mx:Application>

    Hi Natasha,
    Sorry for late reply.
          I tried your suggestion but It did not help to release memory. Actully,this app contains only one event handler which is for remote method call , I dont think this could cause any memory leak.
    Profiling session reveals that It is the issue of DataService class.I dont know How do I convince  Adobe to investigate this issue.
    Regards,
    Dharmendra

  • CI have a macbook 2.1 with 1GB of memory.  What are my options for adding memory s I can upgrade to Lion?  (I am running 10.5.8 now) and to icloud. I ve never been able to backup to idisk because of lack of memory also.

    I have a macbook 2.1 with 1GB of memory.  I have two issues- both related to lack of sufficient memory.  Issue#1 is upgrade to LION requires more memory than I have and I d  like to upgrade.  Issue 2 is that when ever i try to backup to idisk  I get a message telling me I need to remove some files from my start up disk to make room.   I don t know what I can remove without creating problems.  So  I think I need to add memory.  Is this possible?

    These are good online stores for Mac compatible RAM
    OWC http://eshop.macsales.com/shop/memory/MacBook/DDR2/ - Similar to DMS, they offer Mac tested RAM at very good prices.
    Crucial Memory http://www.crucial.com/ - good place to buy RAM from all over the world. They also have an excellent memory selector that allows you to choose memory based on your computer's model
    Data Memory Systems http://www.datamemorysystems.com/apple-memory.asp - another good, cheap place to buying RAM if you live in the U.S.
    Macdimms.com - Specializes in supplying Mac compatible RAM at extremely competitive prices. Brands featured include Crucial, Samsung, Hynix, and Micron. All brands carry a lifetime warranty. Discounts offered to educational institutions and students, active and retired military, resellers, and government agencies.
      Here are instructions on replacing RAM in a MacBook with a removable battery. http://homeoffice.consumerelectronicsnet.com/articles/viewarticle.jsp?id=44404
    If you don’t have the tools to open up the MacBook OWC has a set for $5
    http://eshop.macsales.com/item/OWC/TOOLKITMHD/
    You can put two 2gb RAM sticks in your model 2,1 but it can only use 3,3gb. This is a hardware limitation and cannot be changed.
    http://en.wikipedia.org/wiki/3_GB_barrier
    http://www.everymac.com/systems/apple/macbook_pro/faq/macbook-pro-core-2-duo-3-g b-memory-limitation-details.html
    OWC tests have found that there is a slight speed increase with having two 2gb sticks in rather than one 1gb and one 2gb. Your model is in the gray lines at the bottom of the graph. http://eshop.macsales.com/shop/Memory_Benchmark/Apple_MacBook/
    You can upgrade to 10.6 with no problems. Any program that runs under 10.5 will run under10.6. You might have to upgrade some drivers for printers, etc.... And you will have to install Rosetta if you have any Power PC applications http://www.macobserver.com/tmo/article/snow_leopard_installing_rosetta/  
    To upgrade your iLife and iWork. If you only want iPhoto or other single apps from iLife '11 you can get them from the App Store after you've upgraded to 10.6.6. iPhoto, iMovie or Garage Band for $15 each and Pages, Keynote or Numbers from iWork '09 for $20 each.
    You can order a Snow Leopard 10.6 install disk for $29 as long as you have at least1gb of RAM and 5gb of free space on your hard drive. http://store.apple.com/us/product/MC573Z/A?mco=MTY3ODQ5OTY
    Once you are at 10.6.8 you can buy Lion for $29 from the App Store if you have at least a model 2,1 MacBook. Lion will require at least 2gb of RAM but really needs 4gb to run smoothly. Also Lion doesn't run any Power PC programs. To see if you have any Power PC programs go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up select Applications under Software. Then look under Kind to see if any of your applications are listed as Power PC. Universal and Intel will run under Lion.
      Before Mac switched to Intel processors they used Power PC processors from 1994 to 2005. Power PC 601 through 604, G3, G4 and G5. Applications written for the Power PC processors need the application called Rosetta to run on Intel processors. This was part of the Operating System in 10.4 and 10.5 but was an optional install in 10.6. With 10.7 Lion Apple dropped all support for Power PC applications.

  • I would like to upgrade my OS to the latest version.  I now have 10.6.8 and my machine has 1Gb of memory.  Need 2Gb for the new OS.  Is is possible (and practical) to add memory to a machine that's five years old?

    I would like to upgrade my OS to the latest version.  I now have 10.6.8 and my machine has 1Gb of memory.  Need 2Gb for the new OS.  Is is possible (and practical) to add memory to a machine that's five years old?

    You can put two 2gb RAM sticks in your model 2,1 but it can only use 3,3gb. This is a hardware limitation and cannot be changed.
    http://en.wikipedia.org/wiki/3_GB_barrier
    http://www.everymac.com/systems/apple/macbook_pro/faq/macbook-pro-core-2-duo-3-g b-memory-limitation-details.html
    OWC tests have found that there is a slight speed increase with having two 2gb sticks in rather than one 1gb and one 2gb. Your model is in the gray lines at the bottom of the graph. http://eshop.macsales.com/shop/Memory_Benchmark/Apple_MacBook/
    You can buy Lion for $29 from the App Store witht a model 2,1 MacBook. Lion will require at least 2gb of RAM but really needs 4gb to run smoothly. As for programs see this list for compatibility with 10.7 http://roaringapps.com/apps:table
    Lion doesn't run any Power PC programs. To see if you have any Power PC programs go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up select Applications under Software. Then look under Kind to see if any of your applications are listed as Power PC. Universal and Intel will run under Lion.
    Before Mac switched to Intel processors they used Power PC processors from 1994 to 2005. Power PC 601 through 604, G3, G4 and G5. Applications written for the Power PC processors need the application called Rosetta to run on Intel processors. This was part of the Operating System in 10.4 and 10.5 but was an optional install in 10.6. With 10.7 Lion Apple dropped all support for Power PC applications.
    These are good online stores for Mac compatible RAM
    OWC http://eshop.macsales.com/shop/memory/MacBook/DDR2/ - They offer Mac tested RAM at very good prices.
    Crucial Memory http://www.crucial.com/ - good place to buy RAM from all over the world. They also have an excellent memory selector that allows you to choose memory based on your computer's model
    Data Memory Systems http://www.datamemorysystems.com/apple-memory.asp - another good, cheap place to buying RAM if you live in the U.S.
    Here are instructions on replacing RAM in a MacBook with a removable battery. http://homeoffice.consumerelectronicsnet.com/articles/viewarticle.jsp?id=44404
    If you don’t have the tools to open up the MacBook OWC has a set for $5
    http://eshop.macsales.com/item/OWC/TOOLKITMHD/

  • How can I purchase and install additional memory in my powerbook G4?

    I've got to install more memory into my powerbook G4 (currently just 256 MB  of DDR SDRAM, only 3.2 GB of free disk space and 1.5 Ghz PowerPC G4 processor).  Can someone point me toward a supplier of the memory cards I need, as well as a tutorial for how to do a self install?  I don't want to sink $$$ at the mac store on such an aging machine, but I want to keep her running as long as possible.  How high can I go with the memory on this machine given its restraints? 
    While I'm at it, is there anyway to amplify or boost the wireless signal receiver?  My machine has almost zero bars of internet connectivity in places where other machines have 4 bars. 
    Thanks!  =O)

    Did you physcally look at the RAM slots to confirrn two modules are installed? Do that before proceeding. It's very important--for some reason yours may have been ordered with only 256MB. Opening the RAM slot cover is a user-doable/approved operation
    There was a repair extension program for the 15-inchers' RAM slot problem, but it's now long-expired. The next step is only if you physically can see two modules: If you feel that, as the original owner, this was not properly communicated to you, you could make a cool-headed and document-backed plea to Apple Customer Relations (1-800-767-2775 in North America).
    "Is a logic board the same thing as a motherboard.. "
    For all practical purposes, yes. Macs have logic boards; PC's have motherboards in common terminology. They are the mounting point and connectivity path for the processor and most other internal components. Presumably, the "mother" part was derived from epithets flamed forth by disgruntled PC users.
    BeebleBrox has already linked one RAM vendor I use, Other World Computing. The other is Data Memory Systems:
    Apple PowerBook G4 1.5GHz 15" Screen (200 Pin PC2700 DDR SODIMMs)
    I've ordered all my Mac RAM from only these two vendors for close to a decade and am very happy with both.
    256MB RAM with OS 10.4.11 is like saying someone has an IQ of 10 but it takes 12 to grunt. My older PBG4 at 1Ghz also has 10.4.11 but 1G RAM. It does fine. A lack of RAM makes the Virtual Memory system spend a lot of time writing data to the hard drive when there is no more RAM available. The slowness this VM operation induces gets worse as the free space on the HD grows smaller as you add files and programs.
    I don't think low RAM or a bad RAM slot would cause the wireless connection issues. The antenna is in the display frame as I recall. There are a lot of reports of a negative change in ability to pick up wireless networks being traced to other wireless devices in the area. See what's been added to the house/office that is also wireless.
    What I don't know is where you are. I answered with the potentially flawed assumption that you are in North America. OWC ships internationally, but I don't believe DMS ships outside N. America without making you jump through hoops and hedgerows. Post your geographic locations in your profile info and it will make it easier for people to respond to the common "where can I get" questions.
    This grew long, but what you need to do before anything else is open the RAM cover and count modules (They are "stacked" so one is covered by the other but should be visible). As I now know your screen size, I can link the instructions for doing so:
    RAM

Maybe you are looking for

  • Microsoft TechNet Wiki SharePoint Guru - Winners for November!!

    The results for November's TechNet Guru competition have been posted! Sorry for the delay copying over to the forums, busy times indeed! http://blogs.technet.com/b/wikininjas/archive/2013/12/16/technet-guru-awards-november-2013.aspx Congratulations t

  • How to create new cost element catagory

    Hi, Can any one let me know How to create New cost element catagory other than standard cost element catagory. Thanks & Regds, Sany.....

  • HT1689 how do i get itunes to detect my device?

    I just updated my ipad 2 to ios 7 and now can't get iTunes to recognize my device. Also, the ipad is stuck in recovery mode (image of usb and Itunes icon)-since I need iTunes to restore it, what do I do now?

  • BBP_ALERTING BADI

    BBP_alerting badi is used to send e-mail to the intended recipients. I retreive two e-mail ids related to the contract, and i used SO_NEW_DOCUMENT_SEND_API1 fm to send the contents to the e-mail id. finally after sending the mails i refresh ct_recipi

  • Settings manager panel does not show

    my fp version:          10,2,153,1 browser:                  firefox 3.6.15 operating system:    windows 7 ultimate sp1 x86 problem: the settings manager panel does not show unistalled and reinstalled fp quite a few times, rebooted, used the unistall