Welcome to today’s guide on how to install and use Stacer Linux Optimizer and Monitoring tool. Stacer is an open source system optimizer and monitoring application designed to help you manage
Here at computingforgeeks, we value Monitoring and system optimization and all its chattels which can be viewed as building blocks for better infrastructure. In this post, we will cover the installation and usage of Stacer Linux System Optimizer & Monitoring tool on Ubuntu / Debian and CentOS.
Features of Stacer Linux System Optimizer
You can perform the following actions from Stacer GUI.
- Manage Startup Applications
- Perform system cleanup – package caches, Application Logs, Crash reports, Trash & application caches.
- Stop running services and enable/disable start on boot.
- Check running processes and optionally stop them
- List all installed packages and use its uninstall function
- Monitor system CPU, memory and network utilization.
- Manage Repositories – Add, remove, enable or disable.
- Configure Gnome – Window Manager and Appearanc
Install Stacer Linux System Optimizer on Ubuntu
Update your Package index and install Stacer Linux System Optimizer on Ubuntu:
sudo apt update
sudo apt install stacer
Press <Enter>
key when prompted to install it.
...
0 upgraded, 121 newly installed, 0 to remove and 44 not upgraded.
Need to get 67.4 MB of archives.
After this operation, 290 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Install Stacer Linux System Optimizer on Debian / CentOS
For Debian and CentOS Linux distributions, download the latest .deb
or .rpm
package from Stacer releases page and install it.
Installation on Debian
Download the package:
DEB_PACKAGE=$(curl -s https://api.github.com/repos/oguzhaninan/Stacer/releases/latest|grep browser_download_url|grep deb|cut -d '"' -f 4)
echo $DEB_PACKAGE|wget -i -
Then install the package:
sudo apt install ./stacer*.deb
Installation on CentOS / Fedora
Download RPM package:
RPM_PACKAGE=$(curl -s https://api.github.com/repos/oguzhaninan/Stacer/releases/latest|grep browser_download_url|grep rpm|cut -d '"' -f 4)
Install downloaded package:
sudo yum -y install epel-release wget
echo $RPM_PACKAGE|wget -i -
sudo yum localinstall ./stacer*.rpm
Use Stacer Linux System Optimizer & Monitoring tool
Launch Stacer from the Applications search area or using command line interface.

For CLI, use:
$ stacer
You should get interface which looks like below

Switch through its tabs to use specific features which comes with Stacer as stated in the features section of this guide.

Other Monitoring guides:
- Ctop – Top command for container metrics
- How to Monitor Linux Server with Netdata and Grafana
- Monitor Linux System with Grafana and Telegraf
- Monitor Redis Server with Prometheus and Grafana in 5 minutes