Fork me on GitHub
Fiwix symbol
Welcome to the Fiwix project
Your small UNIX-like kernel

Features

The FiwixOS 3.3 is a completely self-hosted operating system. That is, you don't need a different operating system (like GNU/Linux) to develop and build the Fiwix kernel or any other system component. All the tools necessary for system development (including the Vim editor) are bundled and ready to be installed using the FiwixOS 3.3 Installation CD-ROM.

List of features of the Fiwix kernel v1.5.0 as released on 15 November 2023:

  • Written in ANSI C language (Assembly used only in the needed parts).
  • GRUB Multiboot Specification v1 compliant.
  • Full 32bit protected mode non-preemptive kernel.
  • For i386 processors and higher.
  • Preemptive multitasking.
  • POSIX-compliant (mostly).
  • Process groups, sessions and job control.
  • Interprocess communication with pipes and signals.
  • UNIX System V IPC (semaphores, message queues and shared memory).
  • BSD file locking mechanism (POSIX restricted to whole file and advisory only).
  • Virtual memory management up to 4GB (1GB physical only and no swapping yet).
  • Demand paging with Copy-On-Write feature.
  • Linux 2.0 ABI system calls compatibility (mostly).
  • ELF-386 executable format support (statically and dynamically linked).
  • Round Robin based scheduler algorithm (no priorities yet).
  • VFS abstraction layer.
  • Kexec support.
  • EXT2 filesystem support with 1KB, 2KB and 4KB block sizes.
  • Minix v1 and v2 filesystem support.
  • Linux-like PROC filesystem support (read only).
  • ISO9660 filesystem support with Rock Ridge extensions.
  • RAMdisk device support.
  • Initial RAMdisk (initrd) image support.
  • SVGAlib based applications support.
  • PCI local bus support.
    • QEMU PCI serial device support.
    • QEMU/Bochs Graphics Adapter support.
    • Intel PIIX3 PCI ISA IDE controller.
  • Keyboard driver with Linux keymaps support.
  • Frame buffer device support for VESA VBE 2.0+ compliant graphic cards.
  • Framebuffer console (fbcon) support.
  • Serial port (RS-232) driver support.
  • Remote serial console support.
  • QEMU Bochs-style debug console support.
  • Parallel port printer driver support.
  • Basic implementation of a Pseudo-Random Number Generator.
  • Floppy disk device driver and DMA management.
  • IDE/ATA ATAPI CD-ROM device driver.
  • IDE/ATA hard disk device driver.

The kernel, while completely functional and self-hosting capable, is in its early stage. That is, don't expect some features you would find in current (modern) kernels. So, no USB support and no networking, to name the most impacting missing features.

To Do

This is the list of planned new features:

  • Networking support.
  • Code restructuring to support new architectures.
  • Better kernel memory management.
  • USB device support.
  • ...