this post was submitted on 23 Dec 2023
58 points (96.8% liked)

Linux

48072 readers
1 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
58
Recommendations (lemmy.world)
submitted 2 years ago* (last edited 2 years ago) by ransomwarelettuce@lemmy.world to c/linux@lemmy.ml
 

So I finally decided to join my university Linux group, and as I been helping people with simple problems in discord for a while they put me in the helpdesk.

All fine and dandy, but other than dual boot and partitioning problems that I had to deal with myself (stupid laptop which does no follow efibootmgr order) I don't know much about other kinds of troubleshooting.

Is there some reads or free online courses that u guys would recommend.

top 14 comments
sorted by: hot top controversial new old
[–] pete_the_cat@lemmy.world 20 points 2 years ago* (last edited 2 years ago) (2 children)

Install stuff, try and make it better but end up breaking it horribly, and then spend time fixing it. This is how I've learned everything over the years.

I distro hopped for a few years but eventually settled on Arch over a decade ago. It was a lot more difficult to install back then, but it will still get you comfortable with the CLI if you're not comfortable with it already. Also, if you don't know already, Arch pretty much has the best Wiki available and it works with almost all distros since most only differ in package management.

I actually got heavy into Linux during my freshman year of college (2004) back when Linux wasn't supported for most things, so I wiped Windows off of my PC, and forced myself to use Ubuntu for 2 months, which required me to figure out how to install WINE and Microsoft Office. It was a pain, and after two months I put Windows back on it for dual-boot and ease of use purposes but largely used Linux once I got over the learning hump.

I'd suggest setting up a Level 1 hypervisor like VMware or Proxmox so that you can have multiple things running at once independent of each other, but a Level 2 hypervisor like KVM works just as well, but you have to make sure that you don't break the host OS somehow hahaha

I'm a Linux System Engineer now 🤓

[–] nayminlwin@lemmy.ml 6 points 2 years ago (1 children)

Yeah, I really only started to learn, when I started resisting the urge to reinstall everything if something goes wrong and instead start trying to properly fix it.

[–] pete_the_cat@lemmy.world 1 points 2 years ago

I would always crawl back to Windows, so that's why I forced myself to just use Linux and force myself to fix everything that popped up, that was the key moment.

[–] ransomwarelettuce@lemmy.world 1 points 2 years ago (1 children)

Yeah actually somewhat of a related experience I been using Linux for 3 years, 2-3 months on Ubuntu then manjaro one week and skipped next to arch till now ( hopped into nix and artix for a while too ).

The experience I have i gained through installing arch from scratch fixing things playing with Wayland and pipewire from the early days.

I am bit scared is of the edge cases, I have a software engineering background, or actually I still into it and was looking for some sources fro the most common problems and how to diagnosi edge case ones.

[–] pete_the_cat@lemmy.world 1 points 2 years ago

Nice, so you already have the groundwork laid. It's a constant learning experience!

[–] geekworking@lemmy.world 7 points 2 years ago (1 children)

Does the group have any archive, mailing lists, ticket system, etc, where they work on and document the work that they have been doing?

Past questions and answers will tell you common issues, solutions, should point you towards the areas where you need to focus.

[–] ransomwarelettuce@lemmy.world 3 points 2 years ago* (last edited 2 years ago)

The group till recently was pretty much a cult thing, even tough they hosted large foss events associated with others groups.

I entered into a kinda of redesigning fase since now they have a budget they have to document everything.

Short awser kinda off, but not really.

[–] TunaCowboy@lemmy.world 7 points 2 years ago (2 children)

"The Linux Command Line" by William Shotts is a fairly comprehensive guide to basic use, you can find a link to the .pdf here: https://linuxcommand.org/tlcl.php

[–] bionicjoey@lemmy.ca 5 points 2 years ago

This is my go-to recommendation for anyone wanting to learn the Linux CLI

[–] ransomwarelettuce@lemmy.world 1 points 2 years ago

I am familiar with command line, but will check it out, still ought explore the full potential of journalctl.

[–] rufus@discuss.tchncs.de 5 points 2 years ago* (last edited 2 years ago) (1 children)

Ask your Linux group. Seriously. They should know best what kinds of issues their 'users' frequently face and what kind of information there is.

I learned Linux by doing. Set up a webserver, set up a network share, assemble a RAID with 2 old HDDs. Install Steam and play around a bit. Try LaTex and write your next homework assignment with it. Set up a Python / R / C++ development environment. All of that is good practice and you'll understand the concepts and specific issues once you do it yourself. Imho that's better than a theoretical course. You can do this in VMs or find old hardware. Some people in such groups have good connections.

Also a university library should have some free (for you) material (books) on Linux.

[–] amanneedsamaid@sopuli.xyz 2 points 2 years ago (1 children)

LaTeX was my entry point into plain text (and honestly computing in general), really good recommendation.

[–] rufus@discuss.tchncs.de 1 points 2 years ago* (last edited 2 years ago)

Thanks. Yeah I spent some time with it and drew some finite-state machines with TikZ(?), other diagrams, we assembled a few physics homework assignment scripts to tidy the data from experiments, do linear regression and generate beautiful diagrams. It also taught me a bit about typesetting and proper formatting. I 'wasted' quite some time with it but a homework assignment in TeX looks almost like a scientific paper. Depending on the later career it's a good skill to have. And I still prefer writing stuff with that instead of fighting LibreOffice. YMMV, since I also like programming and prefer text and the command line over GUIs.

I used to Google for help, but the thing about Google is you have to know the correct technical terms, but when learning Linux, there are many unknown unknowns. And then you have to trawl through am the answers.

Now, any time I enter a command and get errors, or if I don't understand something in the logs, I'll copy paste it into perplexity.ai - if necessary, it'll ask for clarification. But mostly, it'll suggest various causes and solutions, with explanation.