Welcome to Hexium OS, an experimental operating system written in Rust. This project explores the boundaries of Rust in systems programming and serves as a platform for learning and innovation.
- π Limine Bootloader
- π» Flanterm terminal
- π Global Descriptor Table
- β‘ Interrupts
- π Paging Support
- π Serial Support
- π§ Memory Management
- ποΈ In-memory File System
- π― Task State Segment (TSS)
- π§ Heap allocator
- β¨οΈ Keyboard Driver
- π Multitasking
- β Shell
- β ACPI/AML Shutdown
- β CpuId Support
- β Mouse Driver
- β Graphical Interface (GUI)
- β ELF Loader
- β Network Driver
- β Audio Driver
- β FAT32 Support
- β OpenGL-like API
- β Integrated Development Environment (IDE)
- β C/C++ Compiler
- β Processes
- β Installation Setup
- β Web Browser
- β User Documentation
- β Package manager
This project requires a nightly version of Rust because it uses some unstable features. You might need to run rustup update nightly --force
to update to the latest nightly even if some components such as rustfmt
are missing it.
You can build the project by running:
make
This creates an ISO
You can run the disk image in QEMU through:
make run
/docs/ # Documentation
/kernel/src/ # Kernel source code
/kernel/target/ # Kernel output directory
/limine # Limine and UEFI binaries (generated)
/ovmf # Virtual firmware (generated)
/scripts # Build & helper scripts