The problem is that the all those apps installed as dependencies will get marked as unused and removed with the next --autoremove (which you should probably do regularly to clean up old kernels.
The real fix would be to mark all those apps as explicitly installed, but I don’t use apt-based distros regularly so idk how.
Not every package, but some of them. The remaining are dependencies. Essentially, one can (iteratively) copy paste the output list of apt autoremove into apt install until apt autoremove doesn’t want to uninstall packages one intends to keep.
The problem is that the all those apps installed as dependencies will get marked as unused and removed with the next
--autoremove
(which you should probably do regularly to clean up old kernels.The real fix would be to mark all those apps as explicitly installed, but I don’t use apt-based distros regularly so idk how.
You can then either ‘install’ them with
apt
, which does essentially only mark installed packags as manually installed or use e.g. synaptic for that.Yeah but you’d need to do it for *everything* that’s affected, which is a lot.
Not every package, but some of them. The remaining are dependencies. Essentially, one can (iteratively) copy paste the output list of
apt autoremove
intoapt install
untilapt autoremove
doesn’t want to uninstall packages one intends to keep.