Skip to main content

What does sudo apt-get autoremove do ?

sudo apt-get autoremove
Whenever you install an application (using apt-get) the system will also install the software that this application depends on. It is common in Ubuntu/Linux that applications share the same libraries. When you remove the appplication the dependency will stay on your system.
So apt-get autoremove will remove those dependencies that were installed with applications and that are no longer used by anything else on the system.

Comments

Popular posts from this blog

How to install .run files ?

Occasionally, some applications and games (eg. some from the Humble Indie Bundle) have .run installers. Before installing using these, check to see if: it is available from the Software Centre it is available as a .deb file, which will open in the Software Center You can install .run files from the graphical interface, but using a terminal is more likely to give you useful feedback. To install a .run file you need to: make it executable. execute it This is because .run files are just executable programs that do some unknown magic to install the program. This is similar to what .exe installers do on Windows and is different to the normal methods (at best, using the Software Centre, at worst using .deb files) in which applications are installed in a standard way and can be easily removed. Graphical Method Right click on the file in the file manager and click 'Properties'. Click the 'Permissions' tab and tick the box that says 'Allow executing fil...