14 releases (7 breaking)
0.10.4 | Jun 20, 2024 |
---|---|
0.10.3 | Mar 20, 2024 |
0.10.2 | Dec 22, 2023 |
0.10.1 | Sep 27, 2023 |
0.1.0 | Dec 29, 2019 |
#162 in Hardware support
47 downloads per month
630KB
19K
SLoC
Contains (ELF exe/lib, 25KB) dsk/bin/sleep, (ELF exe/lib, 23KB) dsk/bin/exec, (ELF exe/lib, 20KB) dsk/bin/hello, (ELF exe/lib, 2KB) dsk/bin/clear, (ELF exe/lib, 2KB) dsk/bin/halt, (ELF exe/lib, 2KB) dsk/bin/print and 1 more.
MOROS: Obscure Rust Operating System
MOROS is a hobby operating system written in Rust by Vincent Ollivier.
It targets computers with a x86-64 architecture and a BIOS, so mostly from 2005 to 2020, but it also runs well on most emulators (Bochs, QEMU, and VirtualBox).
This project started from the seventh post of the second edition of Writing an OS in Rust by Philipp Oppermann and by reading the OSDev wiki along with many open source kernels.
Features
- External bootloader (using bootloader)
- x86 CPU support (using x86_64)
- Hardware interrupts (using pic8259)
- PS/2 Keyboard with customizable layout (using pc-keyboard)
- VGA Text mode with customizable font and color palette
- Serial output (using uart_16550)
- Paging
- Heap allocation (using linked_list_allocator)
- ACPI shutdown (using acpi and aml)
- RTC clock
- PCI devices
- ATA PIO mode
- Random number generator (using rand_hc)
- Intel PRO/1000, RTL8139, and AMD PCNET network cards
- DHCP/IP/TCP/UDP/DNS/HTTP network protocols (using smoltcp)
- Basic filesystem
- Basic shell
- Basic text editor
- Basic lisp interpreter
- Basic userspace for NASM and Rust programs
- Some file and network commands
- Some games
Documentation
Documentation is available here
Setup
You will need git
, gcc
, make
, curl
, qemu-img
,
and qemu-system-x86_64
on the host system.
Clone the repo:
$ git clone https://github.com/vinc/moros
$ cd moros
Install the required tools with make setup
or the following commands:
$ curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain none
$ rustup show
$ cargo install bootimage
Usage
Build the image to disk.img
:
$ make image output=video keyboard=qwerty
Run MOROS in QEMU:
$ make qemu output=video nic=rtl8139
Run natively on a x86 computer by copying the bootloader and the kernel to a hard drive or USB stick (but there is currently no USB driver so the filesystem will not be available in that case):
$ sudo dd if=target/x86_64-moros/release/bootimage-moros.bin of=/dev/sdx
MOROS will open a console in diskless mode after boot if no filesystem is detected. The following command will setup the filesystem on a hard drive, allowing you to exit the diskless mode and log in as a normal user:
> install
Be careful not to overwrite the hard drive of your OS when using dd
inside
your OS, and install
or disk format
inside MOROS if you don't use an
emulator.
Tests
Run the test suite in QEMU:
$ make test
License
MOROS is released under MIT.
Dependencies
~16MB
~283K SLoC