• 0 Posts
  • 124 Comments
Joined 2 years ago
cake
Cake day: June 7th, 2023

help-circle


















  • If you have a driver’s license, do you know a car works besides the basic maintenance that is checking your oil and keeping the tires inflated? Some people don’t even do that last one, while it’s a thing you should check regularly.

    I think it’s a good thing the general public is able to use a computer without knowing the inner workings, but it also shouldn’t be obscured from them if they want to know/learn.


  • Yes, true.

    The whole “OS update when I want an app update” is because of how dependencies work on Linux. A library is installed once and referenced by any app that wants to use it. This way, an update in the library benefits all apps using it, as bugs het fixed. Also less storage is used when the one library is used by many apps.

    Windows programs keep their own versions of a library and hard link to that one. That makes the app more flexible. You can copy the app and it’s dependencies around and it will keep working. In this scenario multiple copies/versions of the same library can exist in the system, which takes more space.

    Of course there is some nuance. Both operating systems can have/use shared or hard linked libraries, but this is the general gist of it.