Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

ESP32-P4-WIFI6 Development Board with Wi-Fi 6 and Bluetooth 5 Support

Waveshare has introduced the ESP32-P4-WIFI6, a multimedia development board built around the ESP32-P4 with an integrated ESP32-C6 module. The design supports Wi-Fi 6 and Bluetooth 5/BLE, offering a wide set of human–machine interaction interfaces and hardware expansion capabilities.

Banana Pi BPI-R4 Lite Released with MediaTek MT7987A and Wi-Fi 7 Support

The Banana Pi team has launched the BPI-R4 Lite, a smart router board powered by the MediaTek MT7987A processor. It supports Wi-Fi 7 and offers multiple high-speed interfaces, targeting applications such as internet service routers, wireless repeaters, home gateways, NAS devices, and 4G or 5G connectivity.

DietPi July 2025 Update Adds Orange Pi 3 Support and Prepares for Debian Trixie

The July 2025 release of DietPi v9.15 introduces support for the Orange Pi 3 non-LTS, provides its own updated Unbound packages, and includes a script to upgrade Bookworm systems to Debian Trixie, the upcoming Debian release scheduled for August 9th. Alongside these highlights, the update delivers refinements to DietPi tools, networking improvements, and several bug fixes.

Ubuntu Buzz !

How To Install Tux Math Game on Ubuntu 24.04

Tux Math (or Tux, of Math Command) is a free software education game designed for kids to learn mathematics by playing. This game is one of Tux4Kids Project applications beside Tux Typing and Tux Paint a free software project to create educational applications. You can play this amazing game with kids or if you are a teacher, with your students too. Now let's try it out!

9to5Linux

Arch Linux Installer Gets U2F Authentication and Bluetooth Support

New features in the Archinstall 3.0.9 Arch Linux installer release include an interface to change LUKS iteration time, Bluetooth support allowing you to set up a Bluetooth connection during installation, support for U2F authentication, and a --skip-boot option to allow you to bypass the installation of a bootloader.

Internet Society

Is Your IXP at Risk of Becoming a “Zombie”?

Over the past few months at the Internet Society, I’ve observed a concerning trend in several regions where I’ve been working: a growing number of Internet exchange points (IXPs) appear to be operating on autopilot—what I call “Zombie IXPs.” 

Tor Project blog

New Alpha Release: Tor Browser 15.0a1

This version includes important security updates to Firefox.

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

Linux 6.16
just out
Ubuntu 25.10 Snapshot 3 is Available to Download
The third monthly snapshot of Ubuntu 25.10 (Questing Quokka) is available to download
Linux Foundation Press Release and Paid-for 'Spam' ('Articles') About AGNTCY
some picks, more to come
Microsoft, anybody home?
You know what: Microsoft became miserably incompetent in IT
 
I found a distro that brings the best of Windows, macOS, and Linux into one system
And like any Arch-based distro, it comes with a learning curve.
GNU/Linux Leftovers
mostly GNU/Linux, but some BSD
Free, Libre, and Open Source Software Leftovers
FOSS news
Debugging Postgres Errors and CloudNativePG Releases
psql picks
Testing KDE Linux
KDE Linux needs help
Web Browsers/Web Servers and RSS Feeds
Web related stuff, FOSS only
Programming Leftovers
Development related picks
Security Leftovers
Security related news picks
Open Hardware/Modding: DIY, Raspberry Pi, and More
hardware picks
today's howtos
more howtos
False Marketing, Red Hat Coverage and Recommendations Paid for by Red Hat (IBM), Then Cited by Red Hat
Some Red Hat bits
Free, Libre, and Open Source Software Leftovers
FOSS picks
Android Leftovers
Don’t worry, Samsung’s Android XR headset is still launching this year
6 weird but incredible things you can do with Batocera Linux
Batocera Linux may seem like just another retro gaming distribution
Missing Skype? Choose freedom and switch to GNU Jami
We've been recommending GNU Jami along with other free communication tools for some time now
These Linux Distros Will Level Up Your Privacy and Security
Although most Linux distros can be secured, some stand out by delivering advanced privacy and security features out of the box
Ubuntu’s Desktop Icons Extension Adds New Keyboard Shortcuts
DING (Desktop Icons New Generation) is what enables you to place app shortcuts
Free and Open Source Software
This is free and open source software
Scratch-Built KaOS and Its Latest KDE-Driven Evolution
KaOS doesn’t follow the crowd; it sets its own course with a bold KDE twist
For Windows 10’s 10th anniversary, I’m switching to Linux
Given how Microsoft is getting ready to pull the plug on Windows 10 this October, I've decided to skip the party this year
Today in Techrights
Some of the latest articles
The 4 Best Android Phone Brands for Linux Lovers
Buying a phone can sometimes be more stressful for Linux users than other people
Free and Open Source Software, howtos and Installations
This is free and open source software
Free, Libre, and Open Source Software and Standards
FOSS leftovers
GNU/Linux Leftovers
and some BSD, mostly GNU/Linux though
Programming Leftovers
Development leftovers
News From FSF and GNU Projects
some updates from both
Mozilla on Buzzwords, Tor Browser, Thunderbird Update
some Mozilla picks
Security Leftovers
Security related picks
Raspberry Pi and Programmable Computers
mostly Raspberry Pi picks
Red Hat Promotes Back Doors and Fake 'Studies' That It Paid For
IBM deceit
Games: Steam on GNU/Linux and Native GNU/Linux Builds
4 stories regarding games
Jack Wallen's Latest GNU/Linux Recommendations
2 articles
today's howtos
many for today
Linux Fear, Uncertainty, Doubt (FUD): Blaming the Wrong Things on "Linux"
some new examples
Android Leftovers
I bought a cheap Android phone and learned a very expensive lesson
Best Linux Laptop of 2025? TUXEDO InfinityBook Pro 15 (Gen10) Launches
TUXEDO Computers specializes in Linux-focused laptops and desktops
I've tested numerous Linux desktop environments, and these 5 are my favorites
I started my Linux journey with Raspberry Pi OS
Ubuntu 25.10 Offers Improved Disk Encryption Using TPM
Ubuntu 25.10 will make it easier to use hardware-backed full-disk encryption (FDE) integrated with a Trusted Platform Module (TPM)
GNOME Shell Gets a Proper Desktop Photo Widget (Finally)
Remember digital photo frames? Well, a new GNOME Shell extension brings one to the Linux desktop
Free and Open Source Software, howtos and Installations
Linux offers a wide array of music players
The XP-Pen Artist 22R Pro works on Linux now
It’s been almost two years since my last update on this project
Ma-ma-ma-ma my Fedora - Good and bad lessons from '42
Many a Linux nerd is under a wrongful impression that I have some rancorous emotional investment toward different components of the operating system called Linux
Banana Pi BPI-R4 Lite Released with MediaTek MT7987A and Wi-Fi 7 Support
Software support is available through OpenWrt and Ubuntu 22.04
GNU/Linux, BSD, and More
FOSS and more
LWN's Kernel Coverage
3 articles
Ubuntu Weekly Newsletter and More
Ubuntu picks
LWN Coverage From DebConf25 in Brest
2 articles
Today in Techrights
Some of the latest articles
LibreOffice Latest
a pair of updates on LibreOffice
GNU/Linux Versus Slop
against cheaters
Programming Leftovers
Development picks
GNU/Linux Leftovers
distros and hardware
Security Leftovers
Security-related bits
Free, Libre, and Open Source Software and Standards
FOSS leftovers and more
Web Browsers: Curl, Webrings, and Numbers Station Simulator
4 picks for now
Games: Godot 4.5 Beta 4 and MSI Claw A8 Gaming Performance With GNU/Linux
a pair of articles
Red Hat and Fedora Leftovers
mostly official stuff from Red Hat
Applications: OpenSnitch, Istio, and More
4 picks for now
today's howtos
idroot and more
Open Hardware/Modding: Raspberry Pi, SparkFun, Arduino, and More
Hardware picks
Games: Proton 10.0-2, Thunderful, and More
8 new stories from GamingOnLinux
This Linux Laptop Has a Powerful AMD Ryzen Chip
Linux-first laptops are overlooked because of their specs sometimes
The Year of the Linux Desktop? This Time, the Data Says Yes
The annual assertion by open-source developers that the year of the Linux desktop is here may finally be more than a mere catchphrase
Review: HeliumOS 10.0
I had some mixed feelings while running HeliumOS
5 Linux KDE Plasma Features that Completely Changed How I Use My PC
Are you using KDE Plasma but still working the same way you did on Windows
Euphonica – Cool New GTK4 MPD Client Work in Process
For users of Music Player Daemon (MPD in short)? Here’s cool new client app in development for Linux desktop
Free and Open Source Software, howtos and Installations
This is free and open source software
Week 2 recap GSoC 2025 - searching c++ and creating floating toolbar
Apart from setting up a new open source project
DietPi July 2025 Update Adds Orange Pi 3 Support and Prepares for Debian Trixie
The July 2025 release of DietPi v9.15 introduces support for the Orange Pi 3 non-LTS
Welcoming New Faces to the Thunderbird Community Team
Thunderbird is (and has always been) powered by the people
Uptime of 666 [original]
That speaks a lot for the stability of X, GNU, and Linux
XDA and Storage With GNU/Linux at home
4 new articles
XDA Articles on Proxmox for Personal Use
some XDA links
HowTo Geek on Batch Renaming, Daemons, Distros, and More
4 recent articles
Jack Wallen on Distributions and Operating Systems
a pair of articles
Linux Kernel Bits and Linux Foundation Still Tarnishing the "Linux" Brand (Tying it to Mindless Slop)
some Linux picks
PCLinuxOS Magazine's Latest
some key articles
Today in Techrights
Some of the latest articles