Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
xxcosita3czxx committed Apr 27, 2024
2 parents 75e3be2 + e34c22e commit 445629d
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,36 @@
# PyXEN
About 90% pure pytohn system

## What this is?

Hello, this is project that tries to make system built on linux kernel that runs python os. Its project that i use to learn how tf i compile working kernel and initramfs + overally making os.

## How do i install this?

1. So first thing is an usb

> * Preferably 16-32gb+ usb (for future updates)
> * It cannot be sd card (corrupting issues)
2. Next thing is formatting it and making:

> * 300-500mb "EFI" partition with fat32
> * "ROOTFS" partition with btrfs or ext4 (preferin btrfs)
3. Mount partitions

> I preffer creating new directories at /mnt, like /mnt/rootfs/ and /mnt/efi/, so lets use that:
```bash
sudo mkdir /mnt/efi /mnt/rootfs
```

> and then mount em:
```bash
sudo mount /dev/sdX1 /mnt/efi
sudo mount /dev/sdX2 /mnt/rootfs
```
**DO NOT Forget to change sdX for your drive**

4. Install the basic system:

0 comments on commit 445629d

Please sign in to comment.