2019-02-08 11:04:23 +01:00
|
|
|
# Serenity
|
|
|
|
|
2019-02-12 15:47:37 +01:00
|
|
|
x86 Unix-like operating system for IBM PC-compatibles.
|
2019-02-08 11:04:23 +01:00
|
|
|
|
|
|
|
## About
|
|
|
|
|
|
|
|
I always wanted to write my own operating system, but I never took it seriously. Until now.
|
|
|
|
|
2019-02-12 15:47:37 +01:00
|
|
|
## Screenshot
|
|
|
|
|
|
|
|
![Screenshot as of 000ccc0](https://raw.githubusercontent.com/awesomekling/serenity/master/Meta/screenshot-000ccc0.png)
|
|
|
|
|
2019-02-08 11:04:23 +01:00
|
|
|
## Current features
|
|
|
|
|
|
|
|
* Pre-emptive multitasking
|
2019-02-17 09:45:39 +01:00
|
|
|
* Compositing window server (in userspace)
|
2019-02-08 11:04:23 +01:00
|
|
|
* ext2 filesystem support
|
|
|
|
* mmap()
|
|
|
|
* Unix-like libc and userland
|
|
|
|
* Pseudoterminals
|
|
|
|
* Event-driven GUI library
|
|
|
|
* Other stuff I can't think of right now...
|
|
|
|
|
2019-02-17 09:45:39 +01:00
|
|
|
## How do I get it to run?
|
|
|
|
|
2019-02-22 10:45:32 +01:00
|
|
|
You need a cross-compiler for the i686-elf target.
|
|
|
|
I've only tested this on an Ubuntu 18.10 host with GCC, so I'm not sure it works anywhere else.
|
|
|
|
|
|
|
|
If you'd like to run it, here's how you'd get it to boot:
|
2019-02-17 09:45:39 +01:00
|
|
|
|
|
|
|
cd Kernel
|
|
|
|
./makeall.sh
|
|
|
|
./run q # Runs in QEMU
|
|
|
|
./run # Runs in bochs
|
|
|
|
|
2019-02-08 11:04:23 +01:00
|
|
|
## Author
|
|
|
|
|
|
|
|
* **Andreas Kling** - [awesomekling](https://github.com/awesomekling)
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
Undecided. Probably something close to 2-clause BSD.
|