stokebreakup / awesome-osdev

List of resources and projects for operating system development.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Awesome OSDev Awesome

List of resources and projects for operating system development.

Projects

Indicators

  • ๐Ÿ™‚ - Work in progress
  • ๐Ÿ˜€ - Finished
  • ๐Ÿ™ - Unmaintained

Bootloaders

  • ๐Ÿ˜€ Limine - Modern, advanced, portable, multiprotocol bootloader.
  • ๐Ÿ™‚ Sabaton - aarch64 stivale2 bootloader
  • ๐Ÿ™‚ Ion - Modern x86_64 UEFI bootloader
  • ๐Ÿ™ TomatBoot - A UEFI 64bit Bootloader
  • ๐Ÿ™‚ Tosaithe - Very minimalistic UEFI boot menu / Stivale2 bootloader

Operating Systems

  • ๐Ÿ˜€ SerenityOS - Graphical Unix-like operating system for x86 computers.
  • ๐Ÿ™‚ BRUTAL - An operating system inspired by brutalist design that combines the ideals of UNIX from the 1970s with modern technology and engineering
  • ๐Ÿ™‚ skiftOS - A hobby operating system built from scratch in modern C++. Featuring a reactive UI library and a strong emphasis on user experience. (skiftOS is currently being rewritten so a lot of things might not work)
  • ๐Ÿ˜€ ToaruOS - A completely-from-scratch hobby operating system: bootloader, kernel, drivers, C library, and userspace including a composited graphical UI, dynamic linker, syntax-highlighting text editor, network stack, etc.
  • ๐Ÿ˜€ Managarm - Pragmatic microkernel-based OS with fully asynchronous I/O
  • ๐Ÿ˜€ Lyre - Lyre is an effort to write a modern, fast, and useful operating system.
  • ๐Ÿ™‚ ฮผ - ยต is a minimalist microkernel
  • ๐Ÿ˜€ opuntiaOS - An operating system targeting x86, ARMv7, and Aarch64
  • ๐Ÿ˜€ Sortix - Sortix is a small self-hosting operating-system aiming to be a clean and modern POSIX implementation.
  • ๐Ÿ˜€ Aero - Aero is a new modern, experimental, unix-like operating system following the monolithic kernel design.
  • ๐Ÿ˜€ FlorenceOS - The Renaissance of Operating Systems
  • ๐Ÿ˜€ duckOS - A hobby UNIX-like OS with a graphical window manager for x86 computers.
  • ๐Ÿ™‚ nyx - A simple operating system with a capability-based microkernel.
  • ๐Ÿ˜€ Lemon OS - Lemon OS is a UNIX-like 64-bit operating system written in C++.
  • ๐Ÿ™‚ Skylight - A clean, well-written minimalist operating system designed to be used as an educational material for operating system development.
  • ๐Ÿ˜€ SnowflakeOS - "It is very special"
  • ๐Ÿ˜€ KiddieOS_Development - UNIX-like 64-bit operating system written in Assembly, C++.

Libraries

  • ๐Ÿ˜€ ACPICA - A reference ACPI library for operating systems.
  • ๐Ÿ˜€ LAI - LAI is an interpreter for AML, the ACPI Machine Language.
  • ๐Ÿ˜€ libheap - A simple heap allocation library for hobby operating systems.
  • ๐Ÿ˜€ frigg - Lightweight C++ utilities and algorithms for system programming
  • ๐Ÿ˜€ lil - A lightweight Intel GPU library

C Standard Libraries

  • ๐Ÿ˜€ musl - A lightweight C standard library designed for Linux, but should work in other operating systems with some modifications.
  • ๐Ÿ˜€ Sortix libc - The C standard library provided by Sortix. Even though it's designed for Sortix, it's easy to port and supports over 70+ third-party software.
  • ๐Ÿ˜€ mlibc - Portable C standard library
  • ๐Ÿ™‚ chadlibc - A simple C standard library. Very incomplete and currently isnโ€™t recommended for use in your operating system.

Resources

Tutorials

Books

Operating Systems: Three Easy Pieces
Author(s): Remzi Arpaci-Dusseau and Andrea Arpaci-Dusseau
Publication date: February 16th, 2015
Description: A book covering the fundamentals of operating systems, including virtualization of the CPU and memory, threads and concurrency, and file and storage systems. Written by professors active in the field for 20 years, this text has been developed in the classrooms of the University of Wisconsin-Madison, and has been used in the instruction of thousands of students.
Modern Operating Systems 4th Edition
Author(s): Andrew S. Tannenbaum and Herbert Bos
Publication date: March 10th, 2014
Description: Modern Operating Systems, Fourth Edition, is intended for introductory courses in Operating Systems in Computer Science, Computer Engineering, and Electrical Engineering programs. It also serves as a useful reference for OS professionals.
Operating System Concepts 10th Edition
Author(s): Abraham Silberschatz, Greg Gagne, and Peter B. Galvin
Publication date: May 4th, 2018
Description: The tenth edition of Operating System Concepts has been revised to keep it fresh and up-to-date with contemporary examples of how operating systems function, as well as enhanced interactive elements to improve learning and the studentโ€™s experience with the material. It combines instruction on concepts with real-world applications so that students can understand the practical usage of the content. End-of-chapter problems, exercises, review questions, and programming exercises help to further reinforce important concepts. New interactive self-assessment problems are provided throughout the text to help students monitor their level of understanding and progress. A Linux virtual machine (including C and Java source code and development tools) allows students to complete programming exercises that help them engage further with the material.
The Design of the UNIX Operating System
Author(s): Maurice Bach
Publication date: May 27th, 1986
Description: This book describes the internal algorithms and the structures that form the basis of the UNIXยฎ operating system and their relationship to the programmer interface. The system description is based on UNIX System V Release 2 supported by AT&T, with some features from Release 3.
Operating Systems: Principles and Practice
Author(s): Thomas Anderson and Michael Dahlin
Publication date: August 21st, 2014
Description: Over the past two decades, there has been a huge amount of innovation in both the principles and practice of operating systems Over the same period, the core ideas in a modern operating system - protection, concurrency, virtualization, resource allocation, and reliable storage - have become widely applied throughout computer science. Whether you get a job at Facebook, Google, Microsoft, or any other leading-edge technology company, it is impossible to build resilient, secure, and flexible computer systems without the ability to apply operating systems concepts in a variety of settings. This book examines the both the principles and practice of modern operating systems, taking important, high-level concepts all the way down to the level of working code. Because operating systems concepts are among the most difficult in computer science, this top to bottom approach is the only way to really understand and master this important material.
Operating Systems: Design and Implementation 1st Edition
Author(s): Andrew S. Tannenbaum
Publication date: December 1st, 1986
Description: From one of the Netherland's leading authors of computer science books comes complete coverage of operating systems, plus all the design and implementation issues with a complete operating system โ€” MINIX.
Operating Systems: Design and Implementation 2nd Edition
Author(s): Andrew S. Tannenbaum and Albert S. Woodhull
Publication date: January 15th, 1997
Description: Most books on operating systems deal with theory while ignoring practice. While the usual principles are covered in detail, the book describes a small, but real UNIX-like operating system: MINIX. The book demonstrates how it works while illustrating the principles behind it. Operating Systems: Design and Implementation Second Edition provides the MINIX source code. The relevant selections of the MINIX code are described in detail. When it first came out, MINIX caused something of a revolution. Within weeks, it had its own newsgroup on USENET, with 40,000 people. Most wanted to make MINIX bigger and fancier. Instead, Linux was created. That has become quite popular, very large, and complicated. MINIX, on the other hand, has remained small and suitable for instruction and example. The book has been revised to include updates in MINIX, which started out as a v7 unix clone for a floppy-disk only 8088. It is now aimed at 386, 486, and pentium machines and is based on the international posix standard instead of on v7. There are now also versions of MINIX for the Macintosh and SPARC available. Professional programmers will find this book to be a valuable resource and reference.
Operating Systems: Design and Implementation 3rd Edition
Author(s): Andrew S. Tannenbaum and Albert S. Woodhull
Publication date: January 4th, 2006
Description: Operating Systems Design and Implementation, 3e, is ideal for introductory courses on computer operating systems. Written by the creator of MINIX, professional programmers will now have the most up-to-date tutorial and reference available today. Revised to address the latest version of MINIX (MINIX 3), this streamlined, simplified new edition remains the only operating systems text to first explain relevant principles, then demonstrate their applications using a Unix-like operating system as a detailed example. It has been especially designed for high reliability, for use in embedded systems, and for ease of teaching.

Reference Projects

  • Linux 0.0.1 - The first version of Linux. This version is very simple compared to subsequent versions after it.
  • Xv6 [PDF] - A modernized version of the classic Dennis Richieโ€™s and Ken Thompsonโ€™s UNIX V6, written in ANSI C for x86 and RISC-V.
  • MINIX 1.0 - The first version of MINIX for Intel 8088 real mode. First appeared in a book released in 1986 called "Operating Systems: Design and Implementation" written by Andrew S. Tanenbaum.
    • MINIX 1.5.0 - A revision of the first version of MINIX that adds support for the 16-bit 286 protected mode and some bug fixes.
    • MINIX 1.7.0 - A revision of the first version of MINIX that adds support for the 32-bit 386 protected mode and some bug fixes.
  • MINIX 2.0.0 - The second version of MINIX for Intel 8088 real mode, the 16-bit 286 protected mode, and the 32-bit 386 protected mode. Appeared in the second edition of "Operating Systems: Design and Implementation" released in 1997, written by Andrew S. Tanebaum and Albert S. Woodhull.
  • MINIX 3.1.0 - The third version of MINIX for the 32-bit 386 protected mode. Appeared in the third edition of "Operating Systems: Design and Implementation" released in 2006, written by Andrew S. Tanebaum and Albert S. Woodhull.
  • MINIX From Scratch - A quick development environment for building the book versions of MINIX 2 and 3.

Note
Recent versions of MINIX 3 doesnโ€™t count as an educational operating system because itโ€™s too complex compared to the book version of MINIX 3 and previous versions of MINIX. You can still use it as a reference for your operating system project, but if you're a beginner, itโ€™s much more recommended to look on source codes of the book version of MINIX 3 instead.

Websites

  • OSDev Wiki - The OS development wiki and also the most commonly used resources for OS developers.
  • OSDev Forum - The OS development forum and also the most commonly used forum for talking about and helping with OS development, also part of the OSDev Wiki.
  • New OSDev Wiki - An attempt to modernize the original OSDev Wiki. Unlike the original OSDev Wiki, it uses itโ€™s own wiki engine which uses GitHub instead of MediaWiki. It is currently WIP and not ready for use.
  • Lowlevel.eu - The German OS development wiki. Also contains most of the resources from the OSDev wiki, but in German instead of English.
  • Wiki DEVSE - The French OS development wiki. Not as complete as Lowlevel.eu or the OSDev Wiki, but still a good resource for French OS developers.
  • Bona Fide OS Development - Tutorials and papers for OS developments. This is also where Branโ€™s Kernel Tutorial lives.
  • OSDev Discord Server - Not really a website but a great Discord server for talk about and help with OS development.
  • The Unix Tree - Browse manuals and source codes of various versions of Unix.

Miscellaneous Books, Papers, and Articles

Manuals and Specifications

Processors

Instruction Set Extensions

Firmware

Input Devices

Storage

File System

Audio

Networking

NE2000-compatible cards

Video Display

Legacy
VESA BIOS Extensions

Executable File Format

Miscellaneous

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

About

List of resources and projects for operating system development.