diff --git a/cheat/cheatsheets/apt b/cheat/cheatsheets/apt new file mode 100644 index 0000000..adab055 --- /dev/null +++ b/cheat/cheatsheets/apt @@ -0,0 +1,16 @@ +# Desc: Allows to update the operating system + +# To fetch package list: +apt update + +# To download and install updates without installing new package: +apt upgrade + +# To download and install the updates AND install new necessary packages: +apt dist-upgrade + +# Full command: +apt update && apt dist-upgrade + +# To install a new package(s): +apt install package(s) \ No newline at end of file