Apt-get update apt-get upgrade apt-get dist-upgrade
apt-get dist-upgradesudo apt-get update
Thanks to the apt-get update command, the differences between the packages installed in your system and their versions in the package store are investigated and the list is updated. Actually, the only list is the update. It is strongly recommended to run before any update because it is a necessary process for the solution of the necessary updates and dependencies on your system.
apt-get upgrade
It upgrades all of the packages installed on your system to the latest version in the list you updated with the apt-get update command. The point to be noted here is the update process is performed on the packages with the BOARD. Updates version 1.1 of the A.lib file to version 1.2. It only updates the packages that are installed.
Some software developers or system administrators do not want to install package or kernel files that they do not need considering the stability of their systems. In such a case, the upgrade is very useful. Only existing packages will be upgraded to the latest version. An important point is that no packages have been deleted from the system. Only existing packages will be upgraded to the latest version.
apt-get dist-upgrade
For this command, we can say that it has the most authority in the apt system. It updates existing packages, establishes new dependencies that are not in the system, deletes those that do not need. It can be used to solve addiction problems and upgrade your system to the latest version of kernel. The preference is the user. Some users may have problems with the new kernel version installed.
No comments