Skip to content

RedsonBr140/BlobOS

Repository files navigation



wakatime

💡 About

The point of this project is to learn about operating systems and computers, I don't want to create something huge.

🚀 Setup

🧾 Dependencies

  • GCC - C compiler, you'll need it to build the OS.
  • nasm - Assembler, you'll need it to build the OS.
  • qemu - Virtualization, for testing the OS without rebooting. (optional)

🔧 Testing

Option 1: Using qemu:

git clone https://github.com/RedsonBr140/BlobOS.git
cd BlobOS
make
qemu-system-x86_64 -cdrom build/BlobOS.iso -enable-kvm # Runs the project

Option 2: Real hardware:

git clone https://github.com/RedsonBr140/BlobOS.git
cd BlobOS
make
dd if=build/BlobOS.iso of=/dev/yourFlashDrive status=progress

⚠️ dd is a dangerous command. Ensure you didn't set of to any disk with important data. Also, it will overwrite anything on the disk, including partitions.