BlobOS
BlobOS copied to clipboard
My Operating System.
๐ก 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
ofto any disk with important data. Also, it will overwrite anything on the disk, including partitions.
