# LemonOS **Repository Path**: zzynet/LemonOS ## Basic Information - **Project Name**: LemonOS - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-20 - **Last Updated**: 2025-08-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![banner](Extra/lemonlt.png) [![CI](https://github.com/LemonOSProject/LemonOS/actions/workflows/ci.yml/badge.svg)](https://github.com/LemonOSProject/LemonOS/actions/workflows/ci.yml) Lemon OS is a UNIX-like 64-bit operating system written in C++. ## About Lemon OS Lemon OS includes its own [modular kernel](Kernel) with SMP and networking, [window server/compositor](System/LemonWM) and [userspace applications](Applications) as well as [a collection of software ports](Ports). If you have any questions or concerns feel free to open a GitHub issue, join our [Discord server](https://discord.gg/NAYp6AUYWM) or email me at computerfido@gmail.com. ## [Website](https://lemonos.org) ## [Discord Server](https://discord.gg/NAYp6AUYWM) ## [Building Lemon OS](Documentation/Build/Building-Lemon-OS.md) ## Prebuilt Image [Nightly Images](https://github.com/LemonOSProject/LemonOS/releases) **Before running** See [System Requirements](#system-requirements) ![Lemon OS Screenshot](Screenshots/image9.png)\ [More screenshots](Screenshots) ## Features - Modular Kernel - Symmetric Multiprocessing (SMP) - UNIX/BSD Sockets - Network Stack (UDP, TCP, DHCP) - A small HTTP client/downloader called [steal](Applications/Steal) - Window Manager/Server [LemonWM](System/LemonWM) - [Terminal Emulator](Applications/Terminal) - Writable Ext2 Filesystem - IDE, AHCI and NVMe Driver - Dynamic Linking - [mlibc](https://github.com/managarm/mlibc) C Library Port - [LLVM/Clang Port](https://github.com/LemonOSProject/llvm-project) - [DOOM Port](https://github.com/LemonOSProject/LemonDOOM) - [Audio Player (using ffmpeg)](Applications/AudioPlayer) ## Work In Progress - XHCI Driver - Intel HD Audio Driver ## Third Party Lemon OS depends on: [mlibc](https://github.com/managarm/mlibc), [Freetype](https://freetype.org/), [zlib](https://z-lib.org/), [libressl](https://www.libressl.org/), [ffmpeg](https://ffmpeg.org/), [libfmt](https://fmt.dev), [libjpeg-turbo](https://libjpeg-turbo.org/) and [libpng](http://www.libpng.org/pub/png/libpng.html). [Optional ports](Ports/) include LLVM/Clang, DOOM, Binutils and Python 3.8 [Various background images are located here](Base/lemon/resources/backgrounds) ## System requirements - 256 MB RAM (512 is more optimal) - x86_64 Processor supporting [x86_64-v2 instructions](https://en.wikipedia.org/wiki/X86-64#Microarchitecture_levels) including SSE4.2 - For QEMU/KVM use `-cpu host` or at least `-cpu Nehalem` see [this page](https://qemu-project.gitlab.io/qemu/system/target-i386.html) - 2 or more CPU cores recommended - I/O APIC - ATA, NVMe or AHCI disk (AHCI *strongly* recommended) For QEMU run with: \ ```qemu-system-x86_64 Lemon.img --enable-kvm -cpu host -M q35 -smp 2 -m 1G -netdev user,id=net0 -device e1000,netdev=net0 -device ac97``` \ **KVM is strongly recommended** ## Repo Structure | Directory | Description | | ------------------ | ---------------------------------------- | | Applications/ | Userspace Applications | | Base/ | Config, etc. Files copied to disk | | Documentation/ | Lemon OS Documentation | | Extra/ | (Currently) vector icons | | InterfaceCompiler/ | Compiler for interface definition files | | Kernel/ | Lemon Kernel | | LibGUI/ | LibGUI (Windowing and widgets) | | LibLemon/ | LibLemon (Lemon API) | | Toolchain/ | Toolchain build scripts and patches | | Ports/ | Build scripts and patches for ports | | Resources/ | Images, fonts, etc. | | Screenshots/ | Screenshots | | Scripts/ | Build Scripts | | Services/ | Interface definition files | | System/ | Core system programs and services |