mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-03 14:31:06 +01:00
14 lines
319 B
Plaintext
14 lines
319 B
Plaintext
|
# Desc: Allows to update the operating system
|
||
|
|
||
|
# To fetch package list
|
||
|
apt-get update
|
||
|
|
||
|
# To download and install updates without installing new package.
|
||
|
apt-get update
|
||
|
|
||
|
# To download and install the updates AND install new necessary packages
|
||
|
apt-get dist-upgrade
|
||
|
|
||
|
# Full command:
|
||
|
apt-get update && apt-get dist-upgrade
|