Slashdot Mirror


Life After MS-DOS: FreeDOS Keeps On Kicking

angry tapir writes "FreeDOS — the drop-in, open source replacement for MS-DOS — was started after Microsoft announced that starting from Windows 95, DOS would play a background role at best for users. Almost two decades later, FreeDOS has survived and, as its creator explains in this interview, is still being actively developed, despite achieving its initial aim of an MS-DOS compatible OS, which quite frankly is somewhat amazing."

9 of 255 comments (clear)

  1. Re:Dosbox or freedos by Parafilmus · · Score: 5, Informative

    You can have both!

    Install FreeDos in the c:\dos folder of your DosBox machine. You'll get most of FreeDos' new functionality, while keeping the useful features of DosBox.

    see here: http://www.dosbox.com/wiki/TOOLS:FreeDOS

  2. Re:Not surprising by hobarrera · · Score: 4, Informative

    Legacy applications?
    I've a 2010 intel motherboard with an integrated nic that reports "bad eeprom checksum" every time there's a power failure.
    Intel only provides a DOS utility to re-flash the firmware, if it weren't for FreeDOS, I'd have a useless nic (on a mobo with no free PCIs, BTW).

    Lots of hardware vendors still provide DOS-only BIOS updated, and similar utilities, regrettably, so FreeDOS still has plenty of uses - though not for the average user.

  3. Re:Dosbox or freedos by Anonymous Coward · · Score: 4, Informative

    DosBox will be better because it's specifically built for retro gaming. It supports all the hardware needed for gaming including joystick, mouse, soundcard, and networking. Many years ago DosBox was too buggy to use, but I loaded the latest build about a year ago and it is awesome. Everything just works. This weekend my brother and I did some Doom2 Co-op using IPX tunneling, and it worked flawlessly.

  4. Re:FreeXP and XPBox by maxwell+demon · · Score: 3, Informative

    I wonder in 2023 we will be having XPBOX or FreeXP since it has so many die hard users who refuse to leave kicking and screaming the whole time.

    I think that one is called ReactOS.

    --
    The Tao of math: The numbers you can count are not the real numbers.
  5. Re:Not surprising by idontgno · · Score: 4, Informative

    At least the bug has a work-around fix:

    The fix

    FreeDOS developer Eric Auer has provided a fix that corrects the buggy behaviour of the VirtualBox PCI BIOS. It can be downloaded at:

    http://lazybrowndog.net/freedos/files/vbox-fix.zip

    His solution is a small TSR program that comes with new handlers for two PCI BIOS scanning functions, that make them scan only existing PCI bus numbers. VBOX-FIX.COM is supposed to be loaded in AUTOEXEC.BAT. The program checks if it is running inside a VirtualBox guest and loads only if it can verify that. Eric Auer writes:

    It does up to two PCI scans by vendor:device ID (int 1a.b102 calls) to check for two VirtualBox specific PCI devices. Only if at least one of them is present, the faster-on-VirtualBox int 1a handler for int 1a.b102 and b103 (scan by vendor:device or class- subclass-interface) is installed as a TSR. The VB vendor:device ID values are 80ee:beef and 80ee:cafe.

    VBOX-FIX.COM needs 416 bytes of DOS memory and can be loaded high.

    Gosh. "...can be loaded high.". I got a little tickle of nostalgia thinking about that. All those wonderful "load high and remain resident" hacks.

    Wait. Why is this good?

    --
    Welcome to the Panopticon. Used to be a prison, now it's your home.
  6. Re:That's cool, I guess ... by maxwell+demon · · Score: 3, Informative

    If it works like MS DOS, you need to have the ANSI.SYS driver loaded, and can then just use the ANSI code for inverse video: $E[7m (where $E generates an escape character)

    --
    The Tao of math: The numbers you can count are not the real numbers.
  7. Re:That's cool, I guess ... by Dahan · · Score: 3, Informative

    Whoa, what command prompt code did you use to get your command line in inverse color? Mine's the standard white on black.

    If ANSI.SYS is loaded, PROMPT $e[7m$p$g$e[m

  8. Re:MSDOS history by gaudior · · Score: 4, Informative

    Fortran?! No. CP/M is written in 8080 Assembly code. Later versions took advantage of Z80 op-codes.

  9. Re:Dosbox or freedos by VortexCortex · · Score: 5, Informative

    As a developer, I can say no, that "problem" was just a dumb way to do physics, and it's been fixed forever to anyone who wasn't a moron, even in the AT/XT days. Back in the day we just checked wall clock time / CMOS ticks, you know, the ones we used to modulate PC speakers to make different frequencies, that's what we used to update game state and prevent binding physics to CPU speed. Today, RAM is plentiful, so I do physics state "commits" in fixed step sizes, say 30hz or 60hz, and interpolate from the last physics state to the temporary state that's being rendered.

    If enough time has passed to process the next full physics step, then it's processed and committed. Otherwise I reset state to last commit, and process the partial physics step, but do not trigger any important events like player death in the temp step. If the system is too slow to run a partial physics step without immediately requiring another full physics step then the partial steps are not processed and the game rendering updates screen positions only after the physics step can be computed. This is important for deterministic physics, for demo replay and also for synchronized network games because:
    UpdatePhysics( 20ms ); UpdatePhysics( 20ms );
    is not always equivalent to:
    UpdatePhysics( 40ms );
    Due to a number of factors, especially rounding errors.
    UpdatePhysics( elapsedTime );
    Is the worst on fast systems -- those very small fractions of time lead to physics explosions -- not the particle effect kind, the bounce off an object through the floor and to the other side of the universe kind.

    For comparison:
    Here is my rope physics with a fixed physics step size frames.
    Here is the same physics running with actual elapsed time each frame.
    The latter comments mention tiny jiggles propagating into a frenzy. Those tiny movements coupled with very small elapsed times create the physics explosion.