Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hanoglu/isolatedos
Alien Isolation inspired fan made operating system
https://github.com/hanoglu/isolatedos
32-bit 32bit alien-isolation bootloader fan-made fanmade legacy-bios operating-system osdev protected-mode vesa vga-driver
Last synced: 2 months ago
JSON representation
Alien Isolation inspired fan made operating system
- Host: GitHub
- URL: https://github.com/hanoglu/isolatedos
- Owner: hanoglu
- License: gpl-2.0
- Created: 2022-04-09T15:39:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-15T14:19:20.000Z (over 2 years ago)
- Last Synced: 2023-03-13T09:21:45.137Z (almost 2 years ago)
- Topics: 32-bit, 32bit, alien-isolation, bootloader, fan-made, fanmade, legacy-bios, operating-system, osdev, protected-mode, vesa, vga-driver
- Language: C++
- Homepage:
- Size: 30.3 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IsolatedOS
Alien 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.
# Installation
Download ISO file in releases page and use an emulator to run it.
Operating system can be run in legacy bios mode on any computer in theory but **I strongly suggest you to run it on virtual device**.
# How to build
## Required Packages
Install the required packages to compile operating system.
```bash
gcc
nasm
qemu-kvm
```
Note: qemu-kvm package is required for testing iso
## Build Scripts
Open a terminal in project root directory and run script files.
```bash
chmod +x build.sh
chmod +x run.sh
./build.sh
./run.sh
```
To build and run
```bash
./build.sh && ./run.sh
```
# How to change messages in OS
To change messages in OS open vgasrc.cpp file in winsis directory and change following lines.
```cpp
// PERSONAL:
#define _PersonalCount 2
const char* personal_title = "CONFIGURING MESSAGES";
const char* personal[_PersonalCount] = {
"ALL MESSAGES CAN BE EDITTED ON TOP OF THE VGASRC CPP SOURCE",
"FILE"
};// UTILITIES
#define _UtilitiesCount 1
const char* utilities_title = "COMPILATION OF SOURCE";
const char* utilities[_UtilitiesCount] = {
"LOOK AT BUILD SHELL FILE"
};// ABOUT
#define _AboutCount 5
const char* about_title = "ABOUT ISOLATED OS";
const char* about[_AboutCount] = {
"ISOLATED OS VERSION A",
"THIS OPERATING SYSTEM IS DEVELOPED FOR ENTERTAINMENT PURPOSES",
"INSPIRED BY FAMOUS VIDEO GAME AND NOT RELATED WITH ANY TRADEMARK",
"OF IT",
"PROJECT LICENSED UNDER GPL VERSION TWO"
};
```
If you change the line count you should change '_PersonalCount, _UtilitiesCount or _AboutCount' as well.
# Login Password
Default login password is 'ADMIN'.
You can change password in vgasrc.cpp file.
```cpp
const char* passwd = "ADMIN";```
# Gallery
# License
```
Copyright (C) 2021 Yusuf K. Hanoğlu
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; version 2
of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.```
# Disclaimer
This project is developed for **entertainment only** and is **not related** with aforementioned game or any of it's trademark.