'java': "Could not reserve enough space on heap" on 48G Linux machine

I have installed the 64bit version of jdk-1.6.0-17 from java.sun.com on my RedHat Linux machine with 48G internal memory.
All the java commands return :
Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.
strace shows that java is trying to allocate 25% of my memory, ie 12G, and my virtual memory limit is 6G.
The 32bit 1.6.0-16 did not expose this behaviour. I haven't tried the 32bit version of 1.6.0-17, sorry, but I do need those 64 bits. And I haven't tried the 64bit 1.6.0-16 either, should I?
After finally finding out how to pass -Xmx4096M to jar,javah,javac,java many programs compile fine, but when I compile an app (containing main):
The system is out of resources.
Consult the following stack trace for details.
java.lang.OutOfMemoryError: Java heap space
at com.sun.tools.javac.util.ListBuffer.append(ListBuffer.java:110)
at com.sun.tools.javac.util.ListBuffer.appendList(ListBuffer.java:120)
at com.sun.tools.javac.parser.Parser.classOrInterfaceBody(Parser.java:2408)
at com.sun.tools.javac.parser.Parser.classDeclaration(Parser.java:2253)
at com.sun.tools.javac.parser.Parser.classOrInterfaceOrEnumDeclaration(Parser.java:2191)
at com.sun.tools.javac.parser.Parser.typeDeclaration(Parser.java:2180)
at com.sun.tools.javac.parser.Parser.compilationUnit(Parser.java:2126)
at com.sun.tools.javac.main.JavaCompiler.parse(JavaCompiler.java:509)
at com.sun.tools.javac.main.JavaCompiler.complete(JavaCompiler.java:646)
at com.sun.tools.javac.jvm.ClassReader.fillIn(ClassReader.java:1869)
at com.sun.tools.javac.jvm.ClassReader.complete(ClassReader.java:1777)
at com.sun.tools.javac.code.Symbol.complete(Symbol.java:386)
at com.sun.tools.javac.code.Symbol$ClassSymbol.complete(Symbol.java:758)
at com.sun.tools.javac.jvm.ClassReader.loadClass(ClassReader.java:1951)
at com.sun.tools.javac.comp.Resolve.loadClass(Resolve.java:842)
at com.sun.tools.javac.comp.Resolve.findGlobalType(Resolve.java:901)
at com.sun.tools.javac.comp.Resolve.findType(Resolve.java:961)
at com.sun.tools.javac.comp.Resolve.findIdent(Resolve.java:986)
at com.sun.tools.javac.comp.Resolve.resolveIdent(Resolve.java:1162)
at com.sun.tools.javac.comp.Attr.visitIdent(Attr.java:1714)
at com.sun.tools.javac.tree.JCTree$JCIdent.accept(JCTree.java:1547)
at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:360)
at com.sun.tools.javac.comp.Attr.attribType(Attr.java:390)
at com.sun.tools.javac.comp.MemberEnter.visitVarDef(MemberEnter.java:607)
at com.sun.tools.javac.tree.JCTree$JCVariableDecl.accept(JCTree.java:691)
at com.sun.tools.javac.comp.MemberEnter.memberEnter(MemberEnter.java:387)
at com.sun.tools.javac.comp.MemberEnter.signature(MemberEnter.java:350)
at com.sun.tools.javac.comp.MemberEnter.visitMethodDef(MemberEnter.java:560)
at com.sun.tools.javac.tree.JCTree$JCMethodDecl.accept(JCTree.java:639)
at com.sun.tools.javac.comp.MemberEnter.memberEnter(MemberEnter.java:387)
at com.sun.tools.javac.comp.MemberEnter.memberEnter(MemberEnter.java:399)
at com.sun.tools.javac.comp.MemberEnter.finishClass(MemberEnter.java:410)
make: *** [Sample.class] Error 3
Running without the 6G limit and setting Xmx12000M doesn't help.
I hope someone can shed some light into what's going on here. Why on earth would Java think it needs 12G memory to run? And why, when it gets it, is it still not enough?
Thanks,
Calle

tschodt wrote:
Cramgo wrote:
strace shows that java is trying to allocate 25% of my memory, ie 12G, and my virtual memory limit is 6G.Maybe you have found a bug, the default max heap size calculation is supposed to cap it at 1G.
[http://java.sun.com/performance/reference/whitepapers/tuning.html#section4.1.1]
So should I report it somewhere or what?
After finally finding out how to pass -Xmx4096M to jar,javah,javac,java many programs compile fine
Are you setting one of [_JAVA_OPTIONS|http://java.sun.com/j2se/1.5.0/docs/guide/2d/flags.html] or [JAVA_TOOLS_OPTIONS|http://java.sun.com/javase/6/docs/platform/jvmti/jvmti.html#tooloptions] for all shells?
No, passing -Xmx4096m to java, and -J-Xmx4096m to javac, javah and jar. Is JAVA_OPTIONS or JAVA_TOOLS_OPTIONS better, how do I use those?
but when I compile an app (containing main):
The system is out of resources.
Consult the following stack trace for details.
java.lang.OutOfMemoryError: Java heap space
make: *** [Sample.class] Error 3Running without the 6G limit and setting Xmx12000M doesn't help.Forgot to specify -Xms and-Xmx?Promise not to laugh. Seems like I somehow got rid of that m.... running with a heap size of 12000 bytes might be a bit sparse, admittedly. ;) Caught it when I added -Xms...
I hope someone can shed some light into what's going on here. Why on earth would Java think it needs 12G memory to run? And why, when it gets it, is it still not enough?OK so I now can compile again, great. Would be lovely to get rid of the -Xmx but I can live with that...

Similar Messages

  • Problem with Java Memory "Could not reserve enough space for object heap"

    Hi gurus,
    I am not an expert with Java´s configuration, and I have a situation that I don´t understand. First of all, I am working at Centos 6.2 with jdk_1.6 and Tomcat 7.
    The problem is...
    - If I run Tomcat with JAVA_OPTS="-Xmx128m"* (at catalina.sh) all works fine.
    - If I run Tomcat with JAVA_OPTS="-Xmx512m"* (at catalina.sh) an error appears:
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Could not create the Java virtual machine.
    This appear when I run java -version or when I try to stop Tomcat, and the Tomcat isn´t able to stop.
    The strange thing is that my server has more than 200M free in physical memory. So, why Tomcat isn´t able to stop? and Why Java doesn´t use the free memory in my server?
    Thanks in advanced.

    Hello EJP, thanks for your answer.
    I have explained bad.
    The server has 703M free when Tomcat is stopped. I had mentioned that my server has more than 200M free in physical memory when Tomcat is running with JAVA_OPTS="-Xmx512m", so I don´t understand why these errors appear.
    Do you understand me?
    Recently I have checked the swap memory, and it is disabled. In spite of swap memory is disabled I think java wouldn´t need this memory because it has free physical memory
    Thanks again.

  • Could not reserve enough space for object heap in Jdeveloper 11g R1

    Hi,
    I tried to increase the JVM heap size with Virtual machine = server and the value as -Xmx512m -XX:MaxPermSize=512M -Djbo.debugoutput=console in the project properties->Run/Debug/Profile->Default-Edit, but still getting the below error.
    Any help is appreciated.
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=D:\Oracle\MIDDLE~1\patch_wls1032\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\Oracle\MIDDLE~1\JDK160~1.5-3\lib\tools.jar;D:\Oracle\MIDDLE~1\utils\config\10.3\config-launch.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;D:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.2.0.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;D:\Oracle\MIDDLE~1\modules\ORGAPA~1.0/lib/ant-all.jar;D:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;D:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar;d:\source\FCUBSInstaller.jar;D:\Olite10g_1\MOBILE\Sdk\bin\OLITE40.JAR;;
    PATH=D:\Oracle\MIDDLE~1\patch_wls1032\profiles\default\native;D:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\native;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;D:\Oracle\MIDDLE~1\modules\ORGAPA~1.0\bin;D:\Oracle\MIDDLE~1\JDK160~1.5-3\jre\bin;D:\Oracle\MIDDLE~1\JDK160~1.5-3\bin;D:\Olite10g_1\jre\1.4.2\bin\client;D:\Olite10g_1\jre\1.4.2\bin;D:\Software\oracle\product\10.2.0\client_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Windows Imaging\;D:\software\Clearcase 7.0\common;D:\software\Clearcase 7.0\ClearCase\bin;D:\Olite10g_1\MOBILE\sdk\bin;C:\Program Files\Liquid Technologies\Liquid XML Studio 2011\XmlDataBinder9\Redist9\cpp\win32\bin;D:\Software\Liquid Technologies\Liquid XML Studio 2011\XmlDataBinder9\Redist9\cpp\win32\bin;D:\software\oracle10g\BIN;D:\Jdev10g\jdk\bin;;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_14"
    Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
    Java HotSpot(TM) Client VM (build 14.0-b16, mixed mode)
    Starting WLS with line:
    D:\Oracle\MIDDLE~1\JDK160~1.5-3\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=D:\Oracle\Middleware\wlserver_10.3\server\lib\DemoTrust.jks -Xmx512m -XX:MaxPermSize=512M -Djbo.debugoutput=console -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=D:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=D:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=D:\Oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Ddomain.home=C:\DOCUME~1\ANURAD~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1 -Dcommon.components.home=D:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=D:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.domain.config.dir=C:\DOCUME~1\ANURAD~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1 -Doracle.server.config.dir=C:\DOCUME~1\ANURAD~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.security.jps.config=C:\DOCUME~1\ANURAD~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Digf.arisidbeans.carmlloc=C:\DOCUME~1\ANURAD~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1\carml -Digf.arisidstack.home=C:\DOCUME~1\ANURAD~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1\arisidprovider -Dweblogic.alternateTypesDirectory=D:\software\oracle\product\10.2.0\client_1\modules\oracle.ossoiap_11.1.1,D:\software\oracle\product\10.2.0\client_1\modules\oracle.oamprovider_11.1.1 -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=C:\DOCUME~1\ANURAD~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\oracle\store\gmds -Xms512m -Xmx512m -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=D:\Oracle\MIDDLE~1\patch_wls1032\profiles\default\sysext_manifest_classpath;D:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Process exited.

    This is telling you that there is not enough memory for the heap size you've specified. Increasing the heap size makes this worse, not better. You need more physical memory.
    john

  • Error occurred during initialization of VM. Could not reserve enough space

    Dear All,
    I am trying to install SAP NetWeaver 7.0 SR2 SP9 on Oracle 10.2 and platform is Windows 2003 32 bits. While installing, in t he restarting the JAVA Instance step, server0 node is getting shutdown. When I further analyzed dev_server0 log, I could get below useful information:
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    [Thr 6008] JLaunchIAbortJava: abort hook is called
    [Thr 6008] **********************************************************************
    *** ERROR => The Java VM aborted unexpectedly.
    *** Please see SAP Note 943602 , section 'Java VM crashes'
    *** for additional information and trouble shooting.
    [Thr 6008] JLaunchCloseProgram: good bye (exitcode = -2)
    I referred the note mentioned above and it inturn referred to note# 940893. I followed many other sap notes also. However my above problem did not solve yet. I have checke my JAVA SDK version also. It is j2sdk1.4.2_11 and seems to be fine. My systems memory is 3 GB and I gave 20 GB as Virtual memory. I dont think that it should be a memory problem. However somewhere I am lost and can not get the grip over the problem  to resolve it.
    May I request all of you to kindly help me on above issue? Please let me know if you need any more information.
    Waiting for your kind replies.
    Regards,
    Faisal

    Dears,
    Thank you very much for your replies. The heap size was 1024. I changed it to the below:
    Heap Size=512 (earlier 1024)
    Changed below paramters in configtool:
    -Xmx512m (earlier 1024)
    -Xms256m (earlier 1024)
    Hope this information will be helpful to others as well.
    Once again, I thank both of you to guide me in proper directions.
    Regards,
    Faisal

  • Could not reserve enough space for card marking array

    # java -d64  -Xms1024M -Xmx2048M -version
    Error occurred during initialization of VM
    Could not reserve enough space for card marking array

    You may be running out of swap space.
    I suggest you review this doc first:
    Troubleshooting Java[tm]: Error Occurred During Initialization of VM: Could not reserve enough space for object heap (Doc ID 1260764.1)

  • WebLogic Error VM Could not reserve enough space

    Hi There,
    I have installed Weblogic 8.1 Deployment Server on Windows XP. The installation was successful, but when I am starting the weblogic it is not starting and throwing an error:
    *"Error occurred during initialization of VM Could not reserve enough space for object heap"*
    Can somebody help me to resolve the issue.....
    Many Thanks in advance....
    Regards...

    Sounds like maybe you have misconfigured -Xmx or -Xms when you invoke the JVM and are asking for more memory than your machine can physically allocate. Would need to see your weblogic startup configuration and how much RAM is installed on your target machine to help debug further.

  • Could not reserve enough space for object he

    dear all,I installed weblogic6.0 with sp2 in soloris. But I found a error when I start startWebLogic.sh. I got the message:----------------------------------------------------------------------------------------LD_LIBRARY_PATH=/soft/bea/wlserver6.0/lib/solaris:/soft/bea/wlserver6.0/lib/sol8Error occured during initialization of VMCould not reserve enough space for object heap£¬why--------------------------------------------Thank you!

    I have the same problems but on windows NT

  • Java 1.4.1 - Could not reserve space for object heap - need help

    I know this problem has been posted before, but I thought this was fixed in release 1.3. I'm using Windows XP/Professional and do the following:
    C:java -Xmx2g
    Error occured during initialization of VM
    Could not reserve space for object heap
    C:java -version
    java version "1.4.1_02"My computer system has 1 GB of RAM and a 2 GB pagefile, expandable to 3.5 GB. I can get going with -verbose:gc -Xmx1600m -Xms200m, but the GC only gets to about 1 GB before I get an out of memory exception, not even close to 1.6 GB as specified.
    I'd really appreciate it if anyone can shed some light on this behavior.
    Cheers, Eric

    Hmm.
    I tried a mini no-operation application with jdk1.3.1 on Linux. It run okay like this:
    $ java -Xmx1934M u
    $ echo $?
    0
    $ java -version
    java version "1.3.1_07"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_07-b02)
    Java HotSpot(TM) Client VM (build 1.3.1_07-b02, mixed mode)
    $ cat u.java
    class u {
    public static void main(String a[]) {
    $This however fails miserably:
    $ java -Xmx1935M u
    Unexpected Signal : 11 occurred at PC=0x401a0cb7
    Function name=start_thread__2osP6Thread
    Library=/usr/lib/jdk1.3.1_07/jre/lib/i386/client/libjvm.so
    Current Java thread:
    Dynamic libraries:
    08048000-0804c000 r-xp 00000000 03:08 174723     /usr/lib/jdk1.3.1_07/bin/i386/native_threads/java
    0804c000-0804d000 rw-p 00003000 03:08 174723     /usr/lib/jdk1.3.1_07/bin/i386/native_threads/java
    40000000-40012000 r-xp 00000000 03:08 20686      /lib/ld-2.2.5.so
    40012000-40013000 rw-p 00011000 03:08 20686      /lib/ld-2.2.5.so
    ...This looks familiar:
    $ java -Xmx2000m u
    Error occurred during initialization of VM
    Could not reserve enough space for object heap

  • Error occurred during initialization of VM, could not reserve space in heap

    I installed the SOA suite+ BPM 11.1.1.3.0, ESB 11.1.1.3.0 successfully along with RCU schema in oracle DB Ex edition 11 G successfully. I have 2 GB Ram in my system. I am facing the below error during the startup of weblogic instance which is having these all ESB, BPM properties.
    it seems that 2 GB ram is occupying by the SOA suite.
    CAN ANY ONE SUGGEST TO REDUCE THE SOA SUITE RAM CAPACITY.
    USER_MEM_ARGS=-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=512m
    JAVA_OPTIONS= -Xverify:none
    ** End SOA Specific environment setup for win.
    ** SOA specific environment is already set. Skipping ...
    JAVA Memory arguments: -Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\ext\jdbc\oracle\11g\ojdbc6dms.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\user-patch.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\soa-startup.jar;;C:\Oracle\MIDDLE~1\patch_wls1033\profiles\default\sys_
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Regards
    Raghu Veer

    Hello Raghu,
    As James indicated it is problem with the system configuration but still you may try below once -
    Go to $Domain_Home/bin and edit the setSOADomainEnv.cmd (or setSOADomainEnv.sh) to change below setting -
    set DEFAULT_MEM_ARGS=-Xms512m -Xmx512m
    If you are using AMD processor then modify below instead of DEFAULT_MEM_ARGS -
    set PORT_MEM_ARGS=-Xms768m -Xmx768m
    Save and exit.
    Now start Admin server and after that SOA server and OSB server. As James suggested, for better performance you may keep either of SOA and OSB server up as and when required and keep other one down.
    I am still using a 2GB machine for 11g suite and I work easily because generally I work with one of SOA or OSB server and whenever I use any IDE like JDev or OEPE, I keep all servers down. For better performance and memory utilization you may use Oracle XE database.
    Hope it helps.
    Regards,
    Anuj

  • Error initialization of VM, not reserve enough memory

    Basically i am trying to create a cgi program which opens a filehandle to capture the output of a java program (which outputs 6 simple strings), these strings are then placed into an array and printed to the browser as below:
    open(THIS_J, "/usr/j2se/bin/java Testjprob|");
    while (<THIS_J>) {
            unshift(@array,$_);
    close(THIS_J);
    $length = scalar(@array);
    if($length != 0){
        print $q->p("The Search Returned No $array[3]");
    }The java works when i execute it on the command line through a perl program, however, it doesnt work when i execute it through a cgi program. So i put a test in the perl program to see what version the java is when running:
    system "/usr/j2se/bin/java -version > jprobversion.txt" || die "$!";and i looked in the jprobversion.txt and expected to see version numbers etc... instead this message appeared :
    "Error occurred during initialization of VM
    Could not reserve enough space for object heap"
    I have spoken to a few people about this and they came to the conclusion that it is due to the differences in enviornment between running java under cgi and on the command line. I got a response back from a person who mentioned:
    "The error message immediatly follows a mmap for 134217728 bytes.
    There is no edquivalent mmap when run from the command line."
    What is mmap and has anyone else ever come across a problem like this before? Is it just a case of setting an environment variable?

    This could be a problem with virtual memory soft limits in the shell that perl exec's. Try this test. Make a test script that does this:
    system("ulimit -Ha > /tmp/ul.out 2>&1");
    system("ulimit -Sa >> /tmp/ul.out 2>&1");
    For comparison, from your command line run:
    ulimit -Ha; ulimit -Sa
    Look at the resulting output. The line you're interested in is:
    virtual memory (kbytes, -v) <some value here>
    If the virtual memory size for -Ha in the script is > the size for -Sa then you should be able to increase your virtual memory limit like so in your script:
    # increase stack to 64M, if hard limit is 'unlimited' then you could substitue
    # the word 'unlimited' for 64000 or the word 'hard'. Check the various man pages
    # for ulimit, bash, sh etc.
    system("ulimit -Ss 64000; /usr/j2se/bin/java ....");
    bill

  • Error occurred during initialization of VM Could not reserve enoughspace for code cache

    I receive this error in the ZENWSimport and Removal screen:
    Error occurred during initialization of VM
    Could not reserve enough space for code cache
    Server is a HP DL380G4, NWSBS SP5, 4 GB RAM.
    I think it's Java related, because iManager also stopped working (error
    503 - service unavailable)
    AUTOEXEC.BAT:
    @echo off
    prompt $p$g
    path=c:\dos
    rem mscdex /d:cpqcdrom /v /m:50 /l:f
    c:\dos\nlsfunc
    c:\dos\mode con cp PREPARE=((437) c:\dos\EGA.cpi)
    c:\dos\mode con cp Select=437
    cd \NWSERVER
    ## commented by MemCalc server -nl -u134217728
    server -nl -u134217728
    I tried removing the -u switch, but the server wouldn't even boot then.
    I'm out of options, can anyone help?
    Arjan Schepers

    Also, I reapplied Service Pack 5, didn't help. BTI.CFG looks like the
    following:
    ;* Copyright 1982-2001 Pervasive Software Inc. All Rights Reserved
    ;* Pervasive Software product initialization file for NetWare
    [Btrieve Communications Manager]
    MaxWorkerThreads=16
    MaxReceivePacketSize=1500
    Supported Protocols=TCPIP
    Listen IP Address=
    TCP/IP Multihomed=YES
    Enable AutoReconnect=NO
    AutoReconnect Timeout=180
    [MicroKernel]
    CacheSize=2048000
    Pervasive SQL 9SP2 is installed on this server for an application named
    MICROS RAS/KAS. It needs 2GB memory (*shrug*, I know), hence the 4GB memory.
    Arjan Schepers

  • HT1657 I rented a movie and was charged for it, it started to download but says I do not have enough space.  I tried to delete it so I could download the SD version instead of the HD version but am unable to do that  what can I do???

    I rented a movie and was charged for it, it started to download but says I do not have enough space.  I tried to delete it so I could download the SD version instead of the HD version but am unable to do that  what can I do???

    Same thing happened to me ipad. Please someone fix it Apple.

  • I'm getting this error with bootcamp "The startup disk does not have enough space to be partitioned"

    Here's the story...
    I had a dual boot configuration on my mac with Mac OS X Lion and Windows XP (made with bootcamp).
    I decided to reinstall windows.
    I deleted the windows partition using BootCamp.
    Tried to recreate the Windows partition with Boot Camp and got: "The startup disk does not have enough space to be partitioned  You must have at least 10 GB of free space available"
    After reading several posts on this forum I decided to defrag the hard drive and try again. 
    The defrag did not work and I'm still getting the error, I have 22 gb of free space on my drive.
    Any suggestions?
    Also, I tried repair disk and repair permissions
    Hmm, my external harddrive says on the box "OS X 10.5.8 or higher (32-bit kernel only)"  Could the 32-bit requirement be an issue? Is lion 64-bit?

    Boot Camp must be able to allocate a contiguous block of space on the drive. If it cannot find 10 GBs of contiguous space, then you cannot create the Windows partition.
    You will have to backup your OS X partition to an external drive, boot from the external drive, use Disk Utility to repartition and reformat your hard drive back to a single volume, then restore your backup to the internal hard drive.
    Get an empty external hard drive and clone your internal drive to the external one.
    Boot from the external hard drive.
    Erase the internal hard drive.
    Restore the external clone to the internal hard drive.
    Clone the internal drive to the external drive
    Open Disk Utility from the Utilities folder.
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
    Destination means the external backup drive. Source means the internal startup drive.
    Restart the computer and after the chime press and hold down the OPTION key until the boot manager appears.  Select the icon for the external drive and click on the downward pointing arrow button.
    After startup do the following:
    Erase internal hard drive
    Open Disk Utility in your Utilities folder.
    After DU loads select your internal hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.  Do not quit Disk Utility.
    Restore the clone to the internal hard drive
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
    Destination means the internal hard drive. Source means the external startup drive.
    Note that the Source and Destination drives are swapped for this last procedure.

  • "The startup disk does not have enough space to be partitioned?" WHY!??

    I"m trying to intall windows 7 on my Macbook air  OS X 10.6. When i enter bootCam i get this error "The startup disk does not have enough space to be partitioned" . It says I need 10GBs of free space, even though I have 500GBs of free space on my drive external hardriver.
    I did my research, and a lot of people are saying to use idefrag and defrag the hardrive, which i did. I also verifed disk permissions and repaired disk permission and all the other stuff.
    What should i do? Apple hass the shittiest service. I spend $1100 bucks for something and i don't even get support without paying? to me, that's BS. so if anyone could help i would greatly appreciate it.

    Thanks Bob.
    And now to close this thrilling episode we will sing the "Dragnet Theme Song". All together now.....
    “Dum De Dum Dum…”
    “Dum De Dum Dum Dum”

  • Time machine says restore target does not have enough space, but not true

    I have a PowerMac G5 Tower with Dual 1.8Ghz, 3GB Memory.
    The internal system disk is a WD 1TB(931.4GB) disk, but it has serious volume structure errors that are not recoverable with First Aid or Micromat TechTool. The 1TB disk was only about 1/3 full(~350GB used).
    Fortunately, I have been using time machine since July, using the exact same type of disk(WD 1TB), which is external..
    I installed another external 1TB that is exactly the same as the original system disk(WD 1TB - 931.3GB).
    I am able to select the backup source of the original disk from the time machine disk, but when I select the destination(new 1TB disk which is completely empty and reformatted), I get the following error:
    -"This volume does not have enough space to restore your system"
    I don't get it.....the original and new disks are exactly the same size. In fact the time machine disk is also the same WD 1TB disk. Realistically, only 350GB should only be needed anyhow...
    Please help....
    Thanks,
    Phil

    Apple phone support recommended that I install Leopard on the replacement disk, boot from it, then use the 'transfer data from time machine backup option'. This worked, but takes an hour longer because I have to install an OS. I am in the process of transferring 337GB of data to the new disk using this method(system is estimating this takes about 8 hours, so I am sending this note before it completes). This further verifies that there was plenty of space on the 1TB replacement, despite the error message.
    The new replacement disk I chose was an internal Seagate SATA disk. I was wrong in the previous note, the original internal system disk that had the volume corruption was also a Seagate SATA disk, not WD(though, the external 1TB was a WD). I did duplicate the bug mentioned in this bug with this disk before I installed the OS, so the problem had nothing to do with Seagate vs. WD, or internal vs. external. I booted from the replacement, then used the setup assistant to transfer data from a time machine backup.
    In summary, there definitely is a bug in the time machine restore option: Time machine reports that there is not enough space to recover, despite the fact that it had a full 1TB clean, and newly reformatted space. I duplicated the error at least 6-7 times, during the course of troubleshooting, with different replacement 1TB disks(WD and Seagate), Internal/External disks, Firewire, USB, and SATA connect.
    This is very nerve-wracking, as the restore is the major reason we do backups. How could apple have missed this one?
    For what it is worth, I spent ALOT of time on this, because I also ran into the bug that WD external disks(firewire and USB) are not bootable on Power PC systems(this is of course a WD issue....).
    Phil

Maybe you are looking for

  • Alt Text in Page Link?

    I am using Page Link in my Vertical Navigation Bar and there is no place to pass the Alt text when you create a Page Link. Alt text is need it to meet our Common Look and Feel Standards. How do you pass the Alt text information for the Page Link? Tha

  • IPhone wants to 'Modify' 504 Outlook Calendar entries on Syncingvis iTunes

    Hi, Until a few months ago (possibly when the clocks went forwards an hour??), my iPhone 4S synced without problems with my Outlook Calendar via iTunes, but now I get a message saying that continuing will result in modifying 504 entries on my Outlook

  • TS1702 Sound lag in GarageBand app on iPad 4 + bluetooth connected to heardphone.

    I use GarageBand on iPad (4th generation). I record several tracks using built-in speaker. But as soon as I connect bluetooth heardphones to iPad the active GB instrument starts to sound with ~1 second delay. Interestingly the latency occurs for sign

  • Menu bar items don't work, right click drop down menu gone

    when i right click, nothing happens, also although the menu bar is there, but there is no drop-down menu for any items (file edit etc). i've checked this on my other browsers, i have opera, seamonkey and google chrome. all these things work except fo

  • Periodic Ticking in Headphones on N8?

    Has anyone with an N8 noticed that it produces a fairly obvious periodic ticking when listening with very sensitive headphones? I have a pair of in-ear monitors with 114 dB SPL/mW sensitivity and I can hear a "tick tick tick" in the headphones during