Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

MKVToolNix 99.0 MKV Manipulation Tool Improves the MKVToolNix GUI, mkvmerge

MKVToolNix 99.0 improves the MKVToolNix GUI with the ability to remember the last used directory when selecting audio files for playback in “play audio file” program runners, new variables for changing the base file name or file suffix, and support for setting variables as environment variables when running a program after a job completes.

MX Linux 25.2 “Infinity” Released with Linux Kernel 7.0, Based on Debian 13.5

Coming four months after MX Linux 25.1, the MX Linux 25.2 release is based on the latest Debian 13.5 “Trixie” operating system and features the long-term supported Linux 6.12 LTS kernel on the standard ISOs and a Liquorix-flavored Linux 7.0 kernel on the AHS (Advanced Hardware Support) ISOs.

Ubuntu-Based Rhino Linux 2026.1 Introduces Lomiri Edition, Powered by Linux 7.0

Highlights of Rhino Linux 2026.1 include a new edition featuring the Lomiri desktop environment developed by the UBports Foundation for the Ubuntu Touch mobile operating system. Since Lomiri is a convergent graphical environment, it can be successfully used on standard x86_64 or ARM64 systems.

9to5Linux Weekly Roundup: May 24th, 2026

I want to thank everyone who sent us donations; your generosity is greatly appreciated. I also want to thank all of you for your continued support by commenting, liking, sharing, and boosting the articles, following us on social media, and, last but not least, sending us feedback.

Shelly 2.3.1 GUI Package Manager for Arch Linux Improves Notifications

Coming a week after Shelly 2.3, the Shelly 2.3.1 release introduces a welcome screen to the tray, a real message-event system, a new systemd user unit for Shelly notifications, support for quitting the app via the Ctrl+Q keyboard shortcut, and the first batch of language translations.

Linux Mint 23 Getting New Cinnamon Screenshots Tool, Network Improvements

As reported last month, the Linux Mint devs adopted a longer development cycle for new Linux Mint releases, starting with Linux Mint 23, which is currently planned for Christmas 2026, packed with lots of goodies like a new screenshot tool for the Cinnamon desktop environment that supports cropping and multi-monitor support.

LinuxGizmos.com

ESP32-S31 development boards bring Wi-Fi 6, audio, camera, and HMI features

Earlier announced in March with the unveiling of the ESP32-S31 SoC, Espressif has now launched the ESP32-S31-Korvo-1 multimedia development board, while documentation additionally references the ESP32-S31-Function-CoreBoard-1 connectivity-oriented board. Both platforms are built around the ESP32-S31-WROOM-3 module and target multimedia, audio, display, and connected IoT applications.

grep 3.8 released

posted by Roy Schestowitz on Sep 03, 2022

This is to announce grep-3.8, a stable release.
Special thanks to Carlo Arenas for adding PCRE2 support
and to Paul Eggert for his many fine changes.

There have been 104 commits by 6 people in the 55 weeks since 3.7. See the NEWS below for a brief summary.
Thanks to everyone who has contributed! The following people contributed changes to this release:
Carlo Marcelo Arenas Belón (2) Helge Kreutzmann (1) Jim Meyering (27) Ondřej Fiala (1) Paul Eggert (71) Ulrich Eckhardt (2)
Jim [on behalf of the grep maintainers] ==================================================================
Here is the GNU grep home page: http://gnu.org/s/grep/
For a summary of changes and contributors, see: http://git.sv.gnu.org/gitweb/?p=grep.git;a=shortlog;h=v3.8 or run this command from a git-cloned grep directory: git shortlog v3.7..v3.8
To summarize the 432 gnulib-related changes, run these commands from a git-cloned grep directory: git checkout v3.8 git submodule summary v3.7
================================================================== Here are the compressed sources: https://ftp.gnu.org/gnu/grep/grep-3.8.tar.gz (2.8MB) https://ftp.gnu.org/gnu/grep/grep-3.8.tar.xz (1.7MB)
Here are the GPG detached signatures: https://ftp.gnu.org/gnu/grep/grep-3.8.tar.gz.sig https://ftp.gnu.org/gnu/grep/grep-3.8.tar.xz.sig
Use a mirror for higher download bandwidth: https://www.gnu.org/order/ftp.html
Here are the SHA1 and SHA256 checksums: eb3bf741fefb2d64e67d9ea6d74c723ea0efddb6 grep-3.8.tar.gz jeYKUWnAwf3YFwvZO72ldbh7/Pp95jGbi9YNwgvi+5c grep-3.8.tar.gz 6d0d32cabaf44efac9e1d2c449eb041525c54b2e grep-3.8.tar.xz SY18wbT7CBkE2HND/rtzR1z3ceQk+35hQa/2YBOrw4I grep-3.8.tar.xz
Each SHA256 checksum is base64 encoded, preferred over the much longer hexadecimal encoding that most checksum tools default to.
Use a .sig file to verify that the corresponding file (without the .sig suffix) is intact. First, be sure to download both the .sig file and the corresponding tarball. Then, run a command like this:
gpg --verify grep-3.8.tar.gz.sig
The signature should match the fingerprint of the following key:
pub rsa4096/0x7FD9FCCB000BEEEE 2010-06-14 [SCEA] Key fingerprint = 155D 3FC5 00C8 3448 6D1E EA67 7FD9 FCCB 000B EEEE uid Jim Meyering
If that command fails because you don't have the required public key, or that public key has expired, try the following commands to retrieve or refresh it, and then rerun the 'gpg --verify' command.
gpg --locate-external-key jim@meyering.net gpg --recv-keys 7FD9FCCB000BEEEE wget -q -O- 'https://savannah.gnu.org/project/release-gpgkeys.php?group=grep&download=1' | gpg --import -
As a last resort to find the key, you can try the official GNU keyring:
wget -q https://ftp.gnu.org/gnu/gnu-keyring.gpg gpg --keyring gnu-keyring.gpg --verify grep-3.8.tar.gz.sig
This release was bootstrapped with the following tools: Autoconf 2.72a.55-bc66c Automake 1.16i Gnulib v0.1-5279-g19435dc207
================================================================== NEWS
* Noteworthy changes in release 3.8 (2022-09-02) [stable]
** Changes in behavior
The -P option is now based on PCRE2 instead of the older PCRE, thanks to code contributed by Carlo Arenas.
The egrep and fgrep commands, which have been deprecated since release 2.5.3 (2007), now warn that they are obsolescent and should be replaced by grep -E and grep -F.
The confusing GREP_COLOR environment variable is now obsolescent. Instead of GREP_COLOR='xxx', use GREP_COLORS='mt=xxx'. grep now warns if GREP_COLOR is used and is not overridden by GREP_COLORS. Also, grep now treats GREP_COLOR like GREP_COLORS by silently ignoring it if it attempts to inject ANSI terminal escapes.
Regular expressions with stray backslashes now cause warnings, as their unspecified behavior can lead to unexpected results. For example, '\a' and 'a' are not always equivalent . Similarly, regular expressions or subexpressions that start with a repetition operator now also cause warnings due to their unspecified behavior; for example, *a(+b|{1}c) now has three reasons to warn. The warnings are intended as a transition aid; they are likely to be errors in future releases.
Regular expressions like [:space:] are now errors even if POSIXLY_CORRECT is set, since POSIX now allows the GNU behavior.
** Bug fixes
In locales using UTF-8 encoding, the regular expression '.' no longer sometimes fails to match Unicode characters U+D400 through U+D7FF (some Hangul Syllables, and Hangul Jamo Extended-B) and Unicode characters U+108000 through U+10FFFF (half of Supplemental Private Use Area plane B). [bug introduced in grep 3.4]
The -s option no longer suppresses "binary file matches" messages. [Bug#51860 introduced in grep 3.5]
** Documentation improvements
The manual now covers unspecified behavior in patterns like \x, (+), and range expressions outside the POSIX locale.

Other Recent Tux Machines' Posts

We Aim for Freedom, Not Popularity [original]
it primarily focuses on Software Freedom, seeing where society and technology are heading
Another Season Comes to an End [original]
Two goals disqualified by VAR
Linux Mint 23 Getting New Cinnamon Screenshots Tool, Network Improvements
Linux Mint 23 is getting a new Cinnamon Screenshots tool, network improvements, Nemo enhancements, theme improvements, and more.
 
Everybody Drinks [original]
Don't forget to provide water to animals nearby
Free, Libre, and Open Source Software Leftovers
FOSS and more
FSF Shows Strength and "Open Source" is Not Enough for Software Freedom / Digital Sovereignty
Software Freedom / Digital Sovereignty picks
Programming Leftovers
Development related leftovers
GNU/Linux and BSD Leftovers
mostly GNU/Linux
Games: Steam Machines, New Steam Games with Native GNU/Linux Builds and Games Playable on the Steam Deck
gaming with Steam DRM
Barry Kauler on Latest EasyOS Work
EasyOS news
Ubuntu 26.10 ISO and Canonical to End Ubuntu Pastebin
Canonical/Ubuntu leftovers
Audiocasts/Shows: LINUX Unplugged, mintCast, Going Linux, and More
new episodes
Open Hardware/Modding: ESP32, PCBs, and More
Hardware picks
Applications: Software for Cinnamon, Wireshark 4.6.6 Released
Application news
today's howtos
Instructionals/Technical picks
MKVToolNix 99.0 MKV Manipulation Tool Improves the MKVToolNix GUI, mkvmerge
MKVToolNix 99.0 open-source MKV manipulation tool is now available for download with the ability to remember the last used directory when selecting audio files, and many other changes.
Linux 7.1-rc5
release of RC5
Android Leftovers
Every way to share files on Android, ranked from worst to best
6 red flags that tell you to avoid a Linux distro before you install it
DistroWatch tracks hundreds of Linux distributions
RPCS3 PS3 emulator test on Linux-hacked PS5 shows why Sony ports so few games
The Linux on PS5 hack makes the console a tempting platform for the RPCS3 PS3 emulator
Linux isn't "better" than Windows—here's why people are switching anyway
You've probably heard someone online say Linux can replace Windows
Free and Open Source Software
This is free and open source software
Shadowfetch Linux – Debian-based distribution
Shadowfetch Linux is a Debian testing derivative aimed at creative workstation users
Review: Solus 4.9
On the whole, Solus provided a good experience for me
Trying to Stay Cool (Amid Heatwave) [original]
It's a holiday today and this week's news cycle is expected to be slow
Free, Libre, and Open Source Software Leftovers
3 more links for now
NetHydra 2026.2 Release (SONAR, MISP, WAS Support)
major improvements across the core system, performance enhancements, updated tooling, expanded compatibility, and a variety of internal changes designed to improve both flexibility and usability for security professionals
Zenclora 3.0 Released - MATE Desktop & ZPM Mega Update
Distribution Release: Zenclora OS 3.0
Release of Archcraft 2026.05.12
Archcraft Prime Release
Unraid 7.3.0 Stable Now Available
Flash boot with flash-based licensing remains fully supported
Today in Techrights
Some of the latest articles
MX Linux 25.2 “Infinity” Released with Linux Kernel 7.0, Based on Debian 13.5
MX Linux 25.2 distribution is now available for download with a new text-mode installer, Debian 13.5 base, and Linux kernel 7.0 on the AHS builds. Here’s what’s new!
Ubuntu-Based Rhino Linux 2026.1 Introduces Lomiri Edition, Powered by Linux 7.0
Rhino Linux 2026.1 distribution is now available for download with a new Lomiri edition, Linux kernel 7.0, Pacstall updates, and other changes. Here’s what’s new!
9to5Linux Weekly Roundup: May 24th, 2026
The 293rd installment of the 9to5Linux Weekly Roundup is here for the week ending May 24th, 2026.
GNU/Linux Leftovers
distros and more
Free, Libre, and Open Source Software Leftovers
FOSS picks for today
Web and Web Browsers: Slop Failing, Vivaldi Blocks Slop, Mozilla Collects User Data
Web Browsers and more
Audiocasts/Shows: Linux Saloon 202 and 203
two new episodes
Games: Snake in VBIOS, Steam, and Card Games
gaming news
today's howtos
Instructionals/Technical picks
Security Leftovers and Linux Bugs
lots of the latter
Open Hardware: GNU-like Mobile Linux Update, Flipper, and More
Hardware news
Programming Leftovers
Development news
Nuisance or Bad Behaviour Comes With Good Weather [original]
Theft is just one aspect
Android Leftovers
Your Android home screen widgets are about to get a ton of upgrades
The best Linux distro for beginners is getting a much snappier file explorer
If you're on the fence about using an open-source operating system
This super-minimalist GNOME theme is changing how I use Linux
If you use GNOME, you know how this goes: install GNOME
Free and Open Source Software
This is free and open source software
A Linux distro once got too close to Windows, and Microsoft came for it
Back in 2001, a tiny startup launched an operating system called Lindows
Picking a Linux distro is the wrong first question — here's what you should ask instead
A few months before Windows 10 went into extended support, I knew I wanted to move to Linux
StackOS – Ubuntu-based Linux distribution
StackOS Genesis is an Ubuntu-based Linux distribution with its own visual identity
Ultra Performance Tuning – Debian-based Linux distribution
Ultra Performance Tuning is a Debian-based Linux distribution designed for deterministic
Stable kernels: Linux 7.0.10, Linux 6.18.33, Linux 6.12.91, Linux 6.6.141, Linux 6.1.174, Linux 5.15.208, and Linux 5.10.257
I'm announcing the release of the 7.0.10 kernel
I joyfully reunited with my first Linux distro at the Virtual OS Museum
Feeling nostalgic? From Amiga Unix to XVM/RSX, anyone can run over 570 extinct OSes
A Week of Shell (Shells in Standalone Tank) [original]
This is a very fun and rewarding hobby
Today in Techrights
Some of the latest articles
GNU/Linux Leftovers
more stories about GNU/Linux
Free, Libre, and Open Source Software, Licensing, and Open Data
FOSS and more
Web Browsers/Mozilla/Feed Readers: Human Readability, PDFs, and VPN
WWW related picks
mdo on FreeBSD 15 and Moving to FreeBSD From Ubuntu
FreeBSD picks
GNU/Linux Devices and Moddable/Hackable Hardware
Banana Pi and Arduino, among others
The new Flipper One is a pocket-sized Linux computer
The hardware’s not finalized, but the more powerful Flipper One won’t be a replacement for the Flipper Zero
Red Hat Leftovers
Red Hat picks and more
Games: Introducing the Godot Asset Store, Veridian Expanse, SNES, and More
GNU/Linux centric picks
today's howtos
Instructionals/Technical posts
Linus Torvalds says AI-powered bug hunters have made Linux security mailing list ‘almost entirely unmanageable’
He then pointed kernelistas to the project’s documentation
Databases/PostgreSQL: pg_mentat 1.3.0, pg_infer 1.0.0, pg_tre 1.1.1, Textpattern issues with MariaDB 11.8
Database related stuff
Content Management Systems (CMS) / Static Site Generators (SSG): Drupal, WordPress, and "Selfhosted Static Site Editor"
Hosting one's sites
Programming Leftovers
Development related picks
Security and Microsoft/GitHub TCO
Security news
Shelly 2.3.1 GUI Package Manager for Arch Linux Improves Notifications
Shelly 2.3.1 open-source graphical package manager for Arch Linux-based distributions is now available for download with various new features and improvements.
Deutsche Bahn: No information under Linux
Deutsche Bahn locks out Linux users from its website, an error message warns of suspected bot activity. Changing the User-Agent helps.
I Don't Need No Stinkin' Alarm Clock, I Have Birds [original]
The logo of this site is birds
EasyOS Excalibur-series 7.3.4 and EasyOS Development News
EasyOS picks, all from, BK
Android Leftovers
I installed this simple Android launcher and it turned my phone into the ultimate gaming handheld
Entrapment (Microsoft GitHub) Has High TCO, Latest Examples
4 more articles
SpacemiT K3 Pico-ITX Chassis Kit Review – Part 1: Unboxing, teardown, and first boot
I’ll start the review with an unboxing, a teardown, and a first boot to the pre-installed Bianbu OS
Proxmox 9.2 Virtual Environment launches with the 7.0 Linux kernel as default
Unleashed yesterday, Proxmox Virtual Environment 9.2 comes with a Debian 13.5
This Week in Plasma: Xe Driver Support and Polishing Discover
This week the focus was squarely on polishing up Plasma 6.7 in preparation for release on June 16th
Ubuntu-based Quarkos 26.04 now available with KDE Plasma 6.6 and more
Based on Ubuntu 26.04 "Resolute Raccoon" and featuring KDE Plasma 6.6 by default
Forty-six free software meetups on six continents
The Free Software Foundation (FSF) reports that its global call for free software supporters to organize LibreLocals this May resulted in free software supporters organizing forty-six LibreLocal events on six continents thus far
Free and Open Source Software, Benchmark, and Review
This is free and open source software
HP Is the Latest to Sponsor the Linux Vendor Firmware Service (LVFS)
Linux Vendor Firmware Service creator Richard Hughes announced that HP has also agreed to become a premier sponsor for the LVFS.
Eleven years later, my Lenovo G50 is still going strong
Speaking of Kubuntu 26.04, I tried it as the guest operating system, and I didn't get far
NanoPi NEO3 Plus is a compact RK3528A SBC with eMMC support and Gigabit Ethernet
Software support includes Alpine Linux 3.23, Debian 13 Core, Ubuntu 24.04 Core
Recent GNU/Linux Videos
via Invidious
RakuOS Linux 44 2026.05.16
Based on Fedora 44
Today in Techrights
Some of the latest articles