aero
aero copied to clipboard
Aero is a new modern, experimental, UNIX-like operating system following the monolithic kernel design. Supporting modern PC features such as long mode, 5-level paging, and SMP (multicore), to name a f...
Currently, for sockets and eventfds, we store the file descriptor flags inside the structs which is not convenient. Have a way to pass the file handle to the {read_at, write_at,...
``` # ./aero.py --sysroot xbstrap: Checking for remote updates of mlibc xbstrap: Checking for remote updates of quickjs xbstrap: Checking for remote updates of tcc xbstrap: Checking for remote updates...
I 've tried 3 days to build from source and still been stucked by all kinds of error like this: ``` [1] unwind.rs:177 (tid=4, pid=4) error cpu '0' panicked at...
Hi! According to my [tests](https://github.com/zamazan4ik/awesome-pgo), Profile-Guided Optimization (PGO) helps with optimizing to a lot of software (including OS like Linux and Windows - [link](https://github.com/zamazan4ik/awesome-pgo#operating-systems)). I think it's worth trying to...
My OS is Debian 11, when I run `./aero.py` , I encountered the following error: ``` error: host-cargo not built as a part of the sysroot, skipping compilation of `userland/`...
I just cloned the repository, installed the dependencies, realized that I didn't have pip installed so I installed that and then pip installed requests and xbstrap, ran it and realized...
I've downloaded aero from the actions artifact ([link](https://github.com/Andy-Python-Programmer/aero/actions/runs/4604719054)) but I couldn't be able to get the GUI or even the TTY. Running on QEMU, aero is stuck with a black...
Routing sockets are used for the kernel's routing tables to be read and altered (BSD). On the other hand, Netlink is a socket family used for inter-process communication (IPC) between...