Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 583 Bytes

exercise-3-3.md

File metadata and controls

34 lines (23 loc) · 583 Bytes

Exercise 3-3 for Windows and Linux Users: Manage Packages with Apt

Different Linux distributions come with different package managers. Assuming you're using Ubuntu or Windows with WSL, you'll use apt to install neofetch.

Update available packages:

sudo apt update

Install neofetch:

sudo apt install neofetch

And then run it:

neofetch

Uninstall it:

sudo apt remove neofetch

Update all packages:

sudo apt update
sudo apt upgrade