this post was submitted on 06 Aug 2025
132 points (90.7% liked)

Linux

12528 readers
72 users here now

Welcome to c/linux!

Welcome to our thriving Linux community! Whether you're a seasoned Linux enthusiast or just starting your journey, we're excited to have you here. Explore, learn, and collaborate with like-minded individuals who share a passion for open-source software and the endless possibilities it offers. Together, let's dive into the world of Linux and embrace the power of freedom, customization, and innovation. Enjoy your stay and feel free to join the vibrant discussions that await you!

Rules:

  1. Stay on topic: Posts and discussions should be related to Linux, open source software, and related technologies.

  2. Be respectful: Treat fellow community members with respect and courtesy.

  3. Quality over quantity: Share informative and thought-provoking content.

  4. No spam or self-promotion: Avoid excessive self-promotion or spamming.

  5. No NSFW adult content

  6. Follow general lemmy guidelines.

founded 2 years ago
MODERATORS
 

We love to praise linux constantly and tell everyone to change to it (they should) but what are your biggest annoyances ?

Mine would be, installing software (made even more complex by flatpaks being added, among the 5 other ways there already were to install software) and probably wifi power management issues.

top 50 comments
sorted by: hot top controversial new old
[–] BartyDeCanter@lemmy.sdf.org 2 points 3 days ago* (last edited 3 days ago)

Oh! Came up with a new one, though it’s more of a unixism than a Linux specific thing.

I really wish that the core utils and other cli tools had a standard structured output option, like yaml, json, or toml so that it would be easier to parse rather than all of the random regular expressions needed when piping output around.

Edit: And it would be great if we also picked that same format for config files instead of all the bespoke stuff in /etc.

[–] fruitycoder@sh.itjust.works 7 points 6 days ago

We have awesome distributed systems like Kubernetes (rke2, or k3s as easy distro examples) BUT no desktop usage.

I want a distributed desktop dang it. My phone, my smart tv (media PC), my gaming computer, my SOs gaming computer, my router, my home lab, etc, etc should theoretically all be one computer with multiple users, and multiple interfaces.

[–] Ricaz@lemmy.dbzer0.com 6 points 6 days ago

I have spent way too much time fiddling with audio, both in PulseAudio and Pirewire. Granted, this sucks even more on Windows.

Weird how my absolute favorite thing about Linux is how easy and simple installing software is, at least on Arch. Never touched a flatpack or snap or whatever else they're called for my 13+ years if use.

[–] pathief@lemmy.world 6 points 6 days ago* (last edited 6 days ago) (1 children)

My one major complaint is audio in general. I've had so many audio issues. If you need an eq or noise canceling it's a pain to get it working. There's always a bug somewhere, always a random distortion.

Voicemeeter is the only thing I miss about Windows. I really do.

[–] HereIAm@lemmy.world 2 points 6 days ago

I have an audio issue where it starts chopping if (I think, but could be CPU as well) the GPU struggles (think shader compilation). I've tried a couple of things to fix it, but haven't been successful yet. So far it's been my only major complaint.

[–] Horsey@lemmy.world 7 points 6 days ago (1 children)

Linux needs a shared API framework for all desktop apps for them to succeed. It’s ridiculous that gnome apps and other apps look different and have different theming conventions. I’d love to get into theming and application building, but I’m so afraid that I’ll waste my time on something that won’t apply to everything. macOS solved application cohesion perfectly.

[–] squaresinger@lemmy.world 2 points 6 days ago (1 children)

There's now game developers dropping native support for proton, because proton has a more uniform, stable and predictable API.

So while Linux in many ways becomes the better way to play Windows games, it's also better to play Windows games on Linux than Linux games on Linux.

I can see a future where more and more of Linux just becomes a wrapper around Proton.

[–] Horsey@lemmy.world 1 points 6 days ago* (last edited 6 days ago) (1 children)

Proton for everything would be pretty heavy though. I’m referring to user facing APIs that could be made consistent.

[–] squaresinger@lemmy.world 1 points 6 days ago* (last edited 6 days ago)

Proton is not that heavy. In many cases it's less heavy than Windows.

And sadly I cannot see a future where all of Linux rallies under the same APIs without giving in to the urge to forge.

A lot of Linux software has really stupid names, and has since before Torvalds even started. GNU is a garbagepuke name for an operating system, and they've just kept doing that. Recursive actronyms like NANO and LAME, Gpackages and Krograms, and then so many bash built-ins and common shell programs have names like lsphw.

I once had this conversation:

"This distro comes with a kernel that's so new it breaks compatibility with [some piece of hardware]"

"use mainline"

"Yeah, okay, I have no idea how to do that in this distro."

Turns out "Mainline" is a kernel management tool. I thought the guy was telling me to use a mainline Linux kernel instead of a customized one, because A. the name of the app is poorly chosen, and B. he had the communication skills of a homeschooled zoomer.

[–] fruitycoder@sh.itjust.works 4 points 6 days ago

Security should be the default, but instead a lot of security features are optional things we have dig through docs to set.

TPM support is getting more common, using it should be too. Detected during install? Set it up as part of LUKs during install, and enable a password, and provide option for TANG (both usage or deployment).

fscrypt should be enabled by default and keys set by logical differences of file types. (Yes on top of LUKS). Honestly setup following selinux profiles and per user is a reasonable default. Hardware wrapped keys should be default.

Encrypted memory an option for this CPU? Enable it. Features for multiple key memory encryption? Enable it. Encrypt on a per VM and per container level by default.

Each service should be containerized, connections made explicit (ideally with l7 rules, l4 at least). If a user want to tinker with have a dev mode that opens that service up, with expectation that it's temporary (track and warn user when active). Each service should run as it's own non root user.

Each application should containerized. Wayland should be default to minimize shared data. Access by apps should be explicit and user approved and user configurable. Application should never run as root and escalations should be temporary and explicitly approved by the user. Application to the network should be explicit per connection and l7 aware.

MACSec WPA3 pki should be available during install. Wireless WPA3 PKI option should be default on wireless setup. IPSec/Wire guard VPN/Tor should be available option by default on setup. Vlan tagging should be available options on setup.

FIPS or equivalents should be enforced by default. Old encryption methods/cipher/etc should require explicit approval by the user.

Selinux should enabled by default and selinux tagging should be exposed in user applications, so users can choose the security levels, privacy tags (medical or tax docs or etc), or pseudonym access they want.

Sudo should be setup by default for least privileged roles and not god mode access. The combination of those into a single user could look indistinguishable but it should be set and ready for adding users that are limited in scope.

Encrypted backups following the 321 rule (at least 3 backups, 2 different types of media, 1 off site) should be the default and configurable on install. Schedule and triggered backups should be frequently (ideally constantly backup, with snapshot ting being periodic).

Multiple factor logins should be the default. Support for smart card, key fob, OTP, biometric, plus password built-in and encouraged on install.

Number of known CVEs for hardware, packages, and configurations should be tracked and obviously available for privileged users. Hardware missing for full best practices (like TPM 2.0, memory encryption support, etc). Software source should be kept easily accessable to users for remove and modifications. Software should adhere to SLSA build practices, exception explicitly choosen the user.

Systems should be immutable with expectations being explicit to the user and triggering snapshot ting.

DNSSEC and DNSoTLS/DNSoHTTPS should be default and configurable on install.

NTS should be default for NTP configuration. Hardware time sources should be configurable on install.

Applications should be privacy preserving by default (not defaulting to Google for example).

These are just off the top of my head stuff, stuff I had to annoyingly learn and set up myself to harden systems instead of it just being part of sane defauls. CIS bench mark has more controls that should be set.

[–] wabafee@lemmy.world 4 points 6 days ago* (last edited 6 days ago)

Bluetooth support can be a mix bag one point my keyboard constantly disconnects for every few minutes likely due to the hardware aggressively try to save power.

Suspending can be 50/50 especially on old hardware. Either you get it back up and running or you will have to forcibly shut it down since it refuses to accept any commands.

[–] cepelinas@sopuli.xyz 3 points 6 days ago

Bluetooth support that only sometimes works with my soundcore q30's.

[–] SomethingBurger@jlai.lu 3 points 6 days ago

Multithreaded performance is awful. The system becomes completely unresponsive if a single process uses a lot of CPU despite another core being available. Copying a file in the background slows everything down to a crawl.

That and laptops. Will hibernation work this time? Will it wake up or do I need to forcefully restart it? Will my second monitor work after hot-plugging it? Will the battery last 2 or 6 hours this time?

[–] orenj@lemmy.sdf.org 4 points 6 days ago

Uh, um... I do not like how I have to install microsoft fonts seperately to have times new roman on my resume?

[–] Doorknob@lemmy.world 1 points 5 days ago
[–] ColdWater@lemmy.ca 2 points 6 days ago

Electron apps (more like erection apps), I rather burn my computer quit civilization and live on a deserted island than using any apps that has electron as a dependency.

[–] Bwaz@lemmy.world 1 points 6 days ago

Excessive jargon, tends to push away people who didn't take classes in computer engineering or grow up using unix. Mounting of drives, incomprehensible error or status messages or even "sudo".

[–] CileTheSane@lemmy.ca 1 points 6 days ago (1 children)

Managing multiple harddrives- I'm used to running multiple harddrives to manage disk space, but everything in Linux installs into /home without giving me an option to install somewhere else. I can apparently set a hard drive to be an extension of a Linux folder, but then how do I know what physical drive a file is on?

Making shortcuts- was very easy to make a shortcut in Windows. My Linux distro (Mint) has a specific keyboard command for it, but nothing in the GUI/menus.

[–] bridgeenjoyer@sh.itjust.works 1 points 6 days ago

oh i was annoyed with this too! WHY can't i change where software installs??? I use a smaller boot drive and have extra large hard drives. it's also very confusing how you mount a drive inside your media folder so then it looks like the data is actually under your home folder on your boot drive...but it's not.

[–] piefood@feddit.online 85 points 1 week ago (13 children)
  • audio - Most of the time it works, but there have been plenty of times that after an install, I have to go in and make a handfull of changes to get it working.

  • "you are using it wrong" developers - Lookin at you, Gnome, Mozilla and Pottering. Yes, you are donating your time, and I appreciate that, but don't be dismissive of people if they bring up valid issues. If you just don't want to fix problems, that's fine, but just be honest about that, instead of blaming the user.

  • sleep/hibernate - I've never depended on sleep or hibernate to work properly. I gave up on that years ago, and whenever I come back and try it again, I remember why I gave it up.

  • documentation - As a seasoned linux person, I love man-pages, but they are soooooo obtuse and hard to parse for newbies. I also hate it when the website has mountains of documentation, but they couldn't be bothered to put that into the man-pages.

  • video/wifi drivers - Yes, I know that this is mostly a problem because of the manufacturers. That doesn't mean it isn't a problem.

  • unsympathetic users - Just because it works for you, doesn't mean it works for other people. I can't wait for year-of-the-linux-desktop, but it just isn't there yet. As soon as you have to tell a non-tech to open a terminal, the vast majority of them are out. You and I know that 'editing /etc/somedir/somefile and running /usr/sbin/somecommand' is easy, but sooooo many of them don't know what that means, nor will they care. I hear that windows is pretty bad nowadays, but people will often stick with the devil they know.

[–] littleomid@feddit.org 1 points 6 days ago

Idk man it all works for me.

[–] sanderium@lemmy.zip 26 points 1 week ago (2 children)

Last point is the most important in my opinion

load more comments (2 replies)
load more comments (11 replies)
[–] iAmTheTot@sh.itjust.works 56 points 1 week ago (2 children)

The community's general overestimation of the average person's tech capabilities.

Not necessarily fair to pin this on Linux per se, but there's hardware that doesn't work well or at all still and alternative solutions still aren't there. So this would be mostly on companies making software for Windows but not for Linux, but it's still part of the Linux experience that I do not enjoy.

I have to troubleshoot things on Linux more than I did on Windows.

load more comments (2 replies)
[–] theskyisfalling@lemmy.dbzer0.com 40 points 1 week ago (5 children)

Terrible documentation that is written assuming far too much prior knowledge.

I'm pretty technologically literate but just don't have a lot of experience with Linux, in the last year of trying properly to switch over the most frustrating part is trying to fix problems or follow peoples "guides" to various things. There is plenty of information out there for sure but when I have to keep looking up a string of things to try and get to my desired end result then the original documentation I'm trying to follow is not adequate.

I can only imagine what it might be like for users who are less inclined to learn about this stuff and just want to use it / solve a problem.

I think that a lot can be said for well written documentation that describes necessary processes to get a desired result in a way that everyone can follow regardless of their prior experience or knowledge.

load more comments (5 replies)
load more comments
view more: next ›