I use Fedora its a good reliable in between distro if you like fast updates but want tested updates.
Linux
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
vlc was already like this on arch for a long time, literally took just a moment to look at the optional dependencies and grab the latest "actually give me everything lmao" package group
Yeah I can't believe he's been using Arch for 5 years and didn't even bat an eye over the massive pacman output
Opensuse tumbleweed or if you want to keep the arch featureset but with the rollback-ability of BTRFS check out CachyOS
I had the same problem, i did start with arch ,but man i remember doing a update after 4 days(4Gb of new updates) and my system faild to boot. From that moment i went debian route.
Honestly NIXos. Run it impermanent or traditional OS style. If your coming from Arch and want less breakage and more declarative configuration. Immutable or not. Pick almost any DE and all you maintain is your nix config. Nix config is your master file its not huge and the machine runs from it as you tell it. The machine does the rest. No system drift, no cruft. Just works and if you break it. Select your previous generation at boot and your back exactly as you were before.
Downside: it requires knowing a new coding language, Nix, to maintain your laptop.
If you don’t understand it, it’s going to be painful to fix anything that doesn’t work.
I also noticed vlc has broken (installed last week apparently)
Using the pacman syntax:
pacman -Q -i -d vlc
showed a conflict with the vlc-plugin (which appeared to be uninstalled already) and no vlc-plugin-#### installed.
The dependencies were fully explained in the list, including the vlc-plugins-all dependency. I'm lazy so that's the dependency I installed on my EndeavourOS.
I'm running EndeavourOS and waiting for something like this to happen.
I left Arch for the same reason but in relation to my system's graphics. If you are an end user, an operating system should work for you, not you for the system. I installed Tumbleweed 5 years ago and its snapper tool gives great peace of mind when using a rolling system. My advice, try Tumbleweed, its package manager (zypper) already supports parallel downloads and although it is slower than pacman, it is more complete in package and repository management (an example is what has happened in Arch recently with firmware packages and that requires manual user intervention because pacman cannot make those changes automatically).
I've been using Ubuntu/Kubuntu since 2004 and I've always been happy and had very little problems.
It's a good, no hassle distro that works and is fairly up to date, especially if you use the non-LTS ones. I prefer staying with LTS though. At least my OS is stable and I don't have to spend my free time troubleshooting anything.
Debians testing branch might be a good shout. Packages stay pretty up-to-date and usually stuff doesn't break. Worst case you can pull a package from unstable when needed.
Cachy OS has been treating me very well. Perfect all around. Very helpful people and very nice. I am not going anywhere
I've been enjoying Guix for the last 8 days. You declare your OS and home config in a file and you can check them into source control. It was originally a fork of NixOS, but has diverged a lot.
The CLIs and APIs are pretty nice. They have a concept of "channels", which are git repos you can download software from. The default official channel only hosts FOSS software, but you can trivially add non-FOSS channels and they work just as well as the first-party channels.
Each channel update and package install, removal, update get put on a log, which you can trivially jump between. guix package --switch-genereation=28
and boom you're at that generation (it's like a git commit). The software and config changes get saved in the generation so the jump is clean and atomic. I actually bisected my OS yesterday to track a bug! That was cool. You can also create and share isolated, reproducible environments.
Guix works with Flatpak and distrobox as well, in case some software isn't available in existing channels. I got HiDPI, Zoom, Logseq, Syncthing, and Tailscale working.
The biggest drawback for me so far is that it doesn't use systemd. Not sure if it's a dealbreaker for me yet. Systemd does way more than just manage system services, so GNU Shepherd (which Guix uses) isn't a real replacement.