Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

PocketTerm35-Pi5 Handheld Linux Terminal with Raspberry Pi 5 and 3.5″ Display

Waveshare recently featured the PocketTerm35-Pi5, a handheld Linux terminal based on the Raspberry Pi 5, with an integrated display, keyboard, and battery in a compact form factor. It supports command-line interaction, development workflows, and portable system access without external peripherals.

9to5Linux

How to Install Linux Kernel 7.0 on Ubuntu 25.10

Why install Linux kernel 7.0? Well, no particular reason. Install it only if it enables support for some hardware that wasn’t supported or didn’t work correctly with Ubuntu’s default kernel. You can also install Linux 7.0 if you want to enjoy some of its new features and performance improvements.

GNU Linux-Libre 7.0 Kernel Is Now Available for Software Freedom Lovers

Based on the recently released Linux 7.0 kernel series, the GNU Linux-libre 7.0 kernel is here to clean up blob names and requests in the IWLMLD driver and update the deblobbing of the amdgpu, adreno, TI PRUeth, air_en8811h, ath12k, TI VPE, rtw8852b, rt1320, rt5575 SPI, tas2783, and Intel catpt drivers.

9to5Linux Weekly Roundup: April 12th, 2026

Happy Easter! 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.

Linux Kernel 7.0 Officially Released, This Is What’s New

While not a major release in terms of new features, despite the major version number change, Linux kernel 7.0 finally promotes Rust support to stable. The “Rust experiment” has been concluded at the 2025 Linux Kernel Maintainers Summit, and Rust is here to stay.

Trisquel GNU/Linux 12.0 LTS Released with GNU Linux-Libre 6.8 Kernel, MATE 1.26

Coming more than three years after Trisquel GNU/Linux 11.0 LTS, the Trisquel GNU/Linux 12.0 LTS release is based on the Ubuntu 24.04 LTS (Noble Numbat) operating system series, it’s powered by the GNU Linux-libre 6.8 kernel by default, and features the MATE 1.26.2 desktop environment.

First Look at Shelly, a Modern Graphical Package Manager for Arch Linux

At its core, Shelly is designed as a modern reimagination, an alternative to Arch Linux’s default package manager, pacman, and I think it’s a very good candidate for that role, especially since it features a graphical interface, can be used without installation, and supports third-party app stores like AUR and Flathub.

Internet Society

From Commitments to Practice: Internet Society’s Priorities for WSIS+20 Implementation

The World Summit on the Information Society (WSIS)+20 review process, which concluded in December 2025, reaffirmed the multistakeholder model, made the Internet Governance Forum (IGF) permanent, and set a forward-looking agenda for digital development that resonates strongly with our 2030 strategy. But what has been agreed to on paper is only the beginning. What happens next, in terms of roadmaps, measurements, and institutional reforms, will determine whether or not those commitments will transform into practical results.

news

coreutils-9.5 released

posted by Roy Schestowitz on Mar 29, 2024

 This is to announce coreutils-9.5, a stable release.
There have been 187 commits by 18 people in the 30 weeks since 9.4.
Aearil (1) Petr Malat (1)
Bruno Haible (3) Pádraig Brady (75)
Christian Göttsche (1) Samuel Tardieu (1)
Collin Funk (4) Stephane Chazelas (1)
Daan De Meyer (1) Stephen Kitt (1)
Greg Wooledge (1) Sylvestre Ledru (3)
Grisha Levit (2) Ville Skyttä (1)
Michel Lind (1) dann frazier (1)
Paul Eggert (89) lvgenggeng (1)
https://gnu.org/s/coreutils/
https://git.sv.gnu.org/gitweb/?p=coreutils.git;a=shortlog;h=v9.5
git shortlog v9.4..v9.5
https://ftp.gnu.org/gnu/coreutils/coreutils-9.5.tar.gz (15MB)
https://ftp.gnu.org/gnu/coreutils/coreutils-9.5.tar.xz (5.8MB)
https://ftp.gnu.org/gnu/coreutils/coreutils-9.5.tar.gz.sig
https://ftp.gnu.org/gnu/coreutils/coreutils-9.5.tar.xz.sig
3285114d93b39e5e4643b0846f570203a5e4c97b coreutils-9.5.tar.gz
dnrmoilQ7ELzul98Heed0ngA7o6bhkLaXe21l0oXQeU= coreutils-9.5.tar.gz
867fed7ce2ee15c5150a355a5f3a3b50578cf78d coreutils-9.5.tar.xz
zTKO3qyS9qZl3p8yPJO3Eq8YWLwuDYjz9xAEaUcKG4o= coreutils-9.5.tar.xz
gpg --verify coreutils-9.5.tar.gz.sig
uid [ultimate] Pádraig Brady <P@draigBrady.com>
uid [ultimate] Pádraig Brady <pixelbeat@gnu.org>
gpg --keyring gnu-keyring.gpg --verify coreutils-9.5.tar.gz.sig
Gnulib v0.1-7293-g259829e78b
* Noteworthy changes in release 9.5 (2024-03-28) [stable]
chmod -R now avoids a race where an attacker may replace a traversed file
with a symlink, causing chmod to operate on an unintended file.
cp, mv, and install no longer issue spurious diagnostics like "failed
to preserve ownership" when copying to GNU/Linux CIFS file systems.
They do this by working around some GNU/Linux CIFS bugs.
cp --no-preserve=mode will correctly maintain set-group-ID bits
for created directories. Previously on systems that didn't support ACLs,
cp would have reset the set-group-ID bit on created directories.
[bug introduced in coreutils-8.20]
join and uniq now support multi-byte characters better.
For example, 'join -tX' now works even if X is a multi-byte character,
and both programs now treat multi-byte characters like U+3000
IDEOGRAPHIC SPACE as blanks if the current locale treats them so.
numfmt options like --suffix no longer have an arbitrary 127-byte limit.
[bug introduced with numfmt in coreutils-8.21]
mktemp with --suffix now better diagnoses templates with too few X's.
Previously it conflated the insignificant --suffix in the error.
[bug introduced in coreutils-8.1]
sort again handles thousands grouping characters in single-byte locales
where the grouping character is greater than CHAR_MAX. For e.g. signed
character platforms with a 0xA0 (aka &nbsp) grouping character.
split --line-bytes with a mixture of very long and short lines
no longer overwrites the heap (CVE-2024-0684).
tail no longer mishandles input from files in /proc and /sys file systems,
on systems with a page size larger than the stdio BUFSIZ.
timeout avoids a narrow race condition, where it might kill arbitrary
processes after a failed process fork.
[bug introduced with timeout in coreutils-7.0]
timeout avoids a narrow race condition, where it might fail to
kill monitored processes immediately after forking them.
wc no longer fails to count unprintable characters as parts of words.
[bug introduced in textutils-2.1]
base32 and base64 no longer require padding when decoding.
Previously an error was given for non padded encoded data.
base32 and base64 have improved detection of corrupted encodings.
Previously encodings with non zero padding bits were accepted.
basenc --base16 -d now supports lower case hexadecimal characters.
Previously an error was given for lower case hex digits.
cp --no-clobber, and mv -n no longer exit with failure status if
existing files are encountered in the destination. Instead they revert
to the behavior from before v9.2, silently skipping existing files.
ls --dired now implies long format output without hyperlinks enabled,
and will take precedence over previously specified formats or hyperlink mode.
numfmt will accept lowercase 'k' to indicate Kilo or Kibi units on input,
and uses lowercase 'k' when outputting such units in '--to=si' mode.
pinky no longer tries to canonicalize the user's login location by default,
rather requiring the new --lookup option to enable this often slow feature.
wc no longer ignores encoding errors when counting words.
Instead, it treats them as non white space.
** New features
chgrp now accepts the --from=OWNER:GROUP option to restrict changes to files
with matching current OWNER and/or GROUP, as already supported by chown(1).
chmod adds support for -h, -H,-L,-P, and --dereference options, providing
more control over symlink handling. This supports more secure handling of
CLI arguments, and is more consistent with chown, and chmod on other systems.
cp now accepts the --keep-directory-symlink option (like tar), to preserve
and follow existing symlinks to directories in the destination.
cp and mv now accept the --update=none-fail option, which is similar
to the --no-clobber option, except that existing files are diagnosed,
and the command exits with failure status if existing files.
The -n,--no-clobber option is best avoided due to platform differences.
env now accepts the -a,--argv0 option to override the zeroth argument
of the command being executed.
mv now accepts an --exchange option, which causes the source and
destination to be exchanged. It should be combined with
--no-target-directory (-T) if the destination is a directory.
The exchange is atomic if source and destination are on a single
file system that supports atomic exchange; --exchange is not yet
supported in other situations.
od now supports printing IEEE half precision floating point with -t fH,
or brain 16 bit floating point with -t fB, where supported by the compiler.
tail now supports following multiple processes, with repeated --pid options.
cp,mv,install,cat,split now read and write a minimum of 256KiB at a time.
This was previously 128KiB and increasing to 256KiB was seen to increase
throughput by 10-20% when reading cached files on modern systems.
env,kill,timeout now support unnamed signals. kill(1) for example now
supports sending such signals, and env(1) will list them appropriately.
SELinux operations in file copy operations are now more efficient,
avoiding unneeded MCS/MLS label translation.
sort no longer dynamically links to libcrypto unless -R is used.
This decreases startup overhead in the typical case.
wc is now much faster in single-byte locales and somewhat faster in
multi-byte locales.

Read on

Other Recent Tux Machines' Posts

Ursa - a new Iceberg-first storage engine for Kafka
What’s been peculiarly interesting in this dogfight has been companies’ slow pivot away from their proprietary-solutions and heavier lean into open-source and the Kafka protocol
Linux Kernel 7.0 Officially Released, This Is What’s New
Linux kernel 7.0 is now available for download with new features, enhanced hardware support through new and updated drivers, improvements to filesystems and networking, and much more.
French government says it's ditching Windows for Linux - country accelerates plans to ditch US-based software in digital sovereignty push
2026 is set to be l’année de Linux.
Valve dev fixes up VRAM management on AMD GPUs to improve performance
4 articles
This immutable Linux solved my biggest technical frustrations
I installed Linux over the weekend, and not just any version of Linux—an immutable one by the name of Fedora Silverblue
I didn’t install GNOME OS because I thought it would replace my current setupGNOME OS revealed what Linux is actually becoming
I didn’t install GNOME OS because I thought it would replace my current setup
Trisquel GNU/Linux 12.0 LTS Released with GNU Linux-Libre 6.8 Kernel, MATE 1.26
Trisquel GNU/Linux 12.0 LTS distribution is now available for download with GNU Linux-libre 6.8 kernel, MATE 1.26 desktop environment, updated packages, and various improvements.
Change in Hungaristan [original]
Links for the day
 
Android Leftovers
Google and Samsung are improving Android's most useful feature
These 7 Fedora cleanup commands freed up more space than I expected
Fedora is known for its cutting-edge software, stability, and clean implementation of upstream technologies, but even it can accumulate digital clutter over time
Best Free and Open Source Software, howtos and Installations
Only free and open source software is eligible for inclusion here
I tested Artix Linux: An enjoyable systemd-free distro for experienced users (and ChromeOS speeds)
If you want a stable Linux distribution with a unique take
Programming Leftovers
Development picks
GNU/Linux and BSD Leftovers
mostly GNU/Linux for now
EasyOS: Kernel 6.12.81 with CONFIG_USB4 and pre-install script in PET packages
EasyOS updated from B.K.
Debian Developers' Reports and UmbrelOS (Based on Debian)
Debian leftovers
Content Management Systems (CMS) / Static Site Generators (SSG): WordPress, Grav, Jekyll, Kirby, Eleventy Etc.
running sites, as explained by bloggers
Web Browsers/Web Servers: RSS, New Blogs, and Load Balancing
Web related news picks
Games: fheroes2 and Capcom horror games
gaming picks
Linux Kernel Plays Ball With Slop After Slop Pushers Pay Millions to 'Linux' Foundation
kernel news polluted by hype
today's howtos
Instructionals/Technical posts
How to Install Linux Kernel 7.0 on Ubuntu 25.10
You can now install the latest and greatest Linux 7.0 kernel series on your Ubuntu 25.10 distribution. Here’s how to do it!
GNU Linux-Libre 7.0 Kernel Is Now Available for Software Freedom Lovers
GNU Linux-libre 7.0 kernel is now available for download based on Linux kernel 7.0 and targeted at those seeking 100% freedom for their PCs.
Android Leftovers
Firefox does one thing Chrome simply won't on Android
I deleted all my Linux folders and found files faster without them
“I’ll find it later.” Which sounds reckless until you realize Linux has been built for this for years
4 reasons I can no longer use Windows as my daily driver
Today, I'm going to tell you why I'm finally ditching my Windows partition and making Linux my daily driver
Best Free and Open Source Software
Only free and open source software is eligible for inclusion here
MODOS – small Debian-based operating system
MODOS, formerly known as G0ll0’Z SmollOS
NawaOS – Debian-based Linux distribution built for gaming
NawaOS is a Debian-based Linux distribution built for gaming
Review: pearOS 2026.03
pearOS is an Arch-based desktop Linux distribution which features a macOS-like theme and icons on top of the KDE Plasma desktop
A week in Graz: KDE MegaSprint and Grazer Linuxtage
I spent this week in Graz, the weekdays as part of the KDE Mega Sprint 2026 and Saturday attending Grazer Linuxtage 2026
Three Months After Georgia Tech, Stallman Heads to UT Austin
Once a fixture on the lecture circuit, GNU’s creator — and the father of Free Software — is slowly re‑emerging in the US, updating his message for the 2020s
Microsoft Windows Measured Below 5% in Lao [original]
An all time low
Today in Techrights
Some of the latest articles
9to5Linux Weekly Roundup: April 12th, 2026
The 287th installment of the 9to5Linux Weekly Roundup is here for the week ending April 12th, 2026.
today's leftovers
a couple of missed items
Systemd-Free Artix Linux Sees First Release in 2026 with XLibre and PipeWire
The development team behind Artix Linux has released today the Artix Linux 2026.04 ISO refresh for this Arch Linux-based, systemd-free distribution, which features multiple editions and init systems.
Netrunner 26 Released with XLibre Xserver, Based on Debian 13 “Trixie”
Netrunner 26 GNU/Linux distribution is now available for download based on Debian GNU/Linux 13 “Trixie” and featuring the KDE Plasma 6.3.6 desktop environment with Linux kenrel 6.16.
4MLinux 51.0 Released with Improved Support for ZX Spectrum and Atari Music
4MLinux 51.0 distribution is now available for download with improved support for ZX Spectrum and Atari music and other changes. Here’s what’s new!
Free, Libre, and Open Source Software Leftovers
Free, Libre, and Open Source Software news
SQLite Release 3.53.0
new SQLite version
Programming Leftovers
Development news
GNU/Linux and BSD Leftovers
mostly GNU/Linux for today
"Linux Still Adding Support for Sega Dreamcast’s GD-ROM from the '90s" But Removing i486 Support
latest in Linux
Games: Steam Games, Island of Hearts, and More
gaming news
Kernel Space: Slop for Pay (or Pay-to-Slop, to Contaminate Linux), Investigating Split Locks, Booting Linux on Macs, "Linux 7" Out Shortly
kernel picks
today's howtos
Instructionals/Technical leftovers
EasyOS and Puppy GNU/Linux: umbc.edu mirror and tutorial updated
EasyOS news from BK
Open Hardware/Modding: STM32U575, PCIe Over Fiber, and Orange Pi 6 Plus
gadgets and circuits
GNU Health HIS server 5.0.7 and Trisquel GNU/Linux Has New Release
GNU Projects in the focus
Android Leftovers
How custom ROMs influenced Android's best features
Too Much LLM Slop About France and GNU/Linux [original]
In Google News, about half the 'articles' we see about France moving to GNU/Linux are mindless slopfarms
I stopped using top in Linux once I discovered this better terminal tool
You typically inherit the top command when you start using Linux
7 everyday devices that secretly run Linux
When Linus Torvalds released the Linux kernel all the way back in 1991
Free and Open Source Software
This is free and open source software
StartOS – Debian-based Linux distribution optimised for personal servers
StartOS is a graphical Linux distribution designed to turn a computer into a personal server for self-hosting services
PocketTerm35-Pi5 Handheld Linux Terminal with Raspberry Pi 5 and 3.5″ Display
Waveshare recently featured the PocketTerm35-Pi5, a handheld Linux terminal based on the Raspberry Pi 5
Stable kernels: Linux 6.19.12, Linux 6.18.22, Linux 6.12.81, Linux 6.6.134 and Linux 6.1.168
I'm announcing the release of the 6.19.12 kernel
Our Reach is Growing [original]
thankfully awareness of SLAPPs in the UK is improving
Little Snitch on GNU/Linux
Little Snitch spreading
Today in Techrights
Some of the latest articles
First Look at Shelly, a Modern Graphical Package Manager for Arch Linux
Meet Shelly, a new package management tool for Arch Linux that aims to be more intuitive and user-friendly than what’s already on the market.
today's leftovers
Server and BSD picks
Standards and Sharing Leftovers
FOSS and more
RSS, Web Development and Firefox Web Browser
Web centric news
PostgreSQL: Several New Releases and News
PostgreSQL leftovers
Programming Leftovers
Development picks
Security and Windows TCO Leftovers
Security leftovers
Openwashing by Linux Foundation for Outsourced (Spied on, Compromised) Computing
some promotional fluff
Debian Reproducible Builds in March 2026 and Position on Privacy-Killing Pseudo-Verification of "Age"
Debian leftovers
Linux-centric Devices, Open Hardware, and Mobile Gadgets
hardware leftovers
OpenSUSE Planet News Roundup and Tumbleweed Reviews
OpenSUSE updates
Slop in Kernel (Linux) and nftables
Linux leftovers (kernel)
EasyOS 7.2.4 and More EasyOS News/Developments
EasyOS leftovers
Red Hat, Fedora, and Qubes Leftovers
IBM stuff, slop hype as well
Ghostty in Ubuntu and Ubuntu 26.04 LTS Security Features
Ubuntu picks
today's howtos
Instructionals/Technical picks
This Week in GNOME and GitPulsar – a lightweight, GNOME-native Git GUI
GNOME picks
Akademy 2026 Call for Proposals, KDE in Graz
Planning ahead
Games: Humble Choice, Legendary, Godot, and More
9 new stories from GamingOnLinux
HowTo Geek (Valnet) Advocating Use of GNU/Linux on the Desktop/Laptop
3 new articles
Framework is teasing a lot of Linux for its April 21st event
It features a few clear references to Linux
GIMP @ Libre Graphics Meeting 2026
The Libre Graphics Meeting (LGM) is the annual meeting on Free and Open Source Software (FLOSS) for graphics
I switched to Ghostty and discovered Linux terminals could actually be fun
Recently, I decided to give other Linux terminal apps a try
Android Leftovers
Google Messages for Android rolls out Trash folder
Mass Layoffs at Red Hat This Week (Hundreds of Engineers Laid Off)
as reported by Techrights
PeaZip 11.0.0 Released with Improved Larger Archives Browsing
PeaZip, the free open-source file manager and archive utility, released new major 11.0.0 version few days ago
Free and Open Source Software
This is free and open source software
Analyzing KDE Project Health With git!
I was reading the latest edition of Kevin Ottens’ excellent weekly web review and one particular article caught my eye
stillOS – Linux distribution
stillOS is a Linux distribution aimed at making desktop Linux easier for mainstream users
Season Of KDE 2026 Conclusion
Another year, another successful Season Of KDE for 20 contributors
KDE Frameworks 6.25 Adds Support for Converting Momme Units in KRunner
KDE Frameworks 6.25 open-source software suite is out now with various improvements and bug fixes for KDE apps and the Plasma desktop environment. Here’s what’s new!
Slimbook Executive report 13 - Reasonable, can be awesomer
Not only that, probably the worst part of the whole story is that this Linux-flavored system used to work superbly, until it didn't
Today in Techrights
Some of the latest articles