Skip to content

[Linux] The Difference Between “apt” And “apt-get”

Almost all of user who used Debian/Ubuntu OS use apt or apt-get tool to control their own packages. Many users even misunderstand that they are the same thing.

But, come on, the different command-names already suggest everything.

In fact, apt and apt-get is different. apt-get is older but it is the top choice for management packages; apt was only used in the unstable version of Debian at first, and then became the standard version in Debian 8. It is gradually gain popularity and replaced apt-get until Ubuntu 16.04.

So specifically, what is the difference between these two instructions?


Differences Between Commands

Functionaptapt-get
Installationapt installapt-get install
Removeapt removeapt-get remove
Updateapt updateapt-get update
Upgrade all packages apt upgradeapt-get upgrade
Upgrade all packages (include dependencies)apt full-upgradeapt-get dist-upgrade
Search packageapt searchapt-cache search
Show package infoapt showapt-cache show
Remove the dependencies we do not needapt autoremoveapt-get autoremove
Remove the useless configurationapt purgeapt-get purge

As you can see, most of the instructions are actually very similar, but personally, I feel that the apt command is better to remember.


Other Differences

According to https://linuxhint.com/diff_apt_vs_aptget/, apt more humanely adds a progress bar in the installation and removing, so that we can know current processing speed.

It is nice.

Not only that, in some functions, the apt command will be displayed users can pay more attention to the key points in the message.


Conclusion

Although apt-get has not yet stepped down from the system-command-stage, most distributions recommend apt first.

As I said above, the apt command is more easy to remember and you don’t have to worry about when to switch from apt-cache to apt-config… it is just apt.

From the functional point to view, apt does not lack the necessary recommended that users use the apt command first.


References


Read More

Tags:

Leave a Reply