| >So the modern version of that could just be dropping a folder into a special location there kernel knows to search for drivers, and include a control panel app. Do you mean the kernel is going to load random files from a user writable location? That sounds like a security nightmare TBH. Also, then you can't safely lazy-load kernel drivers because you never know what the user has done to the folder. Or if the OS has to lock access to the folder then the user has no feedback as to why they can't "uninstall" stuff by simply deleting folders, etc, etc. There are dozens of problems. Turns out, people have already thought over those problems and proposed solutions :) >otherwise you get DLL hell and require something like a package manager and all its associated limitations for basically no benefit at all. You claiming there is no benefit to being able to install/remove/update third party shared libraries doesn't solve anything. >just include a copy in the app folder, secure in the knowledge that it will never cause a conflict or break your application due to an update or some other application replacing it. That assumes you have the rights to distribute the library and that the library is small enough. >Desktops, a.k.a "Personal Computers", don't really have much of a multi-user use case. Maybe not for you. For millions of other users, its a very important use case. >None of this is anywhere near as complicated as the people who promote it like to pretend it is. Well its certainly not complicated if you re-define the problems as non-problems. |
On a server, sure, but on a PC? It's their computer, they should be able to do that. You're confused because permission systems on Desktop OSs are currently based around user accounts, which is silly. If they were based around applications instead it wouldn't be a problem.
> That assumes you have the rights to distribute the library and that the library is small enough.
If you don't, then why is your application using it? As for size, multi-GB applications are pretty common. It's not libraries that bring that size up, it's assets. Some applications have icons larger than most libraries. Otherwise, if your application isn't valuable enough to be worth the size of that library, then maybe you shouldn't use such a huge dependency in the first place.
> Maybe not for you. For millions of other users, its a very important use case.
Apparently not one you're willing to elaborate on. Besides, as mentioned, I believe there are better and simpler solutions to the problem than package management. In fact, how the hell does package management even help here?