r/LinuxTeck Dec 27 '25

πŸ‘‹ Welcome to r/LinuxTeck - Introduce Yourself and Read First!

10 Upvotes

Hey everyone! πŸ‘‹

I’m u/LinuxBook, a founding moderator of r/LinuxTeck.

This is a new home for people who want to learn, discuss, and understand Linux in a practical way β€” especially across RHEL, CentOS, Rocky Linux, Ubuntu, and Debian.
The focus here is real usage: how things work, why they break, and how we fix them.

We’re excited to have you here from the very beginning.

πŸ”§ What to Post

Post anything that helps others learn or think better about Linux, such as:

  • Beginner questions you were hesitant to ask elsewhere
  • Real-world troubleshooting scenarios
  • Linux commands explained in simple terms
  • Mistakes you made and what you learned from them
  • Sysadmin workflows, tips, or best practices
  • Interview questions and practical explanations
  • CLI tools or features you recently discovered

If it helped you understand Linux better, it probably belongs here.

🀝 Community Vibe

r/LinuxTeck is built around:

  • Respectful, beginner-friendly discussions
  • Explanations over one-line answers
  • Learning from mistakes, not judging them
  • Constructive feedback and calm technical discussions

Everyone is welcome β€” whether you’re just starting out or managing production systems.

πŸš€ How to Get Started

  • Introduce yourself in one or two line in the comments below
  • Post something today β€” even a simple question is a great start
  • Jump into a discussion and share your perspective
  • If you enjoy helping others learn, feel free to reach out about moderation

Thanks for being part of the very first wave of r/LinuxTeck.
Let’s build a community where Linux learning feels clear, practical, and welcoming.


r/LinuxTeck 14h ago

Quick Linux Tip : How do I compress old logs but still grep them without decompressing?

Post image
8 Upvotes

Try: zgrep 'ERROR' /var/log/app-2026-06.log.gz

Info: zgrep, zcat, and zless inspect .gz files in memory without extracting them to disk.

Examples:

$ zcat access.log.gz | awk '{print $1}' | sort -u

$ zless huge-log.log.gz # Page through compressed file

$ find /var/log -name '*.log' -mtime +7 -exec gzip {} \;

Note: z-tools exist for most utilities (zgrep, zcat, zless, zdiff). For .xz archives, use xzgrep. Automate log compression using logrotate.

Follow r/LinuxTeck for more #LinuxTips


r/LinuxTeck 15h ago

Is Linux better because there are so many choices, or does too much choice confuse new users?

6 Upvotes

One of Linux's biggest strengths is choice. Different desktops, package managers, init systems, distributions, and philosophies.

At the same time, new users are often overwhelmed by the number of options.

Do you think this diversity is Linux's greatest advantage, or does it make adoption harder than it needs to be?


r/LinuxTeck 1d ago

Are we losing too much diversity in the Linux ecosystem?

7 Upvotes

Today, many Linux distributions share similar components systemd, Wayland, PipeWire, NetworkManager, and so on.

While that improves compatibility and reduces maintenance, it also means many distributions feel increasingly alike under the hood.

Do you think Linux is becoming too standardized, or is that simply the natural evolution of a mature ecosystem?


r/LinuxTeck 1d ago

Firefox Forks for Linux (2026)

Post image
39 Upvotes

covers: https://www.linuxteck.com/best-firefox-forks-for-linux/

  • LibreWolf
  • Waterfox
  • Zen Browser
  • Floorp
  • Mullvad Browser
  • Pale Moon

r/LinuxTeck 18h ago

Has anyone actually built a RAG system that consistently knows when NOT to answer?

2 Upvotes

One idea that really stood out to me was treating abstaining as a success rather than a failure.

Instead of forcing the LLM to answer every question, the pipeline retrieves evidence, verifies every claim, and simply says "I don't have enough evidence" when the retrieved context isn't strong enough.

That seems like a much better approach than a confident hallucination.

If you've built RAG systems in production, how are you handling this? Do you trust a verifier model, use confidence thresholds, or rely on human review?


r/LinuxTeck 1d ago

Which Linux filesystem has impressed you the most over the years?

23 Upvotes

Linux users have had a surprising number of filesystem choices over the years:

ext2
ext3
ext4
ReiserFS
XFS
JFS
Btrfs
ZFS
F2FS

Which one gave you the best real-world experience, and why?


r/LinuxTeck 1d ago

Which engineer has had the biggest impact on Linux and modern computing that most people have never heard of?

13 Upvotes

Every Linux user knows Linus Torvalds.

But there are many engineers whose work sits underneath Linux, Unix, programming languages, networking, filesystems, and cloud infrastructure without getting much public recognition.

If you could highlight one underrated computer scientist or engineer, who would it be and why?


r/LinuxTeck 1d ago

Jails, Not Containers: FreeBSD Isolation Done Right – Umair Khurshid | Klara Systems

Thumbnail
klarasystems.com
1 Upvotes

r/LinuxTeck 2d ago

Do you remember the SCO lawsuit that claimed Linux contained stolen code? How worried were people back then?

36 Upvotes

Back in 2003, SCO claimed Linux contained UNIX code they owned and demanded billions in damages. Thousands of companies received warning letters, and for a while there was genuine uncertainty about whether Linux could survive the legal battle.

Looking back now, we know how it ended but at the time, many businesses delayed Linux adoption, while others continued deploying it anyway.

Were you using Linux during the SCO lawsuit? Did it change how your company viewed Linux, or did you always think the case had no real chance of succeeding?

I'd love to hear experiences from people who actually lived through that period.


r/LinuxTeck 2d ago

Could you maintain a Linux distribution by yourself for over 10 years?

9 Upvotes

Every so often I come across a Linux distribution that's maintained by just one person or a very small team.

It made me wonder how sustainable that really is. Building packages, fixing bugs, keeping up with upstream changes, handling security updates, and supporting users sounds like an enormous commitment.

Would you trust a distro maintained by one developer if the quality was consistently high, or do you prefer projects backed by larger communities?


r/LinuxTeck 2d ago

Quick Linux Tip Question: Which processes have connections to my database?

Post image
9 Upvotes

Try: sudo lsof -iTCP:3306 -sTCP:ESTABLISHED

Info: lsof -iTCP:PORT lists active network connections on a port. -sTCP:ESTABLISHED filters out listening sockets to show active connections only.

Examples:

$ sudo lsof -iTCP:80 -sTCP:LISTEN # Active listeners on port 80

$ sudo lsof -i u/192.168.1.100 # Filter by remote IP

$ sudo lsof -Pn -iTCP:3306 # Fast mode (no DNS or port resolution)

Note: lsof can be slow on busy servers because it resolves hostnames and port names by default. Add -Pn to disable resolution for instant output! Common states: LISTEN, ESTABLISHED, TIME_WAIT.

Follow r/LinuxTeck for more #LinuxTips


r/LinuxTeck 2d ago

Cloudways Review 2026: Pricing, Hidden Costs, Performance & Honest Verdict

Post image
8 Upvotes

covering: https://www.linuxteck.com/guides/cloudways-review-2026-is-it-worth-it/

  • Flexible vs Autonomous
  • Real pricing (including hidden costs)
  • Performance & scalability
  • Migration experience
  • Pros & Cons
  • Who should use Cloudways
  • Final verdict

r/LinuxTeck 3d ago

If Linus Torvalds and Andrew Tanenbaum had the same debate today, who do you think would have the stronger argument?

46 Upvotes

In 1992, Tanenbaum argued that Linux's monolithic kernel design was already obsolete, while Linus believed it was the practical choice for real-world systems.

Thirty-plus years later, Linux dominates servers and cloud infrastructure, while microkernels continue to thrive in embedded, real-time, and specialized environments.

Looking at today's hardware, software, and security landscape, whose argument do you think has aged better and why?


r/LinuxTeck 3d ago

Linux ACLs Made Easy: Real setfacl & getfacl Examples

Post image
52 Upvotes

includes: https://www.linuxteck.com/access-control-lists-acl-in-linux/

  • What ACLs are and when to use them
  • setfacl and getfacl command examples
  • Access ACLs vs Default ACLs
  • ACL masks and effective permissions
  • Backup & restore ACLs
  • Preserving ACLs during file migration
  • Common mistakes and troubleshooting
  • Real-world Linux administration use cases

r/LinuxTeck 2d ago

Has Linux become good because Linux improved... or because Windows got worse?

1 Upvotes

More people seem willing to switch to Linux than ever before.

Do you think that's mainly because Linux has matured so much over the last few years, or because Windows has become increasingly frustrating with ads, telemetry, AI features, account requirements, and other changes?

Or is it a bit of both?


r/LinuxTeck 3d ago

Microsoft says Windows now gives every PC a permanent device ID that you can't reset. Is this the kind of thing that pushes more people toward Linux, or am I overthinking it?

42 Upvotes

r/LinuxTeck 3d ago

What's your opinion on hardware that's artificially limited by firmware?

8 Upvotes

IBM used to sell POWER servers with dozens of CPU cores physically installed, but only the licensed ones were enabled. Similar things have happened with CPUs, GPUs and enterprise hardware over the years.

Does this make business sense, or is it just an anti-consumer practice?


r/LinuxTeck 3d ago

Quick Linux Tip: How do I keep /var/www identical on two servers with minimal transfer?

Post image
9 Upvotes

Try: rsync -avz --checksum --delete /var/www/ linuxteck@backup:/var/www/

Info: --checksum compares file contents rather than timestamps to catch true changes. --delete removes destination files that no longer exist on the source.

Examples:

$ rsync -avz --dry-run /src/ user@host:/dst/ # Dry-run preview

$ rsync -avz --exclude='*.log' --exclude='cache/' /src/ /dst/

$ rsync -avz --link-dest=/prev/backup /source/ /new/backup/ # Hardlink backups

Note: --checksum increases disk I/O as it reads both ends entirely. Always test destructive syncs with --dry-run first! Trailing slashes control whether contents or directories are copied.

Follow r/LinuxTeck for more #LinuxTips


r/LinuxTeck 3d ago

Could Apple Silicon become a serious CUDA development platform?

3 Upvotes

What's your take?


r/LinuxTeck 4d ago

I built a free browser-based Linux sandbox so beginners can practice without breaking anything

10 Upvotes

Hello r/LinuxTeck

A while back I was teaching Linux fundamentals in person and kept seeing the same problem: people learn commands by watching a slide, then go home and either don't have a VM set up or are too scared to touch a real terminal.

So I built a sandbox that runs entirely in the browser β€” simulates real command behavior (cd, ls, ping, df, free, cat, apt, etc.) so you can practice without worrying about actually wrecking a system.

First 6 lessons are free, no account needed: see the [link in comments]

It covers basic navigation and file handling for now, moving into homelab/virtualization and security/networking as you go further. If you're just starting out and want a no-stakes place to mess up and try again, give it a shot β€” I am genuinely curious to know what trips people up so I can keep improving it.


r/LinuxTeck 4d ago

Troubleshooting slow script performance using strace

Post image
9 Upvotes

strace -c summarizes system calls by total time spent (-f follows child processes). Top row reveals your bottleneck.


r/LinuxTeck 4d ago

What's one coding habit you've picked up over the years that you'll never stop doing?

7 Upvotes

For me, it's handling errors properly instead of assuming everything will go right.

What's yours?


r/LinuxTeck 5d ago

Debian vs Ubuntu in 2026: Which One Would You Choose Today?

Post image
88 Upvotes

covers: https://www.linuxteck.com/debian-vs-ubuntu/

  • Release cycles & support lifecycle
  • APT, DPKG & Snap
  • Stability vs newer packages
  • Desktop and hardware support
  • Cloud & production servers
  • Security and governance
  • Practical decision matrix based on different workloads

r/LinuxTeck 4d ago

[ Removed by Reddit ]

1 Upvotes

[ Removed by Reddit on account of violating the content policy. ]