Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

Shuttle XB860G2 and XH810 Slim Systems Arrive with Intel Core Ultra 200 CPUs

Both models use the LGA1851 socket and support Intel Core Ultra 200 series processors (Arrow Lake-S) with up to 65 W TDP. Each system supports up to 96 GB of DDR5-5600 memory across two SO-DIMM slots and includes integrated Intel Xe graphics with multi-display support.

ELM11-Feather Board with 70 MHz MCU, Lua, and Hardware Overlay Support

The system is built around a microcontroller operating at up to 70 MHz and includes 1 MB of RAM. Programs are stored in internal flash memory, with the architecture supporting configurable hardware elements through a hardware overlay mechanism that defines CPU behavior, timers, and peripheral routing.

PiDP-1 Replica Recreates PDP-1 Computer Using Raspberry Pi

The system is part of the PiDP series of historical replicas, which includes earlier PDP-8, PDP-10, and PDP-11 recreations. Unlike previous models, the PiDP-1 places more emphasis on interactive graphics, early video games, and hands-on programming.

9to5Linux

GStreamer 1.30 to Support HDR10+ Metadata Parsing from H.265 & AV1 Bitstreams

GStreamer 1.30 promises support for parsing HDR10+ metadata from H.265 and AV1 bitstreams, Opus audio support for F32 and S24_32 samples and 96kHz sample rate, rtspsrc2 authentication support, a new VA-API overlay compositor, and Bayer support for the QuickTime demuxer.

Systemd-Free antiX 26 Linux Distro Is Here Based on Debian 13 “Trixie”

Based on the latest and greatest Debian 13 “Trixie” operating system series, antiX 26 is powered by the long-term supported Linux 6.6 LTS kernel series and features the IceWM (default), Fluxbox, JWM, and herbstluftwm window managers, and the runit (default), SysVinit, dinit, s6-rc, and s6-66 init systems.

news

GNU grep-3.12 released

posted by Roy Schestowitz on Apr 11, 2025

This is to announce grep-3.12, a stable release.

It's been nearly two years! There have been two bug fixes and many harder-to-see improvements via gnulib. Thanks to Paul Eggert for doing so much of the work and Bruno Haible for all the testing and all he does to make gnulib a paragon of portable, reliable, top-notch code.
There have been 77 commits by 6 people in the 100 weeks since 3.11.
See the NEWS below for a brief summary.
Thanks to everyone who has contributed! The following people contributed changes to this release:
Bruno Haible (5) Carlo Marcelo Arenas Belón (1) Collin Funk (1) Grisha Levit (1) Jim Meyering (31) Paul Eggert (38)
Jim [on behalf of the grep maintainers] ==================================================================
Here is the GNU grep home page: https://gnu.org/s/grep/
Here are the compressed sources: https://ftp.gnu.org/gnu/grep/grep-3.12.tar.gz (3.1MB) https://ftp.gnu.org/gnu/grep/grep-3.12.tar.xz (1.9MB)
Here are the GPG detached signatures: https://ftp.gnu.org/gnu/grep/grep-3.12.tar.gz.sig https://ftp.gnu.org/gnu/grep/grep-3.12.tar.xz.sig
Use a mirror for higher download bandwidth: https://www.gnu.org/order/ftp.html
Here are the SHA1 and SHA256 checksums:
025644ca3ea4f59180d531547c53baeb789c6047 grep-3.12.tar.gz ut2lRt/Eudl+mS4sNfO1x/IFIv/L4vAboenNy+dkTNw= grep-3.12.tar.gz 4b4df79f5963041d515ef64cfa245e0193a33009 grep-3.12.tar.xz JkmyfA6Q5jLq3NdXvgbG6aT0jZQd5R58D4P/dkCKB7k= grep-3.12.tar.xz
Verify the base64 SHA256 checksum with cksum -a sha256 --check from coreutils-9.2 or OpenBSD's cksum since 2007.
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.12.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 [ unknown] Jim Meyering <jim@meyering.net> uid [ unknown] Jim Meyering <meyering@fb.com> uid [ unknown] Jim Meyering <meyering@gnu.org>
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.12.tar.gz.sig
This release is based on the grep git repository, available as
git clone https://git.savannah.gnu.org/git/grep.git
with commit 3f8c09ec197a2ced82855f9ecd2cbc83874379ab tagged as v3.12.
For a summary of changes and contributors, see:
https://git.sv.gnu.org/gitweb/?p=grep.git;a=shortlog;h=v3.12
or run this command from a git-cloned grep directory:
git shortlog v3.11..v3.12
This release was bootstrapped with the following tools: Autoconf 2.72.76-2f64 Automake 1.17.0.91 Gnulib 2025-04-04 3773db653242ab7165cd300295c27405e4f9cc79
NEWS
* Noteworthy changes in release 3.12 (2025-04-10) [stable]
** Bug fixes
Searching a directory with at least 100,000 entries no longer fails with "Operation not supported" and exit status 2. Now, this prints 1 and no diagnostic, as expected: $ mkdir t && cd t && seq 100000|xargs touch && grep -r x .; echo $? 1 [bug introduced in grep 3.11]
-mN where 1 < N no longer mistakenly lseeks to end of input merely because standard output is /dev/null.
** Changes in behavior
The --unix-byte-offsets (-u) option is gone. In grep-3.7 (2021-08-14) it became a warning-only no-op. Before then, it was a Windows-only no-op.
On Windows platforms and on AIX in 32-bit mode, grep in some cases now supports Unicode characters outside the Basic Multilingual Plane.

Read on

Other Recent Tux Machines' Posts

Systemd-Free antiX 26 Linux Distro Is Here Based on Debian 13 “Trixie”
The developers of the antiX Linux distribution announced today the release of antiX 26 as a new major version of this lightweight Debian-based distro without the systemd init system.
 
9to5Linux Weekly Roundup: March 22nd, 2026
The 284th installment of the 9to5Linux Weekly Roundup is here for the week ending March 22nd, 2026.
Today in Techrights
Some of the latest articles
GStreamer 1.30 to Support HDR10+ Metadata Parsing from H.265 & AV1 Bitstreams
GStreamer 1.30 has entered development for this popular open-source and cross-platform multimedia framework, with a first development milestone now available for public testing. Let’s take a look at the new features.
today's leftovers
software, development, and more
Kernel and E.E.E. (Windows, WSL)
Linux and more
Audiocasts/Shows: Linux Saloon and This Week in Linux
a pair of new episodes
Free, Libre, and Open Source Software Leftovers
FOSS stories
Programming Leftovers
Development stories
Open Hardware/Modding: OpenWrt, Raspberry Pi, and GNU/Linux-Friendly Devices
hardware stories
Games: Benchmark, Old PC Games, and More
gaming picks
today's howtos
Instructionals/Technical posts
Android Leftovers
These Android sync settings are wasting battery and data on things you'll never use
I've used Linux KDE Plasma for 10 years—here are 5 advanced features nobody talks about
If you've been using KDE Plasma for a while
This is the most underrated Linux desktop environment of all time
If you spend enough time around Linux users
Free and Open Source Software
This is free and open source software
GNU/Linux Leftovers: Daily Driver, LibreOffice Writer, Red Hat/Fedora Pushing Restricted Boot (Opposite of Real Security)
today's leftovers
Ageless Linux and systemd-censord
systemd-censord concept
Maintenance Done [original]
Yesterday our server served over 5 million Web requests
Today in Techrights
Some of the latest articles
Videos/Shows About GNU/Linux
Recently, via Invidious
Zentyal Server 8.1 Development Now Available
Zentyal Development Team today announced the availability of Zentyal Server Development Edition 8.1
Richard Stallman at Georgia Tech, and Some of My Thoughts about Free Software
Of course, I don’t live like Stallman, even though I live closer to that life than most people
BSD: FreeBSD and OpenBSD Updates (OpenZFS Also)
Some FreeBSD news
GNU/Linux, systemd trouble, and "Clown" Computing
today's leftovers
Wayland set the Linux Desktop back by 10 years
Desktop Environments regressing, Window Managers (WM) woes
Mozilla and Firefox: Nightly, Emojis, and More
mostly Firefox news
Android 'Safeguards', RISC-V, and the War on Hardware Its Owner Can Control
hardware leftovers
SUSE/OpenSUSE: Tumbleweed Review, Planet News Roundup, and Agama 19 Released
SUSE/OpenSUSE leftovers
GNOME: This Week in GNOME, GNOME Foundation Update, and Play a Video as Lock Screen Wallpaper in GNOME
GNOME picks/updates
KDE: Krita Monthly Report and Marknote 1.5.1
KDE picks
Application Releases: b4 v0.15.0, DeadBeef 1.10.2, and virtnbdbackup 2.46
Applications in the news
Applications: Common Picks, Simple Tools, and Tiagolr Sirial
some new suggestions
today's howtos
Instructionals/Technical leftovers
IBM Red Hat Selling Slop, Microsoft and GAFAM Surveillance; Fedora Update (IBM-Run Faux Community)
Red Hat leftovers
Games: Godot 4.6.2 RC 2, Terra Nil, OpenTTD, and More
many gaming picks for today
Programming Leftovers
Development with R and Rust
Standards: Open Document Format (ODF) Mandatory in Germany, Messing With Apple’s Webloc Format
Standards/Consortia leftovers
Security Leftovers
Security patches and more
Linux Kernel Security: Slop, "an already-flawed CVE system", and more
Linux security picks
CVE-2026-3888 Allows Local Users Gain Root Via Snapd
Canonical mistake
Games: Nightmare Reaper, Lucky Tower Ultimate, and More
7 articles from GamingOnLinux
Wine 11.5
The Wine development release 11.5 is now available
Huge Growth This Year [original]
The more messy the Web becomes, the more people will need to rely on strict curation services which cull the slop and cluster together the real news
The Value of a Human Does Not Exceed an Elephant's [original]
she was put down despite being healthy
Android Leftovers
Google reverses one of Android’s most annoying UI changes
Programming Leftovers
Development - a handful of picks
These 5 settings are making your Linux PC less secure
Think your Linux PC is secure just because it’s Linux
GNOME 50 “Tokyo” Desktop Environment Officially Released, This Is What’s New
The GNOME Project released today GNOME 50 (codename Tokyo) as the latest stable version of this widely used desktop environment for GNU/Linux distributions, a major release that introduces exciting new features.
OpenShot 3.5 Open-Source Video Editor Released with New Default Timeline
OpenShot 3.5 has been released today as yet another stable update to this powerful open-source, free, and cross-platform video editing software written in Qt for GNU/Linux, macOS, and Windows.
Best Free and Open Source Software, howtos and Installations
Only free and open source software is eligible for inclusion here
This Week in Plasma: Time Zone Offsets and Type-Ahead on the Desktop
This week several new features landed, in addition to a number of user interface improvements and some nice performance improvements and bug fixes
Germany’s Sovereign Digital Stack Mandates ODF: a Landmark Validation of Open Document Standards
The Document Foundation (TDF), the non-profit entity behind LibreOffice
System76 Launches New COSMIC-Powered Thelio Mira High-Performance Linux PC
Linux hardware vendor System76 launched today the next generation of the Thelio Mira Linux desktop computer, redesigned to boost performance and improve repairability.
Mageia 10 Enters Public Beta Testing with Linux Kernel 6.18 LTS and Mesa 26.0
Mageia 10 Linux distribution is now available for public beta testing, bringing various upgraded components, bug fixes, and other changes for those who want to help the devs ensure a stable and reliable release ahead of the scheduled launch in April 2026.
Today in Techrights
Some of the latest articles