|
|
|
|
|
by patrickgzill
5761 days ago
|
|
That is right, apt-get update only updates the list. apt-get upgrade upgrade currently installed packages to the latest version. If you want to do it all on one line, "apt-get update && apt-get upgrade" is the answer. The && means "run the second command only if the first command completes without an error" . |
|