> ## Content Index
> Fetch the complete content index at: https://linuxhandbook.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# LHB Linux Digest #26.11: New Free Course, Named Pipes, Multi-kernel and More
- URL: https://linuxhandbook.com/newsletter/26-11/
- Published: 2026-09-04T13:30:39.000Z
- Updated: 2026-09-04T13:30:39.000Z
- Description: Enjoy the new course
- Author: Abhishek Prakash
- Tags: Newsletter

We have a new course, [Tmux Fundamentals](https://linuxhandbook.com/courses/tmux/). 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 😄

[Tmux Fundamentals: Free Course on Terminal MultiplexingNever lose a terminal session again! Learn tmux sessions, panes, and windows in this free, beginner-friendly course. No signup required.![](https://linuxhandbook.com/content/images/icon/Linux-Handbook-New-Logo-fc83b8b6-6673-4a6f-8ee0-4730af602253.png)Linux HandbookYash Kiran Patil![](https://linuxhandbook.com/content/images/thumbnail/tmux-fundamentals-05e3dc3f-60a9-46ae-a66b-9907076fa22a.png)](https://linuxhandbook.com/courses/tmux/)

## Essential Linux concept: Named pipe redirection

Most linux users are familiar with the concept of [redirection](https://linuxhandbook.com/redirection-linux/). 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](https://linuxhandbook.com/pipe-redirection/). 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.

[Pipe redirection in Linux: Named and Unnamed PipesThere are two kinds of pipes in Linux: named and unnamed. Here’s a detailed look at pipe redirection.![](https://linuxhandbook.com/content/images/icon/Linux-Handbook-New-Logo-428a1b97-5077-4356-bef3-e87d7cd3d71e.png)Linux HandbookDebdut Chakraborty![](https://linuxhandbook.com/content/images/thumbnail/pipe-redirection-1-17911276-322c-487b-9ab7-b8400b276dca.png)](https://linuxhandbook.com/pipe-redirection/)

## Interested in Linux kernel developments?

Linux Foundation's instructor led training program on [Linux Kernel Internals and Developments](https://training.linuxfoundation.org/training/linux-kernel-internals-and-development/?ref=linuxhandbook.com) 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.

[Use ILTGTRITSFOSS Coupon to get 50% off](https://training.linuxfoundation.org/instructor-led-training-courses/?ref=linuxhandbook.com)

## **💡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.

![](https://linuxhandbook.com/content/images/2026/09/using-pipestatus.png)

## 🛠️ Tool discovery

Let's see if you find your next favorite tool.

### Listmonk: Self-hosted, newsletter and mailing list manager

[Listmonk](https://github.com/knadh/listmonk?ref=linuxhandbook.com) 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.

[GitHub - knadh/listmonk: High performance, self-hosted, newsletter and mailing list manager with a modern dashboard. Single binary app.High performance, self-hosted, newsletter and mailing list manager with a modern dashboard. Single binary app. - knadh/listmonk![](https://linuxhandbook.com/content/images/icon/favicon-b6c33d2a-bc65-49cf-b27f-5a54d0decfef.png)GitHubknadh![](https://linuxhandbook.com/content/images/thumbnail/8d94bb7b-e76e-4a8e-8944-ebee3c0d0e70-289b118f-21b5-4f6f-b921-68188e8d66e6)](https://github.com/knadh/listmonk?ref=linuxhandbook.com)

### Updo: Real-Time Uptime Monitoring Tool

[Updo](https://github.com/Owloops/updo?ref=linuxhandbook.com) 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.

[GitHub - Owloops/updo: Uptime monitoring CLI tool with alerting and advanced settingsUptime monitoring CLI tool with alerting and advanced settings - Owloops/updo![](https://linuxhandbook.com/content/images/icon/favicon-20467a9d-122f-4027-b31c-ff16fd50015a.png)GitHubOwloops![](https://opengraph.githubassets.com/f3f3ee71978813c484f281b94eb38b123b64537b699bc7498982480d18b41dd6/Owloops/updo)](https://github.com/Owloops/updo?ref=linuxhandbook.com)

## 📰 Linux news that matters

- [The Linux kernel is approaching 2,000 fixed CVEs](https://www.tomshardware.com/software/linux/linux-kernel-nears-2-000-cves-per-release-as-ai-bug-hunters-scour-40-million-lines-of-code-maintainers-say-they-are-completely-overwhelmed?ref=linuxhandbook.com) 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](https://itsfoss.com/news/multikernel-public-release/?ref=linuxhandbook.com), 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](https://itsfoss.com/news/linux-kernel-repo-ai-overrun/?ref=linuxhandbook.com) 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](https://itsfoss.com/news/debian-allows-ai-contribution/?ref=linuxhandbook.com) 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](https://www.phoronix.com/news/California-AB-1856-Passes?ref=linuxhandbook.com), 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

![](https://linuxhandbook.com/content/images/2026/09/lhb_meme-sept-1st-2026.jpg)

## 💌 Keep on loving Linux Handbook

GitOps course is nearly ready. It should arrive next week. 

Perfect time to [become a Pro member](https://linuxhandbook.com/#/portal/signup) and enjoy unlimited access to our [eBooks](https://linuxhandbook.com/ebooks/), [courses](https://linuxhandbook.com/courses/) and in-depth tutorials.

**Missed the previous editions?** You can [access the newsletter archives.](https://linuxhandbook.com/newsletter/)

You may also [contribute to Linux Handbook](https://linuxhandbook.com/write-for-us/) and share your experience and expertise with the community.

I like reading your messages, so just hit the reply button and share your thoughts 😄