Tux Machines

Do you waddle the waddle?

Other Sites

schestowitz.com

Stallman.org Back Online After Long Downtime

He is alive and his site is alive too

Maybe the Last Chance to Sunbathe

Something positive

When Your Own Government Tells You to Stockpile

4 hours ago by Sarah Rainsford:

Moulting Sucks, It Makes Animals Look Unhealthy

Humans don’t have this

Slop and Scrapers Broke Stats

A hard task

Erotica Is Not Music

reat music seems to come not from the present but from the past. This means that great musicians are “greying” and Richard Fenn seems to have virtually retired (in Australia) and the “new face of music” seems to be something like that:

“Art for art’s sake”

Collecting “money” like it’s a form of competition where they track “score”

More Food/Farms, Less Datacentres

No animal can eat datacentres

UK Government Says Start Stocking Up, But It Speaks of Weather, Not the War

It makes sense.

EnzoFC’s Next Home Test

Tomorrow

9to5Linux

LibreOffice 26.2.6 Open-Source Office Suite Released with More Than 30 Bug Fixes

LibreOffice 26.2.5 is here one and a half months after LibreOffice 26.2.5 and brings more bug fixes to address various issues, crashes, and other annoyances reported by users, as well as stability improvements contributed by LibreOffice’s global community of developers, QA engineers, and ecosystem companies.

Grml 2026.09 Linux Distro Is Out with Linux Kernel 7.1, Based on Debian 14 Forky

Coming four months after Grml 2026.04, the Grml 2026.09 release is powered by the Linux 7.1 kernel series and incorporates all the package updates and security patches from the upstream Debian Testing software repositories as of September 2026, which will become Debian 14 “Forky” sometime in 2027.

Ubuntu 26.10 “Stonking Stingray” Snapshot 3 Is Now Available for Public Testing

Development of Ubuntu 26.10 (codename Stonking Stingray) kicked off on April 30th, 2026, with the usual toolchain upload, based on the Ubuntu 26.04 LTS (Resolute Raccoon) release, which means that it’s powered by Linux kernel 7.0 and uses the GNOME 50 desktop environment. In time, these will be updated to newer versions.

Audacity 4.0 Open-Source Audio Editor Officially Released, Here’s What’s New

Highlights of Audacity 4 include a new project manager that prompts you to select your project from the local file system or cloud, create a new one, or copy audio clips across projects, as well as support for Nyquist and VST3 plugins across Linux, macOS, and Windows, and LV2 on Linux, and Audio Units on macOS.

Tor Project blog

New Release: Tails 7.12

Follow our installation instructions.

Internet Society

Empowering Parents in Rwanda Through Digital Literacy Training

On a typical busy morning in Rwanda’s Karongi District, Patrice Nshimiyimana, a 44-year-old father of three, sat down with his phone, about to do something he’d never done before: renew his family’s health insurance online.

LinuxGizmos.com

Tiny OSM-MF module runs Linux on Sitara AM67 and 4-TOPS AI

Ezurio has announced the Carbon AM67 OSM-MF, a compact solder-down module based on Texas Instruments’ Sitara AM67x processor family. The module offers heterogeneous Arm processing, up to 8GB LPDDR4, eMMC storage, 4-TOPS AI acceleration, multi-display and camera support, dual Gigabit Ethernet, and optional Wi-Fi 6 or Wi-Fi 6E connectivity.

Rockchip RK3576 module powers edge AI dev kit with 20-TOPS RK1820 accelerator

The reComputer RK3576 compute module is based on Rockchip’s RK3576 SoC, which integrates four Cortex-A72 cores clocked at up to 2.2GHz and four Cortex-A53 cores reaching 2.0GHz. Graphics are handled by an Arm Mali-G52 MC3 GPU, while the integrated NPU provides up to 6 TOPS of INT8 AI acceleration.

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

Planet News Roundup for OpenSUSE, Google Summer of Code (GSoC) Project in OpenSUSE
pair of OpenSUSE picks
Linux drowning in ocean of slop (sloppy) commits and false reports, "Linux's strict memory overcommit mode" [original]
kernel picks
Applications: gThumb 4.0 RC Released, Tether Introduced, and More
a pair of picks
Good News! CERN is Migrating Over 2,200 Control Systems to Debian 13
The migration would move accelerator control computers out of the Red Hat ecosystem
Haiku OS Releases Beta 6
After just a little over 25 years of the Haiku project trying to keep the BeOS spirit alive
Ubisoft Does Not Like GNU/Linux, Blocks Users (Despite Full Compatibility)
DRM lovers wants rootkits
Ubuntu 26.10 “Stonking Stingray” Snapshot 3 Is Now Available for Public Testing
Ubuntu 26.10 “Stonking Stingray” Snapshot 3 is now available for public testing for early adopters and application developers.
Richard Stallman’s Stallman.org Back Online [original]
the front page is months old
Audacity 4.0 Open-Source Audio Editor Officially Released, Here’s What’s New
Audacity 4.0 open-source audio editor is now available for download as a major update with numerous new features and improvements. Here are the details!
Gloria Steinem Tackled Systemic Misogyny as an Activist and Journalist (Can be Both) [original]
Gloria Steinem has died at the age of 93
 
today's leftovers
BSD, GNU/Linux, and more
Desktop Environments: XScreenSaver, Bugs in KDE, and GSoC in KDE
mostly KDE news
Working From PCLinuxOS and PCLinuxOS Screenshot Showcase
PCLinuxOS picks from latest issue (Sept.)
Licensing Issues Due to LLM Slop Plagiarism, Open Data Versus Political Manipulation
data issues
Web Browsers/Web Servers: Vivaldi 8.2, Bots, Browser's Main Thread Is Expensive
WWW related picks
Mozilla/Firefox Leftovers
Firefox for the most part
Programming Leftovers
Development related picks
Security News and Breaches
some big ones, too
Proprietary / Vendor Lock-in Targets GNU/Linux
3 new stories
Open Hardware/Modding: Linux, ESP32, Arduino/Zephyr, and More
hardware centric picks
Fedora and Red Hat (Promotion of Slop Plagiarism, Paid-for and Fake Journalism, and Buzzwords Instead of Linux)
IBM abandoned Linux
Games: METRO 2039, Rebounder, MOZA, and Much More
hardware and gaming
today's howtos
Instructionals/Technical picks, lots from PCLOS Magazine
'Linux' Foundation Became a Trojan Horse for Rogue Companies (and Pyramid Schemes Too) to Influence Policies, Openwashing LLM Slop and Calling It Secure (Opposite of the Truth)
LF very rogue now
1Password Gets Associated With David Heinemeier Hansson
3 picks
LibreOffice 26.2.6 Open-Source Office Suite Released with More Than 30 Bug Fixes
LibreOffice 26.2.6 is now available for download as the sixth point release to the LibreOffice 26.2 office suite series with 36 bug fixes.
Hardware-accelerated Omarchy Linux comes to locked-down Apple Silicon
On a standard PC, installing Linux is straightforward, but on modern Apple Silicon Macs
Android Leftovers
I never have to type my phone PIN ever again after discovering this Android feature
I stopped getting lost in KDE’s settings after finding these simple shortcuts
Linux is well known for being receptive to customization, and KDE Plasma is no exception
Yes, no AI is now a feature
LibreOffice does not reject artificial intelligence out of hand
Tux Machines Opposes LLM Slop. This Upsets People Who Use Slop to Make 'Articles' and They Think the Problem is Me. [original]
"When you point the finger at someone, there are three fingers pointing back to you"
I outgrew Linux Mint, but I didn't want a harder Linux distro
I've been using Linux more and more over the past year
These awesome Linux distros run completely in RAM and barely touch your SSD
Linux distributions built around "copy to RAM" boot modes decompress the entire file system to a RAM disk on boot
I loaded Ubuntu Touch on an old phone to "de-Google" my life—here's where it all went wrong
DeGoogling your digital life is difficult, though not impossible, when you have an Android phone
Free and Open Source Software
This is free and open source software
Droidian – Debian-based Linux distribution for mobile devices
Droidian is a Debian-based Linux distribution designed primarily for smartphones that originally shipped with Android
Tiny OSM-MF module runs Linux on Sitara AM67 and 4-TOPS AI
Ezurio’s software support includes Yocto Linux, Buildroot Linux, Android, Debian, and QNX for the Cortex-A53 cores
Grml 2026.09 Linux Distro Is Out with Linux Kernel 7.1, Based on Debian 14 Forky
Grml 2026.09 GNU/Linux distribution is now available for download based on Debian Testing/Forky and powered by Linux kernel 7.1. Here’s what’s new!
Open Hardware/Modding: Minimalist Transceiver, DIY, Raspberry Pi, and More
hardware stories
Today in Techrights
Some of the latest articles
September Already Passing By [original]
September is well underway and we mark three anniversaries later this month
today's leftovers
with GNU/Linux focus
California’s Age Attestation Bill to Exclude Linux and All Open Source OSes
California’s Digital Age Assurance Act will exempt open source operating systems and applications from its age-verification requirements.
Kubernetes v1.37 and Incus 7.4
management tools
today's howtos
Instructionals/Technical picks
Games: JSAUX, ONTOS, and More
mostly GoL picks
Wayland is a Problem for KDE, KDAB is Dabbling in Slop Plagiarism for Hype's Sake (Marketing)
KDE picks
Red Hat: Slop, VMs, Risk, and Red Hat Satellite 6.20
from redhat.com
Debian and Canonical/Ubuntu Compromised by Slop Plagiarism (LLM Bubble Based on Trillions in Loans)
fall of integrity
Linux Devices, Open Hardware, and Phones
hardware picks
Free Software, Digital Sovereignty, and Standards
FOSS and more
Web Browsers/Web Leftovers
mostly browsers and Tor
GNU Projects: FreeIPMI 1.6.19 and GNU Parallel 20260822 Released
GNU Project updates
Programming Leftovers
Development related picks
Security Leftovers and Windows TCO
Security related picks
Happy 35th Birthday, Linux!
Today is Linux’s 35th birthday so join me in wishing Linux many more awesome years to come and to celebrate its amazing journey.
Linus Torvalds Announces First Linux Kernel 7.3 Release Candidate
Linus Torvalds announced today the general availability of the first Release Candidate (RC) of the upcoming Linux 7.3 kernel series for public testing and early adopters.
LibreOffice 26.8 Open-Source Office Suite Officially Released, This Is What’s New
LibreOffice 26.8 open-source office suite is now available for download with numerous new features, improvements, and bug fixes. Here’s what’s new!
Free and Open Source Software
This is free and open source software
SlyOS – lightweight Arch-based distribution
Built on Arch Linux, SlyOS provides a preconfigured desktop operating system designed to make the Arch foundation more approachable without removing its flexibility
Potions in Mageia. 03 – Elograf or how have voice dictation with Mageia
Have you ever needed voice dictation but couldn’t find a way to do it on Linux? Mageia offers Elograf with everything you need to get it working with just a few clicks
Mozilla Keeps Pushing Slop Plagiarism and Spying on Firefox Users (Mozilla Does Not Work for Users, It "Monetises" Them)
2 new stories
One week of LibreOffice 26.8 – The stats!
One week ago, we announced LibreOffice 26.8, our brand new major update
Audacity 3.7.9 Open-Source Audio Editor Released with FFmpeg 9 Support
Audacity 3.7.9 open-source digital audio editor and recording software is now available for download with support for the latest FFmpeg 9 multimedia framework and various bug fixes.
Free and Open Source Software
This is free and open source software
SweetPotatOs – Arch-based Linux distribution for low-spec PCs
SweetPotatOs is an Arch-based Linux distribution designed to breathe new life into older and low-spec PCs
Stable kernels: Linux 7.2.3, Linux 7.1.13, Linux 6.18.49, Linux 6.12.108, Linux 6.6.156, Linux 6.1.187, Linux 5.15.220, and Linux 5.10.269
I'm announcing the release of the 7.2.3 kernel
LWN's Latest: Linux 7.3, Remind, Licensing, and Hype
6 articles outside paywall
Today in Techrights
Some of the latest articles
Oman's GNU/Linux Usage According to Clownflare [original]
Oman is a very large nation with imperial history and wealth attributed to natural resources
GNU/Linux Leftovers
3 more picks
GNU/Linux Distributions and Operating Systems: After Clear Linux, Distros for Graphic Designers, LFS, SUSE/OpenSUSE, and Slop Boosting Omarchy
wide mixture of OSes
'Smart' Devices, Open Hardware, Linux/Android Mobile
hardware news
Audiocasts/Shows: Linux Matters, What’s in the SOSS? Podcast, and Wonders of Web Weaving
new episodes
Linux Kernel: AMD Patches, Mac Support, ECC RAM, and Fuzzing With Better 'Marketing Steroids'
Linux leftovers
today's howtos
Instructionals/Technical picks
Games: Classics, EVERSPACE 2, Rovio Copenhagen Closes, and More
gaming leftovers
Fedora-Based Bazzite Linux Released, Red Hat Talks About Almost Nothing But LLM/Slop Plagiarism
Red Hat picks
Free Software, Web, and LibreOffice
FOSS leftovers
MapQuest Gains From Repsecting "Lake Ontario"
4 more picks
IRC: FSF, Ubuntu, and BSDs
Some IRC news and more
Mozilla: Excuses for Privacy Shortcomings, Servo, and Firefox Developer Experience
Mozilla picks
Programming Leftovers
Development related picks
Security Patches and News
Security leftovers
Canonical Sells OpenStack Services, Canonical LXD
a pair of blog posts
News About Debian-based Sparky and "Debian Has Fallen" as Slop Plagiarism Tolerated (for Volunteers to Assess Botspam)
Debian leftovers
Qt Group Drifting Away to LLM Plagiarism and Microsoft's Proprietary Spyware, a Non-free Mindset
new from Qt
Kernel Space: Multikernel, BPF, and More
Linux news
Linux Besieged by LLM Plagiarism Engines That Clog Up the Development Pipeline, LWN Increases Fees After Persistent Problems With LLM Scrapers
linux news
Linux Kernel 7.1 Reaches End of Life, It’s Time to Upgrade to Linux Kernel 7.2
Linux kernel 7.1 reached end of life and all users are now recommended to upgrade their systems to the latest Linux 7.2 kernel series as soon as possible.
Mozilla Firefox 155 Is Now Available for Download, Here’s What’s New
Mozilla Firefox 155 open-source web browser is now available for download with support for Happy Eyeballs v3 for faster page loading and many other changes.
Applications: Calibre 9.13, Dynamic Music Pill 1.3.0, NordVPN
new releases and more
Android Leftovers
Android’s New Features Have Me Excited, Especially This One for Motion Sickness
The best Linux distro for you probably isn't the one everyone recommends
Making the switch from Windows to Linux comes with a lot of challenges for first-time users
Free and Open Source Software
This is free and open source software
CoreELEC – lightweight Linux distribution for Kodi
A minor fork of LibreELEC
Vanilla OS 3 “Reunion” Released with Reproducible Builds, ARM64 Support
Vanilla OS 3 “Reunion” is now available for download based on Debian GNU/Linux and powered by Linux kernel 7.1 and featuring the latest GNOME 50 desktop environment.
Debian Crisis Due to Plagiarism 'Normalised' in Code [original]
Understandably, not just people in social control media (users and developers and Debian) are upset about what happened
Tor Browser 15.0.21 and Mozilla Blocks Ads While Pushing Its Own Ads
Firefox and more
Embedded platform implements Amlogic A311Y3 octa-core SoC with PCIe 3.0 support
With respect to software, Boardcon currently lists Android 16 for the Idea311Y3, using U-Boot 2025.01 and Linux kernel 6.12.69
Today in Techrights
Some of the latest articles
Mozilla Thunderbird 155 Adds Custom OAuth Support for IMAP and SMTP Servers
Mozilla Thunderbird 155 open-source email client is now available for download with new features, improvements, and numerous bug fixes. Here’s what’s new!
Steam Client Now Supports HDR Streaming on Steam Deck OLED
Valve released a new stable Steam Client update with support for HDR streaming on Steam Deck OLED via Remote Play, and improvements across Steam Input, Friends & Chat, and Big Picture Mode.