6
In the company we received the instruction to run the following commands every morning, but the current project manager did not know how to answer me the reason and in the internet search I did not get a good response.
sudo apt-get update
sudo apt update
sudo apt-get upgrade
sudo apt upgrade
Another detail that caught my attention is that it does not have a sequence to be executed, will like the developer.
The machine is used to develop front-end but the lines that update with the commands I see nothing of npm
, gulp
, bower
or php
, which are the applications we use, so what’s the impact of running these commands.
And the
apt update
andapt upgrade
without the use ofget
follow the same rule or have different characteristics?– WMomesso
On my machine I saw no difference between the 2 commands ( with and without "get"), both executed the same thing.
– Henrique Felix
There is still the
sudo apt list --upgradable
to see who these packages are that can be upgraded– tarcnux