Tux Machines

Do you waddle the waddle?

Other Sites

Tor Project blog

New Release: Tor Browser 15.0.7

This version includes important security updates to Firefox.

LinuxGizmos.com

Atom E3950 Powers WINSYSTEMS SBC-ZETA-3950 Rugged Mini SBC

The SBC-ZETA-3950 uses the quad-core Intel Atom E3950 processor running at 1.6 GHz (2.0 GHz burst), with 2MB L2 cache and a 12W base power envelope.

AAEON UP Squared Series Gains Mainline Linux Support for 40-Pin GPIO in Linux 6.18

The UP Board family combines Intel processors with a 40-pin expansion header routed through an onboard FPGA. The FPGA handles signal level shifting, pin multiplexing, switching, and direction control, allowing pins to operate as I2C, UART, PWM, or GPIO.

9to5Linux

Clonezilla Live 3.3.1 Released with Linux 6.18 LTS, Improved BitLocker Support

Coming four months after Clonezilla Live 3.3, the Clonezilla Live 3.3.1 release is based on the Debian Sid (Unstable) repository as of February 20th, 2026, and it’s powered by the long-term supported Linux 6.18 LTS kernel series to ensure Clonezilla Live will run on newer hardware and support more devices.

KDE Plasma 6.6.1 Is Out to Improve Custom Tiling, Networks Widget, and More

KDE Plasma 6.6.1 improves the Custom Tiling feature to correctly respect key repeat, improves the Networks widget to show a more appropriate icon in the panel or system tray when Wi-Fi is disabled, and improves animation performance by leaning more heavily on the Wayland Presentation Time protocol.

Ardour 9.2 Open-Source DAW Released with MIDI Note Chasing and Duplication

Coming less than three weeks after Ardour 9.0, the Ardour 9.2 release is here to introduce a couple of notable new features, like MIDI note chasing, allowing a long note in a MIDI track to start when the transport starts, and MIDI note duplication, allowing you to duplicate selected MIDI notes right after the end of the last note or to the next snap point after the last note.

GNU Octave 11 Open-Source Scientific Programming Language Officially Released

Highlights of GNU Octave 11 include a new search command for packages, an updated Java internal interface to be more memory-efficient, a completely revamped randi function, support for the roots function to accept only double or single input types, and a more accurate fzero function (1-2 eps when TolX is eps).

Firefox 148 Is Now Available for Download with AI Kill Switch and Other Changes

The biggest change in Firefox 148 is the long-awaited AI kill switch feature, which is implemented in Settings as “AI Controls”, allowing you to completely disable all the AI features that had been included in the past few releases. Firefox’s AI features can be disabled entirely or selectively.

9to5Linux Weekly Roundup: February 22nd, 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.

Linus Torvalds Announces First Linux Kernel 7.0 Release Candidate

Today marks two weeks since the release of Linux kernel 6.19 and the opening of the merge window for Linux kernel 7.0, which means that it is time to test drive the Release Candidate (RC) versions during the next couple of months, the first one being available for download right now from Linus Torvalds’s Git tree.

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

4 Days Till Spring, a Rebirth in Nature! [original]
This year's colour motif is green
Firefox 148 Is Now Available for Download with AI Kill Switch and Other Changes
Mozilla has published today the final builds of the Firefox 148 open-source web browser ahead of its official unveiling on February 24th, 2026, so it’s time to take a look at the new features and improvements.
Linus Torvalds Announces First Linux Kernel 7.0 Release Candidate
Linus Torvalds announced today the general availability for public testing of the first Release Candidate (RC) development milestone of the upcoming Linux 7.0 kernel series.
 
Several Web Surveys Agree: Microsoft Windows Lost Majority Market Share in Its Home Country, Now Below 40% [original]
"Old Enough To Remember" when Windows was at over 90%
Clonezilla Live 3.3.1 Released with Linux 6.18 LTS, Improved BitLocker Support
Clonezilla Live maintainer Steven Shiau released today Clonezilla Live 3.3.1 as the latest stable version of this partition and disk imaging/cloning live Linux system based on Debian GNU/Linux.
today's leftovers
BSD and GNU/Linux leftovers, audio also
Latest From Red Hat Official Site
redhat.com's latest
Events, Web Browsers, SSGs, Software Freedom, and More
Mostly FOSS coverage
Security Leftovers
patches and more
Programming Leftovers
Development news
Open Hardware/Modding: GyroidOS, Raspberry Pi, and More
Hardware picks
Graphics: Weston 15.0 and Waydroid 1.6.2
Graphics news
today's howtos
quite a lot so far today
Graphics: Mesa 25.3.6 and GPU News
3 picks from GoL
Games: Steam Next Fest, Heroic Games Launcher, Kitten Space Agency
4 gaming picks
Wine 11.3
The Wine development release 11.3 is now available
KDE Plasma 6.6.1 Is Out to Improve Custom Tiling, Networks Widget, and More
The KDE Project released today KDE Plasma 6.6.1 as the first maintenance update to the latest KDE Plasma 6.6 desktop environment series with an initial batch of improvements and bug fixes.
"Attestation" Mandated in US If American Politicians Get Their Way
Linux also
today's leftovers
2 more from Valnet
Open Hardware/Modding: Valnet on SBCs, HexOS, Homelabs and More
a handful of recent articles
Applications: Multiplexers, Jellyfin, Timeshift, and More
4 recent articles
Desktop Environment: GNOME, KDE, and Cinnamon
a couple of recent articles
NixOS, CachyOS, Other Distributions and Operating Systems
GNU/Linux distros covered by Valnet
A Look at Universal Blue and Bluefin
a couple of recent articles
Microsoft's Proprietary Traps: Trying to Exit Windows, Some Dump WSL (Windows With Misused Brand) for Real GNU/Linux
4 Valnet articles
Android Leftovers
The FairPhone Gen 6 will 'soon' get Android 16
5 of the most lightweight operating systems, ranked by download size
The secret is assembly language. Every line of KolibriOS
Why 2026 is officially the year of the KDE Linux desktop
These are the circles in which KDE Plasma appears in 2026
OmegaLinux switches from Ubuntu to Arch in 2026.02.21 release
Based on Lubuntu until now, OmegaLinux is taking a huge step forward with yesterday's release
Why you should try these 9 "strange" Linux distros (even if you never switch)
Most Linux users settle into a stable setup
Windows users can thank Linux for these 5 essential features
Even though Linux might only hold a tiny part of desktop market share
Fedora Pocketblue Remix is an atomic Linux distro for mobile devices (phones and tablets)
Fedora Pocketblue Remix is a mobile Linux distribution designed to let you run Fedora on a smartphone or tablet
Free and Open Source Software
This is free and open source software
Introducing matrixOS, an Immutable Gentoo-Based Linux Distro
It was only a matter of time before a developer decided one of the most challenging Linux distributions needed to be immutable
Recent XDA Articles on Proxmox
Proxmox handful
On Free Software, Free Hardware, and the firmware in between
When the Free Software movement started in the 1980s
Today in Techrights
Some of the latest articles
Ardour 9.2 Open-Source DAW Released with MIDI Note Chasing and Duplication
Ardour 9.2 has been released today as the latest stable version of this powerful, free, cross-platform, and open-source digital audio workstation (DAW) software for GNU/Linux, macOS, and Windows systems.
Curating the News, a Community-Powered Endeavour [original]
We're happy to say our community continues to grow and we get more people involved
GNU Octave 11 Open-Source Scientific Programming Language Officially Released
GNU Octave 11 has been officially announced today for this open-source, free, and cross-platform high-level language, primarily intended for numerical computations.
GNU/Linux and BSD Leftovers
mostly GNU/Linux
BSD and Linux Kernel Space
kernel level news
Free, Libre, and Open Source Software Leftovers
FOSS and Web
Programming Leftovers
Development related picks
Open Hardware/Modding: Linux Devices, 3D Printing, Retro
hardware picks
Games: New Steam Games with Native GNU/Linux Builds and "Interim Computer Museum"
gaming picks
today's howtos
Instructionals/Technical posts
Why I Contributed to FOSS Force’s ‘Independence 2026’ Fundraiser
Ken Starks once wrote here every week
Security and blobs, by Alex Oliva (GNU Linux-Libre)
Reprinted with permission from Alex Oliva
Despite Problems at the Solicitors Regulation Authority (SRA) and SLAPPs From London, the UK Remains a Decent Place to Do Journalism [original]
Let's face is, the media is universally (globally) under attack
Android Leftovers
This one tool will help you master the Android terminal emulator Termux
Interview with Øyvind Kolås, GIMP developer
GIMP is Free and Libre Open Source Software
Looking for the best Linux window manager? Here’s how I rank them
On the surface, most Linux window managers look deceptively similar
4 Debian-based Linux distros that are better than Debian
Debian Linux is a tried-and-true choice for getting a Linux device up and running
After years of using GNOME, this is the desktop I switched to instead
I did not switch from GNOME because I woke up one morning craving change
The "Windows vs. Linux" debate is a waste of time: Here’s a better approach
Linux fans love to position Linux as the mortal enemy of Windows
Why Linux is the best place to learn coding
Linux might be the best OS to start your programming journey in
I finally fixed my Linux laptop’s constant fan noise — it wasn’t the hardware
For a few months now, whenever I launch my browser, my laptop gets so loud you'd think it's compiling the Linux kernel
This opinionated desktop setup finally cured my distro-hopping problem
Distro-hopping is not uncommon in the Linux ecosystem
I install these 7 CLI tools on every Linux system
Most people treat a fresh Linux installation as a clean slate
Forget Linux Mint. These distros are the only way to switch
This is the Linux distro you should try first
Free and Open Source Software
This is free and open source software
Review: The Guix package manager 1.5.0
This week I'd like to talk about Guix
KMyMoney 5.2.2 released
The KMyMoney 5.2.2 release contains numerous bug fixes and improvements to enhance stability
AAEON UP Squared Series Gains Mainline Linux Support for 40-Pin GPIO in Linux 6.18
The MFD and LED drivers were merged in Linux 6.14
Reverse Engineering Linux Distro REMnux Marks 15 Years With Major v8 Release Featuring AI Agent Support
Malware analysis Linux distro gets Ubuntu 24.04 base
Tiny Core v17.0
Team Tiny Core is proud to announce the release of Core v17.0
Parrot 7.1 Ethical Hacking Distro Released with Enlightenment Spin, Updated Tools
ParrotSec released Parrot 7.1 today as the latest stable update to this Debian-based GNU/Linux distribution for ethical hacking and penetration testing that introduces new and updated tools.
Science is the Root of Free Software [original]
It's hardly surprising that some of the loudest opponents of Software Freedom and its luminaries also disregard or bend facts
Today in Techrights
Some of the latest articles
9to5Linux Weekly Roundup: February 22nd, 2026
The 280th installment of the 9to5Linux Weekly Roundup is here for the week ending February 22nd, 2026.
Not Tolerating Intolerance [original]
Intolerance is a big problem
Working With Plants [original]
Our 'offices' are simple and fun to work in
Everything Down to the Basics [original]
Thankfully our community pays to run the site and can cope with pricing burdens
Projects as Gifts to Tux Machines' Community [original]
Maybe those additional projects can become a "gift" to the community as it turns 22
today's leftovers
Linux and hardware
KDE: "Data Collection" and "Building the Mankala Engine with Distrobox"
KDE news, latest
Audiocasts/Shows: Linux Saloon and This Week in Linux
2 new episodes
Free, Libre, and Open Source Software and Consortium Leftovers
FOSS and more
Games: Deck, Zelda, and Intel
4 picks regarding gaming
Programming Leftovers
Development related news
Web Browsers/Web Bloat Leftovers
Web-centric news
today's howtos
Instructionals/Technical posts
Make Use Of (MUO) on Context Switching and Chromebooks
MOU articles
Kernel Space: Linux Kernel 7.0 Changes Explained in Media This Week
Linux news for next release
KDE Plasma 6.7.0 will make managing your printers a lot easier
My OS of choice was Fedora Silverblue
Free and Open Source Software
This is free and open source software
Second beta for Krita 5.3 and Krita 6.0
Today we're releasing the second beta of Krita 5.3.0 and Krita 6.0.0
Today in Techrights
Some of the latest articles