22

I have been uninstalling applications as well as removing or purging their configuration files using the command apt-get --purge remove {package_name}.

I have come across several posts on the net including Ubuntu's guide at https://help.ubuntu.com/community/AptGet/Howto that reads "This command completely removes a package and the associated configuration files. Configuration files residing in ~ are not usually affected by this command" when just using the command apt-get purge {package_name}.

Is there a difference in running the command apt-get --purge remove {package_name} and apt-get purge {package_name}? Why would you use one over the other?

1 Answers1

28

The command apt-get --purge remove has been around since APT was added to Debian and it used to be the only way to completely purge a package with apt. The command apt-get purge was finally added in the last few years, the old option was not removed, and there is still lots of documentation showing the older syntax. They do exactly the same thing.

I often still use the longer command apt-get --purge remove simply because I have used it more often, and forget that the shorter version is now available.

One other useful thing to keep in mind is that the --purge option can be used with the apt-get autoremove (equivalent to the shorter apt-get autopurge). So if you use apt-get autoremove to remove automatically installed packages you will have lots of old crufty configs from those packages, since you just removed them.

vilpan
  • 163
Zoredache
  • 20,438