{"id":19854676,"url":"https://github.com/codeguardiansof/vortexos","last_synced_at":"2025-02-28T21:35:21.018Z","repository":{"id":257877522,"uuid":"871192605","full_name":"CodeGuardianSOF/VortexOS","owner":"CodeGuardianSOF","description":"VortexOS","archived":false,"fork":false,"pushed_at":"2024-11-20T17:35:32.000Z","size":91,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-20T18:33:59.622Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CodeGuardianSOF.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-10-11T13:03:05.000Z","updated_at":"2024-11-20T17:35:36.000Z","dependencies_parsed_at":"2024-11-20T18:36:49.059Z","dependency_job_id":null,"html_url":"https://github.com/CodeGuardianSOF/VortexOS","commit_stats":null,"previous_names":["codeguardiansof/vortexos"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeGuardianSOF%2FVortexOS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeGuardianSOF%2FVortexOS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeGuardianSOF%2FVortexOS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeGuardianSOF%2FVortexOS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CodeGuardianSOF","download_url":"https://codeload.github.com/CodeGuardianSOF/VortexOS/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233489657,"owners_count":18684004,"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":[],"created_at":"2024-11-12T14:10:07.041Z","updated_at":"2025-01-11T13:44:31.960Z","avatar_url":"https://github.com/CodeGuardianSOF.png","language":"C","readme":"# Write Your Own 64-bit Operating System Kernel From Scratch\n\nThis respository holds all the source code for [this YouTube tutorial series](https://www.youtube.com/playlist?list=PLZQftyCk7_SeZRitx5MjBKzTtvk0pHMtp).\n\nYou can find the revision for a specific episode on [this page](https://github.com/davidcallanan/yt-os-series/tags).\n\nYou can find pre-built ISO files for this kernel at [this repository](https://github.com/davidcallanan/os-series-isos).\n\nConsidering supporting this work via [my Patreon page](http://patreon.com/codepulse).\n\n## Prerequisites\n\n - A text editor such as [VS Code](https://code.visualstudio.com/).\n - [Docker](https://www.docker.com/) for creating our build-environment.\n - [Qemu](https://www.qemu.org/) for emulating our operating system.\n   - Remember to add Qemu to the path so that you can access it from your command-line. ([Windows instructions here](https://dev.to/whaleshark271/using-qemu-on-windows-10-home-edition-4062))\n\n## Setup\n\nBuild an image for our build-environment:\n - `docker build buildenv -t myos-buildenv`\n\n## Build\n\nEnter build environment:\n - Linux or MacOS: `docker run --rm -it -v \"$(pwd)\":/root/env myos-buildenv`\n - Windows (CMD): `docker run --rm -it -v \"%cd%\":/root/env myos-buildenv`\n - Windows (PowerShell): `docker run --rm -it -v \"${pwd}:/root/env\" myos-buildenv`\n - Please use the linux command if you are using `WSL`, `msys2` or `git bash`\n - NOTE: If you are having trouble with an unshared drive, ensure your docker daemon has access to the drive you're development environment is in. For Docker Desktop, this is in \"Settings \u003e Shared Drives\" or \"Settings \u003e Resources \u003e File Sharing\".\n\nBuild for x86 (other architectures may come in the future):\n - `make build-x86_64`\n - If you are using Qemu, please close it before running this command to prevent errors.\n\nTo leave the build environment, enter `exit`.\n\n## Emulate\n\nYou can emulate your operating system using [Qemu](https://www.qemu.org/): (Don't forget to [add qemu to your path](https://dev.to/whaleshark271/using-qemu-on-windows-10-home-edition-4062#:~:text=2.-,Add%20Qemu%20path%20to%20environment%20variables%20settings,-Copy%20the%20Qemu)!)\n\n - `qemu-system-x86_64 -cdrom dist/x86_64/kernel.iso`\n - Note: Close the emulator when finished, so as to not block writing to `kernel.iso` for future builds.\n\nIf the above command fails, try one of the following:\n - Windows: [`qemu-system-x86_64 -cdrom dist/x86_64/kernel.iso -L \"C:\\Program Files\\qemu\"`](https://stackoverflow.com/questions/66266448/qemu-could-not-load-pc-bios-bios-256k-bin)\n - Linux: [`qemu-system-x86_64 -cdrom dist/x86_64/kernel.iso -L /usr/share/qemu/`](https://unix.stackexchange.com/questions/134893/cannot-start-kvm-vm-because-missing-bios)\n - Alternatively, install a custom BIOS binary file and link it to Qemu using the `-L` option.\n\nAlternatively, you should be able to load the operating system on a USB drive and boot into it when you turn on your computer. (I haven't actually tested this yet.)\n\n## Cleanup\n\nRemove the build-evironment image:\n - `docker rmi myos-buildenv -f`\n","funding_links":["http://patreon.com/codepulse"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeguardiansof%2Fvortexos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeguardiansof%2Fvortexos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeguardiansof%2Fvortexos/lists"}