We have a new course, Tmux Fundamentals. As evident from the name itself, the course teaches you the fundamentals of Tmux.
A terminal multiplexer like Tmux is a lifesaver if you connect to remote servers via SSH. No more session drops because your laptop went in sleep mode or if you forgot to stay connected in the terminal.
Tmux has a little learning curve, and that's the reason we created this new course. It is available to everyone for free. Enjoy π

Essential Linux concept: Named pipe redirection
Most linux users are familiar with the concept of redirection. One of the redirections is pipe. The vertical line | in the commands gives Linux an incredible power for combining commands.
But did you know that there is also named pipes that exist like a file in the system. Well, everything is file in Linux so that's not surprising. Named pipes can store output in memory buffer. It's an interesting concept that most of us Linux users don't come across every day.

Interested in Linux kernel developments?
Linux Foundation's instructor led training program on Linux Kernel Internals and Developments is for you. The course is designed to provide experienced programmers with a solid understanding of the Linux kernel.
It is an instructor-led virtual session that will run from 9 to 5 for 4 days. Which means that it is like attending a training class but live on your computer. The next session runs on 28th September.
If you are working in a company, you can ask your boss or company to pay for this training. Tell them that you are getting a 50% discount with ILTGTRITSFOSS coupon code that saves $1750 on this specialized course.
π‘Quick terminal tip
In a pipeline like commandA | commandB | commandC, the shell only records the exit code of the final command (commandC), quietly masking crashes or errors produced upstream.
Bash solves this with the built-in ${PIPESTATUS[@]} array, which captures the discrete exit codes of every stage in your pipeline.
For example, in the below command:
cat app.log | grep "FATAL" | awk '{print $2}'
echo "${PIPESTATUS[@]}"
The ${PIPESTATUS[@]} array preserves the discrete exit code of every process in the pipeline, not just the awk command.

π οΈ Tool discovery
Let's see if you find your next favorite tool.
Listmonk: Self-hosted, newsletter and mailing list manager
Listmonk is an open-source, AGPL-licensed newsletter and mailing list manager packed into a single Go binary backed by a PostgreSQL database. It features a modern web dashboard with multi-threaded SMTP queues, dynamic templating, SQL-based subscriber segmentation, and an HTTP webhook interface for transactional messaging.
Updo: Real-Time Uptime Monitoring Tool
Updo is an open-source Go CLI tool that monitors website uptime, response latency breakdowns (DNS, TCP, TTFB), and SSL certificate expiration in real time via an interactive TUI or plain-text mode.
π° Linux news that matters
- The Linux kernel is approaching 2,000 fixed CVEs per release as automated LLM analysis floods maintainers with low-priority bug reports and hallucinated fixes across obscure code paths.
- Multikernel Technologies has launched mklinux v7.0-mk2, an open-source kernel fork that allows physical servers to run multiple independent Linux kernels side by side without a hypervisor.
- Automated AI web scrapers are consuming roughly 20% of git.kernel.org's total compute capacity by requesting individual HTML commit views instead of cloning repositories directly.
- Debian has officially voted to allow generative AI tools for development, maintenance, and documentation, placing full legal and technical accountability directly on the human contributor to review and test all submissions.
- California lawmakers have passed Assembly Bill 1856, amending the upcoming Digital Age Assurance Act to formally exempt software and operating systems distributed under permissive licenses allowing copying, modification, and redistribution.
π Geek humor

π Keep on loving Linux Handbook
GitOps course is nearly ready. It should arrive next week.
Perfect time to become a Pro member and enjoy unlimited access to our eBooks, courses and in-depth tutorials.
Missed the previous editions?Β You canΒ access the newsletter archives.
You may also contribute to Linux Handbook and share your experience and expertise with the community.
I like reading your messages, so just hit the reply button and share your thoughts π



