I've tried and researched a lot of Linux and BSD distributions in search of two goals:
One to recommend to newcomers to Unix.
One I'd want to use myself.
I'm a software idealist - I don't want to use an operating system that isn't the best designed one. Where practicality and design quality conflict, I seek a balance, because I realize practicality is the point of it all, and I'm not an OS dev, but I want to support and encourage good architecture and also I think using it helps me grow wiser about software.
Here are my notes on the ones I've tried or researched and why I won't or will use them. When I say things like "broken install process", I mean that when I tried it, I ran into things that were clearly releng mistakes, such as the installer telling me to run a command that doesn't exist. I consider egregious instances of this pretty much disqualifiers; I don't want to use a distribution that's had problems like that, even if they've fixed it since.
Anything Debian-based (incl. Ubuntu, Mint)¶
Reputation: stable, user-friendly
Init system: systemd
Tried: Ubuntu years ago, Mint in 2020 summer
Development headers are in separate packages from corresponding libraries, a huge pain for anyone who does development in C-family languages. (I don't even do development in C-family languages, but the occasional need to compile a program from source is enough to make me abhor this.)
Packages are often years out of date.
Devuan¶
Reputation: fork of Debian that switches out systemd for sysvinit. Everything else from Debian applies.
Tried: 2020 summer
Broken install process: live environment's README referred me to nonexistent commands. I got it working anyway.
Apparently supports OpenRC as an init system option now, but not default?
Fedora¶
Reputation: cutting-edge
Init system: systemd
Tried: 2020 summer (only on server)
Separate -devel packages, like Debian.
Good package manager. Colored output and ability to get more detailed info on uninstalled packages than other package managers allow.
CentOS is derived from Fedora (through Red Hat), so it's much the same except its packages are outdated as hell.
Arch¶
Reputation: DIY for advanced users
Init system: systemd
Void¶
Reputation: Linux/BSD hybrid
Init system: runit
Tried: 2020 summer, multiple times.
Uses ZFS in user space to get around the license issues.
Rolling release.
LibreSSL instead of OpenSSL.
I haven't been able to get Sway working.
Package manager hell. Just running normal install and uninstall commands produced a broken system that I could not fix.
Trident exists as a desktop installer.
Gentoo¶
Reputation: DIY for advanced users, nightmarish install process
Tried: years ago (mentor helped with install); no first-hand recent experience.
Rolling release.
No binary packages.
Slackware¶
Init system: sysvinit
- No binary packages.
Alpine¶
Tried: 2020-09-17
Reputation: secure, lightweight
Init system: OpenRC
Uses musl libc, which is argued to be better than glibc but means binaries compiled for glibc won't work.
Broken install process: guided installer wrote invalid syntax to wpa_supplicant.conf and left me to figure it out. Wiki written in very poor English.
Artix¶
Tried: 2020 summer - present.
Reputation: Arch without systemd.
Init system: choice of OpenRC, runit or s6. I use OpenRC.
Due to the three init system options, packages with service files are separated into variants like
thing-openrc
,thing-runit
,thing-s6
and justthing
which is only the program itself without a service file. This makes it a bit cumbersome to figure out exactly what you need to install, but the service versions pull in the main package as a dependency, so it's not too bad - and in the end I think it's more elegant to have the service files separate from the program itself.There are desktop and manual installers. The guide for the manual installation is really unclear about partitioning, but once you know what to do, it works. At least it isn't years out of date.
Package manager supports colored output and protected packages but they need to be configured. (Same package manager as Arch so I assume this applies there too, but I didn't put it there because I don't know for sure.)
FreeBSD¶
Tried: unknown year - 2020 summer.
Reputation: the go-to BSD.
Init system: BSD init
SIGINFO!
Native ZFS!
Unlike Linux, FreeBSD separates stuff that comes with the base system from user-installed stuff. User-installed stuff goes in
/usr/local
. It seems to be done in the name of safety, but I mildly dislike it because it overemphasizes the arbitrary selection of what's shipped with the distribution.More fringe than Linux; lots of things support Linux but not FreeBSD or take manual effort to make work. Especially problematic as a dev; this was one of the main reasons I started looking into Linux.
Sound system is OSS instead of ALSA. I've heard positive opinion of OSS, but it unfortunately makes it very difficult to record speaker output.
Init systems¶
I keep referencing these and as you can see, systemd is a disqualifier at least for my own use. I explain this now.
systemd¶
I don't have much personal experience with systemd. My negativity from it pretty much comes from hearsay, but well-sourced hearsay. Two in particular:
Randy Westlund's critique. This is someone I know and consider pretty reliable, and he's balanced too. He's not an anti-systemd zealot.
The Suckless folks have a much harsher condemnation. They wouldn't normally be very reliable on it, but they link the systemd patch notes on every criticism they make for proof. Read some of the list. It's absolutely horrifying.
BSD init¶
Works well enough, but service files are extremely cumbersome.
OpenRC¶
Colored output. Service files are concise.
sysvinit¶
Legacy standard. I don't know much about it, but the prevailing opinion seems negative.
A few other things I explain about the connection between my notes and my judgements:
I do not have a stake in rolling release vs point release.
I want binary packages so things don't take forever to install.