Earlier quoted context omitted.
The sad part is that there are too many ideas of old systems lost in a world that 30 years later seems too focused on putting Linux distributions everywhere.
Indeed. I am reminded of what Alan Kay has repeatedly referred to as a “pop culture” of computing that has become widespread in technical communities since the 1980s, when the spread of technology grew faster than educational efforts. One result is there are many inventions and innovations from the research community that never got adopted by major players. The corollary to “perfect is the enemy of the good” is good-…
CharlotteOS – An Experimental Modern Operating System
51–60 of 104 posts
Re: CharlotteOS – An Experimental Modern Operating System
#52This is probably a better introduction it seems, than specifically the kernel of the OS: https://github.com/charlotte-os/.github/blob/main/profile/RE... > URIs as namespace paths allowing access to system resources both locally and on the network without mounting or unmounting anything This is such an attractive idea, and I'm gonna give it a try just because I want something with this idea to succeed. Seems the proje…
Recompiling the whole kernel just to change drivers seems like a deal-breaker for wider adoption
Most of these systems came with utilities to partially automate the process, some kind of config file to drive it, Netware 2.x even had TUI menuing apps (ELSGEN, NETGEN) to assist in it
Re: CharlotteOS – An Experimental Modern Operating System
#53Written in Rust. Hmm. SerenityOS is written in C++. I'd love some kind of meta-language that is easy to read and write, easy to maintain - but fast. C, C++, Rust etc... are not that easy to read, write and maintain.
fast necessitates manual control -> more semantics for low level control) that need to be expressible, ie: more complex easy to understand, maintain -> computer does more work for you to "figure things out" in a way that simply can't be optimal under al conditions. TLDR: what you're asking for isn't really possible without some form of AGI
Re: CharlotteOS – An Experimental Modern Operating System
#54> GPLv3 or later (with proprietary driver clarification) What's that parenthetical mean?
Looks like it's explained here: https://github.com/charlotte-os/Catten/blob/main/License/cla... Specifically, "Users may link this kernel with closed-source binary drivers, including static libraries, for personal, internal, or evaluation use without being required to disclose the source code of the proprietary driver.".
I wish there was a social stigma in Open Source/Free Software to doing anything other than just picking a bog standard license.
I mean, we have a social stigma even for OS developers about rolling your own crypto primitives. Even though it's the same very general domain, we know from experience that someone who isn't an active, experienced cryptographer would have close to a zero percent chance of getting it right.
If that's true, then it's even less likely that a programmer is going to make legally competent (or even legally relevant) decisions when writing their own open source compatible license, or modifying an existing license.
I guess technically the "clarification" of a bog standard license is outside of my critique. Even so, their clarification is shoe-horned right there in a parenthetical next to the "License" heading, making me itchy... :)
Re: CharlotteOS – An Experimental Modern Operating System
#55I love seeing projects in this space! Non-big-corp OSSes have been limited to Linux etc; would love to explore the space more and have non-Linux, non-MS/Apple options. For example, Linux has these at the core which I don't find to be a good match for my uses: - Multi-user and server-oriented permissions system. - Incompatible ABIs - File-based everything; leads to scattered state that gets messy over time. - Package…
BSD exists Also Open Solaris Minix etc...
Re: CharlotteOS – An Experimental Modern Operating System
#56I love seeing projects in this space! Non-big-corp OSSes have been limited to Linux etc; would love to explore the space more and have non-Linux, non-MS/Apple options. For example, Linux has these at the core which I don't find to be a good match for my uses: - Multi-user and server-oriented permissions system. - Incompatible ABIs - File-based everything; leads to scattered state that gets messy over time. - Package…
> Package managers and compiling-from-source instead of distributing runnable applications directly. Docker tries to partially address this, right? > Dependence on CLI, and steep learning curve. I think this is partially eased by LLMs.
Docker is a good way of turning a 2kb shell script into a 400mb container. It's not a solution.
Flatpak would be a better example.
Re: CharlotteOS – An Experimental Modern Operating System
#57Earlier quoted context omitted.
Looks like it's explained here: https://github.com/charlotte-os/Catten/blob/main/License/cla... Specifically, "Users may link this kernel with closed-source binary drivers, including static libraries, for personal, internal, or evaluation use without being required to disclose the source code of the proprietary driver.".
Ok, even Doug Crockford has mucked around with licensing before, so this is definitely a digression and not aimed at CharlotteOS which looks fascinating: I wish there was a social stigma in Open Source/Free Software to doing anything other than just picking a bog standard license. I mean, we have a social stigma even for OS developers about rolling your own crypto primitives. Even though it's the same very general do…
Many people don't know that, hence the clarification note.
Re: CharlotteOS – An Experimental Modern Operating System
#58Written in Rust. Hmm. SerenityOS is written in C++. I'd love some kind of meta-language that is easy to read and write, easy to maintain - but fast. C, C++, Rust etc... are not that easy to read, write and maintain.
Re: CharlotteOS – An Experimental Modern Operating System
#59It's comforting to see that capabilities with mandatory access control have become the new normal.
Re: CharlotteOS – An Experimental Modern Operating System
#60How does this compare to SerenityOS? At a glance, it looks more modern and free from POSIX legacy?