Tux Machines

Do you waddle the waddle?

Other Sites

Tor Project blog

New Release: Tor Browser 14.5.2

This version includes important security updates to Firefox.

LinuxGizmos.com

Boardcon Idea3576 SBC Showcases RK3576 SoC with CAN Bus and Dual Gigabit Ethernet

Boardcon has recently introduced the Idea3576, a compact single-board computer built around the Rockchip RK3576. Key features include CAN, RS485, 4G connectivity, and support for Debian 12.

Avaota Previews C1 SBC in Raspberry Pi A Form Factor with Allwinner H618

Avaota has recently shared details about the C1, a compact single-board computer in the Raspberry Pi A form factor. Based on the Allwinner H618 processor, the board is a variant of the Yuzuki Chameleon and expands the Avaota SBC lineup with a small-footprint, feature-rich design aimed at embedded development and multimedia applications.

Kiwi DVK Pairs SFP and 2.5GbE with PoE and Modular Expansion for Embedded Development

The Kiwi DVK is a compact development kit designed for high performance networking and flexible I O expansion. It supports a range of interfaces and slots for prototyping advanced connectivity and power configurations in embedded systems.

M0SS-101 Synth with BL616 RISC-V Delivers Classic Controls in a Compact DIY Kit

The M0SS-101 is a compact virtual analog monosynth designed for hands-on subtractive synthesis. It features 42 editable parameters accessible through 26 buttons and a rotary encoder, with RGB LEDs providing visual feedback for signal flow and modulation. The synth includes dual oscillators, a multi-mode filter, envelope and LFO control, delay effects, and 17 preset slots with per-patch MIDI mapping.

T-LoRa Pager Combines ESP32-S3, LoRa, NFC, and GNSS in Handheld IoT Device

The T-LoRa Pager is a compact, programmable IoT development device designed by LILYGO. It integrates LoRa connectivity, NFC capabilities, GNSS positioning, and motion sensing via an embedded IMU, all within a portable form factor.

STARPro64 Brings 32GB LPDDR5 and 20 TOPS NPU to RISC-V SBC Platform

The STARPro64 is one of the latest RISC-V single-board computers from PINE64, based on the ESWIN EIC7700X system-on-chip. Now in stock, the board offers key features such as dual Gigabit Ethernet ports, PCIe Gen3.0 expansion, and wireless connectivity.

9to5Linux

9to5Linux Weekly Roundup: May 18th, 2025

I want to thank everyone who sent us donations; your generosity is 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.

GIMP 3.0.4 Open-Source Image Editor Is Now Available for Download with Bug Fixes

GIMP 3.0.4 is a bugfix release that addresses a bug with pasting selections from GIMP into other apps where the pasted section was padded to the original image size, various crashes related to changing or turning off the main monitor, and some issues with text layers.

Debian 12.11 “Bookworm” Released with 81 Bug Fixes and 45 Security Updates

Arriving two months after Debian 12.10, the Debian 12.11 update is the tenth point release of the Debian Bookworm series. Yes, tenth, because Debian 12.3 was never released due to an issue in the EXT4 file system leading to data corruption, which means that it doesn’t count as a point release.

GNU Parallel 20230422 ('Grand Jury') released

posted by Roy Schestowitz on Apr 23, 2023,
updated Apr 23, 2023

GNU Parallel 20230422 ('Grand Jury') has been released. It is available for download at: lbry://@GnuParallel:4
Quote of the month:
  parallel might be one of the best utilities out there
    -- @ThePrimeagen@twitter ThePrimeagen
New in this release:

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:
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.

Other Recent Tux Machines' Posts

GIMP 3.0.4 Open-Source Image Editor Is Now Available for Download with Bug Fixes
GIMP 3.0.4 has been released today as the fourth maintenance update to the latest GIMP 3.0 series of this popular, free, open-source, and cross-platform image editor for GNU/Linux, macOS, and Windows.
Nobara 42: SteamOS alternative updated with better driver manager, custom app store, and new Linux kernel
Nobara Linux 42 packs a handful of interesting upgrades over the previous version of the gaming-centric Linux distribution
Debian on Thinkpad X13 Gen 5 and Release of Debian-Based Grml 2025.05
Some Debian news
This Week in Plasma: HDR calibration wizard
Welcome to a new issue of “This Week in Plasma”! Every week we cover the highlights of what’s happening in the world of KDE Plasma and its associated apps like Discover, System Monitor
 
Web and Book of R, Free, Libre, and Open Source Software Leftovers
FOSS picks
GNU/Linux and BSD Leftovers
mostly GNU/Linux
today's howtos
a lot from idroot
Konsole tab layouts and KDE is finally getting a native virtual machine manager called "Karton"
Some KDE updates
Open Hardware: Arduino, Raspberry Pi, and More
Hardware picks
Best GNU/Linux Browsers, Web Browser Telemetry, and Tor Browser 14.5.2
browser news
Programming Leftovers
Development news/commentary
Linux 6.15-rc7
almost there now
Android Leftovers
How to Share Your Android's Hotspot Using a QR Code
Debian Trixie Enters Hard Freeze, Edging Closer to Release
Debian Trixie’s hard freeze phase begins
15 Popular Games You Can Surprisingly Play on Linux
Gone are the days when Linux gamers had to jump through hoops to make their favorite games work on their favorite distro
Open Source Hiding In Plain Sight
You probably know Linux, but RTEMS is a high-reliability RTOS for aerospace
After Switching to Linux, This App Helped Me Drop Google for Good
Tired of Google's grip on your data? After switching to Linux
FlipperHeimer Geiger Counter module adds radiation sensing to Flipper Zero
including the Flipper Blackhat open-source dual-band Wi-Fi card running Linux and designed for penetration testing
Free and Open Source Software
Only free and open source software is eligible for inclusion here
Raspberry Pi OS – Debian-based distro
Raspberry Pi OS (previously called Raspbian) is the official supported operating system for the Raspberry Pi series of ARM-based single board computers
Review: GoboLinux 017.01
GoboLinux is an independently-developed Linux distribution with an alternative filesystem hierarchy that departs from established UNIX standards
Boardcon Idea3576 SBC Showcases RK3576 SoC with CAN Bus and Dual Gigabit Ethernet
According to the software section, the board supports Debian 12 and Buildroot
Latest From Linux Made Simple
3 of relevance to us
Today in Techrights
Some of the latest articles
9to5Linux Weekly Roundup: May 18th, 2025
The 240th installment of the 9to5Linux Weekly Roundup is here for the week ending on May 18th, 2025.
Security Leftovers and Windows TCO
some Linux focus too
today's leftovers
GNU/Linux and FOSS leftovers
Programming Leftovers
Development picks
Fedora and Red Hat Leftovers
Fedora and more
ESP32, Raspberry Pi, and More Hardware Stories
3 more for now
Debian: Sparky GNU/Linux, Daniel Lange, Freexian, and Tails
4 more picks
This Week in Linux and mintCast Episode
2 new episodes
Linux and "Apps"
some news about a 'Linux' thing
today's howtos
4 more howtos
Android Leftovers
Google fixed the ‘Find My Device’ name problem, but now Android needs better AirTags
Arch Ultimate Edition: A Feature-Rich, Beautiful Desktop OS - The New Stack
Arch Ultimate Edition is for anyone who wants the benefit of Arch Linux without having to go through the text-based installer.
Moving to Software Freedom
in hackaday today
33,333 Pages Since Migrating to Our Static Site Generator (SSG) [original]
We don't yet have a time, only date and venue
GNU/Linux "Market Share" Has Risen in Croatia [original]
Windows is definitely down
today's howtos
a dozen more howtos
Games, Graphics, and Emulation
4 picks for now
Stable kernels: Linux 6.14.6, Linux 6.12.28, Linux 6.6.90, Linux 6.1.138 and Linux 5.15.182
I'm announcing the release of the 6.14.7 kernel
KDE Plasma 6.4 Beta Release
Here are the new modules available in the Plasma 6.4 beta
Android Leftovers
Material 3 Expressive’s new loading indicator is already in Android 16
Celluloid 0.29 Video Player Fixes Nvidia Flickering and UI Glitches
Celluloid 0.29 open-source video player is out
Wine 10.8
The Wine development release 10.8 is now available
Debian 12.11 “Bookworm” Released with 81 Bug Fixes and 45 Security Updates
The Debian Project announced today the release and general availability of Debian 12.11 as the tenth ISO update to the latest Debian GNU/Linux 12 “Bookworm” operating system series.
Debian 13 (Trixie) Installer Reaches First Release Candidate
Debian Installer Trixie RC 1 is here with Linux kernel 6.12, improved EFI support
These 4 Linux Commands Show You the Path of an Executable File
Want to display the path of an executable Linux file? Several Linux commands
Free and Open Source Software
This is free and open source software
NomadBSD is a persistent live system for USB flash drives
NomadBSD is a persistent live system for USB flash drives, based on FreeBSD
Transitous Hack Weekend in July
Hack weekends, sprints or however you want to call this are a long established thing in e.g. the KDE or OSM communities
today's leftovers
Perl and Debian
Security and Windows TCO
mostly Windows TCO
Open Hardware/Modding: Raspberry Pi and More
hardware picks
Audiocasts/Shows: Linux Out Loud and Hackaday Podcast
only a pair for now
Today in Techrights
Some of the latest articles
Free, Libre, and Open Source Software and Openwashing
FOSS and more
Open Document Format (ODF) and More Explained by Document Foundation
Document Foundation leftovers
Web Browsers Leftovers
WWW stuff, FOSS centric
GNU/Linux Leftovers
kernel and distros
Programming Leftovers
Development related picks
Games: Sausage, New Steam Games with Native GNU/Linux Clients, GNOME Crosswords
Games leftovers
Ubuntu 25.10 Plans and Rooming with Mark Shuttleworth
Some Ubuntu leftovers
Open Hardware/Modding: Raspberry Pi, ZimaBoard, and More
hardware related news
Fedora / Rocky Linux / CentOS Leftovers
Leftovers about Red Hat-like distros
Applications: Kubernetes, SafeLine, Diffoscope, and More
Software news and commentary
today's howtos
only a few for this evening
Security Leftovers
Security links aplenty
Microsoft Broke Linux PCs; Now Microsoft Sites Credit It With 'Fixing' What It Broke (a Year Later)
spin as usual
Videos and Shows: COSMIC Alpha 7, Many Invidious Picks, and TLLTS
mostly videos
today's howtos
many from idroot
Fedora / Red Hat / IBM Leftovers (Too Many Buzzwords Again)
many from redhat.com
Android Leftovers
Your phone's Quick Replies and Smart Actions could get a whole lot more helpful with Android 16
Proprietary Holes and Windows TCO
Windows TCO and more
Clonezilla Live 3.2.2 Released with Kernel 6.12 and Enhanced Ezio Options
The latest Clonezilla live 3.2.2-5 release brings a fresh Debian Sid base
5 Features Windows Should Steal From Linux Mint
Windows has been lagging behind in terms of modern features to the extent that a Linux distro can offer a better user experience
6 reasons why Linux is better than ever
If you asked PC users about the most accessible OS in the 2010s
Open Hardware/Modding: Raspberry Pi, Arduino, and SparkFun
Hardware picks
elementary OS Preview Some Cool Upcoming Features
The elementary OS 8.0.1 release back in March brought an appreciable set of improvements with it
Free and Open Source Software, howtos and Installations
This is free and open source software
OpenBSD – multi-platform BSD-based UNIX-like operating system
The OpenBSD project produces a free, multi-platform 4.4BSD-based UNIX-like operating system
GNOME: 2025-05-16 Foundation Report
Here’s my attempt at a more concise Foundation Report for my second official week at the Foundation
Thibault Saunier: gst-dots-viewer: A New Tool for GStreamer Pipeline Visualization
We’re happy to have released gst-dots-viewer
This Week in GNOME: #200 Two Hundred
What a milestone! We’re thrilled to celebrate the 200th post of This Week in GNOME
VeraCrypt and Linux kernel encryption conflict
I connected an external hard disk containing an NTFS-formatted VeraCrypt container to my Slimbook Titan machine running Kubuntu 22.04
STARPro64 Brings 32GB LPDDR5 and 20 TOPS NPU to RISC-V SBC Platform
Software support includes RockOS, a Debian-based Linux distribution maintained by PLCT Lab
In Memoriam: John L. Young, Cryptome Co-Founder
John L. Young, who died March 28 at age 89 in New York City
Helwan O.S: Egypt’s All-Purpose Linux Distribution
The folks who develop Helwan O.S say it’s “designed by devs for devs and creators
Why Gaming with openSUSE Is A Good Move
And you’re still gaming. Still winning. Just on Linux
Games: Team17 Humble Bundle, SWAPMEAT, and More
4 from a GoL Friday
Today in Techrights
Some of the latest articles