this post was submitted on 07 Mar 2024
1413 points (92.9% liked)
linuxmemes
21304 readers
1249 users here now
Hint: :q!
Sister communities:
- LemmyMemes: Memes
- LemmyShitpost: Anything and everything goes.
- RISA: Star Trek memes and shitposts
Community rules (click to expand)
1. Follow the site-wide rules
- Instance-wide TOS: https://legal.lemmy.world/tos/
- Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
2. Be civil
- Understand the difference between a joke and an insult.
- Do not harrass or attack members of the community for any reason.
- Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
- Bigotry will not be tolerated.
- These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
3. Post Linux-related content
- Including Unix and BSD.
- Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of
sudo
in Windows. - No porn. Even if you watch it on a Linux machine.
4. No recent reposts
- Everybody uses Arch btw, can't quit Vim, and wants to interject for a moment. You can stop now.
Please report posts and comments that break these rules!
Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't fork-bomb your computer.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I think both Windows and Linux are scary when you want to exactly fits you need.
In using linux I started to know what is a DE, kernel, kernel argument, GRUB, systemd, selinux, etc. and I am the person that want to learn NOTHING about my OS, they just unfortunately pops up during troubleshooting.
So is Windows, device manager, ipconfig, registry table, chocolatey, cmd vs powershell, WSL, and many more. But I would say, if you don't care about bloat and ads, and are willing to make stupid compromises, like copy a email to a notepad, so you can see it while drafting a new email. Windows might breaks slightly less often than linux depending on your hardware. But that doesn't mean Windows don't break, in fact Windows broke just in the first linux challenge video.
For Linus's experiment, I don't really think it is a fair comparison between Linux and Windows. No one is going to learn a OS in a month, and expect to have the ability to not harm themselves, not on Windows not on Linux not on macOS.
But it does serve as a good simulation of a busy Windows enthusiast moving to linux. Personally, I don't think this should be the only criteria to judge the linux eco system, but it is a important criteria, and linux has many things they can improve in this regard (and they are indeed improving).
However, popOS installer for steam breaking DE is a legitimately rare event, and it happens to the most popular tech youtuber is even more rare...
Shit happens 🤷. It happens to milti-billion dollar companies as well, like MS. In fact, it happens a lot more frequently (and it's more destructive) than it does with Linux or any other POSIX based OS. I have yet to see an update deleting all my personal files in
/home
.Troubleshooting problems is about the same IMO, if you're familiar with the OS and how things work (in general). You just use the terminal more in Linux, since you'd have to open the file manager as root in order to troubleshoot, and that brings a whole other set of issues, like file permissions if you happen to copy a file to, let's say
/home/<username>/Desktop
temporarily, for troubleshooting. Ah, but now the file has root permissions, not the permissions your user has, and root is the owner of the file, so basically, your user only has read permissions, that's it. You can't move or delete the file. In order to move it or delete it, with a GUI, you'd have to open up the file manager as root again and do it from there. And that is why using the terminal to accomplish these things is so much simpler. You just addsudo
in front and that's it, the command will do whatever root could do. And then you realize that just copying and renaming the file tofilename.bak
in the same location where the file originally resides is so much quicker and better. You can delete or move the file just by addingsudo
in front of the command, no file manager needed.So yeah, troubleshooting is more or less the same IMO.