OptiCPU is an advanced utility crafted to continuously optimize system resources, with a primary focus on enhancing CPU usage efficiency, on Linux-based operating systems. The project aims to provide users with a comprehensive toolset to dynamically manage CPU resources, fine-tune system parameters, and adaptively adjust system settings to maintain optimal performance under varying workloads. By employing sophisticated algorithms and real-time monitoring techniques, OptiCPU intelligently adjusts CPU frequency, process priorities, memory management settings, disk I/O configurations, and network parameters to ensure efficient resource utilization while minimizing system overhead. Whether you're operating on older hardware with limited resources or managing high-performance systems, OptiCPU offers a versatile solution to enhance system responsiveness and overall performance, providing a seamless computing experience for users across diverse environments.
In today's fast-paced technological landscape, older hardware often struggles to keep up with the demands of modern software. Many users still rely on aging computers that may not have the resources to smoothly run the latest operating systems and applications. Recognizing this challenge, my goal is to provide a solution tailored to such older hardware, particularly those running Linux, with a preference for Arch Linux due to its lightweight and customizable nature.
The idea is to develop a suite of optimization tools that enhance the performance of these older systems, allowing them to run more efficiently and effectively. By focusing on optimizing resource usage, such as CPU, memory, disk I/O, and network activity, we aim to breathe new life into these aging machines.
The key philosophy behind this project is to leverage the flexibility and versatility of Linux, particularly Arch Linux, to create a tailored optimization solution. This involves fine-tuning system settings, adjusting resource allocation, and implementing intelligent monitoring mechanisms to dynamically adapt to changing workload demands.
By empowering users with the ability to optimize their systems, we enable them to extend the lifespan of their hardware, reduce electronic waste, and continue to benefit from the many advantages of Linux computing. Ultimately, this initiative aligns with the principles of sustainability, accessibility, and empowerment, ensuring that even older hardware can thrive in today's digital ecosystem.
Warning
This project is a dynamic work in progress. Version 1.0.0, our inaugural stable and fully-featured release, is on the horizon. While it's not yet recommended for daily use due to potential minor inconveniences, we welcome enthusiasts to help uncover and resolve bugs or propose exciting new features.
* This is currently an experimental phase where the primary focus is on making the system functional and establishing a practical and logical pathway that aligns with both my vision and the project's goals. It might contain errors, bugs, etc. Many other non-core elements of the project are considered secondary.
-
adjust_cpu_parameters()
Function:- Adjusts CPU parameters by setting the CPU frequency governor to "performance" using the
cpupower frequency-set -g performance
command with superuser privileges.
- Adjusts CPU parameters by setting the CPU frequency governor to "performance" using the
-
optimize_cpu()
Function:- Sets the priority of the process to optimize CPU usage by calling
setpriority(PRIO_PROCESS, 0, -10)
.
- Sets the priority of the process to optimize CPU usage by calling
-
optimize_memory()
Function:- Monitors available memory and swap usage to optimize memory usage. It may adjust memory settings if memory usage exceeds a defined threshold.
-
optimize_disk_io()
Function:- Monitors disk I/O activity using the
iostat
command and adjusts disk scheduler settings if disk utilization is high.
- Monitors disk I/O activity using the
-
optimize_network()
Function:- Monitors network activity using the
sar
command and adjusts network settings if network utilization is high.
- Monitors network activity using the
-
optimize_system()
Function:- Calls all optimization functions (
optimize_cpu()
,optimize_memory()
,optimize_disk_io()
,optimize_network()
) to continuously optimize system resources. This function is executed in a loop to repeatedly optimize the system.
- Calls all optimization functions (
https://aur.archlinux.org/packages/opticpu
OptiCPU is available on AUR (Arch User Repository), and it can be installed using the yay
package manager. Follow the steps below to install it:
-
Make sure you have
yay
installed. If not, you can install it with the following command:sudo pacman -S yay
Once yay is installed, you can install by running the following command:
yay -S opticpu
This command will automatically fetch the package from AUR and handle the installation process for you. Run it with the command opticpu.
After to install it with yay, install it as a service with -sudo-.
The .deb file for Debian based distros: here.
Or just Copy - Paste in your terminal and use -curl- to start downloading the file:
curl -O https://github.com/felipealfonsog/OptiCPU/raw/main/DEBIAN/opticpu/opticpu.deb
If you want to use -wget- just copy/paste this line:
wget https://github.com/felipealfonsog/OptiCPU/raw/main/DEBIAN/opticpu/opticpu.deb
Install it:
sudo dpkg -i opticpu.deb
This installer has been tested under Debian and Kali Linux.
To install it, simply run the installer script available here.
Or just Copy - Paste in your terminal and use -curl- to start downloading the installer:
curl -O https://raw.githubusercontent.com/felipealfonsog/OptiCPU/main/installer.sh
If you want to use -wget- just copy/paste this line:
wget https://github.com/felipealfonsog/OptiCPU/raw/main/installer.sh
On macOS to download - wget - just install it with Homebrew:
brew install wget
After to install it with yay, install it as a service with -sudo-.
If you encounter issues executing the file in the terminal, like this message "-bash: ./installer.sh: Permission denied", follow these simple steps to fix it:
-
Open your terminal.
-
Navigate to the directory where the installer script is located using the
cd
command. -
Run the following command to grant execute permission to the installer script:
chmod +x installer.sh
-
Now you can run the installer without any problems.
./installer.sh
NOTE: The script will ask for -sudo permissions-. Just simply type in Linux your -sudo- password.
Now type 'opticpu' in the terminal and enjoy using it! ππ
Feel free to reach out if you need any further assistance!
If you want to update the program in your system, download the bash and re-run the script:
./installer.sh
Please note that if you encounter any issues or have suggestions, feel free to raise an issue on the OptiCPU repository. Your feedback is invaluable!
Thank you for joining me on this journey, and I hope it brings value to your life and workflow. Let's continue making technology accessible and enjoyable for everyone!
curl -O https://raw.githubusercontent.com/felipealfonsog/OptiCPU/main/installer-daemon.sh
chmod +x installer-daemon.sh
./installer-daemon.sh
- Create a Service File
Create a new service file for "OptiCPU" using a text editor of your choice. For example:
sudo nano /etc/systemd/system/opticpu.service
- Add Service Configuration Paste the following configuration into the opticpu.service file:
[Unit]
Description=OptiCPU Optimization Service
After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/opticpu
Restart=always
[Install]
WantedBy=multi-user.target
This configuration specifies that the service should start "OptiCPU" on boot and restart it if it crashes.
- Save and Close the File
After adding the configuration, save and close the file.
- Enable and Start the Service
Enable the "opticpu" service to start automatically on boot:
sudo systemctl enable opticpu
Start the "opticpu" service:
sudo systemctl start opticpu
- Check Service Status
You can check the status of the "opticpu" service to ensure it's running:
sudo systemctl status opticpu
- Optionally, Stop or Disable the Service
To stop the "opticpu" service:
sudo systemctl stop opticpu
To disable the "opticpu" service from starting automatically on boot:
sudo systemctl disable opticpu
π¨βπ» Felipe Alfonso GonzΓ‘lez
π§ Email: f.alfonso@res-ear.ch
π¦ x (Twitter): @felipealfonsog
π GitHub: felipealfonsog
π License: BSD 3-Clause
If you find this project helpful and would like to support its development, there are several ways you can contribute:
- Code Contributions: If you're a developer, you can contribute by submitting pull requests with bug fixes, new features, or improvements. Feel free to fork the project (development branch) and create your own branch to work on.
- Bug Reports and Feedback: If you encounter any issues or have suggestions for improvement, please open an issue on the project's GitHub repository. Your feedback is valuable in making the project better.
- Documentation: Improving the documentation is always appreciated. If you find any gaps or have suggestions to enhance the project's documentation, please let me know.
Your support and contributions are greatly appreciated! Thank you for your help in making this project better. If you need to mail me, this is the way: f.alfonso@res-ear.ch (I'm Felipe, the Computer Science Engineer behind this idea. Cheers!)
This project is licensed under the BSD 3-Clause License. It will have some restrictions, ask about it.