▲ | alerighi 5 days ago | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Honestly, the fact that to install software you have to go on a site, download an installer, and run it, is one of the reasons why I don't like Windows. Not only that thing is time consuming and cannot be easily automated, but it's error prone, you are likely to find in the first Google results not the official website of the software but some other site like Softonic that with the software also installs bloatware/malware/toolbars/etc. Of course an expert user can distinguish the official site from a scam, but usually the average computer user can't. What I like about Linux is just that you type in a terminal (or you use one of the many GUI that exist) `sudo apt install <software name>` and a version of that software, along with its dependencies, it is installed. And not only installed, but packaged, if needed patched, and tested to work along with other software in the distribution. When I install Windows I spend at least 1 hours going to every website of software that I need, download the installer, run the installer, click next, next, next, and repeat. With Linux I can just type in a single command every software that I need, let it run and install it, while I do other things. And when you need to uninstall a software? On Windows you need the uninstaller, that if it was not created correctly, or created at all, will leave a lot of stuff on the system, files, registry keys, broken links, cache files, etc that you need to remove either manually or with some "cleaner" programs that do more harm than good, for that reason an installation of Windows needs to be formatted every X years cause of the accumulated crap. From a developer point of view, and I've done many times, writing an installer for Windows, even using open source frameworks like NSIS, is a manual operation that is time consuming, can induce in errors, you need to learn a specific scripting language, etc, while making a package for Ubuntu/Debian (for example) is a simple operation, as simple as put the files of your software in a directory, put in a metadata file, and launch a command to produce the package. Most build systems (automake, cmake) already can create deb packages automatically with commonly used plugins. | |||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | the__alchemist 5 days ago | parent | next [-] | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Anecdote: Most of the software I use isn't available in `apt`, or the version there is dated. I prefer to get software from its official source, not a third party I don't know will have the current or any versions. And, there is more to software than free/OSS. | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | pidgeon_lover 5 days ago | parent | prev [-] | ||||||||||||||||||||||||||||||||||||||||||||||||||||
The Windows way, the software will always be available and will work "forever" from that installer. Archive to disk, reinstall in 30 years. Everything installs to a few easy-to-find paths, and the community support is amazing thanks to the largest userbase of all operating systems. Windows has its telemetry and update problems, but if you're not violating Microsoft's EULAs and hacking your own PC (with easy-to-use GUIs), you're not using it right. The Linux way, the maintainers will archive your DEB or one of its dependencies and it will disappear - your business-critical machine now no longer works. You will not be able to reinstall it when travelling without an internet connection. The developer of another program might be Russian and now for political reasons his server is blocked/censored, so you can no longer install his software. Another developer changes the EULA and implements AI and mandatory telemetry and backdoors to the Five Eyes - your Linux system auto-updates and now you're pwned. You install a rolling release Linux and it updates endlessly until your CPU performance is compromised (see how Win10/11/iOS updates); you try to roll back and your software and dependencies all break (unfixable because APT installed them God-knows-where all over your system); when fixed, you find that because of the rolling release, you can't find the specific "last-good-version" of that one tool. |