Skip to content

Flatpak - Remove unused packages and repair

Using flatpak is very useful for when you need a package or few and not pollute your main or any machines file system.

Removing unused packages is simply performed by using the command below in your terminal fo choice.

flatpak uninstall --unused


Verifying and/or repairing your flatpak packages can be done using the command below.

flatpak repair

Debian - June 2025 was a busy-ish month

With freezes in place and much work being done to prepare for Debian 13, it has been a hectic month.

I have been:

1. Reviewing packages and mentoring as part of my contribution to Debian Mentors[1].

2. Making sure the packages I maintain are ready for Debian 13.

3. Doing testing of what will be Debian 13 and its packages.

I have not:

1. Had any movement of my Debian Developer (DD) application.

More to follow soon on this one.

[1] Debian Mentors

Updating and Cleaning using 'apt' and 'dpkg' on the command line

The following are the commands I use to update my Debian (or any apt) system. These commands will help you update your system and then clean update after, including any cruft.

sudo apt update

sudo apt full-upgrade

sudo apt autoremove

sudo apt purge `dpkg --list | grep ^rc | awk '{ print $2; }'`

sudo apt clean all


Hope this helps you update then clean up afterwards.