this post was submitted on 22 Oct 2023
-9 points (41.2% liked)
Linux
48003 readers
974 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
If apt is too complex for you, I don't know what to tell you...
I feel like you're confusing "hard to use" with "complex".
Apt is extremely complex under the hood, which shows when you try to build a package for it, or install a package with many dependencies then remove it again, leaving traces behind, or when you break your system by using different front-ends (apt, apt-get, aptitude, synaptic) which are all included in the default installation, but handle dependencies differently.
Most modern package managers have that level of complexity tho... That dependency tracking can take a lot of computation.
Maybe a notable exception would be Slackware package manager, but you won't find what you'd expect from modern package manager (e.g. dependency resolving, autoremove package).
I find building packages with Gentoo to be much simpler than with Debian. Probably this is due to the fact that Gentoo users would regularly build their packages, unlike Debian.
I also learned Debian automatically generate dependency list by scanning the binaries of each package to see what dynamic libs it links. Bet that does add to the complexity by much.