Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

LXQt 2.4 Desktop Environment Released with More Wayland Improvements

Coming more than five months after LXQt 2.3, the LXQt 2.4 release improves Wayland support with separate settings for Wayland and X11 sessions, the ability to open the main menu with a shortcut, a tooltip on how to configure shortcut selectors in panel menus, and better support of desktop items on multi-screen setups.

9to5Linux Weekly Roundup: April 19th, 2026

I want 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.

GIMP 3.2.4 Improves Text and Crop Tools, PDF Export, PSD Import, and More

Coming about three weeks after GIMP 3.2.2, the GIMP 3.2.4 release improves the Text tool to correctly position the on-canvas GUI when rotating the canvas, prioritize the global actions when a shortcut matches before sending the hit keys to the IME (Input   Method Engine) when editing text, and prevent font size jumping to 0 when using shortcuts on selected text.

Solus 4.9 “Serenity” Released with Linux 6.18 LTS, KDE Plasma 6.6, and More

Powered by the long-term supported Linux 6.18 LTS kernel series, Solus 4.9 ships with the Budgie 10.9.4, GNOME 49.5, Xfce 4.20, and KDE Plasma 6.6.4 desktop environments, the latter being accompanied by the KDE Frameworks 6.24 and KDE Gear 25.12.3 software suites.

Shelly 2.1 Package Manager for Arch Linux Revamps AppImage Support

Shelly 2.1 is here to revamp AppImage support with a new UI to make installing AppImages easier and better syncing of AppImage apps, logging functionality to the “Recent Activity” panel that lets users view a transcript of the command logs, and support for viewing Flatpak permission changes on updates.

LinuxGizmos.com

Comet Q KVM supports browser-based control of laptops and iPhones over Wi-Fi 6

Comet Q is a compact KVM device designed to provide remote control of laptops, mini PCs, and supported mobile devices through a web browser. The system connects over USB Type-C and allows users to access and operate a target device without requiring software installation or driver configuration.

Banana Pi BPI-OM7 3D camera kit pairs RK3588 with Orbbec Gemini 2

Banana Pi has provided initial details about the BPI-OM7 3D camera kit, which combines the BPI-M7 single-board computer with an Orbbec Gemini 2 3D camera for computer vision, robotics, and spatial perception applications.

DongshanPI K510 SoM appears with dual RISC-V cores and AI acceleration

DongshanPI has previewed a SoM based on the Kendryte K510 in a recent social media post. The module targets AIoT applications involving computer vision and audio processing.

M5Stack previews CardputerZero handheld Raspberry Pi CM0 system

M5Stack has teased the CardputerZero, a compact handheld system built around the Raspberry Pi CM0. The device integrates a display, keyboard, battery, and wireless connectivity into a credit card-sized form factor intended for portable Linux-based development and command-line tasks.

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

French government says it's ditching Windows for Linux - country accelerates plans to ditch US-based software in digital sovereignty push
2026 is set to be l’année de Linux.
This Week in Plasma: Per-Screen Virtual Desktops and Wayland Session Restore
Last week over 20 KDE contributors converged on the Austrian city of Graz for our annual mega-sprint
GIMP 3.2.4 Improves Text and Crop Tools, PDF Export, PSD Import, and More
GIMP 3.2.4 open-source image editor is now available for download with improvements to Text and Crop tools, PDF export, PSD import, and more. Here’s what’s new!
Distributions and Operating Systems: A "next generation of Linux distros" and CachyOS Considered
Some OS picks from Valnet
Free, Libre, and Open Source Software Leftovers
FOSS picks
Games: Boutique Linux PC, Steam Runs On Nintendo Switch Using Valve's Proton Linux Beta, More on Valve's Proton 11 Beta
gaming picks
 
Debian Project Leader Election 2026 Results
The winner of the election is Sruthi Chandran
Firefox 150 Is Now Available for Download, This Is What’s New
Firefox 150 open-source web browser is now available for download with support for the GTK emoji picker on Linux, extended local network access restrictions, and other changes.
BSD, GNU/Linux Distributions and Operating Systems
today's leftovers
Free, Libre, and Open Source Software, Open Data, and Standards
FOSS leftovers and more
Web Browsers/Web Servers: Small Web, Wander, and SSGs
Web centric news
Mozilla Keeps Pushing Slop and Surveillance, Right-Wingers Change the Topic of Controversy to Pronouns
Mozilla leftovers
Games: The Run and New Titles for Steam Deck
gaming news
Databases: PostgreSQL Events and Releases, Grafana Table Joins With SQL Expressions
Database related picks
Programming Leftovers
Development picks
BeagleConnect, Banana Pi, DongshanPI, and More
Boards and Linux devices
Audiocasts/Shows: LINUX Unplugged and mintCast
two new episodes
today's howtos
Instructionals/Technical posts
BSD and Linux Kernel Picks
Kernel leftovers
LXQt 2.4 Desktop Environment Released with More Wayland Improvements
LXQt 2.4 desktop environment is now available with better Wayland support and many other changes across its core components. Here’s what’s new!
Android Leftovers
OnePlus just turned its next phone into an Android gaming handheld
Free and Open Source Software
This is free and open source software
Butterbian – Debian-based Linux distribution with XFCE
Butterbian is a Debian 13 (Trixie) live ISO built around reliable rollback and recovery from the start
Review: Lakka 6.1
Lakka is a lightweight Linux distribution that transforms a computer into a game console
Today in Techrights
Some of the latest articles
9to5Linux Weekly Roundup: April 19th, 2026
9to5Linux Weekly Roundup for April 19th, 2026, brings news about KDE Gear 26.04, Archinstall 4.2, GNOME 50.1, Scribus 1.6.6, Zorin OS 18.1, GIMP 3.2.4, Solus 4.9, OpenSSL 4.0, Raspberry Pi OS 2026-04-13, Mir 2.26, COSMIC 1.0.10, new XOrg Server and Xwayland security releases, Proton 11 beta, Shelly 2.1, and more.
New Software for Running Tux Machines [original]
Some of the software tools we created for curating and maintaining this site have been improved
France Got the Ball Rolling [original]
2026 is shaping up to be a very fine year for GNU/Linux adoption
BSD and GNU/Linux Leftovers
today's leftovers
Kernel: Linux 7.0, Linux 7.1, and More
Linux links
Open Hardware/Modding Leftovers
hardware leftovers
Free, Libre, and Open Source Software Leftovers
FOSS leftovers
Web Browsers Leftovers
WWW links
Content Management Systems (CMS) / Static Site Generators (SSG) Leftovers
FOSS leftovers
Programming Leftovers
Development leftovers
Standards/Consortia: NIST and More
standards and more
Audiocasts/Shows: This Week in Linux and Linux Saloon
2 episodes
Games: Valve, NVIDIA, and More
gaming leftovers
today's howtos
Instructionals/Technical picks
Release of Wine 11.7, Valve Quietly Rebased Proton on Wine 11
WINE and stuff
Why Zorin OS 18.1 is simply the best Linux distro - for anyone
Released today, the latest Zorin OS manages to improve upon previous versions
Hello old new “Projects” directory!
If you have recently installed a very up-to-date Linux distribution with a desktop environment, or upgraded your system on a rolling-release distribution
Free and Open Source Software
This is free and open source software
openRuyi – Linux Distribution for RISC-V
openRuyi is an open source Linux distribution, initiated and long-term maintained by Institute of Software
Stable kernels: Linux 6.19.13, Linux 6.18.23, Linux 6.12.82, Linux 6.6.135, Linux 6.1.169, Linux 5.15.203, and Linux 5.10.253
I'm announcing the release of the 6.19.13 kernel
Why Was XLibre Removed From the Arch Wiki? The Full Story
accusing the Xorg project of being stifled by "toxic elements" and "moles from BigTech"
Today in Techrights
Some of the latest articles
Solus 4.9 “Serenity” Released with Linux 6.18 LTS, KDE Plasma 6.6, and More
Solus 4.9 distribution is now available for download with Linux kernel 6.18 LTS, Budgie 10.9.4, KDE Plasma 6.6, GNOME 49.5, and Xfce 4.20.
GNU/Linux and More
today's leftovers
Security Leftovers and Windows TCO (Windows Breaking Itself)
security updates
Free, Libre, and Open Source Software and Standards
FOSS and more
Programming Leftovers
Development picks
Abandoning Free Software While Blaming Slop and Clarifications on Discourse
Cal.com and Discourse
BSD Education: AsiaBSDCon and New York City *BSD User Group
BSD picks
PostgresSQL: PGDay Armenia and Swiss PGDay 2026
PostgresSQL news
Applications: Office Suites and Nixpilled
3 misc. software links
OpenSUSE: Tumbleweed Report and Planet News Roundup
openSUSE picks
Red Hat, Fedora, and Rocky Linux Leftovers
mostly Red Hat picks
Zorin OS 18.1 Boosts Windows App Support by 40%, Improves Window Tiling
Zorin OS 18.1 is now available for download based on Ubuntu 24.04.4 LTS and powered by the Linux 6.17 HWE kernel. Here’s what’s new!
Open Hardware/Modding: Orange Pi, ESP32, and More
gadgets and more
This Week in GNOME, GNOME Foundation Update, and More GNOME
mixture of GNOME updates
today's howtos
Instructionals/Technical picks
Games: Godot 4.7 Dev 5, Proton Beta, and More
gaming news, all in one
Shelly 2.1 Package Manager for Arch Linux Revamps AppImage Support
Shelly 2.1 package manager for Arch Linux is now available for download with better support for AppImage, Flatpak, and AUR packages, as well as many other enhancements.
The Man Who Wrote the Rules of Freedom for Software
Towards the end of January 2026, I emailed Richard for an interview
Emulation/Games: RPCS3, Gopher64, and Proton 11 Beta
GamingOnLinux's latest
Android Leftovers
Google Blocks 8.3B Policy-Violating Ads in 2025, Launches Android 17 Privacy Overhaul
FRED Comes To Hobby Operating Systems (and Linux)
Of course, it would be silly to omit the fact that Linux received patches first
Kdenlive 26.04 is Out with Animated Transition Preview & Screen Mirroring
KDE announced the release of KDE Gear 26.04 on Thursday
Free and Open Source Software, howtos and Installations
This is free and open source software
PureOS Crimson Development Report: March 2026
Toward the best PureOS yet
Decades-old Linux UI bug fixed by dev younger than the window manager
Kamila Szewczyk prefers old software, as back then people understood something could actually be finished
Orange Pi Zero 3W – An Allwinner A733 SBC in Raspberry Pi Zero form factor
Orange Pi Zero 3W is Raspberry Pi Zero-sized SBC powered by an Allwinner A733 octa-core Arm Cortex-A76/A55 SoC paired with up to 16GB of LPDDR5 RAM
Today in Techrights
Some of the latest articles