How to Make a Computer Operating System

Download ArticleDownload Article

This How.com.vn teaches you how to plan and develop an operating system if you don't know how to code in C, or C++. Operating systems manage computer hardware and provide the resources that applications need to run. Writing an operating system from scratch requires a strong command of computer science, a programming language like C or C++, assembly, and code management practices.

Part 1
Part 1 of 2:

Learning the Basics

Download Article
  1. How.com.vn English: Step 1 Take some basic Computer Science courses.
    Unlike developing for the web, creating an operating system requires a strong understanding of algorithms, data structures, computer hardware, and resource management. People get degrees in this stuff, so don't expect to write an entire operating system after reading an online tutorial! Harvard's Intro to Computer Science course is available online through EDX at no cost.
  2. How.com.vn English: Step 2 Learn a high-level...
    Learn a high-level programming language like Python. Once you've got a solid foundational understanding of computer science, the next step is to master C and/or C++. Like learning about computer science, mastering a language is not optional—you won't be able to code an operating system if you can't write solid applications.[1]
    Advertisement
  3. How.com.vn English: Step 3 Learn an assembly...
    Learn an assembly language. Assembly languages are low-level languages designed to communicate with different processors. Since assembly is different for different processor types (e.g., x86 assembly Language for Intel, AMD, VIA, and other processors), you'll need to learn the version for the type of processor you're coding for.
    • This open-source book, if read in its entirety, can give you a solid enough understanding for building an operating system.[2]
    • The Art of Assembly Language is a highly-recommended book about assembly available both on and offline.
    • You should also do a lot of research on the type of processor(s) on which your operating system should run. The manuals for processor architecture can easily be found using a Google search ("Intel Manuals," "ARM manuals," etc.).
  4. How.com.vn English: Step 4 Complete an operating system tutorial.
    OS tutorials will walk you through the process of creating a basic operating system. This gets you used to the process and helps you figure out if there are any pieces you're missing. Once you've completed a tutorial or two, you'll be well on your way to creating your very own operating system.
    • Bare Bones is a tutorial that helps you write your first simple 32-bit kernel. After completing the tutorial, the next step is to use Meaty Skeleton to structure your own operating system.
    • Linux from Scratch is an online book that walks you through creating your own Linux operating system.
    • Operating systems from 0 to 1 is a free book about creating various operating systems from start to finish.
  5. How.com.vn English: Step 5 Figure out your operating system goals.
    What do you want your operating system to do? How should it look? Do you really need to write an entire operating system or are you just looking to create a certain look for your desktop? These are all things to consider before beginning to code.[3]
    • Consider developing with a team of other programmers. Having a team of developers working on the project will cut the development time significantly.
    • Add your project goals, plans, and questions to your public repository so it's easy for others to help you.
  6. Advertisement


Part 2
Part 2 of 2:

Building Your Operating System

Download Article
  1. How.com.vn English: Step 1 Choose a development environment.
    This is the platform you'll be using to code your new operating system. It's a matter of personal preference, but most people either use Windows or a flavor of UNIX. If you're using Windows, it's a good idea to install a UNIX environment like Cygwin or MinGW. You'll generally want to make sure whatever environment you're using includes the following:
    • GCC (the Gnu compiler). If you're using Windows, you can install it in Cygwin or MinGW.
    • Binutils is a collection of tools used for manipulating object files. Again, if you're using Windows, you can install it in Cygwin.
    • A good text editor. Vim and emacs are commonly used in UNIX environments. Windows users can use Notepad, or check out Notepad++ for a multi-tab upgrade.
    • Perl and/or Python. One or both are recommended for string manipulation.
  2. How.com.vn English: Step 2 Set up your version control system.
    Writing an operating system means you'll likely be creating hundreds (or thousands!) of lines of code. When you're working on revisions, this can get confusing. Some options to check out are CVS, Mercurial, and Subversion.
  3. How.com.vn English: Step 3 Decide on a bootloader.
    If you don't want to create your own, you can use an existing one like Grand Unified Bootloader (GRUB). If you do feel daring enough to code a bootloader, check out Rolling Your Own Bootloader on OSDev.org.
  4. How.com.vn English: Step 4 Choose a kernel design.
    The kernel is the core of your operating system, providing an interface between the user and the computer hardware. There are monolithic kernels and micro kernels. Monolithic kernels implement all the services in the kernel, while microkernels have a small kernel combined with user daemons implementing services. In general, monolithic kernels are faster, but microkernels have better fault isolation and reliability.
  5. How.com.vn English: Step 5 Start small.
    Begin with small things such as displaying text and interrupts before moving on to things such as memory management and multitasking. You can also try making a simple 16-bit Operating System, instead of taking a big leap.
    • You will not have a full system in two weeks. Start with an OS that boots, then move on to the cool stuff.
  6. How.com.vn English: Step 6 Test your new operating system with a virtual machine.
    Rather than rebooting your computer each time you make changes or having to transfer the files from your development computer to your test machine, use a virtual machine application. VMWare is a common option that works with both Windows and Linux, and so is Bochs. Check for potential deadlocks and other bugs and repair them as needed.
  7. Step 7 Release a "release candidate."
    You can do this by uploading your tested code to your public repository. This will allow people to test your operating system and report back on any issues they run into.
  8. How.com.vn English: Step 8 Network...
    Network with other operating system developers. There's an entire community of operating system developers congregating on various forums, including /r/osdev on Reddit and the Software Engineering Stack Exchange. One you've gotten a grasp on developing a basic operating system, read existing posts to see what kind of things come up during the development process.
  9. Advertisement

Community Q&A

Search
Add New Question
  • Question
    Can I do this if I have no programming experience?
    How.com.vn English: Community Answer
    Community Answer
    Only if you're willing to learn a lot. You will require a full understanding of at least assembly code, and the motivation to learn more. Building your own OS is not a small task.
  • Question
    What should be my first step?
    How.com.vn English: Community Answer
    Community Answer
    Learn programming languages and concepts, and practice to become a very strong programmer.
  • Question
    Which applications can I use to program my operating system?
    How.com.vn English: Community Answer
    Community Answer
    That depends on the programming language you are using. It is recommended, however, to use an IDE, or Integrated Development Environment, to program your operating system, as IDEs have built-in tools and features to help make development easier. Not all IDEs support every language however, so you will want to specifically search for IDEs that support the language (or languages) you're using.
See more answers
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
      Advertisement

      Video

      Tips

      • To make an operating system able to handle multiple processors, your Memory Manager must have "locking" mechanisms in place to prevent multiple processors from accessing the same resource at the same time. The "locks" used for this will require the presence of a scheduler to make sure that only one processor accesses a critical resource at any given time and all the others are made to wait. Yet the scheduler depends on the presence of a Memory Manager. This is a case of a deadlocked dependency. There is no standard way to solve problems like this; as a programmer, you are expected to be skilled enough to figure out his own way of dealing with it.
      • After all development is done, decide if you want to release the code as open source, or proprietary.
      • Be sure to implement security features as your top priority if you ever want your system to be viable.
      Show More Tips

      Tips from our Readers

      • Although most open-source programs are free, you should always read the license to understand how to use the software legally. The developers may not allow you to include their software with your finished operating system or modify their code in any way.
      • If you're new to coding, start with JavaScript. Once you master JavaScript, it'll be easier to learn more difficult languages like C.
      • When you're learning to code, use a code editor with syntax coloring and highlighting like Notepad++ or Visual Studio Code.
      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!
      Advertisement

      About This Article

      How.com.vn English: Stephen Cognetta, MBA
      Written by:
      Computer Engineer
      This article was written by Stephen Cognetta, MBA and by How.com.vn staff writer, Nicole Levine, MFA. Stephen Cognetta is the co-founder and CEO of Exponent, a learning platform that helps people prepare for and ace their tech interviews. Stephen specializes in coaching for product management, software engineering, product marketing, management, technical project management, and data science interviews. Stephen holds a BS in Computer Engineering from Princeton University, where he graduated Summa Cum Laude, and an MBA from Stanford University. Prior to founding Exponent, Stephen worked as a Product Manager for Google and co-founded HackMentalHealth. This article has been viewed 1,647,256 times.
      How helpful is this?
      Co-authors: 140
      Updated: April 13, 2024
      Views: 1,647,256
      Categories: Operating Systems
      Article SummaryX

      1.Take some computer science courses.
      2.Learn a high-level programming language at an advanced level.
      3.Learn a low-level assembly language.
      4.Complete an operating system tutorial.
      5.Plan your operating system.
      6.Create your programming environment.
      7.Build and test.
      8.Release a release candidate.

      Did this summary help you?

      Thanks to all authors for creating a page that has been read 1,647,256 times.

      Reader Success Stories

      • How.com.vn English: Saswat Sahay

        Saswat Sahay

        Jun 27, 2017

        "I like the steps, tips and warnings. These three things will help you along. Thank you, How.com.vn, for giving us this..." more
      Share your story

      Is this article up to date?

      ⚠️ Disclaimer:

      Content from Wiki How English language website. Text is available under the Creative Commons Attribution-Share Alike License; additional terms may apply.
      Wiki How does not encourage the violation of any laws, and cannot be responsible for any violations of such laws, should you link to this domain, or use, reproduce, or republish the information contained herein.

      Notices:
      • - A few of these subjects are frequently censored by educational, governmental, corporate, parental and other filtering schemes.
      • - Some articles may contain names, images, artworks or descriptions of events that some cultures restrict access to
      • - Please note: Wiki How does not give you opinion about the law, or advice about medical. If you need specific advice (for example, medical, legal, financial or risk management), please seek a professional who is licensed or knowledgeable in that area.
      • - Readers should not judge the importance of topics based on their coverage on Wiki How, nor think a topic is important just because it is the subject of a Wiki article.

      Advertisement