this post was submitted on 17 Mar 2026
26 points (86.1% liked)

retrocomputing

6233 readers
3 users here now

Discussions on vintage and retrocomputing

founded 2 years ago
MODERATORS
 

An implementation of sudo for DOS, to run the given command with full privileges. It can be used to edit important system files, run disk partitioning tools, and so on!

you are viewing a single comment's thread
view the rest of the comments
[–] over_clox@lemmy.world 5 points 2 weeks ago* (last edited 2 weeks ago)

If I'm understanding this correctly, it works for protected mode DOS, as in the DOS that Windows 95 and 98 run on top of.

In this case, this implementation of SUDO drops the CPU out of protected mode and runs whatever command in real mode, which is 16 bit 8086 compatible and limited to 1MB of RAM.

Unless I'm missing something here anyways..