➕ HOW TO USE STACER TO CLEAN UP YOUR LINUX ➕

Jollier

Professional
Messages
1,127
Reputation
6
Reaction score
1,104
Points
113
If you use Linux you might miss ccleaner and it's utilities to clean windows. Well we have different tools on Linux which are free to use.

1️⃣ Install Stacer

For Debian and ubuntu users you can install stacer by command-line interface:

Code:
sudo apt install software-properties-common
sudo add-apt-repository ppa:oguzhaninan/stacer
sudo apt update
sudo apt install stacer

It may happen that you get error messages about the GPG key. You can remove the repository by typing :

Code:
sudo add-apt-repository --remove ppa:oguzhaninan/stacer

If you don't want add repository you can simply download & install the Debian package from their github page :

Code:
sudo apt install curl systemd
cd /tmp
wget https://github.com/oguzhaninan/Stacer/releases/download/v1.1.0/stacer_1.1.0_amd64.deb
sudo apt install ./stacer_1.1.0_amd64.deb -y

2️⃣ Start Stacer

Code:
sudo stacer

(To run stacer as superuser)

The first tab that you will see is the dashboard with CPU, Memory and Disk.

Screenshot :
NVekJn1.png


3️⃣ Overview

As far as we can see there are different icons with different features.

Startup Applications - Shows you all applications which will be launched on startup

System Cleaner - Will clean your system of package caches, crash reports, application logs, application caches and t he trash

Search - Is a browsing tool for your file system to find files.(Need to select directory)

Services - Shows you all running and not running services.

Processes - Gives an overview about all running processes.

Uninstaller - Uninstall packages by search options or manually search.

Resources - Shows CPU, Disk Read Write, Memory, Network, File System (A better taskmanager of windows).

Helpers - Print Hosts.

APT Repository Manager - Here you can manage your Repositories (enable / disable).

Settings - Language, Disks, Start Page.

4️⃣ Clean Up

Head over to the »System Cleaner« tab and click "Select all" and click »Search«

Screenshot :
7uhK9hH.png


Again click »Select all« and then click the ? icon.

Screenshot :
0oSQ9od.png


Finally your system has been cleared for the first.

Later an advanced tutorial about bleachbit.
 
Top