20151102 - Added 3 more cheats into the new apt cheatsheet

This commit is contained in:
Florian Pöck 2015-11-02 14:51:37 +01:00
parent a519ea163e
commit 22eb1f2df4
1 changed files with 10 additions and 1 deletions

View File

@ -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)
apt install package(s)
# To uninstall package(s)
apt remove package(s)