{"id":19551354,"url":"https://github.com/ilanvinograd/os_32bit","last_synced_at":"2025-04-26T20:31:16.283Z","repository":{"id":255649969,"uuid":"849772275","full_name":"IlanVinograd/OS_32Bit","owner":"IlanVinograd","description":"32 Bit Operation System","archived":false,"fork":false,"pushed_at":"2025-01-18T11:17:35.000Z","size":7808,"stargazers_count":26,"open_issues_count":1,"forks_count":6,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-04T17:51:43.113Z","etag":null,"topics":["32-bit","32bit","assembly","c","kernel","low-level","nasm-assembly","operation-system","operation-systems","os","osdev","qemu","x86"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/IlanVinograd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-30T08:06:51.000Z","updated_at":"2025-03-27T15:26:31.000Z","dependencies_parsed_at":"2024-09-16T21:28:28.645Z","dependency_job_id":"c609c165-f0f4-4d8b-88cb-f5c61284293a","html_url":"https://github.com/IlanVinograd/OS_32Bit","commit_stats":null,"previous_names":["ilanvinograd/os_32bit"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IlanVinograd%2FOS_32Bit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IlanVinograd%2FOS_32Bit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IlanVinograd%2FOS_32Bit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IlanVinograd%2FOS_32Bit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IlanVinograd","download_url":"https://codeload.github.com/IlanVinograd/OS_32Bit/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251051345,"owners_count":21528787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["32-bit","32bit","assembly","c","kernel","low-level","nasm-assembly","operation-system","operation-systems","os","osdev","qemu","x86"],"created_at":"2024-11-11T04:13:38.382Z","updated_at":"2025-04-26T20:31:11.267Z","avatar_url":"https://github.com/IlanVinograd.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overview Version 0.3\n**OS_32Bit** is a 32-bit operating system designed to showcase technical capabilities and serve as a platform for learning and collaboration. It is entirely open-source, inviting contributions from the developer community.\n\n# Installation\nThis section provides the necessary steps for installing the operating system, including system requirements, installation guides, and booting instructions.\n\n- **Clone Repository**:\n  \n  ```\n  git clone https://github.com/IlanVinograd/OS_32Bit.git\n  ```\n- **System Requirements**: A basic development environment with Docker installed.\n- **For GUI QEMU**: Required install -\u003e [VcXsrv](https://sourceforge.net/projects/vcxsrv/), When you start VcXsrv, choose \"Multiple Windows\" and ensure that \"Disable access control\" is checked.\n- **Installation Guide**: Follow the steps below to build and run the OS using Docker.\n- **Booting Instructions**: Run the bootloader through Docker and QEMU.\n\n### Build the Docker Image\n\nTo build the Docker image, use the following command:\n\n```\ndocker build -t os_32bit .\n```\n\n### Run the Project\n- You can run the project using either Command Prompt or PowerShell.\n\n  **CMD**\n  ```\n  docker run --rm -e DISPLAY=host.docker.internal:0.0 -v %cd%\\Code:/usr/src/bootloader os_32bit\n  ```\n\n  **OR**\n  \n  **Powershell**\n  ```\n  docker run --rm -e DISPLAY=host.docker.internal:0.0 -v \"$(Get-Location)/Code:/usr/src/bootloader\" os_32bit\n  ```\n## Cleaning Up Containers\n- You can stop and remove all running and stopped containers using the commands below.\n- **NOTE:**\n  Always clean the containers to free up resources!\n\n  **CMD**\n  ```\n  for /f \"tokens=*\" %i in ('docker ps -q') do docker stop %i\n  for /f \"tokens=*\" %i in ('docker ps -a -q') do docker rm %i\n  ```\n\n  **OR**\n\n  **Powershell**\n  ```\n  docker stop $(docker ps -q) ; docker rm $(docker ps -a -q)\n  ```\n\n## Important Note: Save and Run\n\n- After making changes to your code, **always save your changes** before testing.\n- To test the updated code, **you must run the `docker run` command** again to start a new container with the latest changes.\n\n\n  **CMD**\n  ```\n  docker run --rm -e DISPLAY=host.docker.internal:0.0 -v %cd%\\Code:/usr/src/bootloader os_32bit\n  ```\n\n  **OR**\n\n  **Powershell**\n  ```\n  docker run --rm -e DISPLAY=host.docker.internal:0.0 -v \"$(Get-Location)/Code:/usr/src/bootloader\" os_32bit\n  ```\n\n# Technical Details\n**OS_32Bit** is designed around a 32-bit architecture, supporting essential functionalities for educational and practical purposes.\n\n- *Architecture Overview*\n- *File System Details*\n\n# Documentation\nComprehensive documentation is provided to help you understand the core concepts and contribute to the project effectively.\n\n- [CONTRIBUTING.md](https://github.com/IlanVinograd/OS_32Bit/blob/main/CONTRIBUTING.md)\n- [TECHNICAL_GUIDE.md](https://github.com/IlanVinograd/OS_32Bit/blob/main/Docs/Technical_Guide.md)\n- [Resources.md](https://github.com/IlanVinograd/OS_32Bit/blob/main/Resources.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filanvinograd%2Fos_32bit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Filanvinograd%2Fos_32bit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filanvinograd%2Fos_32bit/lists"}