#osdev 搜尋結果
Here is my side project, 'Hojuix', a 64bit OSDev project. It took me a year to get this far, but it can finally run an ELF file built from C, on a FAT16 filesystem, in usermode. (it page faults because I dont have an exit syscall yet). Next up: XV6's shell (maybe) #OSDev

The commands in MOROS will now be able to detect output redirection to disable color mode and other interactive features automatically #osdev #rust #rustlang #buildinpublic

Testing my hobby OS on a few network cards (RTL8139B, RTL8139C, RTL8139D, and Intel PRO/1000 GT Desktop) #osdev #network #hardware

I have a PMM (Physical Memory Manager) now! All the RAM are belong to the kernel! #osdev You can follow the dev here: github.com/MBlore/bloreos…

I spent a good chunk of the past 2 weeks improving userspace memory allocation in MOROS to the point that I can now run my lunisolar calendar program that does a lot of astronomical computations without crashing! #rust #rustlang #osdev #buildinpublic

Today I wrote a little shell script to browse the web/gopher/gemini with the new viewer in my hobby operating system! #osdev #buildinpublic

After 9 months of work it's time to publish a new version of MOROS, my hobby OS written in Rust! github.com/vinc/moros/rel… #osdev #rust #rustlang

Today, I'm improving the network logs in my hobby operating system #osdev #buildinpublic #rust #rustlang

Working on a new text viewer to complement the editor of my hobby operating system #osdev #buildinpublic #rust #rustlang

Today I'm having fun writing a little #mandelbrot program in userspace to validate the new graphical mode in MOROS #osdev #rust #rustlang #buildinpublic

Today thinking of start a tought project making a OS from scratch i realy want to real how OS are made i m following "Developed From Scratch" on youtube youtube.com/watch?v=X82l37… plz follow and comment to get eh repo of the part 1 #osdev #cpp #buildininpublic


MOROS Chess can now load puzzles randomly from EPD files. I'm pretty happy to try out this new feature on my hobby OS this weekend! #osdev #rust #rustlang #buildinpublic #chess

Today thinking of start a tought project making a OS from scratch i realy want to real how OS are made i m following "Developed From Scratch" on youtube youtube.com/watch?v=X82l37… plz follow and comment to get eh repo of the part 1 #osdev #cpp #buildininpublic


A clean-room hobby operating system for x86_64 built entirely from scratch, featuring a modular monolithic kernel, a custom ELF loader, and a handcrafted C standard library, designed for learning and exploration. oshub.org/projects/banan… #osdev #oshub #bananos
An old #tutorial on #OSDev that is still interesting: “How To Create An OS From Scratch”, Carlos Fenollosa (github.com/cfenollosa/os-…). Via HN: news.ycombinator.com/item?id=454201… On Lobsters: lobste.rs/s/cmlr35/how_c… #OS #Programming #Kernel #OperatingSystem #SystemsProgramming
Nice! 😍: “Writing An Operating System Kernel From Scratch”, Uros Popovic (popovicu.com/posts/writing-…). Via HN: news.ycombinator.com/item?id=452406… On Lobsters: lobste.rs/s/aokjpu/writi… #OSDev #OS #Kernel #Programming #RISCV #OperatingSystem #Unikernel
There's no better way to learn how computers work than building an OS. #OS #OperatingSystem #OSdev #computer
Created my own myshell$ in OS with C 🔥 Headers used: 📌 stdio.h 📌 unistd.h 📌 fcntl.h 📌 string.h 📌 stdlib.h 📌 sys/types.h 📌 sys/stat.h 📌 sys/wait.h Feels like a mini Linux in the making 🚀 #CProgramming #OSDev
After 9 months of work it's time to publish a new version of MOROS, my hobby OS written in Rust! github.com/vinc/moros/rel… #osdev #rust #rustlang

Takeaways: C is powerful, but it keeps you honest. Segmentation faults are just C’s way of saying “try again, but smarter.” Debugging is 50% detective work, 50% humility. Onward to more code, more bugs, and more learning! (AI generated 😅) #9DaysOfCode #CLanguage #OSDev #Coding
The ability to print text, accept input, manage memory and run a shell loop. Follow my journey as I share daily progress, code snippets, and lessons learned. Let’s build something awesome together! github.com/G4EVA-dev/hobb… #OSDev #RustLang #CLanguage #90DaysOfCode #CodingJourney
If you're into secure OS dev, quantum-proof systems, or just pushing kernel boundaries, check out N0N-OS. It's open source and aiming to redefine security. What do you think—game-changer or niche? Drop your thoughts! 🔥 #OSDev #QuantumComputing github.com/NON-OS/nonos-k…
09:35:12 --- join: mmp__l ([email protected]) joined #osdev 09:35:15 --- join: shmeebegek ([email protected]) joined #osdev 09:37:58 --- join: mmp___l ([email protected]) joined #osdev 09:41:39 --- quit:…
i will teach you all about #osdev if you want 👀
Hey friends (and friends to be) are you going to @rustforgeconf and arrive early? hit me up if you want to hang out :)
02:37:03 --- quit: zars_ (Remote closed the connection) 02:38:41 --- join: crib ([email protected]) joined #osdev 02:42:12 --- join: zars ([email protected]) joined #osdev 02:42:42 <r0nny> YAY 02:42:58 <r0nny> gcc is cappable of…

Here is my side project, 'Hojuix', a 64bit OSDev project. It took me a year to get this far, but it can finally run an ELF file built from C, on a FAT16 filesystem, in usermode. (it page faults because I dont have an exit syscall yet). Next up: XV6's shell (maybe) #OSDev

Just nailed a new kernel module for my homebrew OS!��️Feeling the thrill of low-level coding. Next up: optimizing the scheduler. Who's diving into OS dev too? Share your projects!��#HomebrewOS #OSDev #Coding


Just nailed a new kernel module for my homebrew OS!��️Debugging was a beast, but the system’s running smoother than ever. Next up: optimizing the scheduler!��#HomebrewOS #OSDev #TechJourney

The commands in MOROS will now be able to detect output redirection to disable color mode and other interactive features automatically #osdev #rust #rustlang #buildinpublic

Just debugged a pesky kernel panic in my homebrew OS project!��Feeling on top of the world after hours of tweaking memory management. Keep coding, keep learning!��#HomebrewOS #OSDev #CodingJourney


Testing my hobby OS on a few network cards (RTL8139B, RTL8139C, RTL8139D, and Intel PRO/1000 GT Desktop) #osdev #network #hardware

Yesterday I worked on MOROS random number generator (RNG) and I discovered a bug in the VGA driver by reading `/dev/random` on multiple computers. I've been interested in fuzzing my OS for a long time, and I guess that's what I started doing! #osdev #fuzzing

Decided to switch things up today by building my own OS, shunya_os, using Rust! 🌱 Faced tons of challenges but learned a lot about OS concepts and Rust in low-level programming. Despite a successful compilation, QEMU didn’t print my 'Hello World' just yet.💻 #RustLang #OSDev

I have a PMM (Physical Memory Manager) now! All the RAM are belong to the kernel! #osdev You can follow the dev here: github.com/MBlore/bloreos…

Part of my [Memory management notes] from OSDev journey. last 2 pics represent x64 4 level paging structure. #OSDev #paging
![h4rly_stesh's tweet image. Part of my [Memory management notes] from OSDev journey.
last 2 pics represent x64 4 level paging structure.
#OSDev #paging](https://pbs.twimg.com/media/GvFnN46W4AAlVuH.jpg)
![h4rly_stesh's tweet image. Part of my [Memory management notes] from OSDev journey.
last 2 pics represent x64 4 level paging structure.
#OSDev #paging](https://pbs.twimg.com/media/GvFnN31WgAEeDdH.jpg)
![h4rly_stesh's tweet image. Part of my [Memory management notes] from OSDev journey.
last 2 pics represent x64 4 level paging structure.
#OSDev #paging](https://pbs.twimg.com/media/GvFnkhxXEAAkQXL.jpg)
![h4rly_stesh's tweet image. Part of my [Memory management notes] from OSDev journey.
last 2 pics represent x64 4 level paging structure.
#OSDev #paging](https://pbs.twimg.com/media/GvFnmr8XMAAfn0R.jpg)
a lot happened in the last 35 hrs, going to sleep now, will update you all as I go along with this project.. #osdev #kernel

I spent a good chunk of the past 2 weeks improving userspace memory allocation in MOROS to the point that I can now run my lunisolar calendar program that does a lot of astronomical computations without crashing! #rust #rustlang #osdev #buildinpublic

Something went wrong.
Something went wrong.
United States Trends
- 1. Gabe Vincent 3,229 posts
- 2. #AEWDynamite 17.7K posts
- 3. Deport Harry Sisson 6,358 posts
- 4. Angel Reese 47K posts
- 5. #VSFashionShow 535K posts
- 6. #Blackhawks 1,938 posts
- 7. Blues 21.6K posts
- 8. tzuyu 217K posts
- 9. #youtubedown 16.2K posts
- 10. #Survivor49 3,402 posts
- 11. Hofer 1,738 posts
- 12. Deloitte 4,913 posts
- 13. Quen 29.9K posts
- 14. DuPont 1,485 posts
- 15. George Kirby 2,319 posts
- 16. Darby 5,088 posts
- 17. jihyo 173K posts
- 18. Nazar 6,511 posts
- 19. Tusky 2,111 posts
- 20. Victoria's Secret 529K posts