Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

COSMIC 1.6 Desktop Environment Released with More Improvements

Coming three weeks after COSMIC 1.5, the COSMIC 1.6 release adds support for the wl-dmabuf-v6 Wayland protocol for passing direct memory buffers (dma-buf) between clients and compositors, and adds support for the EI (Emulated Input) Wayland protocol to simulate hardware input devices, such as keyboards and mice.

Mozilla Firefox 155 Enters Public Beta Testing, Here’s What to Expect

Firefox 155 promises support for Happy Eyeballs v3 for faster page loading, the ability to reorder containers in Settings, support for Nintendo Switch Pro and compatible aftermarket controllers on Windows, and support for showing how many trackers it has blocked in the address bar.

VirtualBox 7.2.16 Improves Shared Clipboard in Wayland, Adds FRED Support

Coming a month after VirtualBox 7.2.14, the VirtualBox 7.2.16 release improves shared clipboard handling in Wayland for Linux hosts and guests, improves support for RHEL (Red Hat Enterprise Linux) 9.8 kernels for Linux guests, and introduces support for FRED on Linux hosts.

Thunderbird 154 Open-Source Email Client Introduces an Optional System Tray Mode

Highlights of Mozilla Thunderbird 154 include an optional system tray mode that hides the main window when the last window closes, a “Copy To” right-click context menu on folders for message/rfc822 attachments, and support for dragging message/rfc822 type MIME attachments to the folder tree.

LinuxGizmos.com

LattePanda Mu MXM carrier kits with choice of Arc A380 or RTX 3060 graphics

DFRobot is offering two MXM GPU Carrier Board Kits for the LattePanda Mu compute module, with configurations based on either an Intel Arc A380 or NVIDIA GeForce RTX 3060 MXM graphics card. Both kits support up to six independent 4K displays, Gigabit Ethernet, USB 3.2 Gen2, M.2 expansion, and LattePanda Mu compute modules.

nRF93M1 DK with LTE Cat 1 bis, nRF54L15, and nRF Cloud support

Nordic Semiconductor’s nRF93M1 Development Kit is now available through multiple distributors, providing a platform for evaluating the company’s nRF93M1 LTE Cat 1 bis cellular module. The board combines the modem with an nRF54L15 host MCU and includes USB-C, onboard J-Link debugging, power-measurement support, and a preloaded SIM card.

Radxa Zero 3W Powers Compact IP-KVM with BIOS OCR

Crowd Supply recently featured the USBridge-KVM 2.0, a compact IP-KVM designed for remote system administration, debugging, and bare-metal recovery. The device provides HDMI video capture, USB keyboard and mouse emulation, virtual media, hardware power control, BIOS text recognition, and an integrated display while operating independently of the target computer’s operating system.

Tor Project blog

New Release: Tails 7.11

Follow our installation instructions.

New Release: Tor Browser 15.0.20

This version includes important security updates to Firefox.

Gawk 5.2.0 released

posted by Roy Schestowitz on Sep 06, 2022

Greetings all.

This note announces the next major release of GNU Awk: version 5.2.0.
The following files may be retrieved via HTTPS from https://ftp.gnu.org/gnu/gawk:
-rw-rw-r-- 1 arnold arnold 6540181 Sep 4 18:52 gawk-5.2.0.tar.gz -rw-rw-r-- 1 arnold arnold 3228577 Sep 4 18:52 gawk-5.2.0.tar.lz -rw-rw-r-- 1 arnold arnold 3386344 Sep 4 18:52 gawk-5.2.0.tar.xz
This is a major new release. The relevant part of the NEWS file is appended below.
This release represents a lot of very hard work by a number of people. I thank them all for their contributions, I could not have done it by myself.
Differences from gawk 5.1.1 are not available; they would be too large.
The online documentation on the GNU web site is already updated, including a manual for the new persistent memory feature.
The usual GNU build incantation should be used:
tar -xpvzf gawk-5.2.0.tar.gz cd gawk-5.2.0 ./configure && make && make check
Please use the new buggawk script to report bugs. If it doesn't work for you, then send email to bug-gawk@gnu.org.
NOTE that the manual's instructions for sending bug reports have been updated. Please review them carefully before submitting a report!
ONLY bug reports should be submitted to the bug-gawk list. All other questions should use the relatively new help-gawk@gnu.org mailing list.
Enjoy!
Arnold Robbins (on behalf of all the gawk developers) arnold@skeeve.com ------------------------------------------------------------ Copyright (C) 2019, 2020, 2021, 2022 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved.
Changes from 5.1.x to 5.2.0 ---------------------------
***************************************************************************** * MPFR mode (the -M option) is now ON PAROLE. This feature is now being * * supported by a volunteer in the development team and not by the primary * * maintainer. If this situation changes, then the feature will be removed. * * For more information see this section in the manual: * * https://www.gnu.org/software/gawk/manual/html_node/MPFR-O... * *****************************************************************************
1. Infrastructure upgrades: Libtool 2.4.7, Bison 3.8.2.
2. Numeric scalars now compare in the same way as C for the relational operators. Comparison order for sorting has not changed. This only makes a difference when comparing Infinity and NaN values with regular numbers; it should not be noticeable most of the time.
3. If the AWK_HASH environment variable is set to "fnv1a" gawk will use the FNV1-A hash function for associative arrays.
4. The CMake infrastructure has been removed. In the five years it was in the tree, nobody used it, and it was not updated.
5. There is now a new function, mkbool(), that creates Boolean-typed values. These values *are* numbers, but they are also tagged as Boolean. This is mainly for use with data exchange to/from languages or environments that support real Boolean values. See the manual for details.
6. As BWK awk has supported interval expressions since 2019, they are now enabled even if --traditional is supplied. The -r/--re-interval option remains, but it does nothing.
7. The rwarray extension has two new functions, writeall() and readall(), for saving / restoring all of gawk's variables and arrays.
8. The new `gawkbug' script should be used for reporting bugs.
9. The manual page (doc/gawk.1) has been considerably reduced in size. Wherever possible, details were replaced with references to the online copy of the manual.
10. Gawk now supports Terence Kelly's "persistent malloc" (pma), allowing gawk to preserve its variables, arrays and user-defined functions between runs. THIS IS AN EXPERIMENTAL FEATURE! For more information, see the manual. A new pm-gawk.1 man page is included, as is a separate user manual that focuses on the feature.
11. Support for OS/2 has been removed. It was not being actively maintained.
12. Similarly, support for DJGPP has been removed. It also was not being actively maintained.
13. VAX/VMS is no longer supported, as it can no longer be tested. The files for it remain in the distribution but will be removed eventually.
14. Some subtle issues with untyped array elements being passed to functions have been fixed.
15. Syntax errors are now immediately fatal. This prevents problems with errors from fuzzers and other such things.
16. There have been numerous minor code cleanups and bug fixes. See the ChangeLog for details.
Changes from 5.1.1 to 5.1.x ---------------------------
1. Infrastructure upgrades: Automake 1.16.5, Texinfo 6.8.
2. The rwarray extension now supports writing and reading GMP and MPFR values. As a result, a bug in the API code was fixed.

Other Recent Tux Machines' Posts

Framework Laptop 12 gets Fedora KDE Linux on pre-builts, along with new Intel Core Series 3 processors
Nice to see an expansion of Linux on devices, with the Framework Laptop 12 getting support for pre-builts to ship with Fedora KDE 44 and Intel Core Series 3
Mozilla Firefox 154 Is Now Available for Download, Here’s What’s New
Mozilla Firefox 154 open-source web browser is now available for download with a new “Manage AI” quick action, support for clearing and updating cached favicons, and other changes.
Linux Kernel 7.2 Officially Released, This Is What’s New
Linux kernel 7.2 is now available for download with new features, enhanced hardware support through new and updated drivers, improvements to filesystems and networking, and much more.
Ubuntu’s App Center Issues, Canonical Helps Microsoft's User Retention in Windows
a losing game
Fairphone 6 turns into a Linux phone running Fedora 44 with working cameras
A developer has managed to boot Fedora 44 on the Fairphone 6
After Europe ditched Windows, China follows suit with its own home-grown Linux distros
As the world wakes up to its reliance on US tech, some countries are doing their best to move away from it
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.
 
Android Leftovers
Pixel 11 ships with Android 17’s new 3D emoji [Gallery]
Still Improving the Sites for Better Navigation and Access to Information [original]
Improving the site is important because many people nowadays have a hunger for information about GNU/Linux
According to Clownflare, GNU/Linux Measured at Nearly 6% in Bangladesh [original]
Bangladesh is one of the most densely populated places/sovereign nations in the world
AI is splitting Linux and nobody wants to say it out loud
Like most things in the world of Linux, it seems everyone has decided to just go their own way
Most Framework Laptop 13 Pro Linux users apparently never switch to Windows
The Framework Laptop 13 Pro is the company's most powerful notebook
KDE Gear 26.08 Software Suite Is Out with Many Improvements for KDE Apps
KDE Gear 26.08 open-source software suite is now available with improvements to many of your favorite KDE applications. Here’s what’s new!
PINE64 Calls Time on the Linux Hardware Market, Ceases Production Until the AI Bubble Bursts
Open hardware specialist PINE64 has announced that it is exiting the Linux single-board computer, phone...
Kazakhstan's Adoption of GNU/Linux Based on Cloudflare [original]
We suppose those countries, former USSR "blocs", do not trust GAFAM both for technical and for political reasons
What is the TDF team working on, in the LibreOffice project?
LibreOffice is a worldwide project made up of hundreds of people
Free and Open Source Software
This is free and open source software
Infinity Linux – lightweight Arch Linux-based distribution
Infinity Linux is a lightweight Arch Linux-based distribution focused on speed
Murena Just Made The Fairphone (Gen. 6) Better!
A new variant of the modular smartphone now offers 12GB of RAM and a Snapdragon 7s Gen 4 upgrade
Stable kernels: Linux 7.1.9, Linux 6.18.45, Linux 6.12.104, Linux 6.6.152, Linux 6.1.183, Linux 5.15.216, and Linux 5.10.265
I'm announcing the release of the 7.1.9 kernel
Arch Linux-Based Garuda Linux “Temeraire” Released with Linux Kernel 7.2
Garuda Linux “Temeraire” is now available for download with Linux kernel 7.2, KDE Plasma 6.7.4, and many other changes. Here’s what’s new!
The 6 AI-free Linux distros I recommend most - and why they're likely to stay that way
If AI isn't your jam, and you're looking for an operating system that doesn't (and won't) force it on you
Modular’s Got Its ‘Mojo’ Working Fully Open Source
Modular has opened Mojo’s compiler and tooling under Apache 2.0
Can MainstreamOS finally make Linux a household name? I tried it to find out
Finally, there's a Linux distro that makes Arch and Hyprland easy
Latest From LWN: Kernel, firmware, shadow-utils
outside the paywall as of hours ago
Today in Techrights
Some of the latest articles
GNU/Linux and BSD Leftovers
GNU/Linux mostly
Free Software, Edcuation, and Standards
Free, Libre, and Open Source Software mostly
GNOME: Icon for Metamorphosis and Easy Way to Make GNOME More Colorful
a pair of short posts
Audiocasts/Shows: Linux Matters, What’s in the SOSS?, and More
new episodes
today's howtos
Instructionals/Technical picks
Games: Godot 4.7.2, You Are Empty, GOG Preservation Program, and More
gaming leftovers
OBS End-of-Week Update and openSUSE Asia Summit Pre-Schedule Is Now Available
openSUSE leftovers
Fedora and Red Hat Leftovers (75% is Promotion of Slop Plagiarism for IBM)
latest regarding Fedora and Red Hat
Latest From Linux Gizmos, CNX Software, Arduino, and More
Open Hardware mostly
Mozilla: Firefox WebDriver Newsletter, MozPhab 2.17.0 Released, Tor Browser 15.0.20, and Slop
Mozilla's blog and more
Security Leftovers
Security patches and other news
Programming Leftovers
Development related news
Bethesda Staff Furious at Microsoft, Progress Made on GNU/Linux Compatibility
some Bethesda news
Kernel Space / File Systems / Virtualization in Linux
Changes, adventures, and more
Firefox Support in NVIDIA GeForce NOW
3 links
Virtual desktops, docks, and tabbed windows—Linux had them first
they tended to be basic affairs
Android Leftovers
I disabled one Android setting and my phone gained nearly an hour of battery daily
Yes, Linux can do 'real work'—here are 5 things I do on my Linux PC
Do you think Linux is just for homelabs or servers
These 5 simple Linux tools make Windows 11 look outdated
I am mainly a Linux user, but sometimes I have to return to Windows for work or gaming
I ignored Linux for years because of its reputation, and it's my daily driver now
It has been about a year now since I made the jump from Windows to Linux
Still using Linux Mint? Here are the 6 Ubuntu features you're missing out on
Linux Mint has earned its reputation by being one of the easiest Linux distros to recommend
Free and Open Source Software
This is free and open source software
I tested Omarchy Quattro, one of the first Linux distros to go all in on AI - and I didn't hate it
Omarchy made me fall in love with Hyprland
SkillFishOS – Debian-based Linux distribution
SkillFishOS is a Debian-based Linux distribution designed primarily for the AMD BC-250 compute board
Planet KDE: Bigger Wasn't Better: Benchmarking Small Models for digiKam's Natural Language Search
he Benchmark, and the Fine-Tuning Decision
Why Digital Sovereignty Requires an Open Document Platform — and What That Actually Means
LibreOffice Technology exists to make genuine sovereignty possible
Want to run a full Linux distro on your Android phone? I found the easiest way
Have you ever wanted to run a Linux distribution on your Android device
I tested GNOME's glassy new look - and it's simply spectacular
GNOME is finally catching up to other desktop environments
COSMIC 1.6 Desktop Environment Released with More Improvements
COSMIC 1.6 desktop environment is now available with improvements to COSMIC Files, COSMIC Edit, COSMIC Greeter, COSMIC Applets, COSMIC Launcher, COSMIC Settings, COSMIC Term, and COSMIC Compositor.
Debian Deciding Whether to Ban Slop Plagiarism in Debian Development
some takes from Debian Developers
Clownflare Saw GNU/Linux at Over 10% in Andorra [original]
Clownflare saw a surge in GNU/Linux usage this month
Today in Techrights
Some of the latest articles
Mozilla Firefox 155 Enters Public Beta Testing, Here’s What to Expect
Firefox 155 open-source web browser is now available for public beta testing with support for Happy Eyeballs v3 for faster page loading and many other changes.
Microsoft Lunduke Has Gone Nuts After COVID-19 Began [original]
For a moment there you have to pause and wonder, is this a "Tech Journalist" or the Daily Stormer?
VirtualBox 7.2.16 Improves Shared Clipboard in Wayland, Adds FRED Support
VirtualBox 7.2.16 open-source virtualization software is now available for download with improvements to shared clipboard handling in Wayland, improved support for RHEL 9.8 kernels, and more.
World's Second-Largest Economy Dumps Microsoft Windows, Citing National Security Concerns [original]
It is hardly surprising that Windows is shedding off userbase all around the world
Thunderbird 154 Open-Source Email Client Introduces an Optional System Tray Mode
Mozilla Thunderbird 154 open-source email client is now available for download with an optional system tray mode, new context menus, as well as the usual bug and security fixes.
GNU/Linux Leftovers
BSD also
Open Hardware/Modding: Radxa, Raspberry Pi, and More
Hardware news
IBM Looks for Unpaid Testers, Sells Slop Plagiarism in redhat.com
latest from Red Hat (IBM)
VRAM Management in Linux 7.3 and 'DRM' in Linux 7.2
kernel picks
Looking Beyond Tmux and Screen, Best Software for GNU/Linux (Based on One Person's Experience)
a pair of articles
today's howtos
Instructionals/Technical picks
Free Software and Openwashing Leftovers
mostly FOSS picks
Web and Net Leftovers
FTP and more
GNU Project: GNU poke 5.0 released
original and LWN
Programming Leftovers
Development related picks
Security Leftovers
Security incidents, patches, more
Epic Games Store Will Support Linux "Soon"
many sources today
These Are The 5 Most Popular Linux Distros In 2026
when it comes to a Linux distro, everyone chooses one (especially their first one) for a variety of reasons
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
Proprietary Software is About Marketing and Perception, They Don't Really Value Quality or Try to Truly (Genuinely) Serve Users [original]
short new message
Games: Orc Incremental, Quake Shareware, Sally Face 2, and More
mostly from GamingOnLinux
What Clownflare Says About Yemen's Adoption of GNU/Linux on Laptops/Desktops [original]
Last month the media began paying attention to this global trend
Android Leftovers
Google rolling out Android 17 QPR1 Beta 9 for Pixel
Wordbook is a modern offline dictionary for GNOME
They say never judge a book by its cover, and few do if said book is a dictionary
Nebula Linux – Arch-based rolling release Linux distribution
Nebula Linux is an Arch-based rolling release Linux distribution built around DankMaterialShell and the niri scrollable-tiling Wayland compositor
"Linux" Isn't Turning 35 Next Week [original]
What many people call "Linux" started in the 1980s
Free and Open Source Software, howtos and Installations
This is free and open source software
Today in Techrights
Some of the latest articles