Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

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.

9to5Linux

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.

TUXEDO Computers Introduces New Kernel Concept for Debian-Based TUXEDO OS

As reported last month, TUXEDO Computers is currently working on rebasing its Ubuntu-based TUXEDO OS on Debian Testing, ditching Ubuntu altogether. The Debian-based TUXEDO OS will still use the KDE Plasma desktop environment tweaked by TUXEDO Computers, so users won’t notice any visible change.

Mozilla Firefox 154 Is Now Available for Download, Here’s What’s New

Highlights of Firefox 154 include a new “Manage AI” quick action in the address bar that makes it easier to open the AI section of Settings, support for clearing and updating cached favicons when performing a hard reload on a web page, and the ability to highlight selected text in PDFs like in normal web pages.

GNU Linux-Libre 7.2 Kernel Is Now Available for Software Freedom Lovers

Based on the recently released Linux 7.2 kernel series, the GNU Linux-libre 7.2 kernel is here to clean up blob names in the amdgpu, nova core, qcom iris and q6v5, iwlwifi, amdxnda, adreno, r8152, and mt792x drivers, adjust the firmware loading interfaces, and drop the cleanup of the hci bt3c driver as it was removed upstream.

9to5Linux Weekly Roundup: August 16th, 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.

NVIDIA’s GeForce NOW Native Linux App Now Stable, Offers Flatpak Support

GeForce NOW ships as a stable release built on feedback gathered from the Linux gaming community. The app offers support for Ubuntu 24.04 LTS and later, and NVIDIA has added a Flatpak repository to make installation and future updates simpler for Linux gamers using GeForce NOW.

Tor Project blog

New Release: Tor Browser 15.0.20

This version includes important security updates to Firefox.

Funding internet freedom together: results from our first participatory funding round

The round officially closed on June 19th, and the results give us reason to be encouraged. Today, we can share that the community showed up: more than $200,000 USD has been raised in total, with $174,536 being distributed to  participating grantee projects.

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

Epic Games Store Will Support Linux "Soon"
many sources today
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.
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
 
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
Debian Deciding Whether to Ban Slop Plagiarism in Debian Development
some takes from Debian Developers
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
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
Ubuntu’s App Center Issues, Canonical Helps Microsoft's User Retention in Windows
a losing game
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
Nepal: GNU/Linux Approaches 6% [original]
Nepal is at risk from several neighbours
Egypt - and Much of Africa - Has GNU/Linux on About 1 in 20 Desktops/Laptops [original]
According to Clownflare
TUXEDO Computers Introduces New Kernel Concept for Debian-Based TUXEDO OS
TUXEDO Computers announces a new Linux kernel concept for the upcoming Debian-based TUXEDO OS operating system, which is now in public beta testing.
The Ravenports Universal Package System [original]
a cross-platform “ports” system
Free Software, Education, and Standards
FOSS leftovers mostly
Wireshark 4.6.8 Released
Wireshark 4.6.8 announcements
GNU/Linux Leftovers
Debian, KDE, and more of GNU/Linux
Devices With Linux, Open Hardware, and GrapheneOS
gadgets and mobile
Kernel: Time Stamp Counter (TSC) in Linux and New Linux Driver for ASUS ROG Astral
kernel news
BSD: OpenBSD's KARL (Kernel Address Randomized Link) and FreeBSD Home Server
BSD picks
Windows PCs Sold as "Ubuntu" (CNX Paid Pieces), Canonical Helps Microsoft Sell Windows (Calling Windows/WSL "Ubuntu"), "Windows System Embedded in your Linux"
very backwards
today's howtos
only 3 today
Games: Modded GNU/Linux Gaming Rig, Mass Layoffs in Proprietary Gaming Studios
2 stories
Windows is losing an entire generation of PC users to Linux, Apple, and Google
Simply put, there are more incentives and reassurances for switching to Linux, even if you aren't technically experienced
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.
GNU Linux-Libre 7.2 Kernel Is Now Available for Software Freedom Lovers
GNU Linux-libre 7.2 kernel is now available for download based on Linux kernel 7.2 and targeted at those seeking 100% freedom for their PCs.
Yesterday Morning Clownflare Saw 22% of Web Traffic in Portugal Coming From GNU//Linux [original]
Clownflare saw more than a fifth of Web traffic originating from GNU/Linux
Debian developers are voting on how AI can be used to build the OS, and the ballots are already open
The world of Linux development is going through an interesting time right now
Android Leftovers
I changed one Google setting, and my Android finally held a charge
9to5Linux Weekly Roundup: August 16th, 2026
The 305th installment of the 9to5Linux Weekly Roundup is here for the week ending August 16th, 2026.
How I turned my Linux desktop setup into a portable package I can run on any machine
I had spent months refining my Linux desktop environment
Luckfox Lyra PLC Runs Linux on RK3506B with Dual 100Mbps Ethernet
The Luckfox Lyra PLC is a compact Linux-based programmable logic controller built around the Rockchip RK3506B processor
GNOME 51 Desktop Environment Is Now Available for Public Beta Testing
The GNOME 51 desktop environment is now available for public beta testing with new features and improvements across various core apps and components.
Best Free and Open Source Software
This is free and open source software
Review: Helwan Linux 5.0
I couldn't picture a scenario, for example, where I'd prefer GOffice apps (Gnumeric and AbiWord) over LibreOffice or OnlyOffice
NVIDIA’s GeForce NOW Native Linux App Now Stable, Offers Flatpak Support
NVIDIA’s GeForce NOW native Linux app has graduated from beta and it’s now available as a stable release with Flatpak and Ubuntu support.
GIMP 3.4 Promises New Project File Format, PSD Support Improvements, and More
GIMP 3.4 open-source image editor is under development promising many new features and enhancements. Here’s what to expect!
Raspberry Pi CM5-based mini PC targets local OpenClaw deployment
The system ships with 64-bit Raspberry Pi OS Desktop and comes preinstalled with JishuShell
Debian GNU/Linux is 33 [original]
Ian left this planet a decade ago
Manjaro 26.1 Bian-May - released
The GNOME edition has received several updates to Gnome 50 series
Open Hardware: Weekly GNU-like Mobile Linux Update, RISC-V, and More
hardware picks
Programming Leftovers
Development picks
Today in Techrights
Some of the latest articles
Debian Turns 33 Years Old, Happy Birthday!
Today is Debian Day, and the Debian Project and Debian GNU/Linux operating system celebrate 33 years since it was founded by Ian Murdock in 1993.
Clownflare and statCounter Agree GNU/Linux at Over 10% "Market Share" in Israel, Clownflare Sees It Peaking at Almost 33.3% Sometimes [original]
it leaves Microsoft with nothing but layoffs this month in Israel
Free, Libre, and Open Source Software Leftovers
FOSS and more
Web Browsers/Web Servers/Feed Readers Leftovers
WWW and FOSS
Programming Leftovers
Development stories
GNU/Linux and BSD Leftovers
mostly GNU/Linux
Open Hardware/Modding: reComputer, ESP32, and More
hardware picks
today's howtos
Instructionals/Technical picks
Games: New Steam Games, Godot Engine, D7VK, and More
Games and more
GNU/Linux is Becoming More Mainstream, But That Can Lead to Further Restrictions Inside GNU/Linux [original]
The general consensus is that GNU/Linux is gaining, but will it usher in Software Freedom or just more DRM?
Android Leftovers
PS3 emulation on Android keeps getting better with new ARMSX3 updates
What a real LTS looks like: Kubuntu 26.04
As a consolation prize for canceling the Plasma LTS product, we decided at the time to add an additional bug-fix release to the normal Plasma schedule
This Week in Plasma: Bi-Directional RDP Clipboard Sync
Welcome to a new issue of This Week in Plasma
These 5 immutable Linux distros solve problems Windows users don’t even know they have
It can be tricky to get your head around the concept of an “immutable” operating system
The prediction that Linux had no future aged disastrously
A few months after Linus Torvalds released the first version of Linux
GEEKOM IT13 Max Review – Part 3: Ubuntu 26.04 on an Intel Core Ultra 9 185H mini computer
In this review, we will report our experience running Ubuntu 26.04 on the GEEKOM IT13 Max
Why AI-Heavy Projects Rarely Feature on LinuxLinks
I have reviewed free and open source software for more than two decades
Free and Open Source Software
This is free and open source software
GNU/Linux Reaches All-Time High of 6% (According to statCounter) or 7.3% (Clownflare) in Indonesia [original]
Indonesia's latest data suggests GNU/Linux is growing among Indonesian computer users
Geminispace Approaches 5,250 Known Capsules [original]
Adoption of Gemini Protocol has grown
Today in Techrights
Some of the latest articles