Convert Figma logo to code with AI

reactos logoreactos

A free Windows-compatible Operating System

15,437
1,837
15,437
119

Top Related Projects

3,427

Rust for Windows

This repo contains driver samples prepared for use with Microsoft Visual Studio and the Windows Driver Kit (WDK). It contains both Universal Windows Driver and desktop-only driver samples.

An advanced, composable, functional reactive model-view-viewmodel framework for all .NET platforms that is inspired by functional reactive programming. ReactiveUI allows you to abstract mutable state away from your user interfaces, express the idea around a feature in one readable place and improve the testability of your application.

16,206

.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.

11,265

Mono open source ECMA CLI, C# and .NET implementation.

Quick Overview

ReactOS is an open-source operating system project that aims to be binary-compatible with Windows applications and drivers. It is designed to function as a free alternative to Microsoft Windows, providing a familiar environment for users while maintaining compatibility with existing software and hardware.

Pros

  • Free and open-source alternative to Windows
  • Binary compatibility with many Windows applications and drivers
  • Potential for customization and community-driven development
  • Lightweight system requirements compared to modern Windows versions

Cons

  • Limited hardware support compared to mainstream operating systems
  • Incomplete implementation of Windows APIs and features
  • Slower development pace compared to commercial operating systems
  • Potential stability issues due to its ongoing development status

Getting Started

To get started with ReactOS:

  1. Visit the official ReactOS website: https://reactos.org/
  2. Download the latest ReactOS release ISO or prebuilt VM image
  3. Create a virtual machine using software like VirtualBox or VMware
  4. Install ReactOS on the virtual machine using the downloaded ISO
  5. Alternatively, create a bootable USB drive for testing on real hardware
  6. Boot into ReactOS and explore the Windows-like environment
  7. Install compatible Windows applications to test functionality

Note: ReactOS is still in development, so it's recommended to use it in a virtual machine or on a separate test system rather than as a primary operating system.

Competitor Comparisons

3,427

Pros of Wine

  • More mature and widely used project with broader application compatibility
  • Focuses on running Windows applications on Unix-like systems, offering flexibility
  • Larger community and more frequent updates

Cons of Wine

  • Not a full operating system, requires a host OS to function
  • May have performance overhead compared to native Windows applications
  • Can be complex to configure for optimal performance

Code Comparison

ReactOS (C, kernel-level):

NTSTATUS
NTAPI
NtCreateFile(
    _Out_ PHANDLE FileHandle,
    _In_ ACCESS_MASK DesiredAccess,
    _In_ POBJECT_ATTRIBUTES ObjectAttributes,
    _Out_ PIO_STATUS_BLOCK IoStatusBlock,
    _In_opt_ PLARGE_INTEGER AllocationSize,
    _In_ ULONG FileAttributes,
    _In_ ULONG ShareAccess,
    _In_ ULONG CreateDisposition,
    _In_ ULONG CreateOptions,
    _In_reads_bytes_opt_(EaLength) PVOID EaBuffer,
    _In_ ULONG EaLength)

Wine (C, user-level):

NTSTATUS WINAPI NtCreateFile( PHANDLE handle, ACCESS_MASK access,
                              POBJECT_ATTRIBUTES attr, PIO_STATUS_BLOCK io,
                              PLARGE_INTEGER alloc_size, ULONG attributes,
                              ULONG sharing, ULONG disposition,
                              ULONG options, PVOID ea_buffer, ULONG ea_length )

Both projects aim to provide Windows compatibility, but ReactOS focuses on creating a complete open-source Windows-compatible OS, while Wine enables running Windows applications on other operating systems. The code comparison shows similar function signatures, reflecting their shared goal of Windows API compatibility.

Rust for Windows

Pros of windows-rs

  • Official Microsoft project, ensuring better compatibility and support
  • Focuses on Rust bindings for Windows API, providing a more modern and safe approach
  • Actively maintained with frequent updates and improvements

Cons of windows-rs

  • Limited scope compared to ReactOS, as it's not a full operating system
  • Requires existing Windows installation to be useful
  • May have a steeper learning curve for developers not familiar with Rust

Code Comparison

ReactOS (C):

NTSTATUS
NTAPI
NtCreateFile(
    _Out_ PHANDLE FileHandle,
    _In_ ACCESS_MASK DesiredAccess,
    _In_ POBJECT_ATTRIBUTES ObjectAttributes,
    _Out_ PIO_STATUS_BLOCK IoStatusBlock,
    _In_opt_ PLARGE_INTEGER AllocationSize,
    _In_ ULONG FileAttributes,
    _In_ ULONG ShareAccess,
    _In_ ULONG CreateDisposition,
    _In_ ULONG CreateOptions,
    _In_reads_bytes_opt_(EaLength) PVOID EaBuffer,
    _In_ ULONG EaLength)

windows-rs (Rust):

pub fn CreateFileW(
    lpFileName: PCWSTR,
    dwDesiredAccess: u32,
    dwShareMode: u32,
    lpSecurityAttributes: *const SECURITY_ATTRIBUTES,
    dwCreationDisposition: u32,
    dwFlagsAndAttributes: u32,
    hTemplateFile: HANDLE,
) -> HANDLE

This repo contains driver samples prepared for use with Microsoft Visual Studio and the Windows Driver Kit (WDK). It contains both Universal Windows Driver and desktop-only driver samples.

Pros of Windows-driver-samples

  • Official Microsoft repository with high-quality, well-documented samples
  • Regularly updated to reflect the latest Windows driver development practices
  • Covers a wide range of driver types and technologies

Cons of Windows-driver-samples

  • Limited to Windows driver development only
  • Requires Windows and Visual Studio for development
  • Not a complete operating system, focused solely on driver samples

Code Comparison

ReactOS (kernel/base/boot/freeldr/freeldr/arch/i386/entry.S):

.code16
.text
_start:
    cli
    xorw %ax, %ax
    movw %ax, %ds

Windows-driver-samples (general/echo/kmdf/driver/echo.c):

NTSTATUS
DriverEntry(
    _In_ PDRIVER_OBJECT  DriverObject,
    _In_ PUNICODE_STRING RegistryPath
    )
{
    WDF_DRIVER_CONFIG config;

Summary

ReactOS is an open-source operating system project aiming to be compatible with Windows, while Windows-driver-samples is a collection of driver samples for Windows development. ReactOS provides a complete OS implementation, whereas Windows-driver-samples focuses on specific driver development scenarios. The code examples show the low-level assembly in ReactOS versus the higher-level C code in Windows driver samples.

An advanced, composable, functional reactive model-view-viewmodel framework for all .NET platforms that is inspired by functional reactive programming. ReactiveUI allows you to abstract mutable state away from your user interfaces, express the idea around a feature in one readable place and improve the testability of your application.

Pros of ReactiveUI

  • Focused on reactive programming for .NET, providing a more specialized toolset
  • Active development with frequent updates and releases
  • Extensive documentation and community support

Cons of ReactiveUI

  • Smaller scope compared to ReactOS, which is a full operating system
  • Steeper learning curve for developers new to reactive programming
  • Limited to .NET ecosystem, while ReactOS aims for broader compatibility

Code Comparison

ReactiveUI example:

this.WhenAnyValue(x => x.SearchTerm)
    .Throttle(TimeSpan.FromSeconds(0.8))
    .Select(term => term?.Trim())
    .DistinctUntilChanged()
    .InvokeCommand(SearchCommand);

ReactOS example (kernel code):

NTSTATUS
NTAPI
NtCreateFile(
    _Out_ PHANDLE FileHandle,
    _In_ ACCESS_MASK DesiredAccess,
    _In_ POBJECT_ATTRIBUTES ObjectAttributes,
    _Out_ PIO_STATUS_BLOCK IoStatusBlock,
    _In_opt_ PLARGE_INTEGER AllocationSize,
    _In_ ULONG FileAttributes,
    _In_ ULONG ShareAccess,
    _In_ ULONG CreateDisposition,
    _In_ ULONG CreateOptions,
    _In_reads_bytes_opt_(EaLength) PVOID EaBuffer,
    _In_ ULONG EaLength)

The code examples highlight the different focus areas of these projects. ReactiveUI deals with reactive programming patterns in .NET, while ReactOS involves low-level system programming for operating system development.

16,206

.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.

Pros of runtime

  • More active development with frequent updates and releases
  • Larger community and contributor base, leading to faster bug fixes and feature implementations
  • Comprehensive documentation and extensive ecosystem support

Cons of runtime

  • Larger codebase and more complex architecture, potentially harder for newcomers to navigate
  • Focused on .NET runtime, limiting its scope compared to ReactOS's full operating system approach
  • Higher system requirements for development and testing

Code Comparison

ReactOS (C, Assembly):

VOID
NTAPI
KiDispatchException(
    IN PEXCEPTION_RECORD ExceptionRecord,
    IN PKEXCEPTION_FRAME ExceptionFrame,
    IN PKTRAP_FRAME TrapFrame,
    IN KPROCESSOR_MODE PreviousMode,
    IN BOOLEAN FirstChance)

runtime (.NET, C#):

public static void ThrowHelper.ThrowArgumentNullException(ExceptionArgument argument)
{
    throw new ArgumentNullException(GetArgumentName(argument));
}

The code snippets demonstrate the different focus areas of the projects. ReactOS deals with low-level system operations, while runtime focuses on .NET-specific exception handling and runtime operations.

11,265

Mono open source ECMA CLI, C# and .NET implementation.

Pros of Mono

  • More mature and widely adopted project with a larger community
  • Better cross-platform support, including mobile platforms
  • Extensive documentation and resources available

Cons of Mono

  • Larger codebase and potentially more complex to contribute to
  • Slower development cycle compared to ReactOS
  • Limited compatibility with newer .NET features

Code Comparison

Mono (C# example):

using System;

class Program
{
    static void Main()
    {
        Console.WriteLine("Hello from Mono!");
    }
}

ReactOS (C example):

#include <stdio.h>

int main()
{
    printf("Hello from ReactOS!\n");
    return 0;
}

The code examples demonstrate the different programming languages and paradigms used in each project. Mono primarily uses C# and focuses on .NET compatibility, while ReactOS uses C and aims for Windows API compatibility.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

ReactOS


ReactOS 0.4.15 Release Download ReactOS SourceForge Download License Donate Follow on Twitter

Quick Links

WebsiteOfficial chatWikiForumCommunity DiscordJIRA Bug TrackerReactOS Git mirrorTestman

What is ReactOS?

ReactOS™ is an Open Source effort to develop a quality operating system that is compatible with applications and drivers written for the Microsoft® Windows™ NT family of operating systems (NT4, 2000, XP, 2003, Vista, 7).

The ReactOS project, although currently focused on Windows Server 2003 compatibility, is always keeping an eye toward compatibility with Windows Vista and future Windows NT releases.

The code of ReactOS is licensed under GNU GPL 2.0.

Product quality warning

ReactOS is currently an Alpha quality operating system. This means that ReactOS is under heavy development and you have to be ready to encounter some problems. Different things may not work well and it can corrupt the data present on your hard disk. It is HIGHLY recommended to test ReactOS on a virtual machine or on a computer with no sensitive or critical data!

Building

Build rosbewin.badge rosbeunix.badge coverity.badge

To build the system it is strongly advised to use the ReactOS Build Environment (RosBE). Up-to-date versions for Windows and for Unix/GNU-Linux are available from our download page at: "Build Environment".

Alternatively one can use Microsoft Visual C++ (MSVC) version 2019+. Building with MSVC is covered here: "Visual Studio or Microsoft Visual C++".

See "Building ReactOS" article for more details.

Binaries

To build ReactOS you must run the configure script in the directory you want to have your build files. Choose configure.cmd or configure.sh depending on your system. Then run ninja <modulename> to build a module you want or just ninja to build all modules.

Bootable images

To build a bootable CD image run ninja bootcd from the build directory. This will create a CD image with a filename bootcd.iso.

You can always download fresh binary builds of bootable images from the "Daily builds" page.

Installing

By default, ReactOS currently can only be installed on a machine that has a FAT16 or FAT32 partition as the active (bootable) partition. The partition on which ReactOS is to be installed (which may or may not be the bootable partition) must also be formatted as FAT16 or FAT32. ReactOS Setup can format the partitions if needed.

Starting with 0.4.10, ReactOS can be installed using the BtrFS file system. But consider this as an experimental feature and thus regressions not triggered on FAT setup may be observed.

To install ReactOS from the bootable CD distribution, extract the archive contents. Then burn the CD image, boot from it, and follow the instructions.

See "Installing ReactOS" Wiki page or INSTALL for more details.

Testing

If you discover a bug in ReactOS search on JIRA first - it might be reported already. If not report the bug providing logs and as much information as possible.

See "File Bugs" for a guide.

NOTE: The bug tracker is not for discussions. Please use our official chat or our forum.

Contributing prwelcome.badge

We are always looking for developers! Check how to contribute if you are willing to participate.

Legal notice: If you have seen proprietary Microsoft Windows source code (including but not limited to the leaked Windows NT 3.5, NT 4, 2000 source code and the Windows Research Kernel), your contribution won't be accepted because of potential copyright violation.

Try out cloud-based ReactOS development using Gitpod and Docker:

Open in Gitpod

You can also support ReactOS by donating! We rely on our backers to maintain our servers and accelerate development by hiring full-time devs.

More information

ReactOS is a Free and Open Source operating system based on the Windows architecture, providing support for existing applications and drivers, and an alternative to the current dominant consumer operating system.

It is not another wrapper built on Linux, like WINE. It does not attempt or plan to compete with WINE; in fact, the user-mode part of ReactOS is almost entirely WINE-based and our two teams have cooperated closely in the past.

ReactOS is also not "yet another OS". It does not attempt to be a third player like any other alternative OS out there. People are not meant to uninstall Linux and use ReactOS instead; ReactOS is a replacement for Windows users who want a Windows replacement that behaves just like Windows.

More information is available at: reactos.org.

Also see the media/doc subdirectory for some sparse notes.

Who is responsible

Active devs are listed as members of GitHub organization. See also the CREDITS file for others.

Code mirrors

The main development is done on GitHub. We have an alternative mirror in case GitHub is down.

There is also an obsolete SVN archive repository that is kept for historical purposes.