{"id":17348079,"url":"https://github.com/hanoglu/isolatedos","last_synced_at":"2025-06-26T19:37:22.473Z","repository":{"id":53675494,"uuid":"479769525","full_name":"hanoglu/IsolatedOS","owner":"hanoglu","description":"Alien Isolation inspired fan made operating system","archived":false,"fork":false,"pushed_at":"2022-05-15T14:19:20.000Z","size":31,"stargazers_count":17,"open_issues_count":2,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-14T21:11:20.677Z","etag":null,"topics":["32-bit","32bit","alien-isolation","bootloader","fan-made","fanmade","legacy-bios","operating-system","osdev","protected-mode","vesa","vga-driver"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hanoglu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-04-09T15:39:05.000Z","updated_at":"2024-12-29T23:03:59.000Z","dependencies_parsed_at":"2022-09-17T07:50:33.704Z","dependency_job_id":null,"html_url":"https://github.com/hanoglu/IsolatedOS","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/hanoglu/IsolatedOS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanoglu%2FIsolatedOS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanoglu%2FIsolatedOS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanoglu%2FIsolatedOS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanoglu%2FIsolatedOS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hanoglu","download_url":"https://codeload.github.com/hanoglu/IsolatedOS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanoglu%2FIsolatedOS/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262133443,"owners_count":23264213,"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","alien-isolation","bootloader","fan-made","fanmade","legacy-bios","operating-system","osdev","protected-mode","vesa","vga-driver"],"created_at":"2024-10-15T16:51:02.139Z","updated_at":"2025-06-26T19:37:22.412Z","avatar_url":"https://github.com/hanoglu.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IsolatedOS\nAlien Isolation inspired fan made 32 bit real operating system. This operating system consist of it's own bootloader and -very- little kernel which not derived from Linux or something.\n# Installation\nDownload ISO file in releases page and use an emulator to run it. \nOperating system can be run in legacy bios mode on any computer in theory but **I strongly suggest you to run it on virtual device**.\n# How to build\n## Required Packages\nInstall the required packages to compile operating system.\n```bash\ngcc\nnasm\nqemu-kvm\n```\nNote: qemu-kvm package is required for testing iso\n## Build Scripts\nOpen a terminal in project root directory and run script files.\n```bash\nchmod +x build.sh\nchmod +x run.sh\n./build.sh\n./run.sh\n```\nTo build and run\n```bash\n./build.sh \u0026\u0026 ./run.sh\n```\n# How to change messages in OS\nTo change messages in OS open vgasrc.cpp file in winsis directory and change following lines.\n```cpp\n// PERSONAL:\n#define _PersonalCount 2\nconst char* personal_title = \"CONFIGURING MESSAGES\";\nconst char* personal[_PersonalCount] = {\n    \"ALL MESSAGES CAN BE EDITTED ON TOP OF THE VGASRC CPP SOURCE\",\n    \"FILE\"\n};\n\n// UTILITIES\n#define _UtilitiesCount 1\nconst char* utilities_title = \"COMPILATION OF SOURCE\";\nconst char* utilities[_UtilitiesCount] = {\n    \"LOOK AT BUILD SHELL FILE\"\n};\n\n// ABOUT\n#define _AboutCount 5\nconst char* about_title = \"ABOUT ISOLATED OS\";\nconst char* about[_AboutCount] = {\n    \"ISOLATED OS VERSION A\",\n    \"THIS OPERATING SYSTEM IS DEVELOPED FOR ENTERTAINMENT PURPOSES\",\n    \"INSPIRED BY FAMOUS VIDEO GAME AND NOT RELATED WITH ANY TRADEMARK\",\n    \"OF IT\",\n    \"PROJECT LICENSED UNDER GPL VERSION TWO\"\n};\n```\nIf you change the line count you should change '_PersonalCount, _UtilitiesCount or _AboutCount' as well.\n# Login Password\nDefault login password is 'ADMIN'.\u003cbr\u003e\nYou can change password in vgasrc.cpp file.\n```cpp\nconst char* passwd = \"ADMIN\";\n\n```\n\n# Gallery\n\n\u003cimg width=\"577\" alt=\"resim\" src=\"https://user-images.githubusercontent.com/56837349/162581070-88d740fb-0b0a-444b-b54b-fe687d487585.png\"\u003e\n\u003cimg width=\"577\" alt=\"resim\" src=\"https://user-images.githubusercontent.com/56837349/162581102-4403fe16-29af-4e48-9f04-044617349535.png\"\u003e\n\u003cimg width=\"577\" alt=\"resim\" src=\"https://user-images.githubusercontent.com/56837349/162581115-d553dd64-c717-4058-a409-c57fddc61678.png\"\u003e\n\u003cimg width=\"577\" alt=\"resim\" src=\"https://user-images.githubusercontent.com/56837349/162581124-cbf2fde0-830d-4668-a7aa-0e6907f70019.png\"\u003e\n\n# License\n```\nCopyright (C) 2021  Yusuf K. Hanoğlu\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; version 2\nof the License.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. \n\n```\n\n# Disclaimer\nThis project is developed for **entertainment only** and is **not related** with aforementioned game or any of it's trademark.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanoglu%2Fisolatedos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhanoglu%2Fisolatedos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanoglu%2Fisolatedos/lists"}