Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

Adiuvo Explorer Board aims to bring Artix UltraScale+ FPGA to $99 platform

Adiuvo is developing the Explorer Board, a compact FPGA platform built around the Artix UltraScale+ AU7P, targeting embedded, signal processing, and high-speed I/O applications. The design aims to provide access to UltraScale+ capabilities at a lower price point.

Argon Industria PoE+ HATs add 25W Ethernet power and optional NVMe to Raspberry Pi 5

Argon40 has introduced two Industria PoE+ HATs for the Raspberry Pi 5, providing power and data through a single Ethernet cable using the IEEE 802.3af/at PoE+ standard. Both boards deliver up to 25W output, supplying 5V/5A for full operation.

MSI MS-CF27 3.5-inch SBC with Alder Lake-N, quad GbE, and triple display

Following earlier platforms such as the MS-CF16 V3.0 and MS-CF19, MSI has introduced a new 3.5-inch SBC based on Intel Alder Lake-N, Twin Lake-N, and Amston Lake processors, continuing its focus on fanless, low-power, wide-voltage embedded systems with expanded connectivity and I/O.

Cardputer Mesh Kit features ESP32-S3 handheld with LoRa and GNSS support

The Cardputer Mesh Kit is a portable communication platform that combines an ESP32-S3-based handheld controller with LoRa mesh networking and GNSS positioning. The kit is built around the Cardputer-Adv core unit and the Cap LoRa-1262 expansion module, and comes preloaded with Meshtastic firmware for out-of-the-box operation.

9to5Linux

9to5Linux Weekly Roundup: May 3rd, 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.

qBittorrent 5.2 Open-Source BitTorrent Client Released with Many New Features

Coming a year after qBittorrent 5.1, the qBittorrent 5.2 introduces a Torrent Creator button in the toolbar, a separate “Tracker status” filter, a “Created On” column to transfer list, the ability to set torrent share limits per category, and support for calculating torrent pieces asynchronously.

Copy Fail Linux Kernel Vulnerability Now Patched in Debian, Ubuntu, and Others

On April 29th, 2026, a local privilege escalation vulnerability affecting the Linux kernel was publicly disclosed as CVE-2026-31431 and referred to as “Copy Fail.” The vulnerability affects the algif_aead kernel module, which provides hardware-accelerated cryptographic functions.

sed-4.9 released

posted by Roy Schestowitz on Nov 07, 2022

This is to announce sed-4.9, a stable release.

There have been 51 commits by 9 people in the nearly three years since 4.8.
See the NEWS below for a brief summary.
Thanks to everyone who has contributed! The following people contributed changes to this release:
Antonio Diaz Diaz (1) Assaf Gordon (5) Chris Marusich (1) Jim Meyering (28) Marvin Schmidt (1) Oğuz (1) Paul Eggert (11) Renaud Pacalet (1) Tobias Stoeckmann (2)
Jim [on behalf of the sed maintainers] ==================================================================
Here is the GNU sed home page: http://gnu.org/s/sed/
For a summary of changes and contributors, see: http://git.sv.gnu.org/gitweb/?p=sed.git;a=shortlog;h=v4.9 or run this command from a git-cloned sed directory: git shortlog v4.8..v4.9
To summarize the 2383 gnulib-related changes, run these commands from a git-cloned sed directory: git checkout v4.9 git submodule summary v4.8
================================================================== Here are the compressed sources: https://ftp.gnu.org/gnu/sed/sed-4.9.tar.gz (2.2MB) https://ftp.gnu.org/gnu/sed/sed-4.9.tar.xz (1.4MB)
Here are the GPG detached signatures: https://ftp.gnu.org/gnu/sed/sed-4.9.tar.gz.sig https://ftp.gnu.org/gnu/sed/sed-4.9.tar.xz.sig
Use a mirror for higher download bandwidth: https://www.gnu.org/order/ftp.html
Here are the SHA1 and SHA256 checksums:
69ad1f6be316fff4b23594287f16dfd14cd88093 sed-4.9.tar.gz 0UeKGPAzpzrBaCKQH2Uz0wtr5WG8vORv/Xq86TYCKC4 sed-4.9.tar.gz 8ded1b543f1f558cbd5d7b713602f6a8ee84bde4 sed-4.9.tar.xz biJrcy4c1zlGStaGK9Ghq6QteYKSLaelNRljHSSXUYE sed-4.9.tar.xz
The SHA256 checksum is base64 encoded, instead of the 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 sed-4.9.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 uid [ unknown] Jim Meyering uid [ unknown] 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=sed&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 sed-4.9.tar.gz.sig
This release was bootstrapped with the following tools: Autoconf 2.72a.65-d081 Automake 1.16i Gnulib v0.1-5550-g0524746392
NEWS
* Noteworthy changes in release 4.9 (2022-11-06) [stable]
** Bug fixes
'sed --follow-symlinks -i' no longer loops forever when its operand is a symbolic link cycle. [bug introduced in sed 4.2]
a program with an execution line longer than 2GB can no longer trigger an out-of-bounds memory write.
using the R command to read an input line of length longer than 2GB can no longer trigger an out-of-bounds memory read.
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 sed 4.8]
I/O errors involving temp files no longer confuse sed into using a FILE * pointer after fclosing it, which has undefined behavior in C.
** New Features
The 'r' command now accepts address 0, allowing inserting a file before the first line.
** Changes in behavior
Sed now prints the less-surprising variant in a corner case of POSIX-unspecified behavior. Before, this would print "n". Now, it prints "X":
printf n | sed 'sn\nnXn'; echo

Read on

Other Recent Tux Machines' Posts

CachyOS ISO Release for April 2026 Brings Shelly as Default GUI Package Manager
The CachyOS ISO snapshot for April 2026 is now available for download with the Shelly graphical package manager, DNS-over-HTTPS, fingerprint sudo, and more.
Attack knocks Ubuntu websites, services and Snap store offline
If you’re having trouble accessing the Ubuntu website
Canonical Giving up on GNU/Linux, Selling Slop Ponzi Scheme via Ubuntu Brand
very bad sign
Lots of Coverage About 9-Year-Old Linux Kernel Vulnerability (Privilege Escalation, Local)
kernel issue
Valve dev fixes up VRAM management on AMD GPUs to improve performance
4 articles
Copy Fail Linux Kernel Vulnerability Now Patched in Debian, Ubuntu, and Others
The Copy Fail (CVE-2026-31431) Linux kernel security vulnerability that could allow a local user to elevate privileges to the root user has now been patched. Update your installations as soon as possible!
Wine 11.8
The Wine development release 11.8 is now available
 
Android Leftovers
Stop struggling with big phones: Android's hidden one-handed setting changes everything
This extension finally turns KDE into a tiling window manager
KDE is great. It’s probably my favorite desktop environment
GNOME is good, actually
While I’m normally a KDE user
Finland: Windows Falls to New Lows, Fast (GNU/Linux Measure at Over 10%) [original]
the growing platform isn't Apple's but GNU/Linux
GNU/Linux and Development Leftovers
From end of April
Weekly GNU-like Mobile Linux Update: Slow Seventeen and 7 Cameras
how freedom shapes up
NixOS forced me to declare my entire system, and now I can't imagine Linux any other way
There's a version of you in every Linux machine you've ever set up
ReactOS Gets Unified Installer Image and a New Storage Stack
Although the ReactOS project is in no rush to dethrone Windows as the desktop operating system of choice
I left GNOME for COSMIC, tried KDE next, and only one felt right in the end
Desktop environments can make or break your overall Linux experience
After months of desktop hopping, I finally understand why Linux users can't agree on anything
I was installing roughly three extensions just to add a taskbar to GNOME
Free and Open Source Software
This is free and open source software
MoltOS – security-based Linux distribution
MoltOS is a Debian-based Linux distribution built for privacy, defensive security analysis, network research, forensics, data recovery, and cybersecurity education
Dolphin 26.04 release
I want to highlight a few changes that came to Dolphin 26.04 and add some nuance to the release announcement
Review: Xubuntu 26.04
This has not been a good year for Xubuntu, the Xfce-based Ubuntu flavour
Gestures in Graz, and beyond
KDE's Mega Sprint 2026 in Graz brought a group of about 20 KDE contributors together in early April
KDE email, part 3: don’t filter your email
This is part 3 in my series about email management, with the prior one being about using email client apps
Videos/Audiocasts/Shows: GNU/Linux and Free Software/Coding Clips
recent via Invidious
Redcore Linux Hardened 2601 Vulpecula Stable
Redcore Linux Hardened 2601 (codename Vulpecula) stable ISO
Asmi Linux 26.04
Asmi Linux 26.04 is now available based on Ubuntu 26.04 (Resolute Raccoon)
Today in Techrights
Some of the latest articles
9to5Linux Weekly Roundup: May 3rd, 2026
The 290th installment of the 9to5Linux Weekly Roundup is here for the week ending May 3rd, 2026.
qBittorrent 5.2 Open-Source BitTorrent Client Released with Many New Features
qBittorrent 5.2 open-source BitTorrent client is now available for download with many new features, improvements to the WebUI and search, and platform-specific changes. Here’s what’s new!
Sharing and Free, Libre, and Open Source Software
FOSS and more
GNU/Linux and BSD Leftovers
mostly the former
Audiocasts/Shows: Sacha and Prot Talk Emacs, Linux Saloon Covers Many Topics
2 new episodes
Programming Leftovers
Development leftovers and news
Ben Hutchings, GSoC Interns, and Upcoming debian.org E-mail Change (SPF)
Debian picks
Open Hardware/Modding/Retro/Hacking: Commodore 64, ESP32, and More
some projects and raves
EasyOS Development Updates
3 updates from BK
Kernel: Realtek Rant and DRM via HDMI 2.1
mostly AMD coverage
ScummVM's Google Summer of Code, Steam, and GNU/Linux Growing
3 links for now
today's howtos
biodiff and more
Postgres-Related Releases: pgexporter 0.8, pgagroal 2.1, pgmoneta 0.21, and PgQue v0.1
4 new releases
Europe Decoupling from GAFAM is Good News, Especially for European Member States [original]
France was likely just the beginning
statCounter Reckons GNU/Linux Rose to 7% in The Netherlands, Windows at All-Time Lows [original]
This month's latest
FreeBSD 15.1-BETA1 Now Available
The first beta build of the 15.1-RELEASE release cycle is now available
Free Software Report: "60% of open source maintainers work unpaid, 60% have quit or considered quitting, and 44% cite burnout specifically."
new and old commentary
Android Leftovers
This underrated Android feature makes my belly hurt from laughing — here's why you should try it out too
5 more lightweight Linux distros that go easy on your old Windows PC
So, here are five more Linux distributions that are lean, resource-efficient
Linux Lite 8.0 RC1 Released! Based on Ubuntu 26.04 LTS
Linux Lite, the lightweight, beginner friendly, and Ubuntu based Linux Distribution, announced the RC1 release for the next 8.0 major version yesterday morning
Free and Open Source Software
This is free and open source software
Evernight Vista – Fedora-based Linux distribution
Evernight Vista Operating System is a Fedora-based Linux distribution that aims to make Fedora more approachable for desktop users
LiaisonOS – distribution designed for amateur radio emergency communications
LiaisonOS is a Debian-based Linux distribution designed for amateur radio emergency communications
This month in KDE Linux: April 2026
Welcome to another edition of “This month in KDE Linux”!
Ubuntu’s Official Flavour List Is Shrinking, And That’s Not a Bad Thing
There are fewer official flavors with 26.04 LTS version. Is it alarming
Windows All-Time Lows in Europe, GNU/Linux Rose to 6% in Germany [original]
'Soft power' gone, less Microsoft, more sovereignty through Free software
Today in Techrights
Some of the latest articles
Free, Libre, and Open Source Software and Sharing Leftovers
FOSS and more
Early Impressions of Chrome from a Firefox User and Mozilla Leftovers
Mozilla news
Software Freedom and GNU Projects' News
mostly GNU
today's leftovers
GNU/Linux and more
This Week in GNOME and GNOME Foundation Update
GNOME news
Kernel Space: Coreboot, Satire (Linux 27), and Linux Kernel 7.x
Linux picks
Games: DOOM, Commodore 64 and ZX Spectrum, Steam on GNU/Linux
gaming picks
Hardware: Raspberry Pi, Other SBCs, and non-Apple, non-Google 'Smartphones'
Hardware leftovers
The ps5-linux project can turn some PlayStation 5 consoles into a Linux gaming machine
The open source ps5-linux project has been released, allowing you to turn a PlayStation 5 into a fully fledged Linux gaming machine
Distributions and Operating Systems: Distrowatch Rankings, Sparky, EasyOS, and HaikuOS
OS news and distro news
Programming Leftovers
Development picks
Security and Windows TCO Leftovers
Security picks
today's howtos
idroot and more
Applications: "3 powerful Linux apps to try this weekend", diffoscope (Reproducible Builds), and Abstract
some software for GNU/Linux
Many People Leaving Microsoft GitHub
old and new
Games: Development, Steam Deck, Subnautica 2, and More
Game-related news
Linux Mint 22.3 HWE ISOs Now Available for Download with Linux Kernel 6.17
Linux Mint 22.3 HWE ISO images are now available for download powered by the Linux 6.17 kernel series from Ubuntu 24.04.4 LTS.
NHS Goes To War Against Open Source
The NHS is preparing to close nearly all of its Open Source repositories
Android Leftovers
Samsung Galaxy Book laptops may take the Android route
Titan Neo with some fixes and upstream updates is available
Six weeks after our Titan release, we refreshed our ISO, Titan Neo, with some fixes and minor improvements
FSF Blogs: It's May, and we've been keeping busy
All four teams at the Free Software Foundation (FSF) have been working tirelessly the past four months, and we have a lot to show for it
Shotcut 26.4 Video Editor Adds Vulkan GPU Support to Speech to Text on Linux
Shotcut 26.4 open-source video editor is now available for download with Vulkan GPU support for Speech to Text on Linux, 10-bit VP9 MP4 (E-AC-3) and 10-bit VP9 WebM (Opus) export presets, and more.
Free and Open Source Software
This is free and open source software
ludora – Fedora based gaming spin
Ludora is a Fedora-based Linux distribution built for gaming systems that also need reliable rollback facilities
May Edition / Issue of PCLinuxOS Magazine
Links from PCLinuxOS Magazine
Kucing7 Linux – Slackware-based Linux distribution
Kucing7 Linux is a Slackware-based Linux distribution aimed at developers and office users who want a ready-to-use workstation with a lightweight desktop
Kirigami forms and configurations
Recently a new submodule has landed in Kirigami: “Forms”
This Week in Plasma: Background Apps and Zoom Up-Scaling
This week Plasma 6.7 entered its “soft feature freeze” where we stop merging newly-written features and focus on finishing up and merging the ones that were already in flight
Kubuntu 26.04 Resolute Raccoon review - Surprisingly nice
It has been a while since I last did a proper distro review. But the occasion warrants it. Canonical has released its latest LTS
Java SDK updates for Slackware all across the board
Today I pushed fresh Slackware packages (for 15.0 and -current
Today in Techrights
Some of the latest articles