Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ceticamarco/vulcanos
🌋 Monolithic x86 kernel written in C and Assembly
https://github.com/ceticamarco/vulcanos
assembly c kernel operating-system osdev
Last synced: 7 days ago
JSON representation
🌋 Monolithic x86 kernel written in C and Assembly
- Host: GitHub
- URL: https://github.com/ceticamarco/vulcanos
- Owner: ceticamarco
- License: gpl-3.0
- Created: 2019-07-03T10:38:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-16T08:43:57.000Z (about 1 year ago)
- Last Synced: 2024-01-16T14:47:22.602Z (about 1 year ago)
- Topics: assembly, c, kernel, operating-system, osdev
- Language: C
- Homepage:
- Size: 16.1 MB
- Stars: 10
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VulcanOS ![](https://github.com/ceticamarco/vulcanos/actions/workflows/vulcanos.yml/badge.svg)
**VulcanOS** is a x86 monolithic kernel written in C from scratch following the UNIX philosophy. This project is just a student learning tool to know more about operating systems, do not expect nothing more than a toy.![]()
VulcanOS running under QEMU
## Installation
### Requirements
Before building this project you need to setup a [cross compiler](https://wiki.osdev.org/GCC_Cross-Compiler). Also install the following packages:- nasm
- bochs
- grub
- mtools(only for Arch Linux)After that, you can build VulcanOS just by running the commands below:
1. Type `make all` to compile the system and to create an ISO file;
2. Type `make run` to start it in QEMU or `make bochs` to start it with bochs.You can also find an ISO file
[here](https://github.com/ice-bit/vulcanos/raw/master/imgs/vulcanos.iso)(md5sum: `11375e1e169069b85c14d3cb6c5a4f06`)## Features
Right now, VulcanOS supports the following features:
- [x] VGA driver
- [x] Interrupts
- [x] PIC & PIT driver
- [x] PS/2 driver
- [x] Heap
- [x] Paging
- [ ] VFS driver
- [ ] Usermode## License
VulcanOS is released under GPLv3, you can obtain a copy of this license by cloning this repository or by visiting [this](https://opensource.org/licenses/GPL-3.0) page.