Skip to content
Snippets Groups Projects
  • Coleman McFarland's avatar
    6d54263a
    Consolidate Overview and Introduction chapters · 6d54263a
    Coleman McFarland authored
    * Move overview and introduction files into a single folder
    * Remove about_this_book.md We can add a guide to contributing to documentation,
      and mention the book there.
    * Remove heartbleed case study This has been a stubbed out article for ~3 years.
      We might consider an article like this for a technical white paper,
      or a blog post, if someone gets inspired.
    * Stub out design/drivers and design/memory files
    * Remove will redox replace linux
    * Differentiate: Philosophy, Why a New OS, Goals
    
    Refs #134
    6d54263a
    History
    Consolidate Overview and Introduction chapters
    Coleman McFarland authored
    * Move overview and introduction files into a single folder
    * Remove about_this_book.md We can add a guide to contributing to documentation,
      and mention the book there.
    * Remove heartbleed case study This has been a stubbed out article for ~3 years.
      We might consider an article like this for a technical white paper,
      or a blog post, if someone gets inspired.
    * Stub out design/drivers and design/memory files
    * Remove will redox replace linux
    * Differentiate: Philosophy, Why a New OS, Goals
    
    Refs #134

Our Goals

Redox is an attempt to make a complete, fully-functioning, general-purpose operating system with a focus on safety, freedom, reliability, correctness, and pragmatism.

We want to be able to use it, without obstructions, as an alternative to Linux on our computers. It should be able to run most Linux programs with only minimal modifications.

We're aiming towards a complete, safe Rust ecosystem. This is a design choice, which hopefully improves correctness and security (see Why Rust).

We want to improve the security design when compared to other Unix-like kernels by using safe defaults and disallowing insecure configurations where possible.

The non-goals of Redox

We are not a Linux clone, or POSIX-compliant, nor are we crazy scientists, who wish to redesign everything. Generally, we stick to well-tested and proven correct designs. If it ain't broken don't fix it.

This means that a large number of standard programs and libraries will be compatible with Redox. Some things that do not align with our design decisions will have to be ported.

The key here is the trade off between correctness and compatibility. Ideally, you should be able achieve both, but unfortunately, you can't always do so.