Skip to content
This repository was archived by the owner on May 5, 2024. It is now read-only.

Commit 157c22c

Browse files
authored
Update README.md
1 parent 503dfe4 commit 157c22c

File tree

1 file changed

+75
-1
lines changed

1 file changed

+75
-1
lines changed

README.md

Lines changed: 75 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,75 @@
1-
hey! this repo was created because of a mestake on our end! dont worry we will merge your code into the actual repo that this was ment to be. we will also have your github name commented into the file aswell!
1+
# PythonicOS
2+
3+
PythonicOS is an open-source operating system built on top of the Linux kernel and the GRUB bootloader. It is developed using a combination of Python and C programming languages, making it an ideal choice for developers familiar with these languages.
4+
5+
## Features
6+
7+
- **Pythonic Environment:** PythonicOS provides a familiar environment for Python developers, allowing them to leverage their existing knowledge and libraries to build applications and system components.
8+
9+
- **Linux Kernel:** Built on top of the reliable and robust Linux kernel, PythonicOS inherits its stability, security, and hardware compatibility features.
10+
11+
- **GRUB Bootloader:** PythonicOS utilizes the GRUB (GRand Unified Bootloader) to handle the boot process, providing flexibility and support for various hardware configurations.
12+
13+
- **Extensibility:** PythonicOS is designed with extensibility in mind. Developers can easily extend and customize the operating system by writing modules and adding new features.
14+
15+
## Getting Started
16+
17+
### Prerequisites
18+
19+
To build and run PythonicOS, you will need the following software installed on your system:
20+
21+
- Linux kernel source code
22+
- GRUB bootloader
23+
- Python 3.x or later
24+
- requirements from the requirements.txt file, you can install them using Pip install -R requirements.txt
25+
26+
### Building PythonicOS
27+
28+
Clone the PythonicOS repository:
29+
30+
git clone https://github.com/OpenStudioCorp/PythonicOS.git
31+
32+
Change into the PythonicOS directory:
33+
34+
cd PythonicOS
35+
36+
Build the operating system using the provided build script:
37+
38+
#Running PythonicOS
39+
40+
Install the GRUB bootloader on a bootable device (e.g., USB drive) using the following command:
41+
42+
grub-install /dev/sdX
43+
44+
Replace /dev/sdX with the appropriate device identifier for your system.
45+
46+
Copy the generated kernel image and configuration files to the bootable device.
47+
48+
Reboot your system and select the bootable device as the boot source in your BIOS or UEFI settings.
49+
----------------------------------------------------------------------------------------------------
50+
51+
# Contributing
52+
53+
We welcome contributions from the community to enhance PythonicOS. To contribute, please follow these steps:
54+
55+
Fork the PythonicOS repository.
56+
57+
Create a new branch for your feature or bug fix:
58+
59+
git checkout -b feature/your-feature-name
60+
61+
Make the necessary changes and commit them:
62+
63+
git commit -m "Add your commit message here"
64+
65+
Push your changes to your forked repository:
66+
67+
git push origin feature/your-feature-name
68+
69+
Open a pull request in the original PythonicOS repository, describing your changes and their purpose.
70+
------------------------------------------------------------------------------------------------------
71+
License
72+
PythonicOS is released under the MIT License.
73+
74+
Contact
75+
For any questions, suggestions, or feedback, please reach out to us at our discord,

0 commit comments

Comments
 (0)