Skip to content

πŸŒ„ x86_64 OS (kernel) made completely from scratch in Assembly & Rust

License

Notifications You must be signed in to change notification settings

adamperkowski/highlightos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

HighlightOS

x86_64 OS (kernel) made completely from scratch in Assembly & Rust

README in English README in Polish README in Italian

GitHub Release GitHub License GitHub repo size GitHub Actions Workflow Status GitHub Actions Workflow Status

Table of contents

Build from source on Linux

HLShell (main kernel)

Requirements:

Steps:

  1. Install the nightly toolchain:
rustup toolchain install nightly
  1. Install required components:
rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu && rustup component add llvm-tools-preview --toolchain nightly-x86_64-unknown-linux-gnu && cargo install bootimage
  1. Create a local clone of the repository:
git clone [email protected]:adamperkowski/highlightos.git && cd highlightos
  1. cd into the shell/ directory:
cd shell
  1. Build the bootable binary:
cargo +nightly bootimage --release

This command will create the target/target/release directory in which you'll find the bootimage-hlshell.bin binary file.

HighlightOS ASM

Requirements:

  • Git version control system
  • NASM Assembly compiler

Steps:

  1. Create a local clone of the repository:
git clone [email protected]:adamperkowski/highlightos.git && cd highlightos
  1. cd into the asm/ directory:
cd asm
  1. Compile the bootable binary:
nasm -f bin boot.asm -o boot.bin

This command will generate & place the boot.bin file inside of the current directory.

Run in QEMU on Linux

Requirements:

Steps:

  1. cd into directory that contains the binary.
  2. Run the following command:
qemu-system-x86_64 -drive format=raw,file=<your_binary_filename>.bin

Important

Replace <your_binary_filename> with the actual name of the binary you have downloaded/built.

Run on real hardware

You can also flash the binary image onto a USB stick and boot it on a real machine.

You can flash it by running the following command:

dd if=<your_binary_filename>.bin of=/dev/sdX && sync

Important

Make sure to replace <your_binary_filename>.bin with your downloaded/compiled binary name and make sure to replace /dev/sdX with your USB's actual partition number. Any data on it will be lost!

Note

You can choose the device to boot off of from your BIOS boot menu (accessible by pressing F8 or F12).

Double-check that your motherboard is capable of booting legacy media(s), as HighlightOS is not UEFI-compatible yet.

Appendix

Development status

2024-07-27_status.mp4

Additional info

Did you know we have a IRC channel? It's #highlightos on libera.chat.

List of built-in commands and features is available here.
To gain further information on HighlightOS, we invite you to visit the wiki.

Using precompiled binaries from the code section of the repo is not recommended.

Contributors

HUGE thanks to everyone contributing:

Credits

Some parts of the code are inspired by blog_os. Great project!

Copyleft 2024 Adam Perkowski