Linux: Difference between revisions

233 bytes added ,  27 December 2019
no edit summary
No edit summary
No edit summary
Line 1: Line 1:
A collection of notes on using Linux systems, in particular Ubuntu.
A collection of notes on using Linux systems, in particular Ubuntu.


==Basic Terminal Commands==
==Package Management==
===List all installed packages===
<syntaxhighlight lang="bash">
# List everything
sudo dpkg -l
# List things with apache in the name
sudo dpkg -l | grep apache
</syntaxhighlight>


==SSH==
==SSH==