mirror of
https://github.com/Erreur32/cheat.git
synced 2024-12-22 21:52:12 +01:00
20151102 - Added 3 more cheats into the new apt cheatsheet
This commit is contained in:
parent
a519ea163e
commit
22eb1f2df4
1 changed files with 10 additions and 1 deletions
|
@ -1,5 +1,11 @@
|
||||||
# Desc: Allows to update the operating system
|
# 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:
|
# To fetch package list:
|
||||||
apt update
|
apt update
|
||||||
|
|
||||||
|
@ -13,4 +19,7 @@ apt dist-upgrade
|
||||||
apt update && apt dist-upgrade
|
apt update && apt dist-upgrade
|
||||||
|
|
||||||
# To install a new package(s):
|
# To install a new package(s):
|
||||||
apt install package(s)
|
apt install package(s)
|
||||||
|
|
||||||
|
# To uninstall package(s)
|
||||||
|
apt remove package(s)
|
||||||
|
|
Loading…
Reference in a new issue