Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Program too big to fit in memory  (Read 40494 times)

0 Members and 1 Guest are viewing this topic.

gunitinug

    Topic Starter


    Newbie

    • Experience: Beginner
    • OS: Unknown
    Program too big to fit in memory
    « on: August 01, 2021, 01:31:02 AM »
    Hello.

    I'm running ms dos 6.22 on virtualbox. When I attach a floppy disk image on drive A and run INSTALL.EXE it says "Program too big to fit in memory".

    I set my base memory to 32MB.

    What can I do?

    DaveLembke



      Sage
    • Thanked: 662
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Windows 10
    Re: Program too big to fit in memory
    « Reply #1 on: September 03, 2021, 02:58:08 PM »
    What program are you trying to install with Install.exe? Perhaps the software checks for space prior to installation and the program needs greater than 32MB whereas the Floppy only has 1.44MB maximum on it.

    BC_Programmer


      Mastermind
    • Typing is no substitute for thinking.
    • Thanked: 1140
      • Yes
      • Yes
      • BC-Programming.com
    • Certifications: List
    • Computer: Specs
    • Experience: Beginner
    • OS: Windows 11
    Re: Program too big to fit in memory
    « Reply #2 on: September 03, 2021, 06:01:22 PM »
    MS-DOS executables have their minimum memory requirements (conventional memory) coded into their headers. "Program too big to fit in memory" is an MS-DOS error which means you do not have enough free conventional memory.

    You can check free memory using mem /c.

    Though often it just means the executable is either corrupted or for a newer Windows OS.

    I was trying to dereference Null Pointers before it was cool.