MOROS is a hobby operating system written in Rust for the x86 architecture.
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.
Install the required tools:
$ curl https://sh.rustup.rs -sSf | sh
$ rustup install nightly
$ rustup default nightly
$ rustup component add rust-src
$ rustup component add llvm-tools-preview
$ cargo install bootimage
Clone the repo:
$ git clone https://github.com/vinc/moros
$ cd moros
Build the image to disk.img
:
$ make image output=video keyboard=qwerty nic=rtl8139
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):
$ sudo dd if=target/x86_64-moros/release/bootimage-moros.bin of=/dev/sdx && sync
In both cases, MOROS will open a console in diskless mode after boot if no filesystem is detected. The following command will setup the filesystem on the first hard drive of the first ATA bus, 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.
Run the test suite in QEMU:
$ make test
MOROS is released under MIT.