Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 652 Bytes

File metadata and controls

33 lines (24 loc) · 652 Bytes

codespace guide

This will guide explains how to build and run the Freeze OS project inside GitHub Codespaces using QEMU (non graphic).


1. Install Required Packages

Open the VS Code terminal inside Codespaces and run:

sudo apt update
sudo apt install build-essential grub-pc-bin grub-common xorriso qemu-system-x86 -y

2. Build the Project

From the root of the repo:

make && make run

if you want you may check for the iso file:

ls

run the OS in qemu

We mainly use nographic for qemu so run:

qemu-system-i386 -cdrom freeze.iso -nographic -serial mon:stdio

Thanks for listening