Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.15 KB

README.md

File metadata and controls

49 lines (40 loc) · 1.15 KB

CosmOS

A simple operating system written in Rust.

Table of Contents

Setup

Linux

Arch

pacman -S qemu-desktop

Ubuntu

apt install qemu-system-x86

Windows

  • Install QEMU from here
  • Add qemu to PATH (example: C:\Program Files\qemu)
  • Add nightly toolchain
    rustup component add rust-src --toolchain nightly-x86_64-pc-windows-msvc
    

Run

This will build the kernel, create an image and launch it with qemu.

cargo run

OS dev resources

General

Bootloader