USE https://itsfoss.com/task-manager-linux/
Ctrl+Alt+Del
https://itsfoss.com/ccleaner-alternatives-ubuntu-linux/
https://github.com/oguzhaninan/Stacer
Download stacer_1.1.0_amd64.deb from the Stacer releases page.
Run sudo dpkg -i stacer.deb on the downloaded package.
Launch Stacer using the installed stacer command.
http://bleachbit.sourceforge.net/
sudo apt-get install bleachbit
Basic UBUNTU Commands For Beginner:
sudo apt-get upgrade <package-name>
sudo apt-get install <package-name>
sudo (SuperUser DO) Linux command allows you to run programs or other commands with administrative privileges, just like “Run as administrator” in Windows. This is useful when, for example, you need to modify files in a directory that your user wouldn’t normally have access to.
apt-get is the one of the most important Ubuntu commands every beginner must know. It is used to install, update, upgrade and remove any package. apt-get basically works on a database of available packages. Here is the list of different apt-get commands:
1. sudo apt-get update
apt-get update with super user privileges is the first command you need to run in any Linux system after a fresh install. This command updates the database and let your system know if there are newer packages available or not.
2. sudo apt-get upgrade
After updating the package database, next step is to to upgrade the installed packages. For upgrading all the packages with available updates you can use this command.
3. sudo apt-get install
If you know the name of the package, then you can easily install a program using this command:
sudo apt-get install <package-name>
Replace the <package-name> with your desired package.
4. sudo apt-get remove
When it comes to removing the installed program apt-get remove command suits your need. You only have to know the exact package name of the software you want to uninstall.
If you don’t know the package name, use below ubuntu basic command to list all the packages installed on your system and then copy the package name from the list:
dpkg --list
Now run the apt-get remove command as sudo in order to remove the software:
sudo apt-get remove <package-name>
5. sudo apt-get purge
apt-get purge command is used when you want to remove a software completely from your system with its configuration or data files so that no longer personalized settings will be available during reinstallation.
Run the apt-get purge command as sudo in order to remove the software completely:
sudo apt-get purge <package-name>