ParvaOS is an operating system written from scratch in Rust by Francesco Giannice. It is capable of running on all 64-bit x86 architecture computers with BIOS and has been found to run on QEMU as a virtual machine emulator.
- x86 CPU support (64 bit)
- VGA Text Mode
- Serial output
- CPU exceptions management
- Paging
- Heap allocation
- Basic shell
- Graphical User Interface (GUI)
Documentation is available in doc/ folder
To use ParvaOS you can just download the ParvaOS.img file from the release section in GitHub, and then use it on real hardware or just on a virtual machine (I've tested that on QEMU everything works).
If you don't want to just download the image file and you'd like to compile everything from scratch, see the section below...
As I said you can just download the release image file of the operating system. But if otherwise you want to compile the whole project on your local machine, follow these instructions:
-
Install Rust:
Rust is required to compile ParvaOS. You can download it from rust-lang.org.
-
Clone the repo:
git clone https://github.com/gianndev/ParvaOS.git cd ParvaOS -
Compile the Rust code:
To build the image of the operating system you can use the Makefile just typing
make image -
Run ParvaOS:
Once the image file is created, you can run it with QEMU typing in the terminal
make runMake sure to have QEMU installed
The current latest version of ParvaOS is 0.0.2
This project is licensed under the terms of the GNU General Public License v3.0 only (GPL-3.0-only).
See the LICENSE file for details.
