Tux Machines

Do you waddle the waddle?

Other Sites

Internet Society

No Research, No Internet

We all take things for granted. For those fortunate enough to have reliable, affordable Internet access, it’s easy to forget that there’s nothing inevitable about being able to FaceTime with a faraway loved one or pay your electricity bill from your phone.

Everyone at the Table: Shaping the Internet Through Collaboration

The Internet is open, interconnected, and doesn’t recognize borders—it’s meant to connect us all, no matter where we live. While it may appear to be a single global network, the Internet is actually made up of over 70,000 smaller networks that work seamlessly together, creating the Internet we know and love. We at the Internet Society believe that the Internet is for everyone. 

LinuxGizmos.com

FusionTech MBM-T113 Delivers Compact ARM-Based Performance in Mobile-ITX Form Factor

FusionTech notes that the Cortex-A7 cores operate at 1.2GHz. The board is available with either 128MB or 256MB of DDR3 memory and includes 32GB of onboard eMMC flash storage, along with a Micro SD slot for expansion.

Radxa UFS/eMMC Module Reader and Storage Solution Enables Fast Flashing and Scalable Embedded Storage

Radxa’s UFS/eMMC Module Reader is a compact USB 3.0 adapter for flashing OS images, accessing firmware, and transferring large files. It supports both eMMC v5.0 and UFS 2.1 modules with speeds up to 5 Gbps

ROC-RK3506J-CC Board Integrates RK3506J and Dual LAN Support

The ROC-RK3506J-CC is a compact single-board computer based on Rockchip’s RK3506J processor. Designed for embedded systems with real-time demands, it supports a wide range of I/O and OS options and is available in both industrial and commercial variants.

9to5Linux

Ubuntu 25.10 “Questing Quokka” to Remove the GNOME on Xorg (X11) Session

Following the decision of the GNOME project to remove support for the Xorg Server for a more secure, faster, and modern Linux desktop experience, Ubuntu devs decided to remove the Xorg-based Ubuntu session, which was known as Ubuntu on Xorg, from the Ubuntu 25.10 (codename Questing Quokka) release.

Linux Kernel 6.14 Reaches End of Life, It’s Time to Upgrade to Linux Kernel 6.15

Released on March 24th, 2025, Linux kernel 6.14 introduced new features like Btrfs RAID1 read balancing support, a new ntsync subsystem for Win NT synchronization primitives to boost game emulation with Wine, uncached buffered I/O support, a new accelerator driver for the AMD XDNA Ryzen AI NPUs (Neural Processing Units), and more.

DXVK 2.6.2 Improves Support for Rocketbirds 2, Red Orchestra: Ostfront, and More

DXVK 2.6.2 is here more than two months after DXVK 2.6.1 with improvements for the Pirate Hunter, Red Orchestra: Ostfront, Rocketbirds 2, theHunter Classic, and Thumper video games, improved WSI backend selection in dxvk-native, and improved vendor ID override logic for D3D9.

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

Milestones [original]
Some time this year we hope to take live a full-site search
IBM and GAFAM Openwashing From Microsoft's OSI, Open Invention Network, and 'Linux' Foundation
Some fakes talking
Canonical Dropping Bazaar Support from Launchpad
To old-timers like me, Launchpad, the Canonical-run development hub
Ubuntu 25.10 Going to Remove Xorg Session for GNOME
To follow the upstream GNOME’s road-map, Ubuntu confirmed to remove the classic X11/Xorg session in the next Ubuntu 25.10 release
 
Free and Open Source Software
This is free and open source software
Ubuntu Lomiri – Linux distribution for phones, tablets, laptops, and desktops
Lomiri was previously known as Unity8
Jack Wallen's How-tos
If you want the fastest, most reliable method of downloading online files on Linux
today's leftovers
only a few leftovers for now
Microsoft/Windows TCO and Entrapment
doing it wrong
Open Hardware/Modding: FusionTech, Raspberry Pi, and More
Hardware picks, 3 for now
Red Hat Leftovers
buzzwords and more
5 MacOS-like Linux distros that can rescue your old Intel Mac before support ends
Yes, you can install Linux on Macs
Canonical/Ubuntu: The Fall to GAFAM, Mindless Buzzwords, and More
bad faith moves
today's howtos
many howtos for now
Audiocasts/Shows/Videos: Linux Matters, Destination Linux, and "PewDiePie Just Switched to Linux... Here's Why You Should Too"
multimedia picks
Rocky Linux 10 Is Out Now as Free Alternative to Red Hat Enterprise Linux 10
Rocky Linux 10 has been released today as a free alternative to the Red Hat Enterprise Linux 10 operating system series, adding various major changes both from upstream and in-house.
Games: Steam Deck OLED, TerraTech Legion, Craftlings, Gunstoppable, More
GamingOnLinux's latest 9
New LWN Articles About Linux Kernel
and event coverage
The importance of free software to science
Although there is an implicit philosophical stance here—that reproducibility and openness in science are desirable, for instance—it is simply a fact that a working scientist will use the best tools for the job, even if those might not strictly conform to the laudable goals of the free-software movement
Security Leftovers
only a few for now
Today in Techrights
Some of the latest articles
BSD and GNU/Linux Leftovers
mostly GNU/Linux
Free, Libre, and Open Source Software Leftovers
FOSS picks
Security and Windows TCO
patches and more
Open Hardware/Modding: ESP32, Orange Pi, and More
hardware picks
IBM/Red Bait Leftovers: Fedora, Hype, and Paid-for Fake 'Articles'
not so great today
Linux Kernel: OpenVPN DCO, BcacheFS, and “EPYC Venice”
Some kernel picks/leftovers
Apple and Microsoft Try to Prevent Users From Exploring/Installing "Proper" GNU/Linux
3 new stories
Docker Desktop 4.42 and VMware Workstation Pro and Alternatives in 2025
OSes in OSes
today's howtos
many howtos for today
Late Night Linux and "End of Windows 10"
2 more stories
"Flock to fedora 2025" and Red Hat spouting out buzzwords again
IBM leftovers
Security and Windows TCO
many Windows TCO stories
Open Hardware/Modding: Right To Repair, Raspberry Pi, and More
Hardware leftovers
Free, Libre, and Open Source Software Events and Mozilla on Travel
3 picks for now
Programming Leftovers
Development picks
Games: At Fate's End, Satisfactory, and More
half a dozen articles from GamingOnLinux
DXVK 2.6.2 Improves Support for Rocketbirds 2, Red Orchestra: Ostfront, and More
DXVK 2.6.2 Vulkan-based implementation of D3D9, D3D10, and D3D11 for Linux / Wine is now available for download with improvements for several games and various bug fixes.
Android Leftovers
6 Fresh New Features Arrive in Android Feature Drop for June
I tried using a FreeBSD distro as my daily driver in 2025
I figured I should focus my attention on FreeBSD distributions
Free and Open Source Software
This is free and open source software
Want to save your old computer? Try one of these 8 Linux distros for free
Here's how to save money, reduce e-waste, and extend the life of your old hardware at the same time
Yesterday's Celebrations [original]
The party is just another little milestone
Today in Techrights
Some of the latest articles
On WordPress as Content Management System (CMS) and Plugins
WP news
Android Leftovers
Android 16 Update Release Date, Eligible Devices and What to Expect
Manjaro KDE Plasma is planned to move to Wayland
I was using Wayland for quite a while and things are more or less smooth (NVIDIA proprietary driver)
GNU/Linux and BSD Leftovers
mostly GNU/Linux
Corporations that insist on killing X11
even if it works
Graphics: Drivers, Collabora, and Vulkan
some graphics-related picks
Red Hat Culls and Other Red Hat News
Red Hat stuff
Free, Libre, and Open Source Software Leftovers
FOSS picks
Mozilla Leftovers
Some Mozilla news
Security Leftovers
Security picks for today
PostgreSQL Releases and News
PostgreSQL medley
Programming Leftovers
Development picks
Open Hardware/Modding: Raspberry Pi, ESP32, and More
hardware picks
FreeBSD 14.3 and More
FreeBSD release
today's howtos
not so many today
Audacity 3.7.4 Improves Effect Preview, Studio Fade Out, and Waveform Rendering
Audacity 3.7.4 has been released today as the latest stable version of this open-source digital audio editor and recording software to improve the stability and reliability of the software.
Kdenlive 25.04.2 released
Kdenlive 25.04.2 is now available
5 reasons why I use systemd on Linux to customize and run services
Systemd is an important part of the underlying Linux system
Ubuntu 24.10 Support Ends July 10th – Upgrade Soon
Time is nearly up on Ubuntu 24.10 ‘Oracular Oriole’, which goes End of Life (EOL) on July 10, 2025
Free and Open Source Software
This is free and open source software
GNOME Has a New Infrastructure Partner: Welcome AWS!
GNOME has historically hosted its infrastructure on premises
Stable kernels: Linux 6.15.2, Linux 6.14.11, and Linux 6.12.33
I'm announcing the release of the 6.15.2 kernel
4 ways to level up your gaming on Linux, starting with the right distro
If you're looking to use Linux as a gaming OS
Ubuntu 25.10 “Questing Quokka” to Remove the GNOME on Xorg (X11) Session
Canonical announced today that they plan to remove the GNOME on Xorg (X11) session from the upcoming Ubuntu 25.10 “Questing Quokka” release, defaulting only to Wayland.
Linux Kernel 6.14 Reaches End of Life, It’s Time to Upgrade to Linux Kernel 6.15
This is your friendly reminder that the Linux 6.14 kernel series has reached the end of its supported life and that you should consider upgrading to Linux kernel 6.15 as soon as possible.
today's leftovers
Games, IBM, and more
Android Leftovers
The Best Android Launchers to Customize Your Phone
Sway 1.11 Wayland Tiling Window Manager Released
Sway 1.11 Wayland tiling window manager is out
4 reasons PowerTop is the most powerful Linux tool you're not using
PowerTOP is a Linux tool created by Intel to monitor and diagnose power usage by running apps and services
Attention! Linux Mint 20 Has Reached Its End
It’s time to upgrade! Linux Mint 20.x has reached end of life
Make GIMP 3.0.x Flatpak Follow System Color Scheme (Light or Dark)
As you may know, GIMP provides official Linux packages through Flatpak and AppImage
Best Free and Open Source Software, howtos and Installations
This is free and open source software
SmartOS – Type 1 Hypervisor platform based on illumos
SmartOS is a specialized Type 1 Hypervisor platform based on illumos
illumos – Unix operating system
Its core has become the base for many different open-sourced Illumos distributions
ROC-RK3506J-CC Board Integrates RK3506J and Dual LAN Support
Both boards feature 512MB of RAM, dual Ethernet ports, MIPI DSI display output, and support for Linux 6.1, Buildroot
Rhino Linux developers are moving away from XFCE - and I'm all for it
The developers of Rhino Linux are in the process of switching to a Plasma-based desktop environment for the distribution
Games: Steam Next Fest, BitCraft Online, CorsixTH, and More
Some of the latest from GamingOnLinux
Today in Techrights
Some of the latest articles
Tux Machines is 21! [original]
Microsoft cannot silence us