Skip to main content

Raymii.org Raymii.org Logo

Quis custodiet ipsos custodes?
Home | About | All pages | Cluster Status | RSS Feed

Deborphan cleanup until no more orphaned packages left

Published: 11-01-2016 | Author: Remy van Elst | Text only version of this article


❗ This post is over seven years old. It may no longer be up to date. Opinions may have changed.

Table of Contents


Deborphan

Deborphan removes packages it thinks your system doesn't need anymore. It is a great tool for package cleanup and maintenance. Sometimes, after cleaning up the packages, it will find new packages that are orphaned (because you just cleaned up).

Recently I removed all Google Ads from this site due to their invasive tracking, as well as Google Analytics. Please, if you found this content useful, consider a small donation using any of the options below:

I'm developing an open source monitoring app called Leaf Node Monitoring, for windows, linux & android. Go check it out!

Consider sponsoring me on Github. It means the world to me if you show your appreciation and you'll help pay the server costs.

You can also sponsor me by getting a Digital Ocean VPS. With this referral link you'll get $100 credit for 60 days.

This is a small script that cleans up with deborphan until there is nothing more to cleanup.

Script

First install deborphan, otherwise the script will not work:

apt-get install deborphan

This is the script:

#!/bin/bash
# run deborphan and remove the output packages untill there are no more
while true; do
    if [[ $(deborphan --guess-all) ]]; then
        apt-get purge `deborphan --guess-all`
        apt-get --purge autoremove
    else
        break
    fi
done

Make sure to review the packages that are going to be deleted, not keeping an eye could result in a broken system. If you add -y you're on your own.

Tags: centos , certificates , libssl , lsof , openssl , pki , snippets , ssl , ubuntu