Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

FFmpeg 8.0 “Huffman” Released with AV1 Vulkan Encoder, VVC VA-API Decoding

Dubbed “Huffman” and coming more than ten months after FFmpeg 7.1, the FFmpeg 8.0 release is here to enable TLS peer certificate verification by default, add an AV1 Vulkan encoder, introduce VP9 Vulkan and ProRes RAW Vulkan hardware-acceleration, and implement APV encoding support through a libopenapv wrapper.

Calibre 8.9 E-Book Manager Adds Support for Embedded Fonts to HTMLZ Output

Calibre 8.9 is here to add support for embedded fonts to HTMLZ output, a color swatch in the results list of the Annotations browser to make seeing the type of highlight easier, and the ability to display the cover of the target book when merging books via drag and drop.

LinuxGizmos.com

Tiny Linux-Based Industrial Module Built on RK3506J SoC

The FET3506J-C is a compact embedded module from Forlinx based on the Rockchip RK3506J. It is designed for long-term industrial use in automation, transportation, energy, and communication systems. The module runs Linux 6.1 and supports low power operation, a small footprint, and extended temperature ranges.

Banana Pi BPI-M4 Super with Rockchip RK3568B2 and Dual Ethernet

Banana Pi has shared more hardware details about the upcoming BPI-M4 Super, a single-board computer designed for multimedia and IoT applications. The board integrates dual Ethernet (1 GbE and 2.5 GbE), PCIe expansion, Wi-Fi 6, Bluetooth 5.3, and 4K HDMI output.

Game Bub Fully Open-Source FPGA Handheld Launched on Crowd Supply

Game Bub, an open-source FPGA handheld designed for retro gaming, has just launched on Crowd Supply. Built to natively support Game Boy and Game Boy Advance cartridges, it also features link cable compatibility for multiplayer gaming with other Game Bub units or original Nintendo handhelds.

ArmSoM RK3588 AI Module7 Launches as Jetson Nano-Compatible Edge Platform

First unveiled a year ago, ArmSoM has finally launched the RK3588 AI Module7 (AIM7) on Crowd Supply. The open hardware compute module is designed as a Jetson Nano–compatible alternative, targeting edge computing, vision systems, and embedded AI projects.

MNT Reform RCORE V2 with RK3588 Upgrade Now Available

MNT Research has launched the RCORE V2 on Crowd Supply, its most powerful processor module upgrade for the open hardware MNT Reform and Pocket Reform laptops. Based on the Rockchip RK3588 SoC, the module boosts CPU, GPU, and RAM performance over earlier options and simplifies installation by removing the need for an internal HDMI adapter in the Reform chassis.

DE23-Lite Development Kit with Agilex 3 FPGA Targets Education and Prototyping

Terasic has introduced the DE23-Lite, a compact development board powered by the Altera Agilex 3 FPGA and positioned as a cost-effective platform for education and prototyping. Compared to the earlier DE10-Lite, it brings upgraded I/O flexibility, integrated peripherals, and modern FPGA capabilities for digital logic, robotics, embedded vision, and classroom instruction.

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

The Gift of Life [original]
the focus was pets
DDoS Attacks Against Arch Linux
bad news again
Ethereum Cypherpunk Congress 2 (Buenos Aires, Argentina) Lists Richard Stallman First [original]
they've just updated their site and Stallman is listed first
FFmpeg 8.0 “Huffman” Released with AV1 Vulkan Encoder, VVC VA-API Decoding
FFmpeg 8.0 has been released today as a major update to this open-source multimedia framework that introduces numerous features, including new decoders, as well as various improvements.
GNU/Linux and BSD Leftovers
mostly GNU/Linux, as usual
Calibre 8.9 E-Book Manager Adds Support for Embedded Fonts to HTMLZ Output
Calibre 8.9 open-source e-book manager is now available for download with improvements to the annotations browser, HTMLZ output, and more.
Popular Pages and Stories in Tux Machines
very visible on the Web
 
Programming Leftovers and Devices/Hardware
leftovers for Sunday
Today in Techrights
Some of the latest articles
GNU/Linux and Free Software Leftovers
FOSS and more
Static Site Generators (SSG): Eleventy and Blogroll Work
some Web related posts
Mozilla: Firefox 128.14.0 ESR for PowerPC, Dabbling in Bubble/Hype/Waste of Energy, and Servo Updates
Mozilla-related posts
Open Hardware/Modding: ESP32, SparkFun, and More
Hardware news
Tumbleweed and OpenSUSE Reports
From the Tumbleweed and OpenSUSE world
Cinnamon, KDE, and GNOME Leftovers
Desktop Environments (DE) news
BSD: TrueNAS (FreeBSD) on 64-bit Arm and Latest From OpenBSD
BSD leftovers
Barry Kauler on EasyOS Development and More
latest from EasyOS
Applications: Zed, Zephyr, Aviator, and More
Software news
Graphics: vkd3d 1.17 Released and Chromium Adds Native HDR Support for Linux Wayland
some graphics leftovers
Security Leftovers
with focus on GNU/Linux
Misinformation About "Linux", Proprietary and Scammy Things (Like "Web3")
4 stories
Here’s How I Made Linux Feel More Like macOS Using KDE Plasma
To follow this guide, you’ll need to use a Linux distro using the KDE Plasma desktop environment
Fedora and Red Hat Leftovers
mostly the latter
today's howtos
many howtos
Programming Leftovers
Development picks
Android Leftovers
Android will soon let you decide if your Pixel can lower your loud headphone volume
Besgnulinux JWM 3-0 is ready to use
The background image changer has been updated
Never Tried openSUSE Linux? Here's What It's Like
If at any time in the past thirty years you've explored the world of Linux
Desktop Linux Keeps Winning the Wrong Battles
Linux is one of the most prolific operating systems in the world—except when it comes to desktop PCs
Games: CARGO, Wild Blue, and More
GamingOnLinux's latest
Free and Open Source Software
This is free and open source software
This Week in Plasma: KDE Initial System Setup
Welcome to a new issue of This Week in Plasma!
This Week in GNOME: #213 Fixed Rules
Update on what happened across the GNOME project in the week from August 15 to August 22
Banana Pi BPI-M4 Super with Rockchip RK3568B2 and Dual Ethernet
On the software side, Banana Pi indicates support will be provided for Debian 11 (Bullseye) and an Android 9 image tailored for TV box use
Today in Techrights
Some of the latest articles
Rianne's Birthday and Slow News Cycles [original]
We'll be back to normal about a month from now, as things start to settle again
Audiocasts/Videos: BSD Now and HowTos
New shows/videos
Games: Godot, Steam, and Retro
Games in the news
easyOS and OpenEmbedded/Yocto Development Updates
a pair of updates from Barry Kauler
Red Hat's Technical Posts and Cockpit 345
Red Hat news
Parrot OS vs Kali GNU/Linux, Kali Vagrant Rebuilt
Debian news
Open Hardware/Modding: FPGA, Raspberry Pi, and More
hardware leftovers
Free, Libre, and Open Source Software Leftovers
FOSS leftovers
Programming Leftovers
Development picks
Security, FUD, and Advisories
Security leftovers
OSMC's August update is here
From 29th August, all items sent to the USA will have tariffs applied from them and the $800 USD deminimis rule will be removed for all countrie
Tails 6.19 Brings Tor, Thunderbird, and Browser Updates
Tails 6.19, a privacy-focused Linux distro, is out with updated Tor Browser 14.5.6
LibreOffice 25.8 Open-Source Office Suite Officially Released, This Is What’s New
The Document Foundation released today LibreOffice 25.8 as the latest stable version of this popular, powerful, open-source, free, and cross-platform office suite for GNU/Linux, Android, macOS, and Windows systems.
Security and FUD Leftovers
and Windows TCO
Choosing the right operating system for industrial automation: Windows vs Linux
That steeper learning curve has historically kept Linux in the background of industrial automation, until recently
today's howtos
10 howtos for the day
Red Hat Leftovers
mostly from Red Hat's site
Android Leftovers
Amazon May Switch to a More Familiar Android OS on Fire Tablets
Thunderbird Shares New Details on Upcoming Pro Features
Mozilla’s Thunderbird team announced plans earlier this year to launch Thundermail
Kdenlive 25.08.0 released
The Kdenlive team is happy to announce the release of version 25.08.0 packed with over 300 commits and fixing more than 15 crashes
MNT Reform RCORE V2 with RK3588 Upgrade Now Available
Regarding software, the company mentions that the Debian images are available as part of the official MNT Reform System Image
Free and Open Source Software
This is free and open source software
ArmSoM RK3588 AI Module7 Launches as Jetson Nano-Compatible Edge Platform
Software support includes Debian, Ubuntu, and Armbian, with AI optimization handled through the RKNN-Toolkit2
Game Bub Fully Open-Source FPGA Handheld Launched on Crowd Supply
Game Bub, an open-source FPGA handheld designed for retro gaming, has just launched on Crowd Supply
From Mandrake to Modern: PCLinuxOS Stays Strong
PCLinuxOS keeps rolling forward—faster, friendlier, and ready for anything you throw at it
Games: Hollow Knight: Silksong, Splitgate, Truckful, and More
11 stories from GamingOnLinux
Benchmarking 3D graphic cards and their drivers, mesa 25.2.1 released
graphics news
Microsoft Breaking Things (as Usual)
3 stories
Today in Techrights
Some of the latest articles