Public-Domain-Laboratories / Operating_System

Barebones for an Operating System (OS) Prototype Design and Implementation.

Home Page:https://opencollective.com/pdl_operating_system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Operating_System Sponsor_button

Important

This is a long term project to standardise and structure an Operating System for the future.
You are welcomed to fork, improve, declare Issues and suggest Pull Requests; Discussions.

Download_Button

A modular Computer Operating System for general computing.

Standardized interfaces and interaction with Operating System Kernels.

  • Barebones structure of the Operating System.
  • Robust, efficient, and user-friendly.

With focus on performance, security, usability, compatibility, scalability, and reliability.

More information: Operating_System

No Copyright reserved.
Public Domain Laboratories.


A Public Domain alternative to Linux Distributions, Windows Operating Systems, Apple MacOS, Google Android.
Targeting: Home Computer Operating System


Operating System Layout

Operating System Root folder

Overview of the operating system.

Main Menu

Operating_System.
No copyrights reserved.
@Public_Domain_Laboratories

The Operating system directories are in object like structure.
Object -> subobject (Common theme, groups files for readable access)
Object -> action (program.d) or property (information.txt)

The reverse way of accessing should be possible as well:
Normal: System/Directory/Print.d
Reverse: Print.d/Directory/System "./"
Omission: Print/Directory "./"

Files and Directories are case insensitive.
Accessing them can be done with lowercase and a mix of uppercase letters.

Shallow directories should not include long directory names and single word names should be enforced on them. More complex directories or projects inside Operating System can contain more descripting longer names for both files and folders. All this is to just make project or directory usage more convenient for less experienced and more manageable for more experienced programmers.

Interface should be a contract or a template for ensuring same structure within source files.

TODO: Make a drop-in replacement for Windows cmd.exe Command Prompt. Windows administrator should be able to paste binary into System32 folder and simply use all commands and environment of this project.

├───Documentation
├───Kernel
│   ├───Boot
│   │   └───Bootloaders
│   ├───Devices
│   ├───Networking_Devices
│   └───Storage_Devices
│       └───Filesystems
├───Library
│   ├───Datatypes
│   ├───Interface
│   ├───Legacy
│   └───Standard_Library
│       ├───Aplication_Binary_Interface
│       ├───Date_and_Time
│       ├───Input_Output
│       ├───Math
│       └───Memory_Allocator
├───Programs
│   ├───Administration
│   │   ├───Groups
│   │   └───Permissions
│   ├───Configurations
│   ├───Control_Panel
│   ├───Games
│   ├───Package_Manager
│   ├───Processes
│   │   ├───Memory_Manager
│   │   └───Process_Manager
│   ├───Security
│   ├───Settings
│   ├───User_Interface
│   └───Utilities
│       ├───Formal_Math_Formula_Evaluator
│       ├───Regular_Expression_Engine
│       └───Text_Tools
├───System
│   ├───Commands
│   ├───Command_Line
│   │   ├───Console
│   │   └───Interpreter
│   ├───Compiler
│   │   └───Linker
│   ├───Development
│   │   └───Language
│   │       └───Parsers
│   │           ├───BNF_Notation
│   │           └───Recursive_Decent_Parsing
│   ├───Games
│   │   └───Text-Based
│   ├───Information
│   ├───Logs
│   ├───Network
│   │   ├───Internet
│   │   └───URL
│   ├───Startup
│   ├───Storage
│   │   ├───Directory
│   │   │   └───Tree
│   │   │       ├───Directory_Tree_Generator
│   │   │       │   ├───Depth_First_Search
│   │   │       │   ├───First research
│   │   │       │   │   └───prototypes
│   │   │       │   ├───path_traversal
│   │   │       │   └───while_method
│   │   │       ├───Natural_Sort_Order
│   │   │       ├───Path_Explorer
│   │   │       ├───Path_Parser
│   │   │       └───Recursive_Depth_First_Tree_Traversal
│   │   ├───File
│   │   ├───Filesystems
│   │   └───Search
│   └───Tools
└───Users
    ├───Administrator
    │   ├───Desktop
    │   ├───Files
    │   └───Home
    ├───Public_User
    │   ├───Guest_User
    │   └───Shared_User
    └───Regular_User
        └───Desktop

About

Barebones for an Operating System (OS) Prototype Design and Implementation.

https://opencollective.com/pdl_operating_system

License:Creative Commons Zero v1.0 Universal


Languages

Language:Python 41.6%Language:D 34.0%Language:Batchfile 12.8%Language:HTML 11.5%Language:Makefile 0.1%Language:Shell 0.0%