diff --git a/cheat/cheatsheets/apt b/cheat/cheatsheets/apt index adab055..fa0df27 100644 --- a/cheat/cheatsheets/apt +++ b/cheat/cheatsheets/apt @@ -1,5 +1,11 @@ # Desc: Allows to update the operating system +# To search a package: +apt search package + +# To show package informations: +apt show package + # To fetch package list: apt update @@ -13,4 +19,7 @@ apt dist-upgrade apt update && apt dist-upgrade # To install a new package(s): -apt install package(s) \ No newline at end of file +apt install package(s) + +# To uninstall package(s) +apt remove package(s)