A tiny OS running on BOCHS
- Bochs (You can install it via
sudo apt install bochs
or see it on my blog) - Qemu. It is a powerful simulator. (Get it via
sudo apt install qemu
)
You can simply install all dependency packages by the following instructions
sudo apt-get install bochs bochs-x qemu
sudo apt-get install xorg-dev
sudo apt-get install bison
sudo apt-get install g++
sudo apt-get install build-essential module-assistant
sudo apt-get install gcc-multilib g++-multilib
//RUN IT
make run
//Clean workspace
make clean
//Clean and run
make restart
If you have problem with compiling GCC m32, install following libs to support gcc -m32
option
sudo apt-get install build-essential module-assistant
sudo apt-get install gcc-multilib g++-multilib
After make run
, you need to input c
in the bochs command line.
If you want to exit the system, input Ctrl+C
in the command line and input quit
.
- basic memory control
- basic thread schedule
- input&output
- system call handler(pid,printf,etc. )
- disk driver (partition identify, format )
- file system
- executable file support
- shell
- tube
Making something is but a lifestyle. Simplify on Linux0.11. Who knows. 🙂