Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

2.16-inch AMOLED SF32LB52X-based dev board offers LoRa, GNSS, and Bluetooth 5.3

LILYGO’s T-Display SF32 is a compact development platform built around the SiFli SF32LB52X ultra-low-power AIoT microcontroller. The device combines a 2.16-inch 480 × 480 AMOLED touchscreen with dual Arm Cortex-M33 cores, an ePicasso 2.5D graphics engine, LoRa connectivity, Bluetooth 5.3, and onboard battery power.

1.35-liter mini PC runs Core Ultra 200 with triple displays and 96GB DDR5

Shuttle’s XPC slim DH810S is a 1.35-liter barebone PC supporting Intel Core Ultra 200 “Arrow Lake-S” processors with up to 24 cores and a 13 TOPS NPU. The system is intended for digital signage, POS/POI, healthcare, industrial, and edge AI applications.

9to5Linux

Wireshark 4.6.8 Improves Protocol and Capture File Support, Fixes More Bugs

Coming a month after Wireshark 4.6.7, the Wireshark 4.6.8 release updates support for the ANSI_TCAP, ASN.1 BER, ASTERIX, BT ATT, BT AVRCP, BT BR/EDR RF, BT HFP, C12.22, CIGI, CMS, COSEM, EBHSCR, ESS, FP, GSM SIM, GTPv2, H.245, Kerberos, KNX/IP, LBMSRS, NAS-5GS, RELOAD, Rlogin, RRC, SSH, X.509AF, and X.509IF protocols.

Shelly 3.0.4 GUI Package Manager for Arch Linux Adds New Search Experience

Shelly 3.0.4 is here to introduce a new search experience, add an initial TUI (text-mode UI) to accompany the GUI and CLI interfaces, improve the AppImage integration, improve Flatpak support with end-of-life detection and rebase support, as well as a new remove dialog, and add an AUR link to the AUR detail view.

QEMU 11.1 Released with Universal Flash Storage (UFS) Emulation Support

Coming three and a half months after QEMU 11, the QEMU 11.1 release introduces Universal Flash Storage (UFS) emulation support for Write Booster (device-level caching) and Host-Initiated Defragmentation (HID) support based on the UFS 4.1 specification.

GNOME Devs Share GNOME Shell Design Ideas for Future GNOME Releases

As a GNOME user, I have to admit that some of these concepts are very exciting, especially the transparent panel. Not that I like using two panels/launchers (top and bottom), but this is the main reason most people think GNOME is “ugly” and are using an extension like Dash to Panel or Dash to Dock.

Flatpak 1.18.1 Linux App Sandboxing Framework Brings Bug and Security Fixes

Coming two months after Flatpak 1.18, the Flatpak 1.18.1 release is here to fix a regression in the portal flatpak-spawn environment handling, crashes in the portal update monitor, a GI annotation issue for flatpak_instance_get_al, and an error-out when file forwarding of empty paths is attempted.

Internet Society

Advancing the Safer Internet Initiative for Everyone

When we launched the Safer Internet Initiative earlier this year, our message was clear: connectivity is essential, but it is not enough. Everyone needs to feel safe, protected, and empowered when they go online.

Youth in Action: Contributing to a More Connected and Inclusive Digital Future

Across the world, young people are shaping the future of the Internet in ways that reflect the realities of their communities.

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

Microsoft's Latest Move Will Accelerate the Adoption of GNU/Linux at the OEMs/Channel [original]
The latest move from Microsoft defies logic
Microsoft apparently just upped its Windows licence fee for OEM handheld and PC makers, and I'm taking it as an excuse to switch to Linux
Pretty bold to assume we all want to use Windows, Microsoft.
FSF Copycat "Software Freedom Conservancy" Makes Copycat FSF Award ("Award in Software Freedom"), Gives it to IBM Staff That Tried to Cancel FSF Founder
as expected
Games: Knytt Classic, GNOME Crosswords, 'Xodus', and More
Many gaming picks today
QEMU 11.1 Released with Universal Flash Storage (UFS) Emulation Support
QEMU 11.1 open-source virtualization software is now available for download with Universal Flash Storage (UFS) emulation support, ARM and RISC-V improvements, and more.
Rounding Up GNU/Linux Share to Double-Digit Market Share [original]
As of this morning
Fairphone with Ubuntu Touch: Is It Feasible? 2026 Guide
Fairphone with Ubuntu Touch: Is It Feasible? 2026 Guide
CachyOS Has New Release
CachyOS ISO out
 
KDE Announces “Bulletproof” KDE Suite with Three Years of Support
KDE announces “bullet-proof” KDE suite with three years of bug fixes and security updates for KDE Plasma 6.6 LTS and related KDE software.
Security Leftovers
Security picks
GNU/Linux and BSD Leftovers
mostly GNU/Linux
Free, Libre, and Open Source Software Leftovers
FOSS leftovers
PostgreSQL and More
Databases related picks
Programming Leftovers
Development related picks
Linux Hardware, Open Hardware, and Android Leftovers
Arduino and more
Fedora and Red Hat Leftovers
especially the latter
today's howtos
Instructionals/Technical picks
Games: GodotFest, Gambonanza, and More
gaming leftovers
My kid's first PC won't run Windows—it'll use one of these 5 Linux distros instead
Most distro recommendations for kids focus on simplicity
Daniel Pocock in a British Election Today [original]
That helps raise awareness of issues he routinely covers
UserLAnd gives you a real Linux distro on Android—without Termux's compromises
Most Android users don't realize their phone can run a full Linux environment
New Forlinx SBC: A Raspberry Pi alternative with dual-core A53 and Linux support
Forlinx is introducing a new alternative to the Raspberry Pi
LightDM returns from the dark with first release in 4 years
LightDM, Ubuntu’s former display manager, has had its first new release in four years – and the first under a new set of maintainers
QEMU 11.1.0 Released with Recent ARM CPU Support & QMP Monitor Hot-Plug
QEMU, the open-source virtualizer and virtual machine monitor, released new 11.1.0 version one day ago
Free and Open Source Software
This is free and open source software
Sparky Linux just restored 32-bit support - why that still matters
Don't throw it away - Sparky Linux has decided not to give up on the aging architecture
VLC is Wrongly Blamed for Microsoft Defender's Clumsiness
VLC takes a long time to play MP3 on Windows? Blame it on Abusive Monopolist Microsoft Defender, not VLC
Super Hot Today [original]
Why travel to the Mediterranean?
Graphics/Games: LACT, 10 Million Pixels, Bottles, and More
latest 10 from GamingOnLinux
IBM's own conflict-of-interest and promotion of slop plagiarism (pyramid scheme)
Red Hat leftovers
Today in Techrights
Some of the latest articles
LWN Articles on Kernel and 2026 Linux Storage, Filesystem, Memory Management, and BPF Summit
outside paywall today
Wireshark 4.6.8 Improves Protocol and Capture File Support, Fixes More Bugs
Wireshark 4.6.8 open-source network protocol analyzer is now available for download with updated protocol and capture file support, as well as various bug and security fixes.
today's leftovers
mostly GNU/Linux stories
Canonical Promotes Slop to Participate in the Pyramid Scheme, Ubuntu 26.10 Wallpaper Competition
Canonical and Ubuntu news
KDE: KEcoLab, Skrooge, and Mankala
KDE updates
GNU/Linux Distributions and Operating Systems
3 picks
Free, Libre, and Open Source Software; Standards Discussed
FOSS mostly
Security Leftovers
Security patches and more
Exploring OpenBSD and "6 BSDs worth trying instead of Linux"
BSD picks
Update on openSUSE.Asia Summit 2026 Gettinf Agama dressed for success
openSUSE leftovers
IBM Red Hat Leftovers
Windows and more
Programming Leftovers
Development picks
today's howtos
only 4 today
Microsoft Has 62 Critical Holes
Windows TCO
Linux Devices and Open Hardware/Modding Leftovers
many for today
Games: Armada, Steam, Teufelskreis, and More
mostly from GoL
Proton GE Updated
3 picks regarding Proton GE
Mozilla Pushing Slop and Paying the Price for Outsourcing to Microsoft (Proprietary GitHub)
bad and bad
Linux 7.2-rc7
I can't say that I'm exactly thrilled about the size of this all
Android Leftovers
Android Just Lost A Major Player: Why OnePlus Leaving The USA Matters
6 essential Linux desktop features that still haven’t made it to Windows
It’s endured so much that many people are unaware of Linux’s desktop benefits
Free and Open Source Software
Termora offers an unusually comprehensive set of tools in a single open source application
Shelly 3.0.4 GUI Package Manager for Arch Linux Adds New Search Experience
Shelly 3.0.4 graphical package manager for Arch Linux distributions is now available for download with a new search experience, initial text-mode UI, improved AppImage integration, and more.
Bullying Women During Family Events and Holidays [original]
Rianne isn't easy to scare and she's practical like me
23 Years After GNU/Linux Was a Neglected Niche [original]
Is the movement finally bearing huge fruit?
GNU/Linux at 11% Globally [original]
Clownflare does not quite refute this
Free and Open Source Software
This is free and open source software
We Don't Need Search Engines and Social Control Media [original]
For many people it's just natural to visit us and we have RSS feeds
Election Tomorrow Has Daniel Pocock on the Ballot [original]
It's unlikely he'll win a seat, but he can win exposure
Today in Techrights
Some of the latest articles
GNOME Devs Share GNOME Shell Design Ideas for Future GNOME Releases
The GNOME design team talks about new search overlay, editable Quick Settings, transparent panel, Mosaic tiling, revamped window switching, login grid, dynamic batter icon, and more.
Android Leftovers
Motorola officially confirms over 50 phones for Android 17, but some popular names are missing
I ditched traditional Linux for an immutable distro, but only on my gaming handheld
Immutable Linux distros are options you'll often see recommended, particularly for newcomers to the platform who may not want to deal with potential problems to solve
These 3 Linux distros make leaving Windows feel natural
Zorin OS is my favorite Linux distro and the one I usually recommend Windows users try first
Linux Mint 22.3 HWE ISOs Now Available for Download with Linux Kernel 7.0
Linux Mint 22.3 HWE ISO images are now available for download powered by the Linux 7.0 kernel series from Ubuntu 24.04.5 LTS.
Free and Open Source Software
This is free and open source software
HoopoeLinux – billed as a light distribution
HoopoeLinux is a privacy-focused Linux distribution based on Ubuntu Cinnamon Crest
GNOME Shell Design Dreams
The GNOME Shell user interface has mostly seen minor refinements and quality of life updates in recent cycles
GNU/Linux Leftovers
GNU/Linux and more
Free, Libre, and Open Source Software Leftovers
FOSS and more
Leftovers About Web Browsers/Web Servers/Feed Readers
WWW related leftovers
Audiocasts/Shows: Late Night Linux and LINUX Unplugged
2 new episodes
Mozilla: Thunderbird, Firefox, and More
Mozilla news
Programming Leftovers
Development picks
Security Leftovers
Security picks
Hardware Projects: RISC-V, Raspberry Pi, and More
today's hardware picks
Linux desktop use surged to 22% on one workday, Cloudflare data shows
I dug deeper and found that data from popular content delivery network Cloudflare also showed that the Linux desktop has been gaining popularity
Fedora and Red Hat Leftovers
not much about Fedora
Shelly Dumps Microsoft .NET, NLnet Funds a Microsoft Mono Problem (SparkleShare)
good and bad
today's howtos
Instructionals/Technical picks
Applications: Hyperswitch, QPDF Coverage
software picks
Linux Foundation, Linux Fu, and Linux Kernel
Linux leftovers
DebConf27 Debian Developers Conference to Be Held in Asahikawa, Japan
The DebConf27 Debian conference will be held from September 5th to September 11th, 2027, in Asahikawa, Hokkaido, Japan. Here’s how to attend and what you need to know.
Flatpak 1.18.1 Linux App Sandboxing Framework Brings Bug and Security Fixes
Flatpak 1.18.1 Linux application sandboxing and distribution framework is now available for download with various bug and security fixes for the stable Flatpak 1.18 series.
Four Weeks After the Hearing at the High Court [original]
Garrett's lawyer and barrister only spent a few years in this occupation
Resisting Misogyny [original]
We stand with (and for) equality, justice, and freedom
Android Leftovers
I finally stopped missing Android notifications by changing one hidden setting
How I turned my old Fire Tablet into a portable Linux terminal
Transforming an old Fire Tablet into a Linux Terminal is a fun weekend project for modding and home lab enthusiasts
I finally switched Linux desktops, and COSMIC is the one to blame
Ever since my first experience with Arch Linux last year, my preference when it comes to Linux desktops has been KDE
If I were starting over with Linux, here's why I'd choose Fedora
For most of my computing life, Debian and Ubuntu have been my go-to Linux distros
Linux Mint Devs Change the Way Linux Kernels Are Tracked
The Linux Mint developers have re-implemented kernel management within the System Administration tool and are changing how kernels are being tracked.
Sparky 8.4
There is the fourth update of Sparky 8 – 8.4 available to download
Free and Open Source Software
This is free and open source software
Zyphor OS – Linux distribution
Zyphor OS is a Debian and Kali-based Linux distribution focused on simplicity, performance, and learning
Today in Techrights
Some of the latest articles