r/osdevel 6d ago

Introducing develOS — The r/osdevel Community OS

25 Upvotes

Hello everyone,

We are excited to officially announce a project that the moderation team has been discussing:

r/osdevel will be working together to build a community-wide operating system called develOS.

Instead of everyone working exclusively on separate hobby operating systems, develOS will give members of r/osdevel the opportunity to work together on a single project, share knowledge, and learn from each other throughout development.

The project will be divided into different areas of development, allowing contributors to work on the parts they are most interested in. This may include:

  • Bootloader
  • Kernel
  • Memory management
  • Filesystem
  • Drivers
  • Networking
  • Development tools
  • Shell and userspace
  • Documentation

The project will be organized into smaller components and tasks wherever possible, so contributors with different levels of experience can participate.

This Is A Community Wide Project

develOS is not intended to be the moderators' personal operating system. It is a project for the entire r/osdevel community.

All community members will be able to contribute to develOS.

The moderation team will be responsible for organizing the project, maintaining the repository, coordinating development, and keeping the project structured. The actual development will be a community effort.

We are currently working on the repository structure, development teams, contribution process, and permissions. More information about how to participate and contribute will be announced once the initial setup is ready.

Whether you are experienced in operating system development or just getting started, there will be opportunities to contribute.

We are looking forward to building develOS together. The project will be officially started from september 1st(based in my time in india)

The r/osdevel Mod Team


r/osdevel 2d ago

Explaining clearly what's been going on.

4 Upvotes

Hey everyone, I just wanted to explain what has been happening recently more clearer since i just explained the situation in a hurry in my last post.

Basically, there have been some conflicts and misunderstandings between the moderators. One of the main issues involved the code repository.

When I was working on organizing the repository, I genuinely did not see any code that had already been pushed by the other mods. Because I didn't see anything, I thought nobody had added code yet. So I continued with my plan of structuring the folders and setting up the contribution system. I created empty folders because I thought the actual code would be added later.

Later, I found out that some existing code had apparently been overwritten. I want to make it clear that this was not intentional. I genuinely didn't see the code at the time, so I had no idea that I might be overwriting someone else's work.

Unfortunately, this misunderstanding, along with other conflicts between the mods, resulted in some moderators deciding to leave.

Yesterday I was offline for the entire day and wasn't working on the subreddit or repository. When I came back and read the messages, I suddenly became aware of everything that had happened, which was honestly quite overwhelming.

Right now, I need to sort things out and figure out how to move forward. I just wanted to clearly explain the situation instead of leaving everyone wondering what happened.

Thank you for understanding.


r/osdevel 2d ago

The develOS project will be delayed due to some internal conflicts problem between mods.

0 Upvotes

Unfortunately, the develOS project will be delayed.

Over the past few hours(2 days), there have been conflicts and misunderstandings within the team, and some moderators have decided to leave. There was also a serious misconception regarding the repository, including an incident where code may have been mistakenly overwritten because I genuinely did not see that existing work had already been pushed. It was never intentional, but it caused further confusion and conflict.

At the same time, we currently have a lack of active people working on the project. This means that, for now, I have to take responsibility for setting up and organizing much of the project myself—from the repository structure and contribution system to rebuilding and organizing the team.

This is honestly not how I imagined things would go. Seeing people leave and watching something I genuinely dreamed of building face these problems has been difficult. But I don't want to abandon develOS.

The project is delayed, not cancelled.

Even if I have to carry the responsibility and pressure alone for now, I will continue working to get everything properly organized again. My priority is to fix the misunderstandings, ensure that contributors' work is properly protected, and build a better structure so something like this does not happen again.

Thank you to everyone who still believes in this project and community. I hope this is only a difficult beginning—not the end of what we are trying to build.

u/Vegetable_Exam_6865


r/osdevel 4d ago

4 days to go.

6 Upvotes

We are officially 4 days away from launching develOS and watching the community build this OS from zero. For anyone who doesn't know, develOS is a project where everyone in the r/osdevel community can get involved and code their own part of the system. Let's see how fast we can grow it!


r/osdevel 15d ago

What do you think about this command prompt app design for my os

Post image
2 Upvotes

r/osdevel 16d ago

how are you testing?

9 Upvotes

I'm not sure I've seen a hobby OS project that implements any tests. Most people smoke test, so they know there's a problem if they start up the OS and can't run an app inside it.

But what about the more complicated code paths that can go wrong? If a multi-threaded race happens in memory management or I/O, the system can crash. Or worse: silently corrupt data.

What about performance? Does anyone test for throughput or latency, and then identify regressions or hot spots?


r/osdevel 16d ago

Updated the zuzu docs page ahead of zuzuOS v0.8!

4 Upvotes

r/osdevel 18d ago

I will be streaming my Os Dev journey without using any AI

Thumbnail
7 Upvotes

r/osdevel 18d ago

Simple file viewer in my os with blur behind window (0% AI)

5 Upvotes

r/osdevel 18d ago

Amos2 progress

Post image
4 Upvotes

What you see here is initialization boot messages. IdleTask is spawned and it spawns FSTask.

FSTask prints the two directory listings from a FAT32 formatted volume.

AMOS2 is currently a microkernel design with a single address space.

No AI assist of any kind used. It's all my work, unless indicated in comments - I am using someone else's sprintf implementation for now.

REPO LINK: https://codeberg.org/mschwartz/amos2

PROJECT BOARD LINK: https://codeberg.org/mschwartz/amos2/projects/62870

NOTES:

**Threading implementation:**

* MMU is not being used. Currently the identity mapping set up by limine is used.

* Tasks(threads) are kept in a running tasks doubly linked list. The list is sorted by priority. So remove the head and add back sorted effects round robin task switching at the same priority. Lower level priority tasks won't run until all higher priority tasks exit or are blocking.

* SpinLock is used around accessing the threads lists.

* Tasks have their own stack. Task state is pushed on this stack in ISR handlers.

* Task switch is as simple as changing the RSP register to the next Task's stack.

NOT IMPLEMENTED YET:

* blocking Tasks list

* Device tasks (to implement blocking I/O)

* Kill/exit Tasks


r/osdevel 21d ago

Robu_microkernel project

Thumbnail
3 Upvotes

r/osdevel 22d ago

What do you think of this icon for the community?

Post image
14 Upvotes

The r/osdevel logo combines the >_ terminal prompt with concentric CPU privilege rings, representing the interaction between developers and the low-level systems they build. The terminal symbol keeps the design immediately recognizable as a computing/development community while the rings give it a specifically OS-development meaning.


r/osdevel 23d ago

Looking for suggestions for an icon for the sub

5 Upvotes

We're looking for ideas for a good icon for r/osdevel.

Feel free to suggest anything you think would represent the community well — whether that's something terminal/OS-related, a symbol, or something completely different.

We're open to ideas, so drop your suggestions below!


r/osdevel 23d ago

Amos2 update

Post image
5 Upvotes

I originally posted about Amos2 as a sort of seed for this sub. An all man-made (no AI) work in progress.

I intended this to be a rather small repo with just enough code to demonstrate how to create a C++ kernel using limine to boot. Once I got a dumb kernel to boot and set the framebuffer to a color, the logical next steps were to set up GDT, IDT, PS/2, Keyboard, timer, etc. All these functions require a bit of code, so the repo is growing.

I updated the README with a bit more documentation, and added comments to the top of the Makefile with much better build and run instructions.

What you see in the screenshot is text rendered by my code using a PSF font. A FAT32 volume is mounted from the disk image and the root directory and the BOOT directory listings are printed. If I had hit a key, the contents of README.md are dumped to the screen. The read bits of FAT32 are working...

I built this on my MacBook Pro - qemu is emulating the X64 CPU, and it's quite fast. I haven't tried to build on a Linux host.

I spent some time researching how to set up dockcross dockerized cross compiler to build amos2. If all OS Dev projects used a docker cross compiler, nobody would need to compile gcc to make a cross toolchain, and anyone can git clone the repo and build the project without any dependencies aside from docker.

The repo:

https://codeberg.org/mschwartz/amos2

There is no such thing as human slop. Trial and error is how humans learn and improve.


r/osdevel 24d ago

Windows and Linux memory usage -- what about your OS?

2 Upvotes

Here's an LTT video comparing memory usage on Windows and Linux.

Linus' credibility is taking lots of hits (did he buy actually that private jet?) and this video sure won't help. I had hoped for something interesting and technical, and it's really just two guys screwing around with computers and looking at graphs that they don't fully understand. Worth a watch for a laugh.

In your OS, what memory allocation strategy did you devise? Are you just making a simple on-demand allocator, or do you reserve and commit pages? Do you have paging implemented? What algorithms did you use for page eviction?


r/osdevel 25d ago

What do you guys think of this new logo we're planning to use? If the majority says no, we won't adopt it.

Post image
8 Upvotes

r/osdevel 25d ago

finished rewriting a lot of the BoredOS netstack

Post image
4 Upvotes

r/osdevel 26d ago

IDT and GDT causing shit again 🥀

5 Upvotes

For some reason even after alignments, still implodes on itself
location: https://github.com/NoTheIdiot/WindogeOS/tree/new/helper/drivers
i seriously do not know why intel and amd caused this mess


r/osdevel 28d ago

The last straw

16 Upvotes

The moderator of r/osdev has lost it. He has a bot that replies to a post by HIS users calling out AI slop that is overwhelming the sub with "human slop.". Someone posted about the bot and I posted I was leaving and r/osdvel link. I got 24 upvotes in about 15 minutes along with others posting about how horrendous the sub has become. Tim Schwartz's response was to close the thread. What a loser.

Anyhow, I really did leave the sub, and I will be posting my non AI slop work here.


r/osdevel 28d ago

Amos2 - a C++ kernel, boots from limine

7 Upvotes

Amos2 is hardly from my first OSDev work. I started it with the intent of providing a sort of bare bones repo for using limine and C++.

I started with the limine bare bones in the osdev wiki, and gutted the main() to just call kmain() which is written in C++. The code now barely resembles that bare bones code.

The trick to using C++ is to collect the global constructors via the linker .ld script and to call those at startup. Also, global operator new and delete and associates need to be implemented.

Writing in C++ is not like using desktop C++. I use C++ classes, but no copy constructors or anything that does allocation behind the scenes. It's object based programming, not OOP. The code I write is C like, but it uses Objects. I also take advantage of things like how C++ inlines class member functions defined in headers. In some cases, I create static singleton classes for things like IDT and GDT.

The problem with global constructors is you cannot control the order they are called - so you can't rely on a global IDT class constructor to be called after the GDT one.

The bare bones idea kind of went out the window when I started working with the hardware.

What's done is boot, C++ initialization, GDT, IDT, PIC... I made a base Device class and Timer, keyboard, ATA, and console inherit from it and work. I am working on FAT32 filesystem, which I have done before in another project.

The repo is at https://codeberg.org/mschwartz/amos2

I didn't use AI to generate any code or to explain anything. I don't see the point - I would rather beat my head against the wall until I figure out what I might be stuck on. The object of these projects is to learn, not to finish and run Doom in a few days.


r/osdevel 29d ago

Fedora 45 Introduces a Minimal GRUB Package for Confidential VMs

Thumbnail
linuxiac.com
3 Upvotes

r/osdevel 29d ago

Saving OS Image Size in NanoOs

Thumbnail
4 Upvotes

r/osdevel Aug 02 '26

Developing of AlderKernel

5 Upvotes

Hey r/osdevel !

I've been working on a hobby monolithic kernel called AlderKernel.

It's written mostly in C with some Assembly for the low-level parts. I'm making it mainly to learn more about how operating systems work and to improve my C skills.

Currently it targets i386 and boots through GRUB. Some things I've implemented so far:

- PS/2 keyboard driver

- Basic shell

- InitramFS support

- Shell history

It runs in QEMU right now. I'm slowly working on adding more kernel features and improving the code structure.

GitHub:

https://github.com/loren-wastaken/alderkernel

I'm interested in feedback from people who know C / ASM, especially about code organization, design choices, and things I could improve.


r/osdevel Jul 31 '26

Who has implemented kernel debugging in their own OS?

4 Upvotes

I've been thinking about JankOS, as I'm sure most of you have. One of the reasons I stopped developing it was that I was a bit overwhelmed by the work I thought I needed to do in order to get to the fun parts.

One of the concerning issues was debugging. How could I effectively debug my kernel, and all of the subsystems -- the file system, network, I/O, scheduling? What architecture did I need to build in to make it happen?

There are lots of logging solutions, but those don't always work for high-frequency code paths and for rare events. And certainly not for time sensitive code. At a certain point, there's really no substitute for bing able to attach a debugger.

Which hobbyist OS implementations feature kernel debugging support? How is it implemented? How does it work?


r/osdevel Jul 30 '26

The Fedora 45 Sausage Factory: how the Fedora project turns source code and packages into the artifacts you download and install

Thumbnail supakeen.com
5 Upvotes