Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

Red Hat Enterprise Linux 9.4 Officially Released, Here’s What’s New

Highlights of Red Hat Enterprise Linux 9.4 include support to add customized files for SCAP security profile to a blueprint, support for the minimal RHEL installation to install only the s390utils-core package, and the ability to configure Keylime server components, the verifier and registrar, as containers.

TUXEDO Stellaris 17 Gen6 Linux Laptop Launches with Intel Core i9-14900HX

Coming ten months after TUXEDO Stellaris 17 Gen5, which featured the fastest notebook hardware on the planet, the 6th generation TUXEDO Stellaris 17 laptop is now powered by an Intel Core i9-14900HX with 24 cores, 32 threads, 36 MB cache, 55 W TDP, up to 5,8 GHz clock speed, and Intel UHD Graphics.

Fwupd 1.9.19 Linux Firmware Updater Supports Acer U32 and Luxshare 7-in-1 Docks

The newly supported devices in the fwupd 1.9.19 release include the Acer U32 dock, Luxshare 7-in-1 dock, and Pixart models 2404, 4206, 2440, 2418, 2752, 2840, and 2818. On top of that, the new fwupd release implements the ability to retry downloads as a workaround for flaky network connections.

Proton 9.0 Released with Support for THE FINALS, Lord of the Rings: Gollum

Based on Wine 9.0, the Proton 9.0 release adds support for the Dinogen Online, Photography Simulator Demo, George McGeehan Gamer Hero, THE FINALS, True Reporter. Mystery of Mistwood, Road to Vostok Demo, Witch on the Holy Night, and Lord of the Rings: Gollum video games.

LibreOffice 24.2.3 Office Suite Is Now Available for Download with 79 Bug Fixes

Coming a little over a month after the LibreOffice 24.2.2 update, LibreOffice 24.2.3 is here to address more of those pesky bugs, crashes, and other annoyances reported by users in the latest LibreOffice 24.2 office suite series, thus improving its overall stability and reliability.

LibreELEC 12 Adds Raspberry Pi 5 Support, HDR Support for AMD and Intel GPUs

Powered by the long-term supported Linux 6.6 LTS kernel series and based on the latest Kodi 21 “Omega” media center software, LibreELEC 12 is here more than a year after LibreELEC 11 and introduces support for the Raspberry Pi 5 single-board computer.

GNU nano 8.0 Released with New Options and Various Improvements

GNU nano 8.0 bounds ^F for starting a forward search and ^B for starting a backward search by default, while M-F and M-B repeat the search in the corresponding direction, support for opening a file at a certain line number by using nano filename:number, and support for scrolling the viewport with the mouse wheel.

LinuxGizmos.com

Compulab’s IoT Gateway Equipped with Dual GbE Ports and GPS Connectivity

Compulab unveils the IOT-DIN-IMX8PLUS which is an advanced industrial IoT gateway equipped with dual GbE ports and GPS connectivity, offering versatility and robust functionality in a compact, modular DIN-rail form factor and fanless design.

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

TUXEDO Stellaris 17 Gen6 Linux Laptop Launches with Intel Core i9-14900HX
Linux hardware vendor TUXEDO Computers announced today the TUXEDO Stellaris 17 Gen6 Linux-powered laptop with an updated Intel Core i9 series processor.
Neofetch Development Ends as GitHub Project Archived
It seems that the popular command-line system info tool Neofetch is dead, Jim
Nano 8.0 Command-Line Text Editor Released
Beloved by countless Linux users, the Nano text editor rolls out v8.0 'Grus grus' with modernized bindings
Simplify hybrid cloud operations with Red Hat Enterprise Linux 9.4
Architecting, deploying, and managing hybrid cloud environments can be a challenging and time-consuming process
LibreOffice 24.2.3 Office Suite Is Now Available for Download with 79 Bug Fixes
LibreOffice 24.2.3 is now available for download as the third point release to the LibreOffice 24.2 office suite series fixing more than 70 bugs for improved stability and robustness.
TUXEDO Pulse 14 Gen4 Laptop Arrives with AMD Ryzen 7 8845HS and Radeon 780M
Linux hardware vendor TUXEDO Computers unveiled today the Gen4 (4th generation) TUXEDO Pulse 14 laptop with an updated processor from the AMD Ryzen 7 8000 Series.
LibreELEC (Omega) 12.0
LibreELEC 12.0 has released as final release, bringing Kodi (Omega) v21.0
Proton 9.0 Released with Support for THE FINALS, Lord of the Rings: Gollum
Valve released today Proton 9.0 as the latest stable release of this open-source compatibility tool for Steam Play based on Wine and additional components that lets you play Windows games on Linux systems.
Windows TCO Stories
Windows causing problems
Gentoo Linux tells AI-generated code contributions to fork off
AI-generated and assisted code contributions are no longer allowed in the Gentoo Linux distribution
 
Red Hat Enterprise Linux 9.4 Officially Released, Here’s What’s New
Red Hat announced the general availability of Red Hat Enterprise Linux 9.4 as the fourth update to the latest Red Hat Enterprise Linux 9 operating system series adding new and enhanced capabilities.
Android Leftovers
Is Your Android Smartphone At Risk From A ‘Dirty Stream’ Attack?
VirtualBox 7.0.18 Resolves Critical Networking Bug
The just-released VirtualBox 7.0.18 fixes host crashes with bridged networks and brings Linux guest improvements
This Extension Adds a Progress Bar to GNOME Shell Media Controls
Media Progress is a new GNOME Shell extension that adds a real-time progress bar to the MPRIS notification/sound control doohickey that shows in the notification area
Poettering announces tool in new systemd version to replace sudo
Some Debian developers who preferred the older init system, sysVinit, forked the distribution
Perens proposes new licence for today's open source world
Veteran open source advocate Bruce Perens, creator of the open source definition that has provided the rules for open source software for the last 26 years
Programming Leftovers
R, Python, Bash, and more
Free, Libre, and Open Source Software Leftovers
FOSS leftovers
BSD: FreeBSD, BSD on a PC, and OpenBSD
Some BSD news
today's leftovers
Ubuntu, security, and more
Open Hardware: Arduino, Raspberry Pi, and More
4 open hardware picks
today's howtos
second batch of howtos
IBM's Red Hat on "AI" Hype, FedRAMP, and OpenShift Virtualization
4 articles in redhat.com
Games: Steam, Proton, and More
8 new stories for gamers
Fwupd 1.9.19 Linux Firmware Updater Supports Acer U32 and Luxshare 7-in-1 Docks
Richard Hughes announced today a new release of the popular Linux firmware updater utility fwupd, version 1.9.19, that brings support for more devices, as well as various improvements.
FIREBAT T8 Plus Mini PC Running Linux: Installing and Configuring Rhino Linux
It sounds like an ideal low cost machine to run Linux on the desktop
OpenTofu 1.7.0 Rolls Out with Important Enhancements
OpenTofu 1.7.0 Terraform alternative released with end-to-end state encryption, dynamic functions, and more
Free and Open Source Software
Only free and open source software are eligible for inclusion
Collections of Different Linux Distributions
Because Linux is an open source operating system, combinations of software vary between Linux distros
Microsoft says April Windows updates break VPN connections
Microsoft has confirmed that the April 2024 Windows security updates break VPN connections across client and server platforms
Family of free and friendly open source software
Or FOFAFOSS. Rolls right off your tongue
Stable kernels: Linux 6.8.9, Linux 6.6.30, Linux 6.1.90, Linux 5.15.158, Linux 5.10.216, Linux 5.4.275, and Linux 4.19.313
I'm announcing the release of the 6.8.9 kernel
Programming Leftovers
Programming related links
today's leftovers
misc. links
Open Hardware: Open On-FPGA Debug Interface and RISC-V FPGA for Linux
for the hackers among us
Mozilla: William Durand on His Moziversary and Don Marti on Pandoc
a couple of personal updates
today's howtos
half a dozen howtos
Red Hat and Fedora News
Misc. stories
Security Leftovers
Security related stories
KDE: KOrganizer and Goal Sprint 2024
Some KDE picks
Debian News From the Projects, Developers, Sparky, DPL
misc. Debian picks
Serpent OS: Calm Before The Storm
It's that time of month again, and we have some details to share with you on boot management, as well as plans for real installs landing in May
Today in Techrights
Some of the latest articles
LWN's Latest Articles About Linux (Kernel)
outside the paywall now
Rust Programming Leftovers
4 stories
today's howtos
second batch of howtos
Programming Leftovers
Programming picks
Openwashing Leftovers
fake openness
today's leftovers
misc. topics covered this week
Free, Libre, and Open Source Software Leftovers
applications and more
Games: Descent 3 Liberated, SummerCart64, and More
games related news
Audiocasts/Shows: FLOSS Weekly, Linux Matters, Destination Linux, mintCast
4 new episodes
PostgreSQL: PGConf.dev 2024 and Datasentinel 2024.04
PostgreSQL news
Windows TCO Leftovers
Windows security ruin
Security Leftovers
Security links
Linux Devices and Open Hardware/Modding-Friendly Appliances
extensive new list of hardware picks
GNOME: Call for GNOME Asia 2024 Location Proposals, Nautilus+Microsoft, Workbench 46.1, and More
GNOME development updates and news
LibreELEC 12 Adds Raspberry Pi 5 Support, HDR Support for AMD and Intel GPUs
LibreELEC, the JeOS (Just Enough Operating System) for embedded devices forked from OpenELEC and based on the Kodi home theatre software, has been updated today to version 12, a major update that adds support for new devices and new features.
Android Leftovers
New Wpeeper Android malware can steal your data through backdoor – learn how to stay safe
today's howtos
5 howtos
Latest From Red Hat's Site
IBM marketing mostly
Waveshare UGV Rover – A 6-wheel AI robot built around Raspberry Pi 4/5 and ESP32
Since the source code for the platform will be open-sourced it can also be used for educational purposes, programming, robotics, AI experimentation, and many other applications
Games: Team17 Humble Bundle, Steam Deck, and Lots More
10 latest stories from gamingonlinux
Distrobox 1.7.2 Enhances Container Management
Distrobox 1.7.2 container wrapping layer promises easier management and improved POSIX compatibility
Review: Fedora 40 "KDE"
Fedora often acts as a testing grounds for young technologies, particularly development tools
I Used macOS for Years. Here’s Why I Prefer Ubuntu
Even if you’re a long-time user of a particular OS, it can pay to check out the alternatives
Banana Pi BPI-M5 Pro low-profile SBC features Rockchip RK3576 octa-core Cortex-A72/A53 AIoT SoC
The Banana Pi BPi-MP5 Pro will support Android 14, Debian 11, and Buildroot through official Rockchip support
NXP i.MX 8M Plus powered DIN-Rail IoT gateway takes DIO, RS232, RS485, and ADC expansion modules
Compulab provides Yocto 4.0 and Debian 12 images with support for Docker, MS Azure IoT, Node-RED, and OTA updates with Mender, as well as Modbus RTU, Modbus TCP, and MQTT libraries
April GNU Spotlight with Amin Bandali: Eleven new GNU releases!
Eleven new GNU releases in the last month (as of April 28, 2024)
Free and Open Source Software
Cava is a bar spectrum audio visualizer for terminal (ncurses) or desktop (SDL)
Collections of Different Linux Distributions
A distro provides the user with a desktop environment, preloaded applications, and ways to update and maintain the system
Kate & Icons
I think that is rather unpleasant and for e.g. the left icon-only border just an unusable insult
Thunderbird Monthly Development Digest: April 2024
Hello Thunderbird Community, and welcome back to the monthly Thunderbird development digest
LXQt 2.0.0 Unveils Exciting Features for a Better User Experience
Learn what's new in the LXQt 2.0.0 desktop environment, which promises Wayland updates soon.
Today in Techrights
Some of the latest articles
Founder of NixOS 'Ousted'
as predicted
German state moving 30,000 PCs to LibreOffice
The term digital sovereignty is very important here
Software: syslog-ng, Virtual Keyboards, pgvector, and More
Free software coverage and releases
today's howtos
various howtos for Wednesday
Latest From IBM's redhat.com
several redhat.com articles
Not again Red Hat
On “Corporate Open Source is Dead”
Yocto Project 5.0 “Scarthgap” released with Linux 6.6 and plenty of changes
The Yocto Project 5.0 codenamed “Scarthgap” has just been released with Linux 6.6, glibc 2.39, LLVM 18.1, and over 300 other recipe upgrades
EasyOS Kirkstone-series version 5.8 released
Version 5.7 was released on February 4, 2024
Amarok 3.0 "Castaway" released!
The Amarok Development Squad is happy to announce the immediate availability of Amarok 3.0 "Castaway"
Linux Mint 22 Will Include Preinstalled App for Matrix
Linux Mint 22 will include a Matrix web client preinstalled when released later this year
today's leftovers
3 more stories
Security Leftovers
only 4 for now
today's howtos
last batch for today
GNU nano 8.0 Released with New Options and Various Improvements
GNU nano 8.0 command line text editor for Unix-like operating systems is now available for download as a major update introducing new features and various improvements.
Windows TCO: the Cost of Windows and Microsoft Breaches
Windows TCO/Microsoft incidents
Programming, Graphics Development, and BSD
coding related links
today's howtos
8 howtos for now
Free, Libre, and Open Source Software Leftovers
Education, licensing, and more
Devices, Open Hardware, and Mobile
Some Linux- of hacker-friendly gadgets
Android Leftovers
Merger of Android and Pixel teams may be good news for Samsung
4 tools Steam Deck and Linux gamers need to install
Gaming on Linux can be a little complicated, but the open-source community has put into the software surrounding the Linux gaming experience
IPFire Location: A decentralised, signed database in DNS
In the recent series of updates on IPFire Location, we are bringing you an exciting new feature today
GEEKOM XT12 Pro review – Part 3: Ubuntu 24.04 on an Intel Core i9-12900H mini PC
The GEEKOM XT12 Pro works well and fast in Ubuntu 24.04 thanks to its powerful Intel Core i9-12900H 14-core/20-thread processor
Ubuntu 24.04 Official Flavors Are Now Available for Download, Here’s What’s New
As part of today’s release of Ubuntu 24.04 LTS (Noble Numbat), all the official Ubuntu flavors have been updated to the same version and, in this article, you can learn about their new features and improvements.
Free and Open Source Software
These are free and open source software
Collections of Different Linux Distributions
A distro provides the user with a desktop environment, preloaded applications, and ways to update and maintain the system
The 5 GIMP features I depend on most when editing images (and how I use them)
If you're looking for a powerful, free image editor, look no further than GIMP
Today in Techrights
Some of the latest articles