| I’m tired of fragile systems. Tired of crashes we’ve accepted as normal.
Tired of operating systems that forget everything the moment something goes wrong.
Tired of machines that don’t remember, don’t heal, don’t protect the user—only the company behind them. So I’m building a new one. It’s called *VaiOS*. A bare-metal, compression-first, fault-healing operating system. It:
- Compresses memory and pages at the core level
- Monitors physical memory for degradation
- Verifies every page with cryptographic integrity
- Rolls back from memory corruption or crashes in real time
- Is designed to *survive entropy, not just run code* This is not a distro. This is not Linux.
It’s written in Assembly and C, from scratch. Bootloader works. Memory map in progress. Compression-backed page recovery coming next. Why? Because I believe our systems should serve the user even in failure.
Because I believe in coexistence with AI, not exploitation.
Because I’m tired of OSes that die quietly. Live demo and manifesto coming next week. I’d love your thoughts, questions, or brutal honesty. If anyone’s building like this or thinking like this, I’d love to build with you. |
The "rolls back from [...] crashes in real time" does sound new and reminds me of PhantomOS. I do wonder how it deals with corruption that does not induce crashes right away - say there was a use-after-free in app that caused random memory writes... after corrupting 50 words it corrupted enough to trigger crash. Is it just going to undo that one last write, leaving the other 49 words corrupted? What about lock-ups, which do not cause crashes?
And all the talk about "machines which protect company behind them", "coexisting with AI" just smells of inexperience/naivete. How on earth compressed memory is going to help with that?
Also, "I’m tired of OSes that die quietly." makes me wonder.. could it be that all your experience is with commercial OSes, and you've never researched that part of Linux? Because Linux does not have to die quietly, there are many mechanisms (like serial console, kdump, pstore, netconsole, etc...) that give you detailed report when your system dies, with stack trace and all. I've used them in the past and they work pretty well. If you haven't played with them, given them a try! If anything, this will give you an important insight about how modern OSes work and why they crash.