Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bistcuite/unox-os
Unox is an educational unix-like operating system. #JustForFun
https://github.com/bistcuite/unox-os
bootloader c educational just-for-fun nasm operating-system os unix unix-like unox x86-64
Last synced: 2 months ago
JSON representation
Unox is an educational unix-like operating system. #JustForFun
- Host: GitHub
- URL: https://github.com/bistcuite/unox-os
- Owner: bistcuite
- License: mit
- Created: 2021-10-27T14:28:14.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-24T03:00:34.000Z (over 2 years ago)
- Last Synced: 2024-04-18T16:59:23.642Z (9 months ago)
- Topics: bootloader, c, educational, just-for-fun, nasm, operating-system, os, unix, unix-like, unox, x86-64
- Language: C
- Homepage:
- Size: 97.7 KB
- Stars: 23
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Unox
**Unox** is a x86 unix-like operating system written in C and Assembly.## Roadmap
- [x] Write bootloader and linker
- [x] Write kernel in c
- [x] Port a tiny version of `libc` to our OS
- [ ] FAT32 FileSystem
- [ ] Write a unix-like shell
- [ ] Bash interpreter## Screenshots
![1](assets/Capture.PNG)## Build and Run
Requirements :
- i386 gcc cross compiler
- Netwide assembler(nasm)
- Qemoat first clone this repo :
```
$ git clone https://github.com/bistcuite/unox-os
$ cd unox-os
```make Unox image :
```
$ make
```run Unox on qemu :
```
$ make run
```## License
This project licensed under **MIT License**, read **[the license](LICENSE)** for more information.