Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

Git 2.53 Released with New Features and Performance Improvements

Coming two and a half months after Git 2.52, the Git 2.53 release introduces a new is-needed subcommand to the git maintenance command to tell if it’s necessary to perform various maintenance tasks, adds a --diff-algorithm= option to the git blame command, and adds an --all option to the git repo info command.

9to5Linux Weekly Roundup: February 1st, 2026

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

Shotcut 26.1 Open-Source Video Editor Released with Hardware Video Decoding

The biggest change in the Shotcut 26.1 release is support for hardware video decoding, a highly anticipated feature that is enabled by default on all supported platforms, except on Linux systems with NVIDIA GPUs. Hardware video decoding can be enabled or disabled from Settings > Preview Scaling > Use Hardware Decoder.

Linux Lite 7.8 Is Out Based on Ubuntu 24.04.3 LTS, Ports Many Apps to GTK4

Derived from Ubuntu 24.04.3 LTS (Noble Numbat) and powered by Linux kernel 6.8, Linux Lite 7.8 introduces rewrites to no less than twelve of the in-house applications using Python and GTK4, including Lite Welcome, Lite Software, Lite Sources, Lite Updates, Lite Auto Login, Lite User Manager, Lite Desktop, Lite Sounds, Lite System Report, Lite Firewall, Lite Network Shares, and Lite DPI.

LinuxGizmos.com

Compact SMARC module combines Linux, AI, and vision on i.MX 8M Plus

The module is built around the NXP i.MX 8M Plus processor, featuring a quad-core Arm Cortex-A53 running at up to 1.8 GHz alongside an 800 MHz Cortex-M7 real-time co-processor.

Tria launches Linux-ready OSM-LF-IMX95 45 × 45 mm module

The OSM-LF-IMX95 follows the OSM 1.2 specification in a Size-L form factor and measures 45 × 45 mm. It is designed for direct soldering, eliminating board-to-board connectors and enabling more compact and cost-optimized carrier designs.

DietPi January 2026 Update Introduces Uptime Kuma, ownCloud Infinite Scale, and Debian 12 Baseline

The January 25, 2026 release of DietPi v10.0 introduces new self-hosted services, drops legacy platform support, and raises the minimum supported Debian version to Bookworm. The update adds Uptime Kuma and ownCloud Infinite Scale to the DietPi software catalog, with a focus on long-term maintainability and SBC compatibility.

Bash-5.2 Release available

posted by Roy Schestowitz on Sep 27, 2022

Introduction
============

The first public release of bash-5.2 is now available with the URLs
ftp://ftp.cwru.edu/pub/bash/bash-5.2.tar.gz ftp://ftp.gnu.org/pub/gnu/bash/bash-5.2.tar.gz
and from the master branch of the bash git repository (http://git.savannah.gnu.org/cgit/bash.git/log/) and the usual GNU mirror sites.
Bash is the GNU Project's Bourne Again SHell, a complete implementation of the POSIX shell spec, but also with interactive command line editing, job control on architectures that support it, csh-like features such as history substitution and brace expansion, and a slew of other features. For more information on the features of Bash that are new to this type of shell, see the file `doc/bashref.texi'. There is also a large Unix-style man page. The man page is the definitive description of the shell's features.
This tar file includes the formatted documentation (pdf, postscript, dvi, info, and html, plus nroffed versions of the manual pages).
Please use `bashbug' to report bugs with this version. It is built and installed at the same time as bash.
Installation ============
Please read the README file first.
Installation instructions are provided in the INSTALL file.
New Features ============
This is an update to the fifth major release of bash.
Read the file NEWS in the bash-5.2 distribution for a complete description of the new features. A copy of the relevant portions is included below.
This release fixes several outstanding bugs in bash-5.1 and introduces a number of new features.
There are a number of bug fixes, including several bugs that caused the shell to crash. Complete details are available in the CHANGES file.
The most notable new feature is the rewritten command substitution parsing code, which calls the bison parser recursively. This replaces the ad-hoc parsing used in previous versions, and allows better syntax checking and catches syntax errors much earlier. The shell attempts to do a much better job of parsing and expanding array subscripts only once; this has visible effects in the `unset' builtin, word expansions, conditional commands, and other builtins that can assign variable values as a side effect. The `unset' builtin allows a subscript of `@' or `*' to unset a key with that value for associative arrays instead of unsetting the entire array (which you can still do with `unset arrayname'). There is a new shell option, `patsub_replacement'. When enabled, a `&' in the replacement string of the pattern substitution expansion is replaced by the portion of the string that matched the pattern. Backslash will escape the `&' and insert a literal `&'. This option is enabled by default. Bash suppresses forking in several additional cases, including most uses of $( All the new features are described below.
Readline has new features as well. There is a new option: `enable-active-region'. This separates control of the active region and bracketed-paste. It has the same default value as bracketed-paste, and enabling bracketed paste enables the active region. Users can now turn off the active region while leaving bracketed paste enabled. Two new bindable string variables are available; their values are terminal escape sequences that set the color used to display the active region and turn it off, respectively. If set, these are used in place of terminal standout mode. Finally, Readline now checks for changes to locale settings (LC_ALL/LC_CTYPE/ LANG) each time it is called, and modifies the appropriate locale-specific display and key binding variables when the locale changes.
There are a few incompatible changes between bash-5.1 and bash-5.2. Here- documents and here-strings use temporary files if the shell compatibility level is 50 or lower. The `unset' builtin in bash-5.2 treats array subscripts `@' and `*' differently than previous versions, and differently depending on whether the array is indexed or associative. Bash-5.2 attempts to prevent double-expansion of array subscripts under certain circumstances, especially arithmetic evaluation, by acting as if the `assoc_expand_once' shell option were set. Set the compatibility level appropriately to revert to previous behavior; details are in the file COMPAT.
Bash can be linked against an already-installed Readline library rather than the private version in lib/readline if desired. Only readline-8.1 and later versions are able to provide all of the symbols that bash-5.2 requires; earlier versions of the Readline library will not work correctly.
A complete list of changes between bash-5.1 and bash-5.2 is available in the file CHANGES; the complete list is too large to include in this message.
Readline ========
Also available is a new release of the standalone Readline library, version 8.2, with its own configuration scripts and Makefiles. It can be retrieved with the URLs
ftp://ftp.cwru.edu/pub/bash/readline-8.2.tar.gz ftp://ftp.gnu.org/pub/gnu/readline/readline-8.2.tar.gz
and from the master branch of the GNU readline git repository (http://git.savannah.gnu.org/cgit/readline.git/log/) and the usual GNU mirror sites.
The formatted Readline documentation is included in the readline distribution tar file.
The changes in Readline are described in a separate announcement.
As always, thanks for your help.
Chet
+========== NEWS ==========+ This is a terse description of the new features added to bash-5.2 since the release of bash-5.1. As always, the manual page (doc/bash.1) is the place to look for complete descriptions.
1. New Features in Bash
a. The bash malloc returns memory that is aligned on 16-byte boundaries.
b. There is a new internal timer framework used for read builtin timeouts.
c. Rewrote the command substitution parsing code to call the parser recursively and rebuild the command string from the parsed command. This allows better syntax checking and catches errors much earlier. Along with this, if command substitution parsing completes with here-documents remaining to be read, the shell prints a warning message and reads the here-document bodies from the current input stream.
d. The `ulimit' builtin now treats an operand remaining after all of the options and arguments are parsed as an argument to the last command specified by an option. This is for POSIX compatibility.
e. Here-document parsing now handles $'...' and $"..." quoting when reading the here-document body.
f. The `shell-expand-line' and `history-and-alias-expand-line' bindable readline commands now understand $'...' and $"..." quoting.
g. There is a new `spell-correct-word' bindable readline command to perform spelling correction on the current word.
h. The `unset' builtin now attempts to treat arguments as array subscripts without parsing or expanding the subscript, even when `assoc_expand_once' is not set.
i. There is a default value for $BASH_LOADABLES_PATH in config-top.h.
j. Associative array assignment and certain instances of referencing (e.g., `test -v' now allow `@' and `*' to be used as keys.
k. Bash attempts to expand indexed array subscripts only once when executing shell constructs and word expansions.
l. The `unset' builtin allows a subscript of `@' or `*' to unset a key with that value for associative arrays instead of unsetting the entire array (which you can still do with `unset arrayname'). For indexed arrays, it removes all elements of the array without unsetting it (like `A=()').
m. Additional builtins (printf/test/read/wait) do a better job of not parsing array subscripts if array_expand_once is set.
n. New READLINE_ARGUMENT variable set to numeric argument for readline commands defined using `bind -x'.
o. The new `varredir_close' shell option causes bash to automatically close file descriptors opened with {var} p. The `$0' special parameter is now set to the name of the script when running any (non-interactive) startup files such as $BASH_ENV.
q. The `enable' builtin tries to load a loadable builtin using the default search path if `enable name' (without any options) attempts to enable a non-existent builtin.
r. The `printf' builtin has a new format specifier: %Q. This acts like %q but applies any specified precision to the original unquoted argument, then quotes and outputs the result.
s. The new `noexpand_translations' option controls whether or not the translated output of $"..." is single-quoted.
t. There is a new parameter transformation operator: @k. This is like @K, but expands the result to separate words after word splitting.
u. There is an alternate array implementation, selectable at `configure' time, that optimizes access speed over memory use (use the new configure --enable-alt-array-implementation option).
v. If an [N]<&WORD- or [N]>&WORD- redirection has WORD expand to the empty string, treat the redirection as [N]<&- or [N]>&- and close file descriptor N (default 0).
w. Invalid parameter transformation operators are now invalid word expansions, and so cause fatal errors in non-interactive shells.
x. New shell option: patsub_replacement. When enabled, a `&' in the replacement string of the pattern substitution expansion is replaced by the portion of the string that matched the pattern. Backslash will escape the `&' and insert a literal `&'.
y. `command -p' no longer looks in the hash table for the specified command.
z. The new `--enable-translatable-strings' option to `configure' allows $"..." support to be compiled in or out.
aa. The new `globskipdots' shell option forces pathname expansion never to return `.' or `..' unless explicitly matched. It is enabled by default.
bb. Array references using `@' and `*' that are the value of nameref variables (declare -n ref='v[@]' ; echo $ref) no longer cause the shell to exit if set -u is enabled and the array (v) is unset.
cc. There is a new bindable readline command name: `vi-edit-and-execute-command'.
dd. In posix mode, the `printf' builtin checks for the `L' length modifier and uses long double for floating point conversion specifiers if it's present, double otherwise.
ee. The `globbing' completion code now takes the `globstar' option into account.
ff. `suspend -f' now forces the shell to suspend even if job control is not currently enabled.
gg. Since there is no `declare -' equivalent of `local -', make sure to use `local -' in the output of `local -p'.
2. New Features in Readline
a. There is now an HS_HISTORY_VERSION containing the version number of the history library for applications to use.
b. History expansion better understands multiple history expansions that may contain strings that would ordinarily inhibit history expansion (e.g., `abc!$!$').
c. There is a new framework for readline timeouts, including new public functions to set timeouts and query how much time is remaining before a timeout hits, and a hook function that can trigger when readline times out. There is a new state value to indicate a timeout.
d. Automatically bind termcap key sequences for page-up and page-down to history-search-backward and history-search-forward, respectively.
e. There is a new `fetch-history' bindable command that retrieves the history entry corresponding to its numeric argument. Negative arguments count back from the end of the history.
f. `vi-undo' is now a bindable command.
g. There is a new option: `enable-active-region'. This separates control of the active region and bracketed-paste. It has the same default value as bracketed-paste, and enabling bracketed paste enables the active region. Users can now turn off the active region while leaving bracketed paste enabled.
h. rl_completer_word_break_characters is now `const char *' like rl_basic_word_break_characters.
i. Readline looks in $LS_COLORS for a custom filename extension (*.readline-colored-completion-prefix) and uses that as the default color for the common prefix displayed when `colored-completion-prefix' is set.
j. Two new bindable string variables: active-region-start-color and active-region-end-color. The first sets the color used to display the active region; the second turns it off. If set, these are used in place of terminal standout mode.
k. New readline state (RL_STATE_EOF) and application-visible variable (rl_eof_found) to allow applications to detect when readline reads EOF before calling the deprep-terminal hook.
l. There is a new configuration option: --with-shared-termcap-library, which forces linking the shared readline library with the shared termcap (or curses/ncurses/termlib) library so applications don't have to do it.
m. Readline now checks for changes to locale settings (LC_ALL/LC_CTYPE/LANG) each time it is called, and modifies the appropriate locale-specific display and key binding variables when the locale changes.
-- ``The lyf so short, the craft so long to lerne.'' - Chaucer ``Ars longa, vita brevis'' - Hippocrates Chet Ramey, UTech, CWRU chet@case.edu http://tiswww.cwru.edu/~chet/

Other Recent Tux Machines' Posts

South America Keeps Marching Towards GNU/Linux [original]
It is understandable that GNU/Linux rose to over 4% from about 2% last year
Canonical/Ubuntu: Ubuntu 26.04 Snapshot 3 and Old Bug Which "makes it impossible to print on Tuesdays"
Ubuntu picks
United Kingdom: ChromeOS and GNU/Linux at About 7%, Windows All-Time Low [original]
In Germany GNU/Linux is measured at about 6% this month
Shotcut 26.1 Open-Source Video Editor Released with Hardware Video Decoding
Shotcut 26.1 has been released today as a major update to this open-source, free, and cross-platform video editing software for GNU/Linux, macOS, and Windows systems.
Raspberry Pi OS alternative DietPi just got a big update
DietPi is a popular Linux distribution for Raspberry Pi computers and other single-board computers
Linux Lite 7.8 Is Out Based on Ubuntu 24.04.3 LTS, Ports Many Apps to GTK4
Linux Lite 7.8 has been released today as the latest stable update to this Ubuntu-based distribution using the lightweight Xfce desktop environment and based on the latest Ubuntu LTS series.
Always Obeying Just Laws [original]
British libel law needs urgent reform. We're working on it.
 
Google is Not Your Friend (Even If It Uses Linux a Lot) [original]
instead of Google sending people to us it is taking our words and replicating them
GNU/Linux at All-Time High in Chile and Brazil (Almost 5%) [original]
When will it exceed 5%?
3 Linux features that make my daily work faster than Windows 11
Specifically, here's some stuff that Linux has that I would love to see on Windows one day
Turn off these 3 annoying Ubuntu defaults in 5 minutes
Ubuntu is great (it's many people's first Linux distro), and like your typical Linux distro
Android Leftovers
Moto G17 may not receive any Android updates as Motorola cites lack of EU requirements
Git 2.53 Released with New Features and Performance Improvements
Git 2.53 has been released today as the latest stable update to this free and open-source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
How immutable Linux can stop you from breaking your system
Linux is increasingly user-friendly, and as more and more apps become compatible
Linux Mint isn't the answer for Windows refugees anymore
I've been having a big think over Linux distros
I ditched my NAS OS for Ubuntu Desktop, and I’m never going back
Straight off the bat, the fact is that Ubuntu is actually fully capable of replicating every core function of a dedicated NAS OS
Fed up with Ubuntu? Why Debian should be your daily driver
Ubuntu is one of the most popular Linux distros
today's leftovers
mostly GNU/Linux news
New Releases: Tiling Shell 17.3, Resources 1.10, and More
from OMG Ubuntu
Linux Hardware/Modding and Mobile Linux
some devices centric picks
Free and Open Source Software
Only free and open source software is eligible for inclusion
FSF's Alex Oliva on Software Freedom and Lack of Privacy
2 new articles
Games: Steam and Crimsonland
Games-related picks
Web Browsers/Web Servers Leftovers
FOSS-centric Web-related news
Season of KDE 2026: Week 1 Progress for Automating Promo Data Collection
Hi all! I'm CJ, and I'm participating in Season of KDE 2026 by automating portions of the data collection for the KDE promo team
Valnet on GNU/Linux and Music in the Terminal
a pair of new articles
today's howtos
howtos for the day
Liya Linux proves high performance doesn’t require a command line
Liya Linux offers a user-friendly, point-and-click installation
Linux 6.19-rc8
Almost final now
I switched to this tiling window manager and can’t go back to normal desktops
Tiling window managers are fundamentally reshaping how power users think about desktop productivity
Open Hardware/Modding: Weekly GNU-like Mobile Linux, NexPhone, and More
hardware leftovers
Programming Leftovers
Development related picks
Android Leftovers
If you use Wi-Fi, this hidden Android setting could be wasting battery
This is the one Linux distro I recommend to every Windows 11 user
When I initially tried switching to Linux
I struggled with Hyprland for months, until this Arch-based distro fixed it
Hyprland is getting tons of coverage within the Linux community
5 things you can do on Linux but not on Windows
Linux outshines Windows in a number of areas
Free and Open Source Software
This is free and open source software
Review: Manjaro Linux 26.0
The Manjaro Linux distribution is an Arch-based project which offers a wide range of desktop editions
9to5Linux Weekly Roundup: February 1st, 2026
The 277th installment of the 9to5Linux Weekly Roundup is here for the week ending February 1st, 2026.
What a Difference Four Years Make [original]
We've since then both created our own "proper" offices and are nowadays working close to wildlife
Recent GNU/Linux Videos
From Invidious
Today in Techrights
Some of the latest articles
Distributions and Operating Systems: CachyOS, Qubes OS, Tails OS, TrueNAS
recent Valnet articles
Thin Clients on GNU/Linux and Unix Workstations
2 recent Valnet articles
Perceived Technical Requirements When Moving to GNU/Linux
3 recent articles
Valnet on GNU/Linux Applications: VLC, Neovim, Vim
recent articles
Raspberry Pi as Low-cost GNU/Linux Device - Recent Valnet Articles
5 recent articles
Proxmox Articles in XDA Developer
GNU/Linux and Proxmox, technical posts
Valnet Articles on Moving From Windows to GNU/Linux
many articles lately
Mozilla: Martin Stransky et al on MozPhab, Firefox, Servo Etc.
Mozilla leftovers
This Week in Rust and Microsoft GitHub Users "Announcing Rust 1.93.0"
Updates on Rust
Turning GNU/Linux Into Windows With Adobe Proprietary Software
via WINE
GNOME 50 Alpha Is Now Available for Public Testing as a Wayland-Only Release
GNOME 50 Alpha desktop environment is now available for public testing with X11 session removal, initial support for session save/restore, and many other enhancements.
Bad Publicity or Good Publicity, It's Still Publicity [original]
sometimes mistakes (like misguided legal actions) result in more people showing interest in what someone wished to suppress
Linux has a price, it's just not money
Linux has so many fundamental differences under the hood that not much transfers over
I’ve tested dozens of Linux distros, and these 3 are the only ones I’d put on a laptop
Considering switching to Linux on your laptop but overwhelmed by hundreds of distro options
Best Free and Open Source Software
We’re dedicated to showcasing only free and open-source software
Free, Libre, and Open Source Software and Development Leftovers
FOSS, coding etc.
today's leftovers
GNU/Linux mostly
Release of ScummVM 2026.1.0Kaidan 0.15.0
2 new releases
Debian-Based GParted Live 1.8 Released with Linux Kernel 6.18 LTS, GParted 1.8
Following the release of GParted 1.8 as a major update to the popular open-source partition editor, Curtis Gedak released GParted Live 1.8 today as the latest version of this Debian-based live system to graphically manage disk partitions.
AerynOS 2026.01 Released with Linux Kernel 6.18 LTS, GNOME 49.3, and More
AerynOS 2026.01 Linux distribution is now available for download with the GNOME 49.3 desktop environment, Linux kernel 6.18 LTS, and more.
FreeBSD, OpenBSD, and OPNsense Picks
BSD leftovers
Leftovers Regarding Web Browsers/Web Servers
WWW and more
New GeForce NOW native Linux support could lure Windows 10 refugees
NVIDIA is reportedly preparing to bring NVIDIA GeForce NOW to Linux so that users finally have native support for the cloud gaming service
Applications: Alternatives to Nano and a look at x-cmd
Applications and advice
today's howtos
various different sources of those, too
Microsoft Aping "Linux" (But Proprietary With Back Doors), Proprietary Microsoft Uses False Promise of 'Security' for Control Over Users
Proprietary agenda
What Happens to Linux After Linus Torvalds? We Finally Have the Answer to This Uncomfortable Question
Well, folks, there's now a strategy in place to manage the Linux kernel project if Linus Torvalds or any of the other key maintainers aren't able to carry out their duties
Leaving the Cage Behind
The goal of switching to free software is to gain full control over your computing
Programming Leftovers
Development related picks
Libreboot 26.01 “Magnanimous Max” released!
Today’s Libreboot 26.01 revision is a stable release, whereas the previous stable release was Libreboot 25.06
Android Leftovers
How to restart your Android phone without using the power button: 2 alternative ways
8 “hidden” terminal features that make Linux feel like a power-user OS
With the command-line shell, Linux provides countless tools and programs to wield power over your system
Calibre 9.0 Open-Source Ebook Manager Released with New Bookshelf View
Calibre developer Kovid Goyal released Calibre 9.0 today as the latest stable version of this popular ebook management software, a major update that introduces new features and enhancements.
Free and Open Source Software
Only free and open source software is eligible for inclusion
Trying to Injure Tux Machines Did Not Work [original]
Some time soon we'll discuss this matter with British politicians
'Traditional' Computing is Still the Best [original]
Don't "go with the flow" if that flow is dictated by GAFAM and media owned by GAFAM
So Far 2026 Has Been a Good Year for GNU/Linux [original]
Seeing the sort of press coverage that we saw last month, it seems increasingly clear that 2026 will be a year of gains for GNU/Linux, even among gamers
Today in Techrights
Some of the latest articles
Games, GNU/Linux, and Distros
today's leftovers
Server: Kubernetes, Nokia SR Linux, and More
GNU/Linux on the server - some picks
KDE and GNOME Development Updates
mostly KDE
Free, Libre, and Open Source Software Leftovers
FOSS and standards
Security Leftovers
Security patches and incidents, some FUD
Open Hardware/Modding: RISC-V, Raspberry Pi, and More
Hardware leftovers
New Microsoft Proxy (Amutable), Microsoft Problems, Windows Problems
4 stories
A Bunch of Developers Have Come Together to Make Linux Gaming Great
The people behind Bazzite, Fyra Labs, Nobara, ChimeraOS, and a few other projects have teamed up to improve Linux gaming for everyone
Programming Leftovers
Development related picks
Linux and Graphics Leftovers
a handful of news stories
today's howtos
Instructionals/Technical posts
Applications: Ventoy, VM Managment, and More
software news/recommendations
Proton 10.0-4 Released with Support for Drop Dead: The Cabin, Quantum Threshold
Valve released Proton 10.0-4 today as the latest stable update to the Proton 10 series of this open-source compatibility tool for Steam Play based on Wine and additional components for playing Windows games on Linux.
Open Hardware: ESP32, FreeBSD, and More
Hardware leftovers
Games: Bazzite Linux, "Stop Destroying Videogames", and GDC 2026 Report
GamingOnLinux picks
Microsoft's and Apple's Grip on Iceland After Territorial Claims by the US [original]
First they say Greenland, what if they say "Iceland" later?
Android Leftovers
One of NotebookLM's most useful features is now available on Android
I wouldn’t install Linux on these laptops (here’s why)
I've been running Linux on different machines for years, and I genuinely love it
Your Windows habits are dangerous on Linux—here are 4 things to avoid
Linux isn't necessarily "harder" than Windows
I Switched From Windows 11 to Linux Mint. Here Are 7 Things It Does Way Better
Moving from Windows to Linux doesn't require much of a learning curve and brings some real benefits
Linux Mint just made the terminal easier to ignore than ever
Linux Mint 22.3 Zena is on a mission to make the terminal optional, and honestly, they're nailing it
IPFire 2.29 - Core Update 200 is available for testing
The IPFire development team is excited to bring you Core Update 200
Free and Open Source Software, howtos and Installations
This is free and open source software
This Week in Plasma: getting 6.6 ready for release
This week we reached that part of every Plasma release cycle where the bug fixes and polish for the upcoming release are still coming in hot and heavy
KWallet, SecretService, oo7: the story so far
Continuing previous efforts to update the “secure passwords” story of the Plasma desktop
France Just Created Its Own Open Source Alternative to Microsoft Teams and Zoom
Last year, in July, the city of Lyon started the process of ditching Microsoft in favor of ONLYOFFICE and an undisclosed Linux-based operating system
Stable kernels: Linux 6.18.8, Linux 6.12.68, and Linux 6.6.122
I'm announcing the release of the 6.18.8 kernel
Tails 7.4.1 Is Out as an Emergency Release Patching Critical OpenSSL Vulnerabilities
Tails 7.4.1 anonymous Linux OS is now available for download with an updated OpenSSL library that addresses critical security vulnerabilities.
Contribute to Fedora 44 KDE and GNOME Test Days
Fedora test days are events where anyone can help make certain that changes in Fedora Linux work well in an upcoming release
GNU/Linux Rapidly Becoming 'Standard' Platform or an 'Empire' for Games [original]
There are some big things happening this month for GNU/Linux
Today in Techrights
Some of the latest articles