Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

Astra SL2600 processors from Synaptics combine Arm cores and RISC-V Coral NPU

Synaptics has unveiled the Astra SL2600, a family of multimodal processors designed for edge computing across consumer, enterprise, and industrial IoT applications. The lineup debuts with the SL2610 product line, targeting low-power and high-performance designs used in smart home, automation, robotics, and retail systems.

GIGABYTE AI TOP ATOM Introduces NVIDIA Grace Blackwell GB10 Performance for the Desktop

GIGABYTE has announced the AI TOP ATOM personal AI supercomputer designed for on-premises AI development. The compact system is powered by the NVIDIA Grace Blackwell GB10 Superchip and delivers supercomputer-level performance within a 1-liter chassis.

Orange Pi Previews Compact SBC with Eight-Core Allwinner A733 SoC

Orange Pi has unveiled the Orange Pi 4 Pro, a compact single-board computer designed for high-performance edge applications. It integrates an octa-core Allwinner A733 processor, a 3 TOPS NPU, and supports up to 16 GB of LPDDR5 memory, combining AI acceleration with a wide range of expansion interfaces.

HackerBox 0119 Geopositioning Explores GPS and Mapping

HackerBox has released Issue 0119, titled “Geopositioning.” This edition marks ten years of the subscription series and focuses on satellite positioning and mapping through the ESP-WROOM-32 system-on-chip and the Thrifty Yeti Locator (TYL) platform. The kit combines hardware assembly with firmware development in the Arduino IDE to demonstrate GNSS and geolocation principles.

9to5Linux

SuperTuxKart 1.5 Open-Source Kart Racing Game Released with Major Changes

Coming three years after SuperTuxKart 1.4, the SuperTuxKart 1.5 release brings a new benchmark mode, new LoD (Level of Detail) settings to reduce “popping”, finer control of the game’s audio levels, new egg hunts on the Black Forest, Gran Paradisio Island, and The Old Mine tracks, and support for spotlights.

9to5Linux Weekly Roundup: October 19th, 2025

I would like 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.

digiKam 8.8 Adds Support to Automatically Use Monitor Color Profiles on Wayland

Coming almost four months after digiKam 8.7, the digiKam 8.8 release introduces a new feature that lets users import or export tag hierarchies to and from text files, support for focus point visualization for FujiFilm and Olympus/OM Systems cameras in the Preview module, and support for automatically using monitor color profiles on Wayland.

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

News Cycles Perish, But GNU/Linux is Getting More (Relative) Limelight [original]
We expect that as more people adopt GNU/Linux more will blog about it
Implementing Search for Tux Machines Would Help Find Old Articles [original]
It's working (internal beta for now), but we have reservations due to LLM bots and other Web junk
Vista 10 Died One Week Ago and GNU/Linux is Gaining [original]
7 days ago Vista 10 died
The Real Xubuntu Story is a Story of Neglect by Microsoft Canonical [original]
What has Microsoft Canonical become?
User Flags Possible Malware Incident on Xubuntu.org
A Reddit user reports that Xubuntu.org may have been compromised
LMDE (Linux Mint Debian Edition) 7 Is Now Available for Download
The long-anticipated LMDE (Linux Mint Debian Edition) 7 release is now available for download based on the Debian GNU/Linux 13 “Trixie” operating system series.
Richard Stallman to Give Another Talk Today in Bavaria (Bavarian Academy of Science) [original]
in 4 hours from now
 
Uptime Kuma 2.0 Arrives with MariaDB Support, Modern UI Refresh
Major Uptime Kuma 2.0 update adds MariaDB
Free and Open Source Software
This is free and open source software
Astra SL2600 processors from Synaptics combine Arm cores and RISC-V Coral NPU
According to the official Astra documentation, the kit includes a 15 V @ 1.8 A USB-PD power adapter, USB-C cable, and a pre-installed Yocto Linux image on eMMC storage
Today in Techrights
Some of the latest articles
Applications: Jellyfin, Carburetor, and InstallAware
Various software-related bits of news
As Windows 10 Support Ends, Majority Of Users Are Migrating To Linux
When talking about an upgrade to Windows 11, such a case isn’t possible for most users due to the strict requirements Microsoft has placed
Windows 10's demise could be Linux's gain if the flood of defectors is anything to go by
Zorin OS 18 just reached 100,000 downloads in a little over 2 days
These Are My Favorite Portable Linux Apps to Keep on a Flash Drive
Flameshot is one of our favorite screenshot apps for Linux
I found the new Asmi Linux fast and fun to use - if you're not afraid of a little setup work
how does this latest version of Asmi fare?
How I turned a Gaming Mini-PC into my first home server
we used the latest stable version of Ubuntu
Android Leftovers
I get more done on my phone than my laptop thanks to this Android trick
Free and Open Source Software
This is free and open source software
Jellyfin 10.11 Media Server Arrives with Backup Support, FFmpeg 7.1, and More
Jellyfin 10.11 open-source media server introduces a massive backend overhaul
Kwort – minimalist and fast Linux distribution
It’s based on CRUX making use of their port system to build a set of minimal packages
CRUX – lightweight Linux distribution
CRUX is a lightweight Linux distribution for the x86-64 architecture targeted at experienced Linux users
SuperTuxKart 1.5 Open-Source Kart Racing Game Released with Major Changes
After several years of development, SuperTuxKart 1.5 has been officially released today for this free, open-source, and cross-platform kart racing game, a major update that brings new features and improvements.
Is this Linux mini PC a viable alternative to Windows? Here's why it worked out for me
Any chance I can get to review a Linux-powered PC
GNU/Linux and BSD Leftovers
mostly GNU/Linux
Free, Libre, and Open Source Software Leftovers
FOSS leftovers
Linuz Devices, Open Hardware, and Gadgets
hardware with GNU/Linux focus
Programming Leftovers
Development picks
Debian: Proxmox VE, Colin Watson, and Otto Kekäläinen:
Debian leftovers
today's howtos
Instructionals/Technical articles
Fedora 43 Workstation: Best New Features
We round up the best new feature set of Fedora 43 workstation release (upcoming)
GIMP 3.0.6 Is Now Available for Download with Improved Photoshop Brush Support
GIMP 3.0.6 has been released as the latest stable version of this open-source, cross-platform, and free image editing software for GNU/Linux, macOS, and Windows platforms.
Ubuntu 26.04 LTS Daily Builds Now Available for Download
Daily build images for Ubuntu 26.04 ‘Resolute Raccoon’ are available for download
I used Linux exclusively for five months instead of Windows, and I was surprised by what I didn't miss
I didn't expect to actually use it daily
Zorin OS 18 Downloads Skyrocket in the Last 48 Hours
Over 100K users downloaded Zorin OS 18 in 48 hours
Free and Open Source Software
This is free and open source software
Review: Kubuntu 25.10
Throughout my trial with Kubuntu I found my thoughts swinging back and forth
Brett Wilson LLP Versus Women Victims of Violent Men [original]
Everything here will persist as normal
Stable kernels: Linux 6.17.4, Linux 6.12.54, Linux 6.6.113, Linux 6.1.157, and Linux 5.15.195
I'm announcing the release of the 6.17.4 kernel
Less Eating, More Feeding [original]
There seems to have been a remarkable increase in GNU/Linux news
Kernel prepatch 6.18-rc2
RC2 of Linux 6.18
Today in Techrights
Some of the latest articles
I discovered this one Linux feature and it makes Windows look embarrassing
The story began when I was looking for a new app to mirror phone notifications to my desktop
9to5Linux Weekly Roundup: October 19th, 2025
The 262nd installment of the 9to5Linux Weekly Roundup is here for the week ending on October 19th, 2025.
Android Leftovers
5 upgrades that make the Galaxy S26 Ultra the Android phone to beat in 2026
Node.js 25 Released with V8 14.1, New Permissions
Node.js 25 ships with V8 14.1, faster JSON.stringify
Alacritty 0.16 Terminal Emulator Released with Unicode 17 Support
Alacritty 0.16, a GPU-accelerated terminal emulator
Desktop/Laptop: Pop!_OS 24.04 LTS Beta (System76), GNU/Linux Considerations, and "Windows 10 Refugees Flock to GNU/Linux"
migrations and move
NebiOS is an Ubuntu-based Distro With a Brand New DE Written for Wayland from Ground Up
Exploring a new Ubuntu-based distro
GNU Web Site Down Due to Heavy Demand or More DDoS by LLM Bots [original]
either unreachable or extremely slow in recent days
Best Free and Open Source Software
Only free and open source software is eligible for inclusion here
digiKam 8.8 Adds Support to Automatically Use Monitor Color Profiles on Wayland
digiKam 8.8 has been released today for this powerful, open-source, free, and cross-platform digital photo management solution that introduces new features and improvements.
OK153-S: New single-board computer with Linux features both ARM and RISC-V processors
The OK153-S is a new single-board computer that uses two different processor architectures and allows the connection of external sensors and actuators. A variety of ports are also available.
GNU/Linux Leftovers
GNU/Linux picks
Free, Libre, and Open Source Software Leftovers
FOSS and more
Open Hardware/Modding: RP2350, Raspberry Pi Pico, and More
Hardware leftovers
BSD and Linux Kernel: ZFS, ZPool, and fsync()
kernel-related leftovers
Programming Leftovers
Development related picks
Games: Pips, Proton Experimental, Steam, and More
gaming picks
KDE: Skrooge, KDE Gardening, and Pixel Perfection (Qml)
KDE/Plasma leftovers
today's howtos
many howtos for today
Barry Kauler on Distro Development
Barry Kauler's latest
This Week in Plasma: Plasma 6.5 is nigh and KDE is 29 years old; help us celebrate!
This week we put the finishing touches on Plasma 6.5
PeaZip 10.7 File Archiver Adds Image Thumbnails on Linux
PeaZip 10.7, an open-source file archiver
Tux Machines Never Deletes Factual Pages [original]
Tux Machines is the victim here
A Satirical Guide to Surviving the Subscription Economy
Let's choose to be owners
Today in Techrights
Some of the latest articles