Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

Argon Industria PoE+ HATs add 25W Ethernet power and optional NVMe to Raspberry Pi 5

Argon40 has introduced two Industria PoE+ HATs for the Raspberry Pi 5, providing power and data through a single Ethernet cable using the IEEE 802.3af/at PoE+ standard. Both boards deliver up to 25W output, supplying 5V/5A for full operation.

MSI MS-CF27 3.5-inch SBC with Alder Lake-N, quad GbE, and triple display

Following earlier platforms such as the MS-CF16 V3.0 and MS-CF19, MSI has introduced a new 3.5-inch SBC based on Intel Alder Lake-N, Twin Lake-N, and Amston Lake processors, continuing its focus on fanless, low-power, wide-voltage embedded systems with expanded connectivity and I/O.

Cardputer Mesh Kit features ESP32-S3 handheld with LoRa and GNSS support

The Cardputer Mesh Kit is a portable communication platform that combines an ESP32-S3-based handheld controller with LoRa mesh networking and GNSS positioning. The kit is built around the Cardputer-Adv core unit and the Cap LoRa-1262 expansion module, and comes preloaded with Meshtastic firmware for out-of-the-box operation.

9to5Linux

qBittorrent 5.2 Open-Source BitTorrent Client Released with Many New Features

Coming a year after qBittorrent 5.1, the qBittorrent 5.2 introduces a Torrent Creator button in the toolbar, a separate “Tracker status” filter, a “Created On” column to transfer list, the ability to set torrent share limits per category, and support for calculating torrent pieces asynchronously.

Copy Fail Linux Kernel Vulnerability Now Patched in Debian, Ubuntu, and Others

On April 29th, 2026, a local privilege escalation vulnerability affecting the Linux kernel was publicly disclosed as CVE-2026-31431 and referred to as “Copy Fail.” The vulnerability affects the algif_aead kernel module, which provides hardware-accelerated cryptographic functions.

GNU Parallel 20230222 ('Gaziantep') released

posted by Roy Schestowitz on Feb 23, 2023

GNU Parallel 20230222 ('Gaziantep') has been released. It is available for download at: lbry://@GnuParallel:4

Quote of the month:

Praise GNU parallel, though. That gets me pretty far.
-- Your Obed. Servant, J. B. @Jeffinatorator

New in this release:

News about GNU Parallel:

GNU Parallel - For people who live life in the parallel lane.

If you like GNU Parallel record a video testimonial: Say who you are, what you use GNU Parallel for, how it helps you, and what you like most about it. Include a command that uses GNU Parallel if you feel like it.

About GNU Parallel

GNU Parallel is a shell tool for executing jobs in parallel using one or more computers. A job can be a single command or a small script that has to be run for each of the lines in the input. The typical input is a list of files, a list of hosts, a list of users, a list of URLs, or a list of tables. A job can also be a command that reads from a pipe. GNU Parallel can then split the input and pipe it into commands in parallel.

If you use xargs and tee today you will find GNU Parallel very easy to use as GNU Parallel is written to have the same options as xargs. If you write loops in shell, you will find GNU Parallel may be able to replace most of the loops and make them run faster by running several jobs in parallel. GNU Parallel can even replace nested loops.

GNU Parallel makes sure output from the commands is the same output as you would get had you run the commands sequentially. This makes it possible to use output from GNU Parallel as input for other programs.

For example you can run this to convert all jpeg files into png and gif files and have a progress bar:

parallel --bar convert {1} {1.}.{2} ::: *.jpg ::: png gif

Or you can generate big, medium, and small thumbnails of all jpeg files in sub dirs:

find . -name '*.jpg' |
parallel convert -geometry {2} {1} {1//}/thumb{2}_{1/} :::: - ::: 50 100 200

You can find more about GNU Parallel at: http://www.gnu.org/s/parallel/

You can install GNU Parallel in just 10 seconds with:

$ (wget -O - pi.dk/3 || lynx -source pi.dk/3 || curl pi.dk/3/ || \
fetch -o - http://pi.dk/3 ) > install.sh
$ sha1sum install.sh | grep 883c667e01eed62f975ad28b6d50e22a
12345678 883c667e 01eed62f 975ad28b 6d50e22a
$ md5sum install.sh | grep cc21b4c943fd03e93ae1ae49e28573c0
cc21b4c9 43fd03e9 3ae1ae49 e28573c0
$ sha512sum install.sh | grep ec113b49a54e705f86d51e784ebced224fdff3f52
79945d9d 250b42a4 2067bb00 99da012e c113b49a 54e705f8 6d51e784 ebced224
fdff3f52 ca588d64 e75f6033 61bd543f d631f592 2f87ceb2 ab034149 6df84a35
$ bash install.sh

Watch the intro video on http://www.youtube.com/playlist?list=PL284C9FF2488BC6D1

Walk through the tutorial (man parallel_tutorial). Your command line will love you for it.

When using programs that use GNU Parallel to process data for publication please cite:

O. Tange (2018): GNU Parallel 2018, March 2018, https://doi.org/10.5281/zenodo.1146014.

If you like GNU Parallel:

If you use programs that use GNU Parallel for research:

If GNU Parallel saves you money:

About GNU SQL

GNU sql aims to give a simple, unified interface for accessing databases through all the different databases' command line clients. So far the focus has been on giving a common way to specify login information (protocol, username, password, hostname, and port number), size (database and table size), and running queries.

The database is addressed using a DBURL. If commands are left out you will get that database's interactive shell.

When using GNU SQL for a publication please cite:

O. Tange (2011): GNU SQL - A Command Line Tool for Accessing Different Databases Using DBURLs, ;login: The USENIX Magazine, April 2011:29-32.

About GNU Niceload

GNU niceload slows down a program when the computer load average (or other system activity) is above a certain limit. When the limit is reached the program will be suspended for some time. If the limit is a soft limit the program will be allowed to run for short amounts of time before being suspended again. If the limit is a hard limit the program will only be allowed to run when the system is below the limit.

Read on

Other Recent Tux Machines' Posts

CachyOS ISO Release for April 2026 Brings Shelly as Default GUI Package Manager
The CachyOS ISO snapshot for April 2026 is now available for download with the Shelly graphical package manager, DNS-over-HTTPS, fingerprint sudo, and more.
Attack knocks Ubuntu websites, services and Snap store offline
If you’re having trouble accessing the Ubuntu website
Canonical Giving up on GNU/Linux, Selling Slop Ponzi Scheme via Ubuntu Brand
very bad sign
Lots of Coverage About 9-Year-Old Linux Kernel Vulnerability (Privilege Escalation, Local)
kernel issue
Valve dev fixes up VRAM management on AMD GPUs to improve performance
4 articles
Copy Fail Linux Kernel Vulnerability Now Patched in Debian, Ubuntu, and Others
The Copy Fail (CVE-2026-31431) Linux kernel security vulnerability that could allow a local user to elevate privileges to the root user has now been patched. Update your installations as soon as possible!
Wine 11.8
The Wine development release 11.8 is now available
Windows All-Time Lows in Europe, GNU/Linux Rose to 6% in Germany [original]
'Soft power' gone, less Microsoft, more sovereignty through Free software
 
Redcore Linux Hardened 2601 Vulpecula Stable
Redcore Linux Hardened 2601 (codename Vulpecula) stable ISO
Asmi Linux 26.04
Asmi Linux 26.04 is now available based on Ubuntu 26.04 (Resolute Raccoon)
Today in Techrights
Some of the latest articles
9to5Linux Weekly Roundup: May 3rd, 2026
The 290th installment of the 9to5Linux Weekly Roundup is here for the week ending May 3rd, 2026.
qBittorrent 5.2 Open-Source BitTorrent Client Released with Many New Features
qBittorrent 5.2 open-source BitTorrent client is now available for download with many new features, improvements to the WebUI and search, and platform-specific changes. Here’s what’s new!
Sharing and Free, Libre, and Open Source Software
FOSS and more
GNU/Linux and BSD Leftovers
mostly the former
Audiocasts/Shows: Sacha and Prot Talk Emacs, Linux Saloon Covers Many Topics
2 new episodes
Programming Leftovers
Development leftovers and news
Ben Hutchings, GSoC Interns, and Upcoming debian.org E-mail Change (SPF)
Debian picks
Open Hardware/Modding/Retro/Hacking: Commodore 64, ESP32, and More
some projects and raves
EasyOS Development Updates
3 updates from BK
Kernel: Realtek Rant and DRM via HDMI 2.1
mostly AMD coverage
ScummVM's Google Summer of Code, Steam, and GNU/Linux Growing
3 links for now
today's howtos
biodiff and more
Postgres-Related Releases: pgexporter 0.8, pgagroal 2.1, pgmoneta 0.21, and PgQue v0.1
4 new releases
Europe Decoupling from GAFAM is Good News, Especially for European Member States [original]
France was likely just the beginning
statCounter Reckons GNU/Linux Rose to 7% in The Netherlands, Windows at All-Time Lows [original]
This month's latest
FreeBSD 15.1-BETA1 Now Available
The first beta build of the 15.1-RELEASE release cycle is now available
Free Software Report: "60% of open source maintainers work unpaid, 60% have quit or considered quitting, and 44% cite burnout specifically."
new and old commentary
Android Leftovers
This underrated Android feature makes my belly hurt from laughing — here's why you should try it out too
5 more lightweight Linux distros that go easy on your old Windows PC
So, here are five more Linux distributions that are lean, resource-efficient
Linux Lite 8.0 RC1 Released! Based on Ubuntu 26.04 LTS
Linux Lite, the lightweight, beginner friendly, and Ubuntu based Linux Distribution, announced the RC1 release for the next 8.0 major version yesterday morning
Free and Open Source Software
This is free and open source software
Evernight Vista – Fedora-based Linux distribution
Evernight Vista Operating System is a Fedora-based Linux distribution that aims to make Fedora more approachable for desktop users
LiaisonOS – distribution designed for amateur radio emergency communications
LiaisonOS is a Debian-based Linux distribution designed for amateur radio emergency communications
This month in KDE Linux: April 2026
Welcome to another edition of “This month in KDE Linux”!
Ubuntu’s Official Flavour List Is Shrinking, And That’s Not a Bad Thing
There are fewer official flavors with 26.04 LTS version. Is it alarming
Today in Techrights
Some of the latest articles
Free, Libre, and Open Source Software and Sharing Leftovers
FOSS and more
Early Impressions of Chrome from a Firefox User and Mozilla Leftovers
Mozilla news
Software Freedom and GNU Projects' News
mostly GNU
today's leftovers
GNU/Linux and more
This Week in GNOME and GNOME Foundation Update
GNOME news
Kernel Space: Coreboot, Satire (Linux 27), and Linux Kernel 7.x
Linux picks
Games: DOOM, Commodore 64 and ZX Spectrum, Steam on GNU/Linux
gaming picks
Hardware: Raspberry Pi, Other SBCs, and non-Apple, non-Google 'Smartphones'
Hardware leftovers
The ps5-linux project can turn some PlayStation 5 consoles into a Linux gaming machine
The open source ps5-linux project has been released, allowing you to turn a PlayStation 5 into a fully fledged Linux gaming machine
Distributions and Operating Systems: Distrowatch Rankings, Sparky, EasyOS, and HaikuOS
OS news and distro news
Programming Leftovers
Development picks
Security and Windows TCO Leftovers
Security picks
today's howtos
idroot and more
Applications: "3 powerful Linux apps to try this weekend", diffoscope (Reproducible Builds), and Abstract
some software for GNU/Linux
Many People Leaving Microsoft GitHub
old and new
Games: Development, Steam Deck, Subnautica 2, and More
Game-related news
Linux Mint 22.3 HWE ISOs Now Available for Download with Linux Kernel 6.17
Linux Mint 22.3 HWE ISO images are now available for download powered by the Linux 6.17 kernel series from Ubuntu 24.04.4 LTS.
NHS Goes To War Against Open Source
The NHS is preparing to close nearly all of its Open Source repositories
Android Leftovers
Samsung Galaxy Book laptops may take the Android route
Titan Neo with some fixes and upstream updates is available
Six weeks after our Titan release, we refreshed our ISO, Titan Neo, with some fixes and minor improvements
FSF Blogs: It's May, and we've been keeping busy
All four teams at the Free Software Foundation (FSF) have been working tirelessly the past four months, and we have a lot to show for it
Shotcut 26.4 Video Editor Adds Vulkan GPU Support to Speech to Text on Linux
Shotcut 26.4 open-source video editor is now available for download with Vulkan GPU support for Speech to Text on Linux, 10-bit VP9 MP4 (E-AC-3) and 10-bit VP9 WebM (Opus) export presets, and more.
Free and Open Source Software
This is free and open source software
ludora – Fedora based gaming spin
Ludora is a Fedora-based Linux distribution built for gaming systems that also need reliable rollback facilities
May Edition / Issue of PCLinuxOS Magazine
Links from PCLinuxOS Magazine
Kucing7 Linux – Slackware-based Linux distribution
Kucing7 Linux is a Slackware-based Linux distribution aimed at developers and office users who want a ready-to-use workstation with a lightweight desktop
Kirigami forms and configurations
Recently a new submodule has landed in Kirigami: “Forms”
This Week in Plasma: Background Apps and Zoom Up-Scaling
This week Plasma 6.7 entered its “soft feature freeze” where we stop merging newly-written features and focus on finishing up and merging the ones that were already in flight
Kubuntu 26.04 Resolute Raccoon review - Surprisingly nice
It has been a while since I last did a proper distro review. But the occasion warrants it. Canonical has released its latest LTS
Java SDK updates for Slackware all across the board
Today I pushed fresh Slackware packages (for 15.0 and -current
Today in Techrights
Some of the latest articles