Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

Budgie 10.10 Desktop Environment Released as the First Wayland-Only Version

Work on Budgie 10.10 kicked off more than a year ago, and many of Budgie’s components have already been ported to Wayland during this time. As a result, Budgie 10.10 is here as the first release of this modern desktop environment to mark the official migration from X11 to Wayland.

KDE Plasma 6.6 Desktop Is Coming on February 17th, Here’s What to Expect

KDE Plasma 6.6 promises a new “Plasma Login Manager” display manager that could replace existing login managers like SDDM in popular distributions shipping with a KDE Plasma edition, such as the upcoming Fedora Linux 44, but most probably also in CachyOS, EndeavourOS, and other distros.

Debian 13.3 “Trixie” Released with 108 Bug Fixes and 37 Security Updates

Coming almost two months after Debian 13.2, the Debian 13.3 point release is here to provide the community with an updated installation media targeting those who want to deploy the latest Debian 13 “Trixie” operating system series on new hardware or those who had issues with the previous ISO releases.

Arch Linux-Based ArchBang Linux Distro Introduces New Application Launcher

Synced with the upstream Arch Linux repositories, the new ArchBang Linux release (v1001) introduces wmenu, a dynamic menu for Wayland and wlroots-based Wayland compositors like Labwc, as a drop-in replacement for the dmenu application launcher.

KDE Frameworks 6.22 Fixes Multiple Clipboard-Related Issues on Wayland

KDE Frameworks 6.22 is here to fix multiple clipboard-related issues on Wayland, including an issue that caused the current copied data from the Klipper clipboard app to be lost when closing the pop-up without selecting anything, and an issue where the Spectacle screenshot tool failed to copy screenshots to the clipboard.

LinuxGizmos.com

Radxa NX4 system-on-module runs RK3576 with LPDDR5 and 6 TOPS AI

The Radxa NX4 integrates an octa-core CPU configuration with four Arm Cortex-A72 cores and four Cortex-A53 cores, paired with an Arm Mali-G52 MC3 GPU supporting OpenGL ES, OpenCL, and Vulkan.

ASUS UGen300 USB AI Accelerator targets edge inference with Hailo-10H

The UGen300 is built around the Hailo Hailo-10H processor, which ASUS rates at up to 40 TOPS (INT4) of inference performance. The accelerator integrates 8 GB of LPDDR4 memory, allowing models to run locally on the device without consuming host system memory or CPU resources.

Linux Box Dev Edition brings Armbian Linux with Home Assistant support

THIRDREALITY lists a quad-core processor, 2 GB of RAM, and 8 GB of onboard storage, along with integrated wireless connectivity including dual-band Wi-Fi (2.4 GHz and 5 GHz), Bluetooth/BLE, Thread, and standard Zigbee.

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

Budgie 10.10 Desktop Environment Released as the First Wayland-Only Version
The Budgie desktop developers announced today the release and general availability of the Budgie 10.10 desktop environment, which is the last update in the Budgie 10 series and the first to go Wayland-only.
Debian 13.3 “Trixie” Released with 108 Bug Fixes and 37 Security Updates
Today, the Debian Project announced the release and general availability of Debian 13.3 as the third update to the latest Debian GNU/Linux 13 “Trixie” operating system series.
KDE Plasma 6.6 Desktop Is Coming on February 17th, Here’s What to Expect
KDE Project’s upcoming KDE Plasma 6.6 desktop environment series is expected on February 17th, 2026, and it’s packed with many new features and improvements, so let’s take a look at the biggest changes so far.
First Look at Mageia 10 – Alpha Release Now Available for Public Testing
After many months of hard work, the upcoming Mageia 10 Linux distribution now has its first alpha release available for public testing if you want to help the devs fix bugs before the final release hits the streets.
Intermittent Networking Issue Resolved [original]
upstream
Games: Steam on ARM64 With GNU/Linux
2 stories
New GeForce NOW native Linux support could lure Windows 10 refugees
NVIDIA is reportedly preparing to bring NVIDIA GeForce NOW to Linux so that users finally have native support for the cloud gaming service
Vitalik Buterin Rides the Credibility of Linux
Linux as a brand
Manjaro 26.0 Released with Linux 6.18 LTS, Xfce 4.20, KDE Plasma 6.5, and GNOME 49
Arch Linux-based Manjaro Linux 26.0 distribution has been officially released today as a major update that introduces some of the latest GNU/Linux technologies and open-source software.
This Week in Plasma: car of the year edition
Welcome to a new issue of This Week in Plasma
KDE Frameworks 6.22 Fixes Multiple Clipboard-Related Issues on Wayland
KDE Frameworks 6.22 open-source software suite is out now with various improvements and bug fixes for KDE apps and the Plasma desktop. Here’s what’s new!
 
Orion Browser Takes First Step Toward Linux Availability
The Orion Browser team has confirmed its first Linux version
I replaced Windows with Linux and everything’s going great
Greetings from the year of Linux on my desktop
Manjaro Is Arch Linux for Newbies
If you've wanted to try Arch Linux
5 Windows-like Linux distros you should try out
The transition from Windows to Linux can be pretty intimidating
Linux made my old PC fast again, and it hasn’t slowed down since
You might have heard that Linux has a reputation for breathing new life into old computers
Free and Open Source Software
This is free and open source software
KJournald Update January 2026
A surprising long time passed since my last status update about KJournald
Radxa NX4 system-on-module runs RK3576 with LPDDR5 and 6 TOPS AI
Radxa supports Debian, Yocto, Buildroot, and Android 14 on the NX4
Red Hat Employees Worry About Layoffs Tomorrow [original]
"There's a rumor of more layoffs."
GNU/Linux Rises to 6% in Bhutan This Year [original]
good to see GNU/Linux growing there in 2026
Today in Techrights
Some of the latest articles
Security Leftovers
Security picks for today
GNU/Linux Leftovers
and some KDE
Debian: Debian goes retro with a spatial desktop that time forgot and "Debian Taco'
some Debian picks
Red Hat Promoting Hype and Microsoft, Fedora Updates
a bit sad to watch
Free, Libre, and Open Source Software and Standards
FOSS leftovers mostly
Programming Leftovers
Development picks for today
Open Hardware/Modding: ESP32, Armbian, and More
Devices, gadgets with GNU/Linux
OpenSUSE: Planet News Roundup and Tumbleweed's Review of the Week
OpenSUSE's latest
GNOME Hey Hi (AI, Slop) Nonsense and GNOME Foundation Update Promoting Microsoft Stuff
GNOME updates
today's howtos
quite a lot this evening
Applications: Dockhand, diffoscope, RustDesk, and More
Applications for GNU/Linux
Kernel: Bugs' Age, QEMU 10, and Slop in Linux
4 new articles
Games: Steam Record for GNU/Linux, Free Software "Makes Steam Frame A Linux Playground", EU Impact on GNU/Linux Adoption for Gamers
3 stories
I switched to Linux: Bye macOS and Windows
For the past month or so, I've been dabbling with Linux across my devices
Wine 11.0-rc5
The Wine development release 11.0-rc5 is now available
Games: Flatpaks, Nova Roma, and More
half a dozen picks from GamingOnLinux
Arch Linux-Based ArchBang Linux Distro Introduces New Application Launcher
The ArchBang Linux project has published a new ISO snapshot today with various improvements for this Arch Linux-based distribution using the Labwc window-stacking compositor on top of Wayland.
Android Leftovers
I changed this Android setting and now I can fit 30% more on my screen
Dozzle 9.0 Real‑Time Docker Log Viewer Improves Log Grouping
Dozzle 9.0 real‑time Docker log viewer adds collapsible homepage sections
loss32 Wants to Turn Linux Into a Full Win32 Desktop Powered by WINE
loss32 is an experimental Linux project that runs an entire Win32 desktop under WINE
Daily driving Linux for 3 years taught me these 6 habits
I deleted Windows off my work computer and permanently switched to Linux
LMDE 7 Users Get the Cinnamon 6.6 Desktop Environment
Cinnamon 6.6 has landed in LMDE 7
Steam Is Coming to ARM64 as Ubuntu Opens Testing via Snap
Steam is moving closer to ARM64 availability as Ubuntu opens testing of a Snap package powered by FEX x86 emulation
This awesome tool for Linux newcomers is like Ninite for Team Tux
Well, it turns out that someone has made something similar for Linux distros
Turning freedom values into freedom practice with the FSF tech team
Ian Kelling, FSF senior systems administrator, and also our president
Free and Open Source Software, and Benchmark
This is free and open source software
Ubuntu Sway – Ubuntu with Sway Wayland compositor
Ubuntu Sway aims to provide a user-friendly desktop based on Sway
This Week in GNOME: #231 Blueprint Maps
Update on what happened across the GNOME project in the week from January 02 to January 09
2026 Exercise [original]
I used to underestimate the importance of this, not just for physical but also for mental benefits
Security Leftovers
Security related stuff
GNU/Linux and Hardware Leftovers
mostly GNU/Linux links
Immutable Distro Nitrux 5.1 Released with Linux Kernel 6.18 LTS, New Tools
Nitrux developer Uri Herrera announced today the general availability of Nitrux 5.1 as a new stable update to this immutable and systemd-free distribution featuring new and updated components.
Today in Techrights
Some of the latest articles
Barbados Joining Growing Number of Nations Where GNU/Linux is Measured at Around 10% [original]
Did something happen there?
Security and BSD Leftovers
just 2 more links for now
Free, Libre, and Open Source Software, Open Access, and Standards
FOSS and more
Web Browsers: Brave Adblock Engine Rewrite, Using RSS, and Firefox Pushing Slop Dressed Up as Hey Hi (AI) After Removing RSS Support, Which Was Actually Useful
WWW picks
Programming Leftovers
Development related leftovers
Open Hardware/Modding: Fairphone, Raspberry Pi, and More
gadgets and more
Omarchy 3.3.0 Released
based on Arch
Dima Kogan has the Meshroom packaged for Debian, Reproducible Builds in December 2025
Debian picks
Fedora Dominated by IBM Staff, Red Hat is 100% Focused on Promoting Slop and Riding Bubbles
sad news
Ubuntu 25.04 (Plucky Puffin) Officially Nears End of Life
Ubuntu 25.04 (Plucky Puffin) will reach end of life on January 15, 2026
today's howtos
only 3 for now
Games: Steel Bounty, Dungeon Rampage, Wireworks, and Dig Dig Die
half a dozen new articles from GamingOnLinux
Does 1 in 10 Laptops/Desktops in Somalia Run GNU/Linux Now? [original]
statCounter sees the same duo at almost 10%
today's howtos
only half a dozen for now
Security Patching in GNU/Linux
Security leftovers
Free, Libre, and Open Source Software Leftovers
FOSS picks
GNU/Linux Leftovers
kernel and more
Orange Pi RV2 and Octa-core RISC-V GNU/Linux laptop in 2026
some exciting Linux devices
Red Hat and Fedora Leftovers
mostly Red Hat, some Fedora
European Commission issues call for evidence on Free/Libre Software
FOSS win
Android Leftovers
I used the Honor Magic8 Pro, and the OnePlus 15 should be worried
Distributions and Operating Systems: AnduinOS, NeXT, EasyOS, FreeBSD, and Gentoo
mixture of relevant news
This free tool gives you one easy way to install apps on Linux and Mac - here's how
With Homebrew, you get access to even more apps - maintained by both Linux and MacOS developers
KDE Gear 25.12.1 Released with Various Improvements for Your Favorite KDE Apps
The KDE Project released today KDE Gear 25.12.1 as the first maintenance update to the latest KDE Gear 25.12 series of this collection of open-source apps for the KDE Plasma desktop environment and other platforms.
IPFire Linux Firewall Distro Adds Wi-Fi 7 and Wi-Fi 6 Support, LLDP and CDPv2
IPFire 2.29 Core Update 199 has been released today by developer Michael Tremer as a new update to this hardened Linux firewall distribution that primarily performs as a router and a firewall, which introduces Wi-Fi 7 support and many other changes.
The state of Enterprise Linux for networking
The open-source Linux operating system has emerged to be the foundation for cloud and networking across industries
Why do I use Linux? It's the apps, and here are 7 of my favorites
Many people say they would switch to Linux if it weren't for the lack of some Windows-exclusive apps
This lightweight distro loaded with apps is not your father's GNU/Linux - here's why
Lightweight Linux distributions get a bad rap for shipping with minimal reinstalled software
MUSE Book laptop review – Testing an octa-core RISC-V Linux laptop in 2026
SpacemiT sent me a sample of the MUSE Book RISC-V Linux laptop for review
Free and Open Source Software
This is free and open source software
CuerdOS 2.0 Skycatcher Xfce: Spanish Distro Takes Chances, Mostly Succeeds
CuerdOS 2.0 Skycatcher’s Xfce edition leans on Debian Trixie, custom tuning
GNU/Linux Rose to 6% in Benin, Says statCounter [original]
GNU/Linux gains
Today in Techrights
Some of the latest articles