Advertisement
Guest User

List of OS's with Good Architecture

a guest
Mar 19th, 2021
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.19 KB | None | 0 0
  1. People often ask if there's examples of OS's better than UNIX or that have superior architecture. Here's a few, esp from past, that did things differently in a way worth copying in UNIX or another OS project.
  2.  
  3. Historical look at quite a few
  4. http://brinch-hansen.net/papers/2001b.pdf
  5.  
  6. Note: A number were concurrency safe, had a nucleus that preserved consistency across system layers, or were organized in layers that could be tested independently.
  7.  
  8. Burrough's B5000 Architecture (1961 onward)
  9. http://www.smecc.org/The%20Architecture%20%20of%20the%20Burroughs%20B-5000.htm
  10.  
  11. Note: Written in ALGOL variant, protected stack, bounds checks, type-checked procedure calls dynamically, isolation of processes, froze rogue ones w/ restart allowed if feasible, and sharing components. Forward thinking.
  12.  
  13. IBM System/38 (became AS/400) (1970s) https://homes.cs.washington.edu/~levy/capabook/Chapter8.pdf
  14.  
  15. Note: Capability architecture at HW level. Used intermediate code for future-proofing. OS mostly in high-level language. Integrated database functionality for OS & apps. Many companies I worked for had them and nobody can remember them getting repaired. They run like tanks.
  16.  
  17. Oberon System
  18. http://www.projectoberon.com/ http://www.cfbsoftware.com/modula2/Lilith.pdf
  19.  
  20. Note: Brilliance started in Lilith where two people in two years built HW, OS, and tooling with performance, safety, and consistency. Designed ideal assembly, safe system language (Modula-2), compiler, OS, and tied it all together. Kept it up as it evolved into Oberon, Active Oberon, etc. Now have a RISC processor ideal for it. Hansen did similar on very PDP-11 UNIX was invented on with Edison system, which had safety & Wirth-like simplicity.
  21.  
  22. OpenVMS
  23. https://en.wikipedia.org/wiki/OpenVMS
  24.  
  25. Note: Individual systems with good security architecture & reliability. Clustering released in 80's with up to 90 nodes at hundreds of miles w/ years of uptime being common. One cluster claimed 17 years. Rolling upgrades, fault-tolerance, versioned filesystem using "records," integrated DB, clear commands, consistent design, and great cross-language support since all had to support calling convention and stuff. Used in mainframe-style apps, UNIX-style, real-time, and so on. Declined, pulled off market, and recently re-released.
  26.  
  27. Genera LISP environment
  28. http://www.symbolics-dks.com/Genera-why-1.htm
  29.  
  30. Note: LISP was easy to parse, had REPL, supported all paradigms, macro's let you customize it, memory-safe, incremental compilation of functions for pauseless development, and even update apps while running. Genera was a machine/OS written in LISP specifically for hackers with lots of advanced functionality. Included source. So, the IDE could trace what's going from your web request all the way to your networking stack. Today's systems still can't replicate the flow and holistic experience of that. People should keep trying, with or without LISP itself.
  31.  
  32. BeOS Multimedia Desktop
  33. http://birdhouse.org/beos/byte/29-10000ft/ https://www.youtube.com/watch?v=BsVydyC8ZGQ
  34.  
  35. Note: Article lists plenty of benefits that I didn't have with alternatives for long time. Still barely do. Mainly due to great concurrency model. Skip ahead to 16:10 to be amazed at what load it handled on older hardware. Haiku is an OSS project to try to re-create it.
  36.  
  37. EROS
  38. http://www.eros-os.org/papers/IEEE-Software-Jan-2002.pdf
  39.  
  40. Note: Capability-secure OS that redid things like networking stacks and GUI for more trustworthiness. It was fast. Also had persistence where a failure could only loose so much of your running state. MINIX 3 and Genode-OS continue the microkernel tradition in a state where you can actually use them today. MINIX 3 has self-healing capabilities. QNX was first to pull it off with POSIX/UNIX compatibility, hard real-time, and great performance. INTEGRITY RTOS has features like apps donating their own time and memory for kernel operations to stop system hangs.
  41.  
  42. SPIN OS
  43. http://www-spin.cs.washington.edu/
  44.  
  45. Note: Coded OS in safe Modula-3 language with additions for better concurrency and type-safe linking. Could isolate apps in user-mode then link performance-critical stuff directly into the kernel with language & type system adding safety. Like Wirth & Hansen, eliminates all the abstraction gaps & inconsistency in various layers on top of that.
  46.  
  47. JX OS
  48. http://www4.cs.fau.de/Projects/JX/publications/jx-sec.pdf
  49.  
  50. Note: Builds on language-oriented approach. Puts drivers and trusted components in Java VM for safety. Microkernel outside it. Internal architecture builds security kernel/model on top of integrity model. Already doing well in tests. Open-source. High tech answer is probably Duffy's articles on Microsoft Midori.
  51.  
  52. So, there's a summary of OS architectures that did vastly better than UNIX in all kinds of ways. They range from 1961 mainframes to 1970-80's minicomputers to 1990's-2000's desktops. In many cases, aspects of their design could've been ported with effort but just weren't. UNIX retained unsafe language, root, setuid, discretionary controls, heavyweight components (apps + pipes), no robustness throughout, GUI issues and so on. Endless problems many others lacked by design.
  53.  
  54. Hope the list gives you stuff to think about or contribute to. :)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement