Why is mint even recommended to new users at this point. Cinnamon is nowhere near Gnome or Plasma and both of these provide much simpler and more unified experience in things like settings
- 0 Posts
- 2 Comments
Joined 2 years ago
Cake day: August 11th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
milk@discuss.tchncs.deto
Selfhosted@lemmy.world•A sovereign Microsoft 365 alternative: Nextcloud and IONOS join forces - NextcloudEnglish
1·4 months agodeleted by creator

To add to the other comment, package managers keep a local copy of the list of available packages and the version. When you do a
pacman -S xxxthe package manager looks up xxx in the cache and downloads the package from whatever mirror youre using as well as any dependencies, looking them up in the same way from your cache. This works for a while even if theres a new update available because mirrors usually keep a few previous versions.Once you do a
pacman -Syyou update your cache to the latest one. If you then update xxx, it will update xxx and pull in any dependency updates required, but any other packages that depended on the same packages dont get updated, leaving you in a partially upgraded state.