Help with removing Orphans (again, this is for my second system)

Hi, I’m going to use pacman -Qdtq | pacman -Rns to remove orphans from my system, the current output of pacman -Qdtq is:

appstream-glib
autoconf
automake
bc
bison
bluez-qt5
box2d
cabextract
cython
db
flex
gamemode
gcab
gcc11
gcc12
geocode-glib
glm
gnome-desktop
gptfdisk
grantlee
http-parser
js78
kactivities-stats5
kdesu5
kdnssd5
kdsoap-qt5
kfilemetadata5
kgamma
kholidays5
khtml
kidletime5
kimageannotator-qt5
kimageformats5
kirigami-addons5
knotifyconfig5
kpeoplevcard
kquickcharts5
krunner5
ktexteditor5
ldns
lib32-attr
lib32-faudio
lib32-pcre
lib32-readline
libayatana-indicator
libcddb
libgit2
libgusb
libhandy
libibus
libical
libindicator-gtk3
libkdcraw5
libksane5
liblouis
libomxil-bellagio
libqaccessibilityclient-qt5
libsidplay
libsmbios
libvisual
lua52
make
mbedtls2
modemmanager-qt5
ndctl
networkmanager-qt5
noto-fonts-compat
openvr
oxygen-sounds
patch
perl-mozilla-ca
perl-parse-yapp
pkgconf
pkgfile
purpose5
python-appdirs
python-cachecontrol
python-colorama
python-commonmark
python-distlib
python-future
python-magic
python-moddb
python-nspektr
python-ordered-set
python-pep517
python-ply
python-progress
python-pycurl
python-pydantic
python-pyopenssl
python-pyrate-limiter
python-resolvelib
python-retrying
python-rich
python-systemd
python-tenacity
python-toml
python-toolz
python-uc-micro-py
python-validate-pyproject
qgpgme-qt5
qqc2-desktop-style5
qt5-webengine
rest
spdlog
tinycompress
unzip
v86d
vkd3d
wayland-protocols
webkit2gtk
webrtc-audio-processing-0.3
wlroots
wpebackend-fdo
xorg-xsetroot

I’m not sure what to remove or what to keep? I’m curious about gamemode, wayland-protocols and vkd3d are these really not required since I use steam?

And assuming that I wanted to remove all the orphans with some exceptions, how do I tell pacman not to remove those exceptions?

Thanks in advance!

I would advise you not to use such a broad-sweep command, but rather to look at the information for each of those packages individually. Yes, it’s a lot of work, but that’s only because you haven’t been systematically keeping track while removing packages and/or updating.

I see several things in that list that have been dropped from the repositories and/or from the AUR over time, but I also see things that are definitely still maintained and useful.

bc for instance is such a package — it’s a command-line precision calculator, and it’s still being maintained. And indeed, you do not want to remove wayland-protocols, make, automake, autoconf or bison.

Off the top of my head, the following can safely be removed…

  • cython
  • kimageannotator-qt5
  • kimageformats5
  • libibus
  • modemmanager-qt5
  • networkmanager-qt5
  • v86d

You can get all information about a package with… :point_down:

pacman -Qi <package-name>
2 Likes

I use:

pamac remove --orphans

…to remove any orphans with every update. But listen to what @Aragorn said, and take my advice as additional.

2 Likes

All these orphans do is occupy space on you drive. Just doesn’t seem worth the effort to gain a GB at most of free space.

1 Like

What do I know :slight_smile: pamac is really good a the orphan stuff - and it would likely be the same result…

I suggest checking - to see what would happen

pamac remove --orphans --dry-run

When you have executed the above for real - be sure to check for orphans until there is no more orphans.

2 Likes

It really takes little effort.

The amount of space to be regained is purely subjective.

If one tends to install/uninstall packages frequently; perhaps including packages via the AUR; and if one fails to cleanup along the way; the space to be regained can potentially be quite substantial.

Example;

When a package is installed it may often install dependencies (only needed for that package). Many might uninstall a package while being completely oblivious to the need to also remove those dependencies.

Using:

sudo pacman -R <package-name>

will uninstall the package.

If it is a meta-package, it should also uninstall dependencies; otherwise, the following command tends to cleanup-as-you-go;

sudo pacman -Rns <package-name>
3 Likes

You don’t have to remove all the orphans at one go if you don’t have the time to examine each one [I do it in pamac GUI] to ensure you really don’t need it. Just pick and choose some orphans to examine and make your decision on those.

What I do is click on the orphans tab when in “Installed” view of pamac GUI, and then using the sorting filter on the right, sort them by repository. Then scroll all the way to the bottom and if any of the orphans are no longer in any repo, not even the AUR. they are a likely candidate for removal.

I also check on the update/install date for the orphans. If the last update of the package was more than 6 months ago, it’s another likely candidate for removal.

And then if you are a KDE plasma user, since Manjaro is now on Plasma 6, you can check on any orphaned kde packages that start with 'k5…" or something similar to that. These are likely Plasma 5 packages and mostly won’t be needed any more.

I would still check on the details of the orphaned packages you wish to target and this includes any “k5” packages - it’s very easy in pamac-GUI - before removing them.

[ADDED] Just to be safe, if there a a lot of orphans you want to remove, make a system backup first.

3 Likes

It might pay to highlight mostly. :slight_smile:

1 Like

OK, done. :grin:

The second example is something like what I’d usually recommend.

pacman -Qii <packagename> | grep -e "Required" && pacman -Qii <packagename> | grep -e "Depends"

is what I would suggest to check what depends on it (or what it might depend on, which might also become unnecessary when it’s removed); I know there is a short-form method of doing this (via grep) but I can’t remember where (on here, by the way) I read it.

2 Likes

Or shorter… :point_down:

pacman -Qii <packagename> | grep -E 'Required|Depends'

:wink:

5 Likes

Thanks Aragorn! i’ll remove the ones you mentioned and the ones I need to keep i’ll mark as explicitly installed, is that correct?

Eh… last time I tried this… My monitor was standing on its head, software wise I mean… or was I the one upside down? :thinking: I can’t remember but it didn’t end well… :face_with_peeking_eye:

You have a point… but I dunno I’d just feel better if they weren’t there… (without destroying my system in the process ofc)

I think I know what would happen if it was a normal run… big badda boom! :boom: (Fifth Element reference :innocent:)

Hi Thunder! :wave:t2: Aye, I think i’ll try this one… but there’s so many packages to uninstall it would take forever like this… :cry: Maybe I can mark the ones I want to keep as explicit and then pacman -Qdtq | pacman -Rns after? or is that still a bad idea?

This sounds like a not too bad plan, maybe i’ll give it a try… but I’m still unsure of what programs are safe to remove and what will lead to an Alice in Wonderland-esque experience if I remove them…

Oh interesting… You are strong with the Linux Fu kind sir. I will try and use this for the benefit of Linux kind… by Linux kind I mean mostly myself for the time being… :blush:

Aha! What we have here is an example of efficiency ladies and gentlemen! The maximum output for the minimum number of keystrokes… well, at least reduced number of keystrokes… obviously one could use the mouse, select the above text and then middle click in terminal… but I digress. Thanks! :+1:t2:

Thank you to everyone who replied, I appreciate it! I don’t know who to give the “solved” check mark to since all your answers are valid and valuable to me. So I gave out likes to everyone instead (:heart: < looks like this one :cowboy_hat_face:) and I see a few familiar names, some of whom have helped me before. Cheers guys!

1 Like

To clarify, that command wasn’t meant for removing orphans, which you should realise if you re-read the particular post in context.

However, it is a command you can generally adopt when deciding to remove/uninstall a single (or several) packages. For example;

sudo pacman -Rns <package-1> <package-2> <package-3> ...

Using -Rns will typically uninstall the package(s) you intended to remove along with dependencies and additional cruft that might have otherwise been left behind (to become orphans) by simply using -R.

1 Like

As you are using Plasma, one more orphaned package that you can remove is wayland-protocols, as Plasma only needs the plasma-wayland-protocols package. I haven’t had wayland-protocols on my trouble-free Plasma system since last year:

paclog --grep=wayland-protocols
[2024-02-22T00:21:28+1100] [ALPM] upgraded wayland-protocols (1.32-1 -> 1.33-1)
[2024-04-16T09:20:35+1000] [ALPM] installed plasma-wayland-protocols (1.12.0-1)
[2024-05-08T17:57:16+1000] [ALPM] upgraded wayland-protocols (1.33-1 -> 1.36-1)
[2024-05-19T10:27:19+1000] [ALPM] removed wayland-protocols (1.36-1)
[2024-05-19T10:38:49+1000] [ALPM] installed wayland-protocols (1.36-1)
[2024-05-27T19:25:52+1000] [ALPM] upgraded plasma-wayland-protocols (1.12.0-1 -> 1.13.0-1)
[2024-07-14T11:39:50+1000] [ALPM] removed wayland-protocols (1.36-1)
[2024-07-16T15:32:56+1000] [ALPM] installed wayland-protocols (1.36-1)
[2024-08-27T10:23:54+1000] [ALPM] removed wayland-protocols (1.36-1)
[2024-09-13T17:43:48+1000] [ALPM] upgraded plasma-wayland-protocols (1.13.0-1 -> 1.14.0-1)
[2024-12-11T19:02:00+1100] [ALPM] upgraded plasma-wayland-protocols (1.14.0-1 -> 1.15.0-1)
[2025-01-10T22:07:37+1100] [ALPM] upgraded plasma-wayland-protocols (1.15.0-1 -> 1.16.0-1)

I think the installing & removal several times were either me initially thinking it was required & later removing it, or it could have been drawn in as a build dependency of an AUR package & later removed when I cleaned up my orphans.

3 Likes

I tend to be more “radical”.

I’d take note of what packages are going to be removed
(it’s all here in the previous post anyway)
and then just go ahead and remove

If there is fallout (things not working anymore)
which is unlikely
… simply reinstall whatever is reported missing

You have the list - you can always just reinstall whatever from it, should it turn out that you actually do need it …

Much simpler approach, I’ll wager …

4 Likes

Oh it’s great that you can specify multiple packages like that. I’ll also remember to always use -Rns :+1:t2:

Thank you for the tip! I’ll remove wayland-protocols then…

Not a bad plan… it will take more time this way but I guess it also saves time in the end… :thinking:

2 Likes