Apt suddenly said the packages libdaxctl1 libndctl6 libpmem1
are no longer needed and should be autoremoved.
these packages all sound really important. so I set them to manually installed.
can someone help me find what packages depended on them to no longer need them or what they have been replaced with? I am on kubuntu 24.04.
Why do you think they're important?
A quick look for one in what is provided on a new full install (https://cdimage.ubuntu.com/kubuntu/releases/noble/release/kubuntu-24.04-desktop-amd64.manifest) and I don't see the packages, so they've been added post-install by a user of your machine with
sudo
privileges (as a consequence of other installs most likely)We're limited to details you provide us, but if I was using a Kubuntu 24.04 LTS system here, I'd not be concerned with them being removed; not with my usage of my computer, but my usage & hardware likely differs to yours.
To work out what you installed that requires them, you could try exploring
apt rdepends libdaxctl1
to explore thelibdaxctl1
package, or if you want to see effects usesudo apt --dry-run remove libdaxctl1
(the output of therdepends
would I'd hope trigger memories for me that will tell me why its installed, where the second--dry-run
command should be even more obvious as to why it was installed, or that its not required).You can trust the APT package management system. It will never remove dependencies if these are still required by other software on the system.