Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

9to5Linux Weekly Roundup: June 28th, 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.

Arch Linux Installer Archinstall 4.4 Released with Niri DankMaterialShell Profile

Coming more than two months after Archinstall 4.3, the Archinstall 4.4 release introduces a Niri DankMaterialShell desktop profile, the ability to select the console font from the Locales menu, support for configuring the Plymouth boot splash screen, and an IWD standalone option to the Network configuration.

Linus Torvalds Announces First Linux Kernel 7.2 Release Candidate

Two weeks have passed since the release of Linux kernel 7.1 and the opening of the merge window for Linux kernel 7.2 for contributors to submit their patches, which means that it’s now time to test drive the Release Candidate (RC) versions during the next couple of months, every Sunday afternoon.

CachyOS Releases June 2026 Snapshot with Hyprland Noctalia Desktop Option

Still powered by the long-term supported Linux 6.18 LTS kernel series on the live session, the CachyOS ISO snapshot for June 2026 ships with the latest and greatest KDE Plasma 6.7 desktop environment by default, which is accompanied by the KDE Frameworks 6.27 and KDE Gear 26.04.2 software suites.

Shelly 2.4.1 GUI Package Manager for Arch Linux Improves Networking, Security

Coming a week after Shelly 2.4, the Shelly 2.4.1 release improves the HTTP stack by implementing a Happy Eyeballs (Fast Fallback) connection strategy that ensures slow or broken IPv6 paths don’t cause long timeouts by preferring IPv4 first. Fast Fallback makes dual-stack (IPv4/IPv6) applications responsive by racing connection attempts.

Linux Kernel 7.0 Reaches End of Life, It’s Time to Upgrade to Linux Kernel 7.1

Linux kernel 7.0 was released on April 12th, 2026, introducing new features like a stable Rust implementation, a new immutable root file system called “nullfs”, support for atomic 64-byte loads on ARM64 CPUs, support for RISC-V Zicfiss and Zicfilp extensions on RISC-V CPUs, and 128-bit atomic cmpxchg support on the LoongArch architecture.

LinuxGizmos.com

Forgix hybrid board pairs Raspberry Pi RP2354 MCU with Efinix Trion FPGA

Adiuvo Engineering’s new ultra-compact, dual-chip Forgix development board pairs the Raspberry Pi RP2354 microcontroller with an Efinix Trion T8 FPGA in a breadboard-friendly Teensy form factor. Designed for developers exploring hardware-software co-design, the board combines dual-core Arm Cortex-M33 processing with 7,384 logic elements of programmable fabric.

Jetway’s latest x86 industrial SBCs offer a choice of Pico-ITX or 3.5-inch form factors

Jetway’s new PIC-TWL1 (Pico-ITX) and F35-TWL3 (3.5-inch) industrial SBCs leverage Intel’s 6W Atom N150 “Twin Lake” processor to offer low-power x86 computing with dual Gigabit Ethernet, varying from a dual-display ultra-compact layout up to a triple-4K configuration featuring cellular-ready M.2 expansion and SATA storage.

CirkitScape Top HAT brings ADC, RS-485, GPIO expansion, and USB hub to Raspberry Pi boards

The CirkitScape Top HAT is a multi-function Raspberry Pi expansion board that combines analog input, GPIO expansion, RS-485 communication, USB expansion, and power management features in a compact HAT format. The board is designed to reduce wiring complexity for embedded Linux, automation, STEM, and field-deployed projects.

Collabora introduces Kraid Rust compiler for Panfrost Mali GPU driver

Collabora has introduced Kraid, a new Rust-based compiler for the Panfrost open-source driver stack for Arm Mali GPUs. The project is intended to replace the aging Bifrost-oriented compiler infrastructure with a cleaner design better suited to Valhall and newer Mali GPU architectures.

WCH CH32V006EVT board supports Zephyr for low-cost RISC-V development

Olimex recently featured the WCH CH32V006EVT, a low-cost evaluation board for the RISC-V-based CH32V006K8U6 microcontroller. The board is designed around WCH’s CH32V006 family and provides a compact platform for experimenting with the QingKe V2C 32-bit RISC-V core, Zephyr support, and basic embedded development features.

Bash-5.2 Release available

posted by Roy Schestowitz on Sep 27, 2022

Introduction
============

The first public release of bash-5.2 is now available with the URLs
ftp://ftp.cwru.edu/pub/bash/bash-5.2.tar.gz ftp://ftp.gnu.org/pub/gnu/bash/bash-5.2.tar.gz
and from the master branch of the bash git repository (http://git.savannah.gnu.org/cgit/bash.git/log/) and the usual GNU mirror sites.
Bash is the GNU Project's Bourne Again SHell, a complete implementation of the POSIX shell spec, but also with interactive command line editing, job control on architectures that support it, csh-like features such as history substitution and brace expansion, and a slew of other features. For more information on the features of Bash that are new to this type of shell, see the file `doc/bashref.texi'. There is also a large Unix-style man page. The man page is the definitive description of the shell's features.
This tar file includes the formatted documentation (pdf, postscript, dvi, info, and html, plus nroffed versions of the manual pages).
Please use `bashbug' to report bugs with this version. It is built and installed at the same time as bash.
Installation ============
Please read the README file first.
Installation instructions are provided in the INSTALL file.
New Features ============
This is an update to the fifth major release of bash.
Read the file NEWS in the bash-5.2 distribution for a complete description of the new features. A copy of the relevant portions is included below.
This release fixes several outstanding bugs in bash-5.1 and introduces a number of new features.
There are a number of bug fixes, including several bugs that caused the shell to crash. Complete details are available in the CHANGES file.
The most notable new feature is the rewritten command substitution parsing code, which calls the bison parser recursively. This replaces the ad-hoc parsing used in previous versions, and allows better syntax checking and catches syntax errors much earlier. The shell attempts to do a much better job of parsing and expanding array subscripts only once; this has visible effects in the `unset' builtin, word expansions, conditional commands, and other builtins that can assign variable values as a side effect. The `unset' builtin allows a subscript of `@' or `*' to unset a key with that value for associative arrays instead of unsetting the entire array (which you can still do with `unset arrayname'). There is a new shell option, `patsub_replacement'. When enabled, a `&' in the replacement string of the pattern substitution expansion is replaced by the portion of the string that matched the pattern. Backslash will escape the `&' and insert a literal `&'. This option is enabled by default. Bash suppresses forking in several additional cases, including most uses of $( All the new features are described below.
Readline has new features as well. There is a new option: `enable-active-region'. This separates control of the active region and bracketed-paste. It has the same default value as bracketed-paste, and enabling bracketed paste enables the active region. Users can now turn off the active region while leaving bracketed paste enabled. Two new bindable string variables are available; their values are terminal escape sequences that set the color used to display the active region and turn it off, respectively. If set, these are used in place of terminal standout mode. Finally, Readline now checks for changes to locale settings (LC_ALL/LC_CTYPE/ LANG) each time it is called, and modifies the appropriate locale-specific display and key binding variables when the locale changes.
There are a few incompatible changes between bash-5.1 and bash-5.2. Here- documents and here-strings use temporary files if the shell compatibility level is 50 or lower. The `unset' builtin in bash-5.2 treats array subscripts `@' and `*' differently than previous versions, and differently depending on whether the array is indexed or associative. Bash-5.2 attempts to prevent double-expansion of array subscripts under certain circumstances, especially arithmetic evaluation, by acting as if the `assoc_expand_once' shell option were set. Set the compatibility level appropriately to revert to previous behavior; details are in the file COMPAT.
Bash can be linked against an already-installed Readline library rather than the private version in lib/readline if desired. Only readline-8.1 and later versions are able to provide all of the symbols that bash-5.2 requires; earlier versions of the Readline library will not work correctly.
A complete list of changes between bash-5.1 and bash-5.2 is available in the file CHANGES; the complete list is too large to include in this message.
Readline ========
Also available is a new release of the standalone Readline library, version 8.2, with its own configuration scripts and Makefiles. It can be retrieved with the URLs
ftp://ftp.cwru.edu/pub/bash/readline-8.2.tar.gz ftp://ftp.gnu.org/pub/gnu/readline/readline-8.2.tar.gz
and from the master branch of the GNU readline git repository (http://git.savannah.gnu.org/cgit/readline.git/log/) and the usual GNU mirror sites.
The formatted Readline documentation is included in the readline distribution tar file.
The changes in Readline are described in a separate announcement.
As always, thanks for your help.
Chet
+========== NEWS ==========+ This is a terse description of the new features added to bash-5.2 since the release of bash-5.1. As always, the manual page (doc/bash.1) is the place to look for complete descriptions.
1. New Features in Bash
a. The bash malloc returns memory that is aligned on 16-byte boundaries.
b. There is a new internal timer framework used for read builtin timeouts.
c. Rewrote the command substitution parsing code to call the parser recursively and rebuild the command string from the parsed command. This allows better syntax checking and catches errors much earlier. Along with this, if command substitution parsing completes with here-documents remaining to be read, the shell prints a warning message and reads the here-document bodies from the current input stream.
d. The `ulimit' builtin now treats an operand remaining after all of the options and arguments are parsed as an argument to the last command specified by an option. This is for POSIX compatibility.
e. Here-document parsing now handles $'...' and $"..." quoting when reading the here-document body.
f. The `shell-expand-line' and `history-and-alias-expand-line' bindable readline commands now understand $'...' and $"..." quoting.
g. There is a new `spell-correct-word' bindable readline command to perform spelling correction on the current word.
h. The `unset' builtin now attempts to treat arguments as array subscripts without parsing or expanding the subscript, even when `assoc_expand_once' is not set.
i. There is a default value for $BASH_LOADABLES_PATH in config-top.h.
j. Associative array assignment and certain instances of referencing (e.g., `test -v' now allow `@' and `*' to be used as keys.
k. Bash attempts to expand indexed array subscripts only once when executing shell constructs and word expansions.
l. The `unset' builtin allows a subscript of `@' or `*' to unset a key with that value for associative arrays instead of unsetting the entire array (which you can still do with `unset arrayname'). For indexed arrays, it removes all elements of the array without unsetting it (like `A=()').
m. Additional builtins (printf/test/read/wait) do a better job of not parsing array subscripts if array_expand_once is set.
n. New READLINE_ARGUMENT variable set to numeric argument for readline commands defined using `bind -x'.
o. The new `varredir_close' shell option causes bash to automatically close file descriptors opened with {var} p. The `$0' special parameter is now set to the name of the script when running any (non-interactive) startup files such as $BASH_ENV.
q. The `enable' builtin tries to load a loadable builtin using the default search path if `enable name' (without any options) attempts to enable a non-existent builtin.
r. The `printf' builtin has a new format specifier: %Q. This acts like %q but applies any specified precision to the original unquoted argument, then quotes and outputs the result.
s. The new `noexpand_translations' option controls whether or not the translated output of $"..." is single-quoted.
t. There is a new parameter transformation operator: @k. This is like @K, but expands the result to separate words after word splitting.
u. There is an alternate array implementation, selectable at `configure' time, that optimizes access speed over memory use (use the new configure --enable-alt-array-implementation option).
v. If an [N]<&WORD- or [N]>&WORD- redirection has WORD expand to the empty string, treat the redirection as [N]<&- or [N]>&- and close file descriptor N (default 0).
w. Invalid parameter transformation operators are now invalid word expansions, and so cause fatal errors in non-interactive shells.
x. New shell option: patsub_replacement. When enabled, a `&' in the replacement string of the pattern substitution expansion is replaced by the portion of the string that matched the pattern. Backslash will escape the `&' and insert a literal `&'.
y. `command -p' no longer looks in the hash table for the specified command.
z. The new `--enable-translatable-strings' option to `configure' allows $"..." support to be compiled in or out.
aa. The new `globskipdots' shell option forces pathname expansion never to return `.' or `..' unless explicitly matched. It is enabled by default.
bb. Array references using `@' and `*' that are the value of nameref variables (declare -n ref='v[@]' ; echo $ref) no longer cause the shell to exit if set -u is enabled and the array (v) is unset.
cc. There is a new bindable readline command name: `vi-edit-and-execute-command'.
dd. In posix mode, the `printf' builtin checks for the `L' length modifier and uses long double for floating point conversion specifiers if it's present, double otherwise.
ee. The `globbing' completion code now takes the `globstar' option into account.
ff. `suspend -f' now forces the shell to suspend even if job control is not currently enabled.
gg. Since there is no `declare -' equivalent of `local -', make sure to use `local -' in the output of `local -p'.
2. New Features in Readline
a. There is now an HS_HISTORY_VERSION containing the version number of the history library for applications to use.
b. History expansion better understands multiple history expansions that may contain strings that would ordinarily inhibit history expansion (e.g., `abc!$!$').
c. There is a new framework for readline timeouts, including new public functions to set timeouts and query how much time is remaining before a timeout hits, and a hook function that can trigger when readline times out. There is a new state value to indicate a timeout.
d. Automatically bind termcap key sequences for page-up and page-down to history-search-backward and history-search-forward, respectively.
e. There is a new `fetch-history' bindable command that retrieves the history entry corresponding to its numeric argument. Negative arguments count back from the end of the history.
f. `vi-undo' is now a bindable command.
g. There is a new option: `enable-active-region'. This separates control of the active region and bracketed-paste. It has the same default value as bracketed-paste, and enabling bracketed paste enables the active region. Users can now turn off the active region while leaving bracketed paste enabled.
h. rl_completer_word_break_characters is now `const char *' like rl_basic_word_break_characters.
i. Readline looks in $LS_COLORS for a custom filename extension (*.readline-colored-completion-prefix) and uses that as the default color for the common prefix displayed when `colored-completion-prefix' is set.
j. Two new bindable string variables: active-region-start-color and active-region-end-color. The first sets the color used to display the active region; the second turns it off. If set, these are used in place of terminal standout mode.
k. New readline state (RL_STATE_EOF) and application-visible variable (rl_eof_found) to allow applications to detect when readline reads EOF before calling the deprep-terminal hook.
l. There is a new configuration option: --with-shared-termcap-library, which forces linking the shared readline library with the shared termcap (or curses/ncurses/termlib) library so applications don't have to do it.
m. Readline now checks for changes to locale settings (LC_ALL/LC_CTYPE/LANG) each time it is called, and modifies the appropriate locale-specific display and key binding variables when the locale changes.
-- ``The lyf so short, the craft so long to lerne.'' - Chaucer ``Ars longa, vita brevis'' - Hippocrates Chet Ramey, UTech, CWRU chet@case.edu http://tiswww.cwru.edu/~chet/

Other Recent Tux Machines' Posts

This Week in Plasma: Post-6.7 Bug-fixing
This week members of the core Plasma team spent almost all of their time in bug-fixing mode
Debian-Based SparkyLinux 2026.06 Rolling Brings Linux Kernel 7.1 Support
SparkyLinux 2026.06 distribution is now available for download based on Debian 14 “Forky” and powered by Linux kernel 7.0, but also offering support for installing the latest Linux 7.1 kernel series.
COSMIC 1.1 Desktop Environment Released with COSMIC Monitor and Improvements
COSMIC 1.1 desktop environment is now available with COSMIC Monitor and improvements to COSMIC Files, COSMIC Term, COSMIC Edit, COSMIC Applets, COSMIC Comp, and more.
Open Hardware/Modding: Raspberry Pi, Commodore, and Hacking Routers Like It’s 2008
devices with Linux focus/slant
Shotcut 26.6 Open-Source Video Editor Released with Vulkan on Linux Support
Shotcut 26.6 open-source video editor is now available for download with initial support for OpenFX plugins, Vulkan on Linux support, initial support for VST2 and LV2 audio plugins, and more.
I refuse to upgrade to Windows 11, here's what I'm doing instead
Turns out, Linux Mint worked a ton better than I thought it would
 
GNU Ships GCC 14.4 as a Bug-Fix Release
On Friday, the Gnu project announced the release of the GNU Compiler Collection version 14.4
Android Leftovers
I reclaimed storage by changing one Android setting about deleted files
Drauger OS 7.8 aims to turn Ubuntu into a gaming Linux distro with KDE Plasma
One of the coolest things about the Linux community is that
Software Enshittification or Freedom? It's not a hard choice!
I'm going to talk about enshittification of software, of the world wide web, and of the devices you may think of as yours
22+ Years of Women in Tech [original]
Women in tech can only ever feel welcomed if all of us - men included - resist misogyny
Free and Open Source Software
This is free and open source software
Every Physics Teacher (And Student) Should Try This Open Source Software
The free software I used for years as Physics student
Review: PCLinuxOS 2026.05
It has been a while since I last took the PCLinuxOS distribution for a test drive
Free software communities often start small
I had a challenging course on the Assembly and C programming languages
Europe Should Adopt European Web Browsers [original]
We need more browser diversity
Old Vintage Computing Research: Working around dragons with the Lemote Yeeloong laptop and OpenBSD
And since it can run OpenBSD...
Today in Techrights
Some of the latest articles
9to5Linux Weekly Roundup: June 28th, 2026
The 298th installment of the 9to5Linux Weekly Roundup is here for the week ending June 28th, 2026.
Arch Linux Installer Archinstall 4.4 Released with Niri DankMaterialShell Profile
Archinstall 4.4 text-mode installer for the Arch Linux distribution is now available with a Niri DankMaterialShell desktop profile, console font selection, Plymouth configuration setup, and more.
New Releases of Univention Corporate Server and FreeBSD 15.1
GNU/Linux and BSDs
I finally understand why Arch Linux isn't for me—and probably isn't for you either
Arch and Arch-based distros get a lot of buzz
Ubuntu tries to improve GNOME. Fedora convinced me it didn't need fixing
Ubuntu has done a lot for the Linux desktop
Linus Torvalds Announces First Linux Kernel 7.2 Release Candidate
Linus Torvalds announced the general availability of the first Release Candidate version of the upcoming Linux 7.2 kernel series for public testing. Here’s what to expect!
Best Free and Open Source Software, and many more
Only free and open source software qualifies for inclusion
Velox Linux – Linux distribution
Velox Linux is a Linux distribution for x86_64 systems distributed as a bootable ISO image
Teaching digiKam to Understand You: Natural Language Search with Local LLMs
I’ve been hanging around KDE apps since I was a teenager
The State of the Tux in First Half of 2026 [original]
When we say "the Tux" we mean Tux Machines
CachyOS Releases June 2026 Snapshot with Hyprland Noctalia Desktop Option
The CachyOS ISO snapshot for June 2026 is now available for download with Hyprland Noctalia desktop option, DNS-over-QUIC support, Python and GCC performance improvements, and more.
The Purpose of Tux Machines [original]
It just makes it easier to find interesting articles (discovery)
Free, Libre, and Open Source Software Leftovers
FOSS picks
Programming Leftovers
Development related news
GNU/Linux Distributions and Operating Systems: OpenSUSE, Slackware, Fedora, and More
OS related updates
Videos/Audiocasts/Shows: EasyOS and This Week in Linux
new multimedia picks
Games: Steam Games, Completionism, Steam Machines, and More
projects and op-eds
today's howtos
Instructionals/Technical leftovers
GNU Parallel, onak, and Software Leftovers
applications and more
DCloud Uni-App Used for Scams, DirtyClone the New Hype for Privilege Escalation Bug (Local)
security leftovers
Android Leftovers
Android quietly slipped a photo scanner onto your phone — here's how to shut it off
I started managing my Linux desktop like a server, and everything got easier
Linux servers and desktop distros are essentially the same thing
I benchmarked my gaming PC on Windows vs Linux, and the difference was bigger than I expected
I've got a dual-booting PC with both Windows 11 and EndeavourOS Linux on it
Best Free and Open Source Software, and many more
This is free and open source software
Margine – immutable Linux desktop distribution built for creators
This is free and open source software
XDG Desktop Portal Location API for KDE applications
In my last post on Android platform integration I had suggested increasing the focus on Linux on mobile phones, due to Google’s ongoing attempts to close down Android for us
Stable kernels: Linux 7.1.2, Linux 7.0.14, and Linux 6.18.37
I'm announcing the release of the 7.1.2 kernel
Linux Mint vs RefreshOS: I found the best distro for new users
These two user-friendly distributions take different routes to the 'best Linux' crown
I made Linux look like Windows 11 for free - with a few simple tweaks to Zorin OS
If you fancy a Windows 11 layout, but want to use Linux, you're in luck
Historic Week Ahead (Mass Layoffs at Microsoft) [original]
this coming week we expect to see thousands of headlines about Microsoft layoffs
Today in Techrights
Some of the latest articles
Shelly 2.4.1 GUI Package Manager for Arch Linux Improves Networking, Security
Shelly 2.4.1 graphical package manager for Arch Linux distributions is now available for download with improvements to AppImage and Flatpak support, networking and security, command line interface, and more.
Run, Forrest, Run [original]
We keep running this community site
statCounter Measures GNU/Linux at Over 4% (Windows Has Fallen Further to All-Time Low) as June Reaches Last Week [original]
The layoffs at Microsoft have already begun
Community News and Community Shield [original]
July is nearly upon us
GNU/Linux and BSD Leftovers
mostly GNU/Linux
Ubuntu 26.10 “Stonking Stingray” Snapshot 2 Is Now Available for Download
Ubuntu 26.10 “Stonking Stingray” Snapshot 2 is now available for public testing for early adopters and application developers.
News From EasyOS: Video, New Release, and Limine
latest from BK
KDE Goals and KDE-Connected Hiring
KDE news from Techpaladin
Free, Libre, and Open Source Software, LibreOffice, and Open Data
FOSS and more
Web Browsers/Web Servers/Feed Readers and XMPP
Web and Net related news
PostgreSQL Releases and Events
from PostgreSQL's site
Programming Leftovers
Development related news
Linux and Android Devices, Open Hardware Projects
hardware leftovers
redhat.com as Festival of LLM Slop Plagiarism
very dominant this Friday
Fedora News, Flock 2026 and Devconf.cz 2026
Fedora and related picks
AArch64 Desktop Experiment and What Made GNU/Linux Adoption Easier
2 recent articles
Server: UsenetServer and Lots of Kubernetes Picks
mostly Kubernetes updates
Audiocasts/Shows: mintCast, Hackaday Podcast, BSD Now, and More
recent episodes
NVIDIA 580.173.02 Linux Graphics Driver Released for GeForce 10 Series
NVIDIA 580.173.02 Linux graphics driver is now available for GeForce 10 Series GPUs to address a few bugs and improve performance.
Graphics and Kernel: Bugs, Tiny Compiler, and More
4 more stories
today's howtos
Instructionals/Technical leftovers
Games: Godot Engine, ASYLUM, DELTARUNE, and More
gaming leftovers
Security Patches and Other Security News
Security leftovers
Companies That Use Slop to Bombard FOSS Projects With False Bug Reports (False Positives) - Including Microsoft and GitHub, OpenAI, Anthropic - Misuse 'Linux' Brand to Claim It's OK
lots of noise today
Bad Neighbours Offline and Online [original]
Today or tomorrow morning it'll be 7 weeks since the shells and the fish got clean tanks
Linux Kernel 7.0 Reaches End of Life, It’s Time to Upgrade to Linux Kernel 7.1
Linux kernel 7.0 reached end of life and all users are now recommended to upgrade their systems to the latest Linux 7.1 kernel series as soon as possible.
Alpine 3.22.5, 3.23.5 released
The Alpine Linux project is pleased to announce the immediate availability of new stable releases
Android Leftovers
Motorola MA2 wireless Android Auto adapter, ‘the only one engineered by Google,’ gets a release date and full details
Fedora beats Ubuntu in almost every way—except where it matters most
Fedora has quietly turned into one of the best Linux distributions in almost every way that matters
I stopped using beginner Linux distros, and my workflow finally made sense
The Linux community has lauded "beginner-friendly" distros like Linux Mint almost as long as Linux has existed
Best Free and Open Source Software
Only free and open source software is eligible for inclusion
Linoutrox – minimal Debian-based Linux distribution
Linoutrox is a minimal Linux distribution based on Debian
Today in Techrights
Some of the latest articles
Recent Videos/Audiocasts/Shows: GNU/Linux and More
GNU/Linux videos from Invidious