Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 13 down vote accepted

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.