How to search for the gimp package in the package manager
apt search gimp
How to show detail about a package with the package manager
apt show virtualbox
How to install a package using the package manager
sudo apt install virtualbox
How to show an interactive list of running processes
top
How change sort of the top command
press M key once the top command is running
Pressing the M key within top sorts processes by memory use, thus identifying the ones that are consuming the most memory.
How to show current process data
ps
Uninstall a package
sudo apt remove gimp
How to check for updates
sudo apt update
How to install updates
sudo apt upgrade