Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

Luckfox Pico 2 Adopts RP2350A Dual-Core MCU, Launches at $3.99

The RP2350A microcontroller from Raspberry Pi features a dual-core, dual-architecture design, offering both ARM Cortex-M33 and Hazard3 RISC-V cores running up to 150MHz, with hardware floating-point support and an integrated temperature sensor.

Morse Micro and Gateworks Launch Wi-Fi HaLow Solution for Industrial Connectivity

Morse Micro and Gateworks Corporation have partnered to bring Wi-Fi HaLow (IEEE 802.11ah) to industrial environments. In collaboration with Silex Technology, they offer a hardware and software ecosystem for long-range, low-power, and secure wireless networking across manufacturing, energy, and transportation sectors.

9to5Linux

Linux Mint 22.2 Will Feature Fingerprint Authentication with Fingwit App

In the latest monthly newsletter, Linux Mint project leader Clement Lefebvre revealed one of the attractions of the forthcoming Linux Mint 22.2 release: a new in-house application for managing fingerprint authentication and configuration on computers with fingerprint readers.

LibreOffice 25.2.4 Office Suite Is Now Available for Download with 52 Bug Fixes

Coming five weeks after LibreOffice 25.2.3, the LibreOffice 25.2.4 point release addresses various bugs, crashes, and other annoyances reported by users in an attempt to improve the overall stability and reliability of this popular open-source, free, and cross-platform office suite.

Internet Society

Community Snapshot—May

Around the world, our 130 chapters and special interest groups work locally, regionally, and globally to keep the Internet a force for good: open, globally connected, secure, and trustworthy. Each month, we provide a brief overview of just some of the things they have achieved in the previous month. 

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

This Week in Plasma: Plasma 6.4 is nigh
This week we continued to focus on bug fixing and user interface polish for Plasma 6.4
Linux Format Magazine Ends with Issue 329
The farewell issue, 329, published on May 27, 2025 (unclear why as July 2025 edition), serves as both a tribute and a grand finale, offering a nostalgic trip down memory lane
Two More Days Till 21! [original]
Two days from now we celebrate our anniversary
Liberux NEXX Linux phone with RK3588S and 32GB RAM hits Indiegogo
But the Liberux NEXX is a work-in-progress Linux phone that could be the most powerful to date
Please welcome /e/OS 3.0!
it's out
KDE for Windows 10 Exiles
Windows 10 will degrade as more and more bugs come to light
Canonical Dropping Bazaar Support from Launchpad
To old-timers like me, Launchpad, the Canonical-run development hub
GNOME Foundation Report and This Week in GNOME
Some GNOME news
 
today's leftovers
GNU/Linux and more
today's howtos
half a dozen howtos
Linux Mint 22.2 Will Feature Fingerprint Authentication with Fingwit App
The upcoming Linux Mint 22.2 (Zara) operating system will feature a brand-new app called Fingwit, providing users with fingerprint authentication capabilities.
Android Leftovers
The most powerful Android tablet is also a technological wonder
XLibre Xserver: Banned by Red Hat Developer Plans Revival of X11
Banned and erased from freedesktop.org
These Are My Favorite 15 Ubuntu Linux Keyboard Shortcuts
Why click around when a few keys do the trick
This tiny Linux computer, complete with screen, is smaller than a passport photo, and I'm in love with it
How small is too small for a computer
Debian Maintainers Request Delisting of Hyprland from Trixie
Hyprland and related packages won't be part of Debian 13 "Trixie" after coordinated bug reports prompted their scheduled removal before the final release
9 Open Source Operating Systems That Aren't Linux
If you hear the term "open-source," you might think of Linux
Free and Open Source Software
This is free and open source software
I've used virtually every Linux distro, but this one has a fresh perspective
If you're familiar with the basics of Linux and ready for a new approach
GNU/Linux Videos: SteamOS, GNOME, KDE, and More
from Invidious
Today in Techrights
Some of the latest articles
today's leftovers
GNU/Linux and more
FuguIta 7.7 Released
I made a demo version of FuguIta with a desktop environment. This demo version demonstrates that FuguIta can be used with a desktop environment as easily as a regular live system.
Ubuntu Touch OTA-9 Focal Release
buntu Touch 20.04 OTA-9 contains only minimal changes due to our current focus on Ubuntu base OS upgrade
blendOS: Our Gitlab migration is now underway
After a long wait, we've begun the migration process
Oracle Linux 9.6 Now Generally Available
By Gursewak Sokhi
NST Version 42-14476 Released
based on Fedora 42 using Linux Kernel
GNU/Linux and Free Software Leftovers
today's leftovers (basically)
Security Leftovers
Security related picks
Programming Leftovers
coding related articles
Audiocasts/Shows: Hackaday Podcast and Going Linux
new episodes
Open Hardware/Modding: Raspberry Pi 5, Arduino, and More
Hardware picks
Games: Crosswords 0.3.15 and Timberborn Review
gaming pair
Thomas ‘alphacc’ Oulevey Leaves CentOS Board of Directors, New PHP RPMs
some IBM stuff
today's howtos
many howtos for the weekend
FreeBSD Leftovers
3 FreeBSD stories
today's leftovers
2 more links
Open Hardware/Modding: Luckfox Pico 2, Jetway PIC-ASL1, and More
Hardware leftovers
Vendor Security: Red Hat, Canonical, and Windows TCO
some more security picks
"Technology sovereignty" and "Get back the cost of your Windows License!" by Microsoft front group FSFE (Misleading Name)
latest 3
Security Leftovers
Security news
Games: Sparkball, World Ocean Day Sale, Near-Mage, and More
GamingOnLinux stories
These 5 Lightweight Linux Distros Go Easy on Your Old Windows PC
If your aging Windows PC is struggling and you want to give it a new lease of life
Forget Proxmox, here's how I set up a home lab server with Ubuntu
When planning out and setting up your home lab
Ubuntu Devs Debate Splitting Linux Firmware to Reduce Size
To the majority of Ubuntu users
LibreOffice 25.2.4 Office Suite Is Now Available for Download with 52 Bug Fixes
The Document Foundation announced today the general availability of LibreOffice 25.2.4 as the fourth maintenance update to the latest LibreOffice 25.2 office suite series with more bug fixes.
Fooyin – Foobar2000 Like Music Player Designed for Qt Desktop
Here’s a similar music player designed for Linux with KDE Plasma, LxQt, etc Qt based desktop environments
Free and Open Source Software
This is free and open source software
HardenedBSD is a fork of FreeBSD
HardenedBSD is a security-enhanced fork of FreeBSD
EndeavourOS: A Distro That’s All Things to All People
Our look at the popular Dutch Linux distribution EndeavourOS reveals an impressive distro that’s both easy to use and powerful enough for experienced users
Today in Techrights
Some of the latest articles
Ubuntu HowTos
Instructionals/Technical articles/videos about Ubuntu
today's leftovers
Web, Free, Libre, and Open Source Software etc.
Fear, Uncertainty, Doubt (FUD) and Security Leftovers
only 2 for now
Programming Leftovers
Development picks
Games: Godot Engine and New Steam Games with Native GNU/Linux Clients
gaming news
BSD: Wi-Fi on FreeBSD, Installing *BSD in 2025, BSD Now, and More
Stories about BSDs
today's howtos
idroot and more
Red Hat Leftovers
redhat.com mostly
Graphics: NVIDIA and Mesa News
From GoL
Programming Leftovers
Development picks
Security Leftovers
Security related picks
Open Hardware/Modding: Purism, Fairphone, and More
hardware related stories
Android Leftovers
Android's biggest redesign in years expands to Google Messages piece by piece
Fastfetch 2.45 System Information Tool Brings New GPU Vendor Detection
Fastfetch 2.45 system information tool adds support for OnePlus devices
SELinux: finding an elegant solution for emulated Windows gaming on Tumbleweed
OpenSUSE Tumbleweed recently switched to using SELinux by default
Free and Open Source Software
This is free and open source software
Games: Prime Gaming, Cattle Country, CoolerControl, and More
8 stories from GamingOnLinux
Morse Micro and Gateworks Launch Wi-Fi HaLow Solution for Industrial Connectivity
The platform ships with a Linux Ubuntu board support package and includes a JTAG programmer
Why I recommend this Linux distro to Windows 10 users who can't upgrade to 11
SDesk is a lightweight Linux distribution designed with a familiar interface
Today in Techrights
Some of the latest articles