Skip to content
Rem01Gaming edited this page Aug 15, 2024 · 7 revisions

Hero image


Hi and welcome to Origami Kernel Manager wiki!

Origami Kernel Manager is a set of utilities for power users to tune, adjust, and manage the kernel parameters through the command line interface (CLI), specifically on termux. It aims to deliver a comprehensive solution for enhancing device performance and customization by providing various settings for kernel fine-tuning.

Important

As this project is designed to run under Termux CLI, we assumed you have knowledge about basic CLI commands before installing, if not maybe Franco Kernel Manager or other Kernel Managers is a better choice for you.

Let's get started:

Installation and running Origami Kernel Manager

Getting ready for installation

As we know Origami Kernel Manager runs on Termux CLI, first you need to install Termux. We highly recommended to install Termux from GitHub release or F-Droid and DO NOT install from malicious website or files on random Telegram group (if you have one).

Caution

DO NOT Install Termux from Play Store as it's deprecated and no longer supported. Please read Termux Readme for more info.

After Termux installed, the first you want to do is install the newest versions of all packages currently installed on the Termux. You can use the command below for it.

apt update && apt upgrade

And done! You are ready for install Origami Kernel Manager.

There's 2 method that you can choose to install Origami Kernel Manager.

Installation with deb package (Recommended)

Just copy this command to Termux

rm -f ./origami-kernel.deb
apt install root-repo openssl jq wget -y
latest_release=$(curl -s "https://api.github.com/repos/rem01gaming/origami_kernel_manager/releases/latest" | jq -r ".tag_name")
wget https://github.com/Rem01Gaming/origami_kernel_manager/releases/download/$latest_release/origami-kernel.deb
apt install ./origami-kernel.deb
rm -f ./origami-kernel.deb

If installation success, you should see the output like this Screenshot_20240208-144937_Termux

Installation with make

If you wanted the latest ever changes, you can use this method.

  • Install additional dependencies
apt install git root-repo make -y
  • Clone this repository
git clone https://github.com/Rem01Gaming/origami_kernel_manager
  • Navigate to repo directory and install okm
cd origami_kernel_manager
make install-dependence
make install

Uninstall Origami Kernel Manager

Uninstallation of Origami Kernel Manager is different depending on you method for installing. If you installed Origami Kernel Manager with deb package, simply run apt remove origami-kernel. But in you using make method for installation you need to navigate to repository directory and run make uninstall

Updating Origami Kernel Manager to newer version

For updating Origami Kernel Manager, you need to uninstall and reinstall with newer version. Check out Uninstall Origami Kernel Manager.

Additionally, if you using make method for installation, run git pull on repository directory for checkout changes for newer version.

Contribute to Origami Kernel Manager

Contributions are encouraged! Whether it's through issue submissions or pull requests, your input is valued in enhancing the Origami Kernel Manager.