this post was submitted on 27 Jun 2025
246 points (97.3% liked)

Linux

55706 readers
1079 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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 

I'm just so sick of Microsoft and Google. But there's two things holding me back:

  1. I wanna play Steam games on my PC

  2. I am just an amateur hobbyist, not a tech wizard

Is there any hope for me?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 1 day ago (2 children)
  1. As others have said, it's possible to play most steam games, but not all. You have to decide if you like those games more than you dislike MS and Goo. I find there's so many great games out there that I'll never get to all of them, so I'm ok with dropping some bangers that usually want too much access to my system.
  2. Here's a useful resource if you need to understand slightly technical linux foundations https://linuxjourney.com/ It might not be necessary but it does help to have a foundational understanding, and honestly, the command line is awesome, powerful, and one of my favorite things about linux. Beyond having a basic understanding (and maybe having one of the books the site recommends on hand), before going to an LLM as others have suggested, have official sources of various components bookmarked and go there first. There's so much BS out there now, I actually like the fact that I can read technical documentation, test it out, and know if it's true.

one other tip: I'd recommend some kind of personal knowledge management (PKM) system to take notes. Linux gives you a lot of freedom-- that's what's great about it-- it can be complex and have a learning curve at times. It's absolutely worth it though. It's a totally different paradigm than windows. After a while you can really start crafting the whole system to your needs as an individual. I'm 3 years in and was using my first setup that whole time, i didn't realize how customized I had made it until trying to set it up exactly on a new workstation. Now I'm writing a script so to automate my setup (os settings, program installs, configs) by running a single command. Then I can really start experimenting.

Everybody's different and with a little basic knowledge, everyone's setup can be tweaked to their individual needs a little better than other "user friendly/polished" operating systems. I hope you find as much joy and freedom in it as I do.

[–] [email protected] 2 points 22 hours ago (1 children)

you say PKM as if it's a specific thing beyond a notepad and an insane dude's scrawlings. I am intrigued. what does your PKM look like?

[–] [email protected] 1 points 2 hours ago* (last edited 2 hours ago)

That's a big question, but I'll try my best to answer without getting too deep in the weeds.

I'll probably sound like a fanatic, but I use my PKMS for notes, logs, journaling, project and task management, snippets, and documentation. They all have their own structure and flow. It's a Gall's Law kind of situation where I started simple and it worked, so it was extended and slowly evolved to reach it's current complexity.

The beauty of PKMS over a notepad is the loose set of basic features (Wiki-links, tags, templates, etc) that be used in a personalized way to quickly capture, organize, and retrieve info that works best for you and no one else.

As a simple, but detailed example, in the context of learning linux, i might make a "linux" note and dump info there. I put everything in my own words unless I use md quotes (> quoted text) and I add useful links that I also bookmarked in my browser. When the "linux" page gets bloated, I migrate clusters of info into new notes, wiki-linked in the "linux" note. For example a "distros," note which might have some high level comparisons. I favor making new notes over md headers so it's easier to find and open notes by name (a "quick switcher" hotkey as it's called in obsidian). When I settle on a distro I might make a note for it to contain wiki-links of default components EG "apt (package manager)," "gnome (desktop environment)," "x (windowing system)" and dump relevant notes there. If I try wayland, I'd make a "wayland" note but also a "windowing system" note that both wiki-links "x (window system)" and "wayland," and is wiki-linked in each of those notes.

It could get very meticulous, and some folks setup is too much for me, and I'm sure mine is too much for others, but start simple, experiment, find what works, and add to it. In the beginning I had dedicated time just to developing my PKMS. The important thing is quickly recording and retrieving info.

Sometime i do have crazy scrawlings where i just need a notepad to dump info during a deep dive. That would be loosely zettelkasten style with a time-stamped name, sometime with a few extra works for context/search. Sections could be extracted into their own note later. The note itself could be linked to more organized, related notes.

As a more complex, but shorter example, to show how similar tools can be used in a different manner: I'll make a note for a command line program, for example, cat. I have a CLI template with a Useful Flags (options) section. Kind of like a personalized tldr. I'll also have specific notes for complex snippets (AKA one-liners. Real note example: "list-and-sum-all-audio-file-durations") and if it uses cat, i'll tag it #cmd/cat. The CLI template also has a Snippets section that uses dataview to automatically list, in this case, all notes with the #cmd/cat tag. I also have a "command line programs" note that uses a dataview query to list all notes that used the CLI template. Also, a Snippets note using dataview to list all pages created with the snippets template.

There are tools specifically for snippets and personalized tldr, and I may migrate to those eventually-- especially after I have my install script up and running with linked configs-- but the simple tools in PKMSs are really adaptable and make it easy to customize and integrate. Plus it's all md files in a folder, so it's easy to sync and access on multiple machines, including mobile.

I hope that's not TMI. Starting linux can feel overwhelming and I don't want to add to that. Quiet the contrary. I started my PKMS right before my last, permanent switch linux and I think it helped it stick, and 3+ years later I still use [my PKMS] all the time. As I said before, the simple tools that turn a notepad into a PKMS can add a personalized structure to the insane scrawings, making it quick and easy to navigate, find, edit, and add info. You just have to start simple and take your time. I hope that helps. Good luck with the switch!

[–] [email protected] 2 points 1 day ago (1 children)

Solid advice, what PKM would you recommend?

[–] [email protected] 1 points 1 day ago

I use Obsidian. Stores everything in markdown and has a nice sql-query-like plugin, dataview, that I've built a nice workflow around. Obsidian isn't FOSS, which has become more important for me, so I'm looking to migrate over to markdown oxide in helix. If I were starting from scratch I might try logseq or similar. Whatever you choose, I think it's helpful that it's stored in a portable format like md so you can change programs if you need.