FoxOS
FoxOS copied to clipboard
The FoxOS main repository
FoxOS
Our goal is to develop an operation system that focuses on the terminal, performance and reliability. We hope to provide you with a functional, performant and stable OS. And we do that together, everyone can help!

Building
Before you build the project, you need to clone the submodules. To do so, run git submodule update --init --recursive.
To build this OS, you need one of these:
- A 64bit Ubuntu or Debian based OS that you can install the following pachages on:
sudo apt install graphicsmagick-imagemagick-compat mtools lbzip2 curl bison flex gcc g++ unzip dosfstools automake build-essential nasm qemu-utils gdisk git. We recommend you runtoolchain.shto build binaries that will be compatible with FoxOS. - WSL (Windows Subsystem for Linx) with Ubuntu installed and the same tings as above.
- Our Docker image. You can run it like this:
docker run -it --rm -v /dev:/dev --privileged ghcr.io/theultimatefoxos/foxos-toolchain:latest. An easy way to have this setup would be to open a command line or terminal window at a directory on your host machine with FoxOS cloned and run this:docker run -it --rm -v /dev:/dev --privileged -v $PWD:/root/FoxOS ghcr.io/theultimatefoxos/foxos-toolchain:latestto mount it at/root/FoxOS. - An Intel Mac. You need to make sure to have these commands:
curl,zip/unzip,make,brew, andgcc. First run:brew install mtools,brew install gdisk, and then runtoolchain_mac.sh.
Then simply run one of the following:
make: build the project.make img: package the.imgfile.make mac-img: package the.imgfile on an Intel Mac.make docker-img: package the.imgfile in Docker.make run: To build and run FoxOS. (Will not work on Mac)
The following alias command can be used to make your life easier: alias mkfox="make run-bios USER_CFLAGS=\"-DDEBUG -DMEMORY_TRACKING -DBOOTINFO -fsanitize=undefined -DUBSAN_SUPRES_TYPE_MISSMATCH\""
Other make commands
make usb: build a bootable USB. The USB must be formatted with FAT32!make losetup: build a script to be able to runlosetupwithout root permissions.make clean: clear all the built files.make debug: build and debug using deno.make run-dbg: start a screen for QEMU so you can debug usinggdb.make vmdk: build a.vmdkfile.make vdi: build a.vdifile.make qcow2: build a.qcow2file.make vbox-setupsetup a virtualbox vm (only works on linux)
Contributing
Feel free to fix a bug, implement a feature or any other change you thing would be good. If you want to contact us, join our Discord, we are there to help with any question you may have. Or you can create an issue.
If you dont know what to implement you can take a look at our todo list.
Running
To run this OS, you can either use a VM or a bootable USB. See the building section for more info on how to build them.
How to start:
- QEMU: Use
make runto build and launch QEMU with the correct configuration. - VirtalBox: Use
make qcow2to build a.qcow2image file and create a VM to which you add this.qcow2. Then you need to enable EFI under "System" in your VM's config. Then run it! If you want to add documentation to booting on different software, feel free to do so.
Our Discord
Here is the link to our Discord.