Tux Machines

Do you waddle the waddle?

Other Sites

Tor Project blog

Memory quota tracking in Arti, for Onion Service DoS resistance

The memory quota tracking feature allows you to restrict the amount of memory used by an Arti process. In particular, it allows you to limit the amount of memory that other people can cause your Arti to use.

LinuxGizmos.com

HackerBox 0108 Implements a Macintosh 128K Emulator on RP2040 Platform

This month’s HackerBox introduces an opportunity to explore retro computing through the configuration of the PICOboot RP2040 Development Board to emulate the functionality of an original Macintosh 128K.

Ubuntu Buzz !

App Center - Intro to Ubuntu Software Manager

App Center (formerly Ubuntu Software and Software Center) is the program for Ubuntu users to install applications and manage them on Ubuntu computer and laptop. It is an official application of Ubuntu that makes it different to other GNU/Linux systems. We write this article as an explanation to the first item listed in our published compilation List of Ubuntu Default Applications and Their Purposes. We hope this helps everyone including you Ubuntu beginners. Now let's start sharing Free Software together once again!

9to5Linux

NVIDIA 550.135 Graphics Driver Released with Better Linux Kernel 6.11 Support

NVIDIA 550.135 is a small update that only improves support for distribution running the Linux 6.11 kernel series, which renamed the drm_fbdev_generic function to drm_fbdev_ttm, by using drm_fbdev_ttm when present to keep supporting direct framebuffer access on Wayland compositors to present content on newer kernels.

Blender 4.3 Open-Source 3D Graphics App Introduces Experimental Vulkan Backend

Four months after Blender 4.2 LTS, the Blender 4.3 release introduces an experimental Vulkan backend on Linux and Windows systems to render the user interface. This can be enabled over the default OpenGL backend under Preferences > Interface > Developer Extras > System > Backend. However, there are some limitations like lack of support for GPU subdivision and OpenXR, and slower performance compared to the OpenGL backend.

FreeCAD 1.0 Open-Source 3D Parametric Modeler Released, Here’s What’s New

Highlights of FreeCAD 1.0 include a new built-in Assembly Workbench, the inclusion of the topological naming problem mitigation code, a new materials system for appearance properties, a new BIM workbench with better setup & management tools and better IFC support, as well as a new logo.

Ubuntu 25.04 (Plucky Puffin) Daily Build ISOs Are Now Available for Download

As expected, the first Ubuntu 25.04 daily builds are based on the previous Ubuntu release, Ubuntu 24.10, which arrived last month on October 10th. This means that the Plucky Puffin ISOs include the same core components and software versions as the Oracular Oriole release.

GNU Linux-Libre 6.12 Kernel Released for Those Seeking 100% Freedom for Their PCs

Based on the just-released Linux 6.12 kernel series, the GNU Linux-libre 6.12 kernel is here to clean up CPM/QE QMC SoC support, Realtek 8852BE-VT Wi-Fi driver, Amlogic BT protocol support, amcc qt2025 phy driver, aw96103/aw96105 proximity sensor, and TI TLV320AIC31XX codecs.

AlmaLinux OS 9.5 Is Here as a Free Alternative to Red Hat Enterprise Linux 9.5

Built from the same sources as Red Hat Enterprise Linux and fully compatible with Red Hat Enterprise Linux 9.5, AlmaLinux OS 9.5 is here to introduce improvements to system performance monitoring, visualization, and system performance data collecting.

Shotcut 24.11 Open-Source Video Editor Released with Various Bug Fixes

Shotcut 24.11 is only a bugfix release that addresses some issues reported by users from the Shotcut 24.10 and Shotcut 24.08 releases, including converting variable frame rate to constant, filtering in and out points when resizing transition by moving a clip, as well as lost Reframe keyframes during export.

9to5Linux Weekly Roundup: November 17th, 2024

I want to thank all the people who sent us donations. You guys are awesome and your help is very much appreciated! I also want to thank you all for your continued support by commenting, liking, sharing, and boosting the articles, following us on social media, and last but not least thank you for sending us feedback.

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

AlmaLinux OS 9.5 Is Here as a Free Alternative to Red Hat Enterprise Linux 9.5
The AlmaLinux OS Foundation announced today the release and general availability of AlmaLinux OS 9.5 (codename Teal Serval), as the latest stable version of this free Red Hat Enterprise Linux (RHEL) fork.
Fedora KDE Plasma Spin Gains Equal Footing With Gnome Edition
Fedora has made a major change to its project, elevating the version running KDE Plasma from an Spin to an official Edition, alongside Fedora Workstation with Gnome
RIP Jérémy Bobbio (Lunar)
Longtime Debian and Tor developer, Jérémy Bobbio—perhaps better known as "Lunar"—died on November 8
Arch Linux Adopts 0BSD License for Package Sources
Breaking News: Arch Linux adopts the liberal 0BSD license for all package sources, ensuring freedom and flexibility
NVIDIA 550.135 Graphics Driver Released with Better Linux Kernel 6.11 Support
NVIDIA released today the NVIDIA 550.135 graphics driver as the latest “Production Branch” version for users who want to stay on the stable side of things and not use the NVIDIA 560 “New Feature Branch” series.
Linux Kernel 6.12 Officially Released, This Is What’s New
Linus Torvalds announced today the release and general availability of Linux kernel 6.12, the latest stable version of the Linux kernel that introduces several new features and improvements.
 
today's leftovers
IBM and more
Programming Leftovers
Development related, mostly Python
today's howtos
today's first long batch
Linux Devices and Open Hardware: Raspberry Pi, Arduino, and More
hardware related news
Android Leftovers
Android phones see major battery life improvements with Snapdragon 8 Elite in early tests
Rocky Linux 9.5 Released, Here’s What’s New
Rocky Linux 9.5 is now available for download, packed with updates like Podman 5.0, GCC 11.5, Node.js 22, and more
I Always Keep a Linux Live USB Handy for These 4 Reasons
A Live Linux USB is one of the best rescue tools every computer user should have
Windows TCO Leftovers
cost of Microsoft
What It’s Like to Be a Linux Sysadmin: Daily Wins and Woes
What’s it like to be a Linux sysadmin? Dive into a day filled with solving challenges, celebrating wins, and keeping servers running smoothly
Free and Open Source Software
Only free and open source software is eligible for inclusion
Security Leftovers
Security related picks
Free, Libre, and Open Source Software Leftovers
FOSS and coding
Google Turning Gentoo-Based Chrome OS Into Android Drop-in
Some technical changes
Openwashing: OSI is Promoting the "AI" Scam (for Microsoft et al), as Does Mozilla (Funded and Controlled by GAFAM)
sad developments, behaviour
Canonical/Ubuntu: Ubuntu Weekly Newsletter and More
3 assorted updates/news
today's howtos
7 picks for this morning
A Look at AnyTXT Searcher and Newspipe 11.1.0 Released
some software news
Open Hardware/Modding: RISC-V, Banana Pi, Raspberry Pi, and More
Linux-centric hardware picks
Fedora / Red Hat / IBM Leftovers
sadly many puff pieces, not journalism
Red Hat is Working for Microsoft, Windows, and Azure (Proprietary, Surveillance, Back Doors)
Description: Sellout big time
Games: Castlevania Dominus Collection, Proton Experimental, and GamingOnLinux's latest
coverage about gaming
Today in Techrights
Some of the latest articles
Winter holidays are coming: Time for a free software tale
The winter holidays are coming. Here's a free software fairy tale for you to watch, enjoy, and share with your loved ones in front of a cozy fireplace while roasting s'mores
OpenELA Publishes Code for Devs Who Want to DIY RHEL 9.5
Wanna build your own RHEL clone? OpenELA’s got all the source code you need, ready to download for free
Blender 4.3 Open-Source 3D Graphics App Introduces Experimental Vulkan Backend
The Blender Foundation announced today the release and general availability of Blender 4.3 as a major update to this powerful, free, cross-platform, and open-source 3D graphics and modeling software.
FreeCAD 1.0 Open-Source 3D Parametric Modeler Released, Here’s What’s New
FreeCAD 1.0 has been released today as a major milestone for this open-source, free, and cross-platform parametric 3D computer-aided design (CAD) modeler software for GNU/Linux, macOS, and Windows systems.
OpenBSD and FreeBSD News
BSD news and a release
today's leftovers
FOSS and fake FOSS
Audiocasts/Shows: This Week in Linux, GNU World Order, and Destination Linux
3 new episodes
today's howtos
many howtos for today
Programming Leftovers
Development picks
Windows TCO Leftovers
Microsoft's true cost
Games: Steam Deck, Sorry We're Closed, and More
Latest from GamingOnLinux
Android Leftovers
Samsung Galaxy Tab S10 Ultra review - The biggest Android tablet now relies on MediaTek
Why I Installed Linux on an Old Laptop Instead of a Raspberry Pi
Recently I wanted to start a new tech project building a lightweight, resource-efficient personal computer
Sparky 2024.11 Special Editions
There are new iso images of Sparky 2024.11 Special Editions out there
Free and Open Source Software, howtos and Installations
This is free and open source software written in Go
Announcing Incus 6.7
The Incus team is pleased to announce the release of Incus 6.7
This Week in KDE Apps: Python bindings
Welcome to a new issue of "This Week in KDE Apps"! Every week we cover as much as possible of what's happening in the world of KDE apps
10 lessons I've learned from the open-source community that aren't about tech
You might think the only lessons to learn from the open-source environment are technical, but you'd be mistaken
My Linux predictions for 2025: It's going to be a good year
What's coming for the open-source operating system and why
Ubuntu 25.04 (Plucky Puffin) Daily Build ISOs Are Now Available for Download
Now that Canonical officially opened the development of Ubuntu 25.04 (Plucky Puffin), it has published the first daily build ISO images for early adopters, application developers, and general public testing.
GNU Linux-Libre 6.12 Kernel Released for Those Seeking 100% Freedom for Their PCs
The GNU Linux-libre project announced today the release and general availability of the GNU Linux-libre 6.12 kernel for those who seek 100% freedom for their GNU/Linux computers and software freedom lovers.
10 Best Linux Server Distributions in 2024
Looking for the best GNU/Linux server distributions in 2024?
Debunking Common Linux Myths: Facts vs. Fiction
Think GNU/Linux is too hard to use or lacks software? Think again!
New package manager for OpenWrt
As of November 2024 for snapshots from the main development branch and future stable release builds (possibly also including the upcoming 24.10 series), the package manager in OpenWrt has changed from opkg to apk
Today in Techrights
Some of the latest articles
Games, SUSE, IBM, and More
today's leftovers
Linux Foundation Puff Pieces and Realisation of the Software Patents Issue
3 stories
today's howtos
many howtos
Linux Devices and Open Hardware
mostly the latter
Programming Leftovers
Development news/picks
Security: TP-Link Backdoor, Cybershow, and Open Source Security Podcast
3 picks, mostly audio
Variscite DART-MX91 SoM offers dual GbE, WiFi 6, 15 years support
In terms of software support the company mentions that it will support both Yocto and Debian
Shotcut 24.11 Open-Source Video Editor Released with Various Bug Fixes
Shotcut 24.11 open-source, free, and cross-platform video editor written in Qt is now available for download with various bug fixes from previous releases.
9to5Linux Weekly Roundup: November 17th, 2024
The 214th installment of the 9to5Linux Weekly Roundup is here for the week ending on November 17th, 2024.
Shotcut 24.11 Improves Stability and Fixes Transition Bugs
Shotcut 24.11, a free cross-platform video editor, rolls out with fixes for frame rate conversion, transitions, exports, and crashes
Ubuntu vs Debian: Linux Distributions Compared Deep Dive
Debian and Ubuntu are two popular Linux distributions
Free and Open Source Software
This is free and open source software
Review: Chimera Linux vs ChimeraOS
About four years ago DistroWatch received two new distribution submissions, fairly close together
What's the Deal with Raspberry Pi's New SD Card? A Hands-On Review
Raspberry Pi is expanding its ecosystem with official accessories. We tested the official SD card and here's what we found
Today in Techrights
Some of the latest articles
Half a Dozen Instructionals/Technical Articles From HowTo Geek
HowTo Geek's howtos
Missing MS Paint on Linux? Here's 5 Alternatives to Try
Here's a few ways to scratch your Microsoft Paint itch on Linux
SimRacing on Linux: A New Reality
we’ll review the current state of simulators and how Proton has revolutionized gaming on the Linux operating syste