Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

RAKwireless rolls out WisMesh RAK3312 Meshtastic LoRa starter kit

The kit uses the RAK3312 WisBlock Core, which combines an Espressif ESP32-S3 dual-core microcontroller clocked at up to 240 MHz with Wi-Fi and Bluetooth LE connectivity, along with a Semtech SX1262 LoRa transceiver.

Tor Project blog

New Release: Tor Browser 15.0.4

This version includes important security updates to Firefox.

Arti 1.9.0 released: Proxy improvements, relay development, and more.

This release includes some behind-the-scences work on relays and directory authority development, and adds improved support for running with dynamically assigned ports. For example, Arti now accepts proxy.socks_listen = "auto" to configure its SOCKS proxy with an operating-system-assigned port, and writes the assigned port to a structured JSON file in Arti's data directory.

9to5Linux

Thunderbird 147 Adds “Show Full Path” Folder Pane Option for Compact View Modes

Highlights of Thunderbird 147 include a “Show Full Path” folder pane option for compact view modes, a new `mail.useLocalizedFolderNames’ option to toggle special folder name localization, and support for special folders to be localized based on a restricted set of names.

KDE Plasma 6.6 Desktop Environment Is Now Available for Public Beta Testing

KDE Plasma 6.6 is packed with lots of goodies, including a new “Plasma Login Manager” display manager, OCR support in Spectacle, the ability to adjust the visual “sharpness” of all content on the screen on distros running Linux kernel 6.19, support for XRandr emulation in KWin, and support for per-DRM-plane color pipelines.

Wine 11 Officially Released with NTSync Support, Vulkan H.264 Decoding, and More

Coming a year after Wine 10, the Wine 11 release introduces support for the NTSync driver for fast synchronization, Vulkan H.264 decoding, clipboard support in the Wayland driver, initial Vulkan video decoder support in WineD3D, and support for larger page sizes on ARM64 (AArch64).

KDE Plasma 6.5.5 Is Out, Improves Support for Older Valve Index VR Headsets

Coming a little over a month after KDE Plasma 6.5.4, the KDE Plasma 6.5.5 release improves the matching algorithm of KRunner search to prioritize partial matches at the beginning of apps’ names, descriptions, and keywords, when searching for apps.

NVIDIA 580.126.09 Released to Improve Compatibility with Recent Linux Kernels

NVIDIA 580.126.09 is a small update in the NVIDIA 580 series, improving compatibility with recent Linux kernels, adding support for FP16 DRM formats by updating libnvidia-egl-gbm, and fixing a bug that prevented certain display modes that require YUV 4:2:0 subsampling from working.

Firefox 148 Enters Public Beta Testing with Improved Support for Screen Readers

Firefox 148 promises improved support for screen readers accessing mathematical formulas embedded in PDF documents, support for viewer local weather on the New Tab page, and a new “Suggestions from Firefox” option in Search > Address bar settings to get suggestions from the Web related to your search.

MX Linux 25.1 Beta Brings Back Dual-Init Support, Based on Debian 13.3

Based on the recently released Debian 13.3 “Trixie” update, MX Linux 25.1 beta is powered by the long-term supported Linux 6.12.63 kernel on the non-AHS images and the Liquorix-flavored Linux kernel 6.18.4 LTS on the AHS (Advanced Hardware Support) images and the KDE Plasma edition.

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

Highlights of Firefox 147 include support for Freedesktop.org’s XDG Base Directory Specification, zero-copy hardware-decoded video support on AMD GPUs to improve video playback performance, support for the Safe Browsing V5 protocol, and WebGPU support for all Apple Silicon Macs.

The GNU C Library version 2.36 is now available

posted by Tux Machines on Aug 02, 2022

The GNU C Library 
================= 
The GNU C Library version 2.36 is now available. 
The GNU C Library is used as the C library in the GNU system and 
in GNU/Linux systems, as well as many other systems that use Linux 
as the kernel. 
The GNU C Library is primarily designed to be a portable 
and high performance C library.  It follows all relevant 
standards including ISO C11 and POSIX.1-2017.  It is also 
internationalized and has one of the most complete 
internationalization interfaces known. 
The GNU C Library webpage is at http://www.gnu.org/software/libc/ 
Packages for the 2.36 release may be downloaded from: 
        http://ftpmirror.gnu.org/libc/ 
        http://ftp.gnu.org/gnu/libc/ 
The mirror list is at http://www.gnu.org/order/ftp.html 
NEWS for version 2.36 
===================== 
Major new features: 
Support for DT_RELR relative relocation format has been added to
  glibc.  This is a new ELF dynamic tag that improves the size of 
  relative relocations in shared object files and position independent 
  executables (PIE).  DT_RELR generation requires linker support for 
  -z pack-relative-relocs option, which is supported for some targets 
  in recent binutils versions.  Lazy binding doesn't apply to DT_RELR. 
On Linux, the pidfd_open, pidfd_getfd, and pidfd_send_signal functions
  have been added.  The pidfd functionality provides access to a process 
  while avoiding the issue of PID reuse on tranditional Unix systems. 
On Linux, the process_madvise function has been added. It has the
  same functionality as madvise but alters the target process identified 
  by the pidfd. 
On Linux, the process_mrelease function has been added.  It allows a
  caller to release the memory of a dying process.  The release of the 
  memory is carried out in the context of the caller, using the caller's 
  CPU affinity, and priority with CPU usage accounted to the caller. 
The “no-aaaa” DNS stub resolver option has been added.  System
  administrators can use it to suppress AAAA queries made by the stub 
  resolver, including AAAA lookups triggered by NSS-based interfaces 
  such as getaddrinfo.  Only DNS lookups are affected: IPv6 data in 
  /etc/hosts is still used, getaddrinfo with AI_PASSIVE will still 
  produce IPv6 addresses, and configured IPv6 name servers are still 
  used.  To produce correct Name Error (NXDOMAIN) results, AAAA queries 
  are translated to A queries.  The new resolver option is intended 
  primarily for diagnostic purposes, to rule out that AAAA DNS queries 
  have adverse impact.  It is incompatible with EDNS0 usage and DNSSEC 
  validation by applications. 
On Linux, the fsopen, fsmount, move_mount, fsconfig, fspick, open_tree,
  and mount_setattr have been added.  They are part of the new Linux kernel 
  mount APIs that allow applications to more flexibly configure and operate 
  on filesystem mounts.  The new mount APIs are specifically designed to work 
  with namespaces. 
localedef now accepts locale definition files encoded in UTF-8.
  Previously, input bytes not within the ASCII range resulted in 
  unpredictable output. 
Support for the mbrtoc8 and c8rtomb multibyte/UTF-8 character conversion
  functions has been added per the ISO C2X N2653 and C++20 P0482R6 proposals. 
  Support for the char8_t typedef has been added per the ISO C2X N2653 
  proposal.  The functions are declared in uchar.h in C2X mode or when the 
  _GNU_SOURCE macro or C++20 __cpp_char8_t feature test macro is defined.
  The char8_t typedef is declared in uchar.h in C2X mode or when the 
  _GNU_SOURCE macro is defined and the C++20 __cpp_char8_t feature test macro 
  is not defined (if __cpp_char8_t is defined, then char8_t is a builtin type). 
The functions arc4random, arc4random_buf, and arc4random_uniform have been
  added.  The functions wrap getrandom and/or /dev/urandom to return high- 
  quality randomness from the kernel. 
Support for LoongArch running on Linux has been added.  This port requires
  as least binutils 2.38, GCC 12, and Linux 5.19.  Currently only hard-float 
  ABI is supported: 
    - loongarch64-linux-gnu 
  The LoongArch ABI is 64-bit little-endian. 
Deprecated and removed features, and other changes affecting compatibility: 
Support for prelink will be removed in the next release; this includes
  removal of the LD_TRACE_PRELINKING, and LD_USE_LOAD_BIAS, environment 
  variables and their functionality in the dynamic loader. 
The Linux kernel version check has been removed along with the
  LD_ASSUME_KERNEL environment variable.  The minimum kernel used to built 
  glibc is still provided through NT_GNU_ABI_TAG ELF note and also printed 
  when libc.so is issued directly. 
On Linux, The LD_LIBRARY_VERSION environment variable has been removed.
The following bugs are resolved with this release: 
  [14932] dynamic-link: dlsym(handle, "foo") and dlsym(RTLD_NEXT, "foo") 
    return different result with versioned "foo" 
  [16355] libc: syslog.h's SYSLOG_NAMES namespace violation and utter 
    mess 
  [23293] dynamic-link: aarch64: getauxval is broken when run as ld.so 
    ./exe and ld.so adjusts argv on the stack 
  [24595] nptl: [2.28 Regression]: Deadlock in atfork handler which 
    calls dlclose 
  [25744] locale: mbrtowc with Big5-HKSCS returns 2 instead of 1 when 
    consuming the second byte of certain double byte characters 
  [25812] stdio: Libio vtable protection is sometimes only partially 
    enforced 
  [27054] libc: pthread_atfork handlers that call pthread_atfork 
    deadlock 
  [27924] dynamic-link: ld.so: Support DT_RELR relative relocation 
    format 
  [28128] build: declare_symbol_alias doesn't work for assembly codes 
  [28566] network: getnameinfo with NI_NOFQDN is not thread safe 
  [28752] nss: Segfault in getpwuid when stat fails 
  [28815] libc: realpath should not copy to resolved buffer on error 
  [28828] stdio: fputwc crashes 
  [28838] libc: FAIL: elf/tst-p_align3 
  [28845] locale: ld-monetary.c should be updated to match ISO C and 
    other standards. 
  [28850] libc: linux: __get_nprocs_sched reads uninitialized memory 
    from the stack 
  [28852] libc: getaddrinfo leaks memory with AI_ALL 
  [28853] libc: tst-spawn6 changes current foreground process group 
    (breaks test isolation) 
  [28857] libc: FAIL: elf/tst-audit24a 
  [28860] build: --enable-kernel=5.1.0 build fails because of missing 
    __convert_scm_timestamps 
  [28865] libc: linux: _SC_NPROCESSORS_CONF and _SC_NPROCESSORS_ONLN are 
    inaccurate without /sys and /proc 
  [28868] dynamic-link: Dynamic loader DFS algorithm segfaults on 
    missing libraries 
  [28880] libc: Program crashes if date beyone 2038 
  [28883] libc: sysdeps/unix/sysv/linux/select.c: __select64 
    !__ASSUME_TIME64_SYSCALLS && !__ASSUME_PSELECT fails on Microblaze 
  [28896] string: strncmp-avx2-rtm and wcsncmp-avx2-rtm fallback on non- 
    rtm variants when avoiding overflow 
  [28922] build: The .d dependency files aren't always generated 
  [28931] libc: hosts lookup broken for SUCCESS=CONTINUE and 
    SUCCESS=MERGE 
  [28936] build: nm: No such file 
  [28950] localedata: Add locale for ISO code "tok" (Toki Pona) 
  [28953] nss: NSS lookup result can be incorrect if function lookup 
    clobbers errno 
  [28970] math: benchtest: libmvec benchmark doesn't build with make 
    bench. 
  [28991] libc: sysconf(_SC_NPROCESSORS_CONF) should read 
    /sys/devices/system/cpu/possible 
  [28993] libc: closefrom() iterates until max int if no access to 
    /proc/self/fd/ 
  [28996] libc: realpath fails to copy partial result to resolved buffer 
    on ENOENT and EACCES 
  [29027] math: [ia64] fabs fails with sNAN input 
  [29029] nptl: poll() spuriously returns EINTR during thread 
    cancellation and with cancellation disabled 
  [29030] string: GLIBC 2.35 regression - Fortify crash on certain valid 
    uses of mbsrtowcs (*** buffer overflow detected ***: terminated) 
  [29062] dynamic-link: Memory leak in _dl_find_object_update if object 
    is promoted to global scope 
  [29069] libc: fstatat64_time64_statx wrapper broken on MIPS N32 with 
    -D_FILE_OFFSET_BITS=64 and -D_TIME_BITS=64 
  [29071] dynamic-link: m68k: Removal of ELF_DURING_STARTUP optimization 
    broke ld.so 
  [29097] time: fchmodat does not handle 64 bit time_t for 
    AT_SYMLINK_NOFOLLOW 
  [29109] libc: posix_spawn() always returns 1 (EPERM) on clone() 
    failure 
  [29141] libc: _FORTIFY_SOURCE=3 fail for gcc 12/glibc 2.35 
  [29162] string: [PATCH] string.h syntactic error: 
    include/bits/string_fortified.h:110: error: expected ',' or ';' 
    before '__fortified_attr_access' 
  [29165] libc: [Regression] broken argv adjustment 
  [29187] dynamic-link: [regression] broken argv adjustment for nios2 
  [29193] math: sincos produces a different output than sin/cos 
  [29197] string: __strncpy_power9() uses uninitialised register vs18 
    value for filling after \0 
  [29203] libc: daemon is not y2038 aware 
  [29204] libc: getusershell is not 2038 aware 
  [29207] libc: posix_fallocate fallback implementation is not y2038 
    aware 
  [29208] libc: fpathconf(_PC_ASYNC_IO) is not y2038 aware 
  [29209] libc: isfdtype is not y2038 aware 
  [29210] network: ruserpass is not y2038 aware 
  [29211] libc: __open_catalog is not y2038 aware 
  [29213] libc: gconv_parseconfdir is not y2038 aware 
  [29214] nptl: pthread_setcanceltype fails to set type 
  [29225] network: Mistyped define statement in socket/sys/socket.h in 
    line 184 
  [29274] nptl: __read_chk is not a cancellation point 
  [29279] libc: undefined reference to `mbstowcs_chk' after 
    464d189b9622932a75302290625de84931656ec0
  [29304] libc: mq_timedreceive does not handle 64 bit syscall return 
    correct for !__ASSUME_TIME64_SYSCALLS
  [29403] libc: st_atim, st_mtim, st_ctim stat struct members are 
    missing on microblaze with largefile 
Release Notes 
============= 
https://sourceware.org/glibc/wiki/Release/2.36
Contributors 
============ 
This release was made possible by the contributions of many people. 
The maintainers are grateful to everyone who has contributed 
changes or bug reports.  These include: 
=Joshua Kinard 
Adhemerval Zanella 
Adhemerval Zanella Netto 
Alan Modra 
Andreas Schwab 
Arjun Shankar 
Arnout Vandecappelle (Essensium/Mind) 
Carlos O'Donell 
Cristian Rodríguez 
DJ Delorie 
Danila Kutenin 
Darius Rad 
Dmitriy Fedchenko 
Dmitry V. Levin 
Emil Soleyman-Zomalan 
Fangrui Song 
Florian Weimer 
Gleb Fotengauer-Malinovskiy 
Guilherme Janczak 
H.J. Lu 
Ilyahoo Proshel 
Jason A. Donenfeld 
Joan Bruguera 
John David Anglin 
Jonathan Wakely 
Joseph Myers 
José Bollo 
Kito Cheng 
Maciej W. Rozycki 
Mark Wielaard 
Matheus Castanho 
Max Gautier 
Michael Hudson-Doyle 
Nicholas Guriev 
Noah Goldstein 
Paul E. Murphy 
Raghuveer Devulapalli 
Ricardo Bittencourt 
Sam James 
Samuel Thibault 
Sergei Trofimovich 
Siddhesh Poyarekar 
Stafford Horne 
Stefan Liebler 
Steve Grubb 
Su Lifan 
Sunil K Pandey 
Szabolcs Nagy 
Tejas Belagod 
Tom Coldrick 
Tom Honermann 
Tulio Magno Quites Machado Filho 
WANG Xuerui 
Wangyang Guo 
Wilco Dijkstra 
Xi Ruoyao 
Xiaoming Ni 
Yang Yanchao 
caiyinyu
Read on

Other Recent Tux Machines' Posts

NVIDIA 580.126.09 Released to Improve Compatibility with Recent Linux Kernels
NVIDIA released today NVIDIA 580.126.09 for Linux, FreeBSD, and Solaris platforms with a few important changes for those using the production branch version of the graphics driver.
Red Hat / Fedora Project / IBM Leftovers
mostly redhat.com
European Commission issues call for evidence on Free/Libre Software
FOSS win
Zorin OS says Windows users drove nearly 1M downloads, so I installed it to see why
One Linux distribution in particular has seen a surprising uptick in users, ZorinOS
Linux Mint 22.3 “Zena” Is Now Available for Download, Here’s What’s New
Linux Mint 22.3 “Zena” distribution is now available for download based on Ubuntu 24.04.3 LTS and featuring the latest Cinnamon 6.6 desktop environment. Here’s what’s new!
Auto-cpufreq 3.0 Released With CPU Turbo Controls
Auto-cpufreq 3.0, a CPU speed and power optimizer for Linux
Firefox 147 Is Now Available for Download, Here’s What’s New
Mozilla has published today the final builds of the Firefox 147 open-source web browser ahead of its official unveiling on January 13th, 2026, so it’s time to take a look at the new features and improvements.
Look Closer at "Metaverse" to Understand Where Slop (Misleadingly Marketed as "Intelligence") is Going [original]
The same will happen to what they call "AI"
IceWM 4.0 Window Manager Brings Smarter Navigation and HiDPI Enhancements
IceWM 4.0 is now available, introducing Alt-Tab improvements, live window previews, faster icon rendering, and better HiDPI support
The 'Tone' in Press Coverage Regarding GNU/Linux Has Improved Considerably [original]
If this trend can be maintained, then convincing people to give GNU/Linux a try will be easier
KDE Plasma 6.6 Desktop Is Coming on February 17th, Here’s What to Expect
KDE Project’s upcoming KDE Plasma 6.6 desktop environment series is expected on February 17th, 2026, and it’s packed with many new features and improvements, so let’s take a look at the biggest changes so far.
 
Thunderbird 147 Adds “Show Full Path” Folder Pane Option for Compact View Modes
After Firefox 147, Mozilla Thunderbird 147 has been released today as the latest stable version of this open-source, cross-platform, and free email client app that also features chat, addressbook, calendar, and news capabilities.
today's leftovers
mostly GNU/Linux news
today's howtos
many more for today
Kevin Wammer Moves to GNU/Linux
I completely switched to Linux
GNU/Linux Leftovers
GNU/Linux and more
Text-based web browsers and Mozilla/Firefox-based browsers
some WWW news
Hugo Blog and Google's Attack on Blogs (Using Slop Hype)
Content Management Systems (CMS) / Static Site Generators (SSG) news
Security Leftovers
Security related news
Open Hardware/Modding: Raspberry Pi, Arduino, and More
gadgets and more
Programming Leftovers
Development related picks
Distributions and Operating Systems: "The Distroless Linux Future", Haiku Activity & Contract Report, Init System in Artix Linux, and Fedora GNU/Linux in the Air
4 picks regarding OSes
today's howtos
not so many today
Audiocasts/Shows: LINUX Unplugged, LibreOffice Podcast, and Late Night Linux
3 new episodes
KDE Plasma 6.6 Desktop Environment Is Now Available for Public Beta Testing
The KDE Project announced today the release of the beta version of the upcoming KDE Plasma 6.6 desktop environment series, a major update that will introduce many new features and improvements.
Wine 11 Officially Released with NTSync Support, Vulkan H.264 Decoding, and More
Wine 11 has been released today as the latest stable version of this free and open-source compatibility layer for running apps and games developed for Windows systems on Unix-like operating systems.
Patching, Birds, and Videos [original]
So far this year we've managed to maintain the publication pace we aimed for at the turn of the new year
KDE Plasma 6.5.5 Is Out, Improves Support for Older Valve Index VR Headsets
The KDE Project announced today the release of KDE Plasma 6.5.5 as the fifth maintenance update to the latest KDE Plasma 6.5 desktop environment series with more bug fixes and UI improvements.
Firefox 148 Enters Public Beta Testing with Improved Support for Screen Readers
With Firefox 147 hitting the stable channel today, Mozilla has promoted the next major version of its open-source, free, and cross-platform web browser, Firefox 148, to the beta channel for public testing.
Android Leftovers
6 hidden Android settings that are quietly destroying your battery life
5 ways Zorin OS makes switching from Windows feel effortless
A lot of these people have been flocking to ZorinOS
Free and Open Source Software, and Benchmark
This is free and open source software
Games: Hytale, The Drifter, DeckWrecking Pirates, and More
9 articles from GamingOnLinux
All-Time High for GNU/Linux in Suriname [original]
Home to almost a million people (or about 700,000)
GNU/Linux Rose to 7% in Israel, Says statCounter [original]
Will it reach 10% by year's end?
today's leftovers
GNU/Linux and more
Raspberry Pi Projects and HexOS as a NAS OS
a pair of Valnet articles
Fastfetch 2.57 System Information Tool Brings COSMIC and Niri Support
Fastfetch 2.57 system information tool is out with broader desktop environment detection
Parrot 7.1 Through 7.3 Planned for 2026 as Focus Moves to AI Security
Parrot Linux plans versions 7.1, 7.2, and 7.3 throughout 2026
A Linux Power User Puts SteamOS To Work
The line between a Linux user and a Linux power user is a bit gray, and a bit wide
NixOS: Framework Partnership Announcement
The NixOS Foundation and Framework are officially partnering to improve NixOS support on Framework devices
Free and Open Source Software, howtos and Installation
This is free and open source software
GNU/Linux Exceeding 4% in Djibouti [original]
Windows is down to 17.9% this year
Linux 6.19-rc5
Drivers dominate (being about two thirds of the rc patch)
Wayland Has Issues, Some Distros Default to Wayland Anyway
a couple of Valnet articles
Today in Techrights
Some of the latest articles
João Carrasqueira on His Experience Moving From Windows to GNU/Linux
a pair of recent articles
Ayush Pande on Proxmox With Microsoft's Proprietary Spyware
2 recent articles
Simon Batt on Winux, Ads in the System, Immutable GNU/Linux Distros, Stability, and KDE 1
a handful of recent articles
Games: MAME Emuation, Games in UEFI (Bloat With Bug Doors), and Update of Bazzite
3 stories about gaming
Newly discovered Unix V4 tape
UNIX is sort of back
MX Linux 25.1 Beta Brings Back Dual-Init Support, Based on Debian 13.3
The MX Linux team announced today the general availability of the beta version of the upcoming MX Linux 25.1 release of this Debian-based distribution featuring Xfce, KDE Plasma, and Fluxbox flavors.
Android Leftovers
I Love Dark Mode On My Android Phone
Microsoft Didn't Deny Mass Layoffs in the Making, The Mainstream Media is Selling Us Land on the Moon [original]
There are '100% Made Up' reports that say Microsoft denied the layoffs
today's leftovers
BSD and GNU/Linux picks
Audiocasts/Shows: mintCast and This Week in Linux
2 new episodes
today's howtos
3 howtos
Free, Libre, and Open Source Software, Coding, and Standards
FOSS and more
Databases: MySQL and PostgreSQL
Database news
Open Hardware/Modding: ESP32, Homelab, and More
Hardware picks
FutureOfGamming.com, Games Playable on the Steam Deck, and Game Jam for Free Software Desktop Games
3 stories about games
Linux Kernel: Linux tc, Linus Torvalds Turns to Slop, Kernel 6.12.64 in EasyOS, and Vizio Trial Delayed
4 stories
Richard M. Stallman Speaks in US College for First Time in 8 Years [original]
11 days from now Richard M. Stallman will give a talk in Georgia
Programming Leftovers
Development picks for today
Stress and Anxiety at Red Hat Today [original]
Red Hat whistleblowers say layoffs are planned
Budgie 10.10 Desktop Environment Released as the First Wayland-Only Version
The Budgie desktop developers announced today the release and general availability of the Budgie 10.10 desktop environment, which is the last update in the Budgie 10 series and the first to go Wayland-only.
Linus Torvalds' AudioNoise Project: A New Era of Coding with Vibe
The implication, according to detractors, is that the hype around AI may be masking deeper quality and accountability issues
3 hidden Linux features that save me hours every week
Linux does not save time politely
I tried out North Korea's leaked OS so you don't have to
I’ve already written about Linux distros I’d avoid at all costs
One of the best Linux distros for Windows users just got a fresh update
The good news is, there are so many Linux distros out there for you to try
Xibo open-source digital signage solution now works with Raspberry Pi 5 thanks to the Arexibo project
Long-time readers of CNX Software may remember that I played around with the Xibo open-source digital signage player many years ago (2011-2012)
Free and Open Source Software
This is free and open source software
Some Weekly Updates on Tux Machines [original]
This week we celebrate another important milestone
Review: MenuetOS, SparkyLinux with CDE, iDeal OS 2025.12.07
Going into the holiday break I was hoping to try something new or at least something unusual
LMDE 7 Users Get the Cinnamon 6.6 Desktop Environment
Cinnamon 6.6 has landed in LMDE 7
Stable kernels: Linux 6.18.5, Linux 6.12.65, Linux 6.6.120, and Linux 6.1.160
I'm announcing the release of the 6.18.5 kernel
ArchEX (Arch Linux) Live System with MATE 1.28.2-2 DE, Calamares 3.4.0 and kernel 6.18.2-arch-2-1
After a full system upgrade the Pantheon menu is gone and you can’t get it back
Peropesis 3.1: PHP, dosfstools, pciutils, tgpt, p11-kit, hyfetch
All software distributed in the Peropesis Linux distribution is listed in the bundle page
GNU/Linux in Guam at All-time High [original]
a small Pacific island and military base
Linux Restores Performance on Older PCs and Keeps Them Fast
On affected systems, the most noticeable change is immediate
Today in Techrights
Some of the latest articles