Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

Pilet: A Portable Cyber-Deck Powered by Raspberry Pi 5 and Dual 8000mAh Batteries

Pilet is an upcoming open-source portable mini-computer powered by Raspberry Pi 5, offering both versatility and portability. Initially named Consolo, it will be available in two models: a 5-inch and a 7-inch, to suit different needs.

9to5Linux

elementary OS 8 “Circe” Officially Released, Based on Ubuntu 24.04 LTS

Based on Ubuntu 24.04 LTS (Noble Numbat) and powered by Linux kernel 6.8, elementary OS 8 introduces a new Secure Session to ensure apps respect your privacy and require your consent, a brand new dock with productive multitasking and window management features, and PipeWire as the default media server.

Firefox 134 Enters Beta, Promises Support for Touchpad Hold Gestures on Linux

Firefox 134 looks like a very small release promising only support for touchpad hold gestures on Linux, allowing users to interrupt kinetic (momentum) scrolling by placing two fingers on the touchpad. This feature was initially planned for Firefox 133, but it was delayed as it was needed for testing.

KDE Plasma 6.2.4 Re-Enables HDR Mode for Users on NVIDIA 565 and Linux 6.11

One of the most interesting changes in KDE Plasma 6.2.4 is support for enabling the HDR mode on GNU/Linux distributions using the NVIDIA 565.57.1 (beta) or later graphics driver for NVIDIA GPU users and Linux kernel 6.11 or later for Intel GPU users. Using previous versions of the NVIDIA graphics driver and Linux kernel results in an unstable HDR experience.

Mozilla Firefox 133 Is Now Available for Download, Here’s What’s New

Highlights of Mozilla Firefox 133 include the ability to show tabs from other devices in the Tab overview menu, GPU-accelerated Canvas2D enabled by default for Windows users, and Bounce Tracking Protection, a new anti-tracking feature enabled in ETP (Enhanced Tracking Protection)’s Strict mode.

Fwupd 2.0.2 Firmware Updater Adds Support for ASUS ROG Ally, Raspberry Pi Pico

Coming five weeks after fwupd 2.0.1, the fwupd 2.0.2 release adds support for checking AMD hardware configuration MSR (Machine Status Register), support for enumerate-only device emulation to increase test coverage, support for passing a JSON file for emulation instead of ZIP, and new get-version-formats and vercmp commands for fwupdtool.

9to5Linux Weekly Roundup: November 24th, 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.

Tor Project blog

The freedom to browse with privacy

*=pseudonym.

New Release: Tor Browser 14.0.3

This version includes important security updates to Firefox.

grep-3.9 released

posted by Roy Schestowitz on Mar 06, 2023

 This is to announce grep-3.9, a stable release.

The NEWS below describes the two main bug fixes since 3.8.

There have been 38 commits by 4 people in the 26 weeks since 3.8.

Thanks to everyone who has contributed!
The following people contributed changes to this release:

Bruno Haible (2)
Carlo Marcelo Arenas Belón (2)
Jim Meyering (11)
Paul Eggert (23)

Jim
[on behalf of the grep maintainers]
==================================================================

Here is the GNU grep home page:
http://gnu.org/s/grep/

For a summary of changes and contributors, see:
http://git.sv.gnu.org/gitweb/?p=grep.git;a=shortlog;h=v3.9
or run this command from a git-cloned grep directory:
git shortlog v3.8..v3.9

Here are the compressed sources:
https://ftp.gnu.org/gnu/grep/grep-3.9.tar.gz (2.7MB)
https://ftp.gnu.org/gnu/grep/grep-3.9.tar.xz (1.7MB)

Here are the GPG detached signatures:
https://ftp.gnu.org/gnu/grep/grep-3.9.tar.gz.sig
https://ftp.gnu.org/gnu/grep/grep-3.9.tar.xz.sig

Use a mirror for higher download bandwidth:
https://www.gnu.org/order/ftp.html

Here are the SHA1 and SHA256 checksums:

f84afbfc8d6e38e422f1f2fc458b0ccdbfaeb392 grep-3.9.tar.gz
7ZF6C+5DtxJS9cpR1IwLjQ7/kAfSpJCCbEJb9wmfWT8= grep-3.9.tar.gz
bcaa3f0c4b81ae4192c8d0a2be3571a14ea27383 grep-3.9.tar.xz
q80RQJ7iPUyvNf60IuU7ushnAUz+7TE7tfSIrKFwtZk= grep-3.9.tar.xz

Verify the base64 SHA256 checksum with cksum -a sha256 --check
from coreutils-9.2 or OpenBSD's cksum since 2007.

Use a .sig file to verify that the corresponding file (without the
.sig suffix) is intact. First, be sure to download both the .sig file
and the corresponding tarball. Then, run a command like this:

gpg --verify grep-3.9.tar.gz.sig

The signature should match the fingerprint of the following key:

pub rsa4096/0x7FD9FCCB000BEEEE 2010-06-14 [SCEA]
Key fingerprint = 155D 3FC5 00C8 3448 6D1E EA67 7FD9 FCCB 000B EEEE
uid [ unknown] Jim Meyering
uid [ unknown] Jim Meyering
uid [ unknown] Jim Meyering

If that command fails because you don't have the required public key,
or that public key has expired, try the following commands to retrieve
or refresh it, and then rerun the 'gpg --verify' command.

gpg --locate-external-key jim@meyering.net

gpg --recv-keys 7FD9FCCB000BEEEE

wget -q -O- 'https://savannah.gnu.org/project/release-gpgkeys.php?group=grep&download=1' | gpg --import -

As a last resort to find the key, you can try the official GNU
keyring:

wget -q https://ftp.gnu.org/gnu/gnu-keyring.gpg
gpg --keyring gnu-keyring.gpg --verify grep-3.9.tar.gz.sig

This release was bootstrapped with the following tools:
Autoconf 2.72a.65-d081
Automake 1.16i
Gnulib v0.1-5861-g2ba7c75ed1

NEWS

* Noteworthy changes in release 3.9 (2023-03-05) [stable]

** Bug fixes

With -P, some non-ASCII UTF8 characters were not recognized as
word-constituent due to our omission of the PCRE2_UCP flag. E.g.,
given f(){ echo Perú|LC_ALL=en_US.UTF-8 grep -Po "$1"; } and
this command, echo $(f 'r\w'):$(f '.\b'), before it would print ":r".
After the fix, it prints the correct results: "rú:ú".

When given multiple patterns the last of which has a back-reference,
grep no longer sometimes mistakenly matches lines in some cases.
[Bug#36148#13 introduced in grep 3.4]

Read on

Other Recent Tux Machines' Posts

Mozilla Firefox 133 Is Now Available for Download, Here’s What’s New
Mozilla Firefox 133 open-source web browser is now available for download with the ability to show tabs from other devices in the Tab Overview menu and other changes.
Fwupd 2.0.2 Firmware Updater Adds Support for ASUS ROG Ally, Raspberry Pi Pico
Fwupd 2.0.2 Linux firmware update utiltiy is now available for download with support for checking AMD hardware configuration MSR and other changes.
Canonical wants Ubuntu 20.04 LTS users to upgrade as End of Life approaches
Canonical has issued a warning to users of Ubuntu 20.04 LTS
KDE: Criticism, KUserFeedback (KUF), and Microsoft Outsources
two KDE picks
Review of "How to Make Your Career Suck Less: A Guide to a Less Painful IT Experience" by Igor Ljubuncic [original]
a concise, edited version of the review
 
Celebrate Thanksgiving by switching from Windows 11 to Linux with elementary OS 8
One super cool feature of elementary OS 8 is its new Secure Session
elementary OS 8 “Circe” Officially Released, Based on Ubuntu 24.04 LTS
The elementary OS team released today elementary OS 8 (codename Circe) as the latest stable version of their Ubuntu-based distribution featuring the modern Pantheon desktop environment with new features and enhancements.
Firefox 134 Enters Beta, Promises Support for Touchpad Hold Gestures on Linux
With Firefox 133 out the door today as the latest stable version of the open-source web browser used by default on all GNU/Linux distributions, Mozilla promoted the next major release, Firefox 134, to the beta channel.
Ubuntu, Mozilla, and C
today's leftovers
Windows TCO Leftovers
True cost of Microsoft
Android Leftovers
Circle to Search could finally ditch a design element we hated back in the Android 12 days
After 16 Years, Pidgin 3 Takes Its First Steps
A blast from the past: Pidgin 3's pre-alpha debuts Dec 31
PipeWire 1.2.7 Enhances ALSA Driver Handling and Adds Lazy Scheduling
PipeWire 1.2.7 is a stable bugfix release that adds lazy scheduling, improves the v4l2 plugin, fixes module crashes, and enhances resampling performance
7 Tricks to Make Learning the Linux Command Line Easier
The Linux command line can seem impenetrable, with arcane instructions and a focus on text interfaces
Call for volunteers: Help us with the GNU Press shop
People around the world are eagerly waiting to receive their GNU Press shop orders, and we need a little help sending everything out
Best Free and Open Source Software, howtos and Installations
Only free and open source software is eligible for inclusion
Vendefoul Wolf – distro based on Devuan
Vendefoul Wolf Linux is a distro based on Devuan and uses the Calamares Installer
This Week in KDE Apps: Bugfixing Week
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
KDE Plasma 6.2.4 Re-Enables HDR Mode for Users on NVIDIA 565 and Linux 6.11
The KDE Project released today KDE Plasma 6.2.4 as the fourth maintenance update to the latest KDE Plasma 6.2 desktop environment series with more improvements and bug fixes.
5 ways to get the best Linux support, no matter your skill level
Where do you turn if you're new to Linux or looking for a solution to a problem? Here are your options
Games: Proton Experimental, Star Fox 64, and More
Latest 9 from GamingOnLinux
Today in Techrights
Some of the latest articles
today's leftovers
Misc. picks
today's leftovers
GNU/Linux and FOSS picks
Programming and Development Tools
Programming leftovers mostly
Security Leftovers
only 3 for now
Linux Devices and Open Hardware Leftovers
misc. picks
EasyOS Development Updates
EasyOS's latest
Applications: Makulu Tools, Hugin, amd Email Client
4 picks regarding software
today's howtos
first big batch
10 Reasons To Choose Ubuntu Server Over the Competition
When you think of a server's operating system (OS), what comes to mind?
Android Leftovers
Why the Pixel Tablet's cancellation makes sense in light of a possible Android and Chrome OS merge
today's leftovers
security and more
Audiocasts/Shows: Linux Out Loud, GNU World Order, Open Source Security Podcast, This Week in Linux
4 new episodes
Open Hardware/Modding/Retro: GNU-like Mobile Linux, Old Amigas, and More
gadgets and hacking
Guix/Hurd on a Thinkpad X60
A lot has happened with respect to the Hurd since our Childhurds and GNU/Hurd Substitutes post
Free and Open Source Software
Magpie is used by the Budgie Desktop as its window manager
Review: Linux Lite 7.2
Linux Lite 7.2 is an update from the 7.0 release in June, and it's based on Ubuntu 24.04.1 LTS and will receive five years of support
KDE: UX Insights (that we cannot get right now)
After the criticism in the last post about the limitations of KUserFeedback (KUF) for doing data-driven UX work
9to5Linux Weekly Roundup: November 24th, 2024
The 215th installment of the 9to5Linux Weekly Roundup is here for the week ending on November 24th, 2024.
Today in Techrights
Some of the latest articles
TuxCare and Cloudimg Partner to Bring Patches to Dead Linux Cloud Images
TuxCare has partnered with UK-based Cloudimg, to bring its customers TuxCare Endless Lifecycle Support for keeping end-of-life Linux distributions supported
Android Leftovers
Here's what I'll miss about Chrome OS once it turns into Android
Just Starting in the Linux Terminal? Here Are Some Setup Tips
The Linux terminal is useful, but it sometimes gets a bad rap for being boring
Free and Open Source Software
This is free and open source software
today's leftovers
GNU/Linux and FOSS links
dpb (Distributed Ports Builder), Warp and Wireshark
Applications in focus
Games: Humble Bundle, Social Media Card Game, and Snake
With Linux twist
Programming Leftovers
coding related links
Open Hardware Leftovers
ESP32 and more
Audiocasts and Videos: Collection From Invidious and TLLTS
from the past week
today's howtos
many howots for today and some older ones
FreeBSD 14.2-RC1 Now Available
The first Release Candidate build of the 14.2-RELEASE release cycle is now available
Wine 9.22 Released with Display Mode Virtualization Support
Wine 9.22 is now available with Wayland driver enabled by default, DirectPlay network boosts, Unicode CLDR 46 updates, and display virtualization
10 Best Linux FTP Clients for Every User in 2024
Looking for reliable FTP clients on Linux
Moksha – modern iteration of the Enlightenment window manager
This is free and open source software
RELIANOID Load Balancer Community Edition v7.5 Release Notes
We are thrilled to announce the release of RELIANOID 7.5.0 (Community Edition)
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.
GhostBSD 24.10.1 Is Now Available
We’re excited to announce the release of GhostBSD 24.10.1
KaOS 2024.11
More application are now ready to use Qt6 and Frameworks 6 including Freecad, Sqlitebrowser, Cantor, Kalzium, Webacmoid and Liquidshell
Fedora / IBM / Oracle Linux / IBM Leftovers
the Red Hat universe in blogs and news sites
Today in Techrights
Some of the latest articles