Packages and Processes Flashcards
1
Q
How to search for the gimp package in the package manager
A
apt search gimp
2
Q
How to show detail about a package with the package manager
A
apt show virtualbox
3
Q
How to install a package using the package manager
A
sudo apt install virtualbox
4
Q
How to show an interactive list of running processes
A
top
5
Q
How change sort of the top command
A
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.
6
Q
How to show current process data
A
ps
7
Q
Uninstall a package
A
sudo apt remove gimp
8
Q
How to check for updates
A
sudo apt update
9
Q
How to install updates
A
sudo apt upgrade