Tux Machines

Do you waddle the waddle?

Other Sites

Tor Project blog

Meeting the demands of tomorrow's Internet

In that vein, the biggest news for the Tor Project in 2024 was merging with Tails. Both organizations have been partners for many years, but joining forces at an organizational level means that we can pool our resources and combine our strengths to work on the mission that we all share.

LinuxGizmos.com

Luckfox Reveals First Boards Featuring Rockchip RK3506G2 Triple-Core Processors with Linux Support

The Luckfox Lyra series introduces the Rockchip RK3506G2 processor, a triple-core 32-bit design with three Cortex-A7 cores and one Cortex-M0 core. These boards target IoT devices, smart audio, smart displays, and industrial control, supporting Buildroot and Ubuntu 22.04 for flexible software deployment.

Raspberry Pi-Like SBC Featuring Rockchip RK3576D, Dual Gigabit Ethernet, and PCIe Support

The Toybrick TB-RK3576D SBC is a compact development board designed for high-performance computing tasks. Its key features include dual Gigabit Ethernet ports, a PCIe slot, and multiple display interfaces, all in a compact form factor.

Pimoroni Presto: RP2350-Powered 4” IPS Display with Wireless Connectivity

Pimoroni has introduced the Presto Beta Edition, an RP2350-powered programmable desktop display designed for versatility and compact functionality. The device features a 4-inch square IPS touchscreen with a resolution of 480 x 480 pixels, housed in a black aluminum stand.

9to5Linux

IPFire Linux Firewall Preps for Wi-Fi 7, Adopts Post-Quantum Cryptography

Powered by Linux kernel 6.6.63 LTS, the IPFire 2.29 Core Update 190 update is here to introduce support for post-quantum cryptography for SSH key exchanges, including Streamlined NTRU Prime sntrup761 and X25519 with SHA-512 (sntrup761x25519-sha512) and Module-Lattice-based Key-Encapsulation Mechanism (MK-KEM, mlkem768x25519-sha256).

LibreOffice 24.8.4 Office Suite Is Now Available for Download with 55 Bug Fixes

Coming five weeks after LibreOffice 24.8.3, the LibreOffice 24.8.4 release addresses more of the pesky bugs, crashes, and other annoyances reported by users. The ultimate goal is to improve the overall stability and reliability of this open-source, free, and cross-platform office suite.

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

Xfce 4.20 Desktop Environment Released with Experimental Wayland Support
Two years after the release of Xfce 4.18, Xfce 4.20 is here as another major update to this light and fast desktop environment for GNU/Linux distributions.
Kdenlive 24.12 Added Multiple Subtitle Tracks & Removed Qt5 Support
Kdenlive, the popular Qt-based free open-source video editor
System76 Refreshes Their AMD-Powered Pangolin Linux Laptop with 2K Display
Linux hardware vendor System76 informs 9to5Linux.com today about the availability of a new version of the company’s Pangolin Linux-powered laptop with upgraded components.
Kali Linux 2024.4 Released with Linux Kernel 6.11, GNOME 47, and New Hacking Tools
Offensive Security announced today the release and general availability of Kali Linux 2024.4 as the latest stable ISO snapshot of this Debian-based rolling release distro for ethical hacking and penetration testing.
 
Games: Godot, FromSoftware, Stalker 2: Heart of Chornobyl, and New Steam Games with Native GNU/Linux Clients
4 new stories
Mobile testing in libadwaita
Lately I’ve been working on touch controls overlays in Highscore
Android Leftovers
Google Keep making users ‘reload’ notes, rounds corners on Android
These 6 Linux myths you still believe simply aren't true
Linux is everywhere. It's on the majority of servers, powers the Steam Deck handheld gaming device
Best Free and Open Source Software
We recommend the best free and open source software
New: the Fast Sketch Plugin for Krita
Together with Intel, we have been working a new plugin for Krita
Luckfox Reveals First Boards Featuring Rockchip RK3506G2 Triple-Core Processors with Linux Support
Luckfox indicates on their Wiki pages that the Lyra series supports operating systems such as Buildroot and Ubuntu 22.04
Stable kernels: Linux 6.12.6, Linux 6.6.67, Linux 6.1.121, Linux 5.15.175, Linux 5.10.232, and Linux 5.4.288
I'm announcing the release of the 6.12.6 kernel
Fedora Server User Survey: Your Cattle or Your Pets
Your answers will help us focus our efforts to improve Fedora Server and provide better support for your use cases
Today in Techrights
Some of the latest articles
Software: Cockpit 331, as-tree, Zen Browser, Duolingo Application on Linux, qBittorrent 5.0.3 Released
Software news for today
today's howtos
Instructionals/Technical posts - last for today
Audiocasts/Shows/Videos About GNU/Linux and Free Software
mostly from yewtu.be
Linux-Centric "Security" (and FUD) Leftovers
many FUD pieces
These Are The Most Useful Linux Apps I Discovered in 2024
Here are the best Linux apps we encountered in 2024. Try them out if you haven't yet!
today's leftovers
GNU/Linux picks and more
Mozilla: Rust Roundup, "Hey Hi" Fluff, Loss of Revenue, and Input About the Main Sponsor (Google)
Some Firefox and Mozilla updates
Free, Libre, and Open Source Software Leftovers
FOSS picks for today
IPFire Linux Firewall Preps for Wi-Fi 7, Adopts Post-Quantum Cryptography
Today, the IPFire Project released IPFire 2.29 Core Update 190 as a new update to its hardened open-source GNU/Linux distribution, which primarily performs as a router or firewall.
BSD: Release of OpenBGPD 8.7, UK Keyboard layout on X applications on FreeBSD, BSD Now
some more BSD picks for today
Canonical/Ubuntu patching automation and Charmed Kubeflow
a pair of new blog posts from Canonical/Ubuntu
Security Leftovers
mostly patches
Programming Leftovers
Development related links
Open Hardware/Modding: Pimoroni, Arduino, and More
Modding and gadgets related
Red Hat Leftovers
and some IBM
FOSS Weekly, Kubernetes, Ruqola 2.4.0, and 'Free' Proprietary Bait From Broadcom
software picks
BSD News: Updates on FreeBSD, FreeBSD Foundation, and Release of NetBSD 10.1
NetBSD 10.1 released days ago
LibreOffice 24.8.4 Office Suite Is Now Available for Download with 55 Bug Fixes
The Document Foundation announced today the general availability of LibreOffice 24.8.4 as the fourth maintenance update to the latest LibreOffice 24.8 office suite series to address more than 50 bugs.
Leap 15.5 Nears End of Life
The release of Leap 15.6 on June 12 set in motion the End of Life for maintenance and security for Leap 15.5
Introducing Project Aardvark
and p2panda
today's howtos
Instructionals/Technical posts, about a dozen
Android Leftovers
Android prepares new options for customizing your lock screen clock
6 Linux Distros to Watch Out for in 2025
Some great Linux distributions are expected to be released in 2025
IPFire 2.29 - Core Update 190 released
The last update of the year is ready to be released: IPFire 2.29 - Core Update 190
Best Free and Open Source Software, howtos and Installations
Here’s our pick of the finest open source micro-frameworks
Bluefin – Fedora based Linux distribution
Bluefin is an immutable, developer-focused, Cloud-native Linux distribution that’s based on Fedora
Announcing Incus 6.8
The Incus team is pleased to announce the release of Incus 6.8
6 Linux myths, busted
Linux is more popular than ever, but certain myths still surround the open-source OS
The 4 easiest ways to test Linux on your old PC before Windows 10 support runs out
If you're considering a migration from the soon sunsetting Windows 10 to Linux and you're looking for a way to test the open-source operating system
Windows TCO Stories
3 new examples
Games: Steam Replay, Proton Experimental, Tactical Breach Wizards, COPA CITY, Comet Force
handful from GamingOnLinux
GNU/Linux Growing in Chile [original]
chart
GNU/Linux, Free Software, Coding Etc.
today's leftovers
Canonical/Ubuntu: Emojis, Microsoft Spyware, and WINE et al
Canonical/Ubuntu leftovers
Security Leftovers
Security picks for today
Gadgets and Hardware: Zephyr, Jetson, and More
on the hardware side
Linux (Kernel) Development and 'Linux' Foundation Openwashing
Some Linux picks
Fedora, CentOS, and Red Hat
Some more picks
Applications: Cron Job Managers, End of Life for Istio 1.22, Slink Introduced
Free software news/reviews
today's howtos
Instructionals/Technical posts
Debian opens a can of username worms
It has long been said that naming things is one of the hard things to do in computer science
Today in Techrights
Some of the latest articles
Fedora Asahi Remix 41 Released for Apple Silicon Macs with KDE Plasma 6.2
Today, the Fedora and Asahi Linux projects announced the general availability of Fedora Asahi Remix 41 as the latest version of this distribution developed for Apple Silicon Macs.
Hyprland 0.46: Nvidia Hardware Cursors, Better Colors, and Festive Surprises
Hyprland 0.46 tiling Wayland compositor released
Free, Libre, and Open Source Software Leftovers
Kubeflow and much more
20 years of Linux on the Desktop (part 2)
The first official Ubuntu release was 4.10
today's howtos
Instructionals/Technical posts, 3 for now
Videos/Audiocasts/Shows: LibreOffice, mintCast, LF, openSUSE, and Wordpress
Some new ones out
BSD Leftovers
Some BSD picks
Education, Devices, and Modded Hardware
hacking and learning
Openwashing Leftovers
Openwashing nonsense
EPEL and Red Hat Leftovers
Mostly redhat.com articles
The Shepherd 1.0.0 released!
Finally, twenty-one years after its inception (twenty-one!)
Nextcloud Takes on Microsoft, Microsoft Systemd 257 Released in Microsoft GitHub (Proprietary) by Microsoft Staff
Some software news
Programming Leftovers
Development links
today's howtos
Instructionals/Technical picks for today
Release of Kubernetes 1.32
new one out
Security Leftovers
Security picks, many Windows
Open Hardware/Modding: Raspberry Pi, Framework, and More
Hardware picks
Mozilla: “Firefox” in Haiku, Ecosia Partnership, Improvements to Mozilla’s Searchfox Code Browser, Lawsuit from Former Executive
Mozilla and Firefox news
Games: Steam Deck Stars Bundle, Crescent County, and More
Latest 8 from GamingOnLinux
Android Leftovers
Custom vehicle icons in Google Maps have started rolling out to a select few on Android
Fresh off the digital Gutenberg: The fall 2024 Bulletin is now online
The latest issue of the Free Software Bulletin is now online
PeerTube 7 Brings a Complete Makeover
Simplified, beautiful, and accessible! PeerTube 7 open-source decentralized video platform introduces new themes
Alpine Linux 3.21: Lean, mean, and LoongArch-ready
A cool mountain breeze blowing in after the new LTS kernel
6 ways modern Linux distros are less infuriating
It's a completely different story today with many of the leading Linux distros offering far superior experiences than years past
Leaving Windows 10 for Linux? 5 security differences to consider first
With Windows 10 nearing the end of its life, you might be thinking about switching to Linux
Best Free and Open Source Alternatives to Microsoft Photos
Their battle with Linux stretches back many years
I'm a Linux power user, and I recommend this distro to newbies and experts alike
If you're looking for a sensible operating system that takes a practical approach to the desktop, OpenMandriva is worth a look
The 3 most Windows-like Linux distros you can try because change is hard
If you want to keep your machine running smoothly and feeling familiar, check out these Linux distros
Cheers to 5 Years of openSUSE Bar
The openSUSE community will celebrate the 5-year anniversary of the openSUSE Bar on Dec. 19
Today in Techrights
Some of the latest articles