Tux Machines

Do you waddle the waddle?

Other Sites

Tor Project blog

New Release: Tails 7.6

Tor bridges are secret Tor relays that hide that you are connecting to Tor. If connecting to Tor is blocked from where you are, you can use a bridge as your first Tor relay to circumvent this censorship.

9to5Linux

Calibre 9.6 Adds New Card-Based View of Full-Text Search Results with Book Covers

Coming two weeks after Calibre 9.5, the Calibre 9.6 release updates the full text search feature with a new card-based view of full text search results that includes book covers. To perform a full-text search, click the “FT” button on the left of the search bar.

Ubuntu 26.04 LTS Beta Is Out Now with Linux Kernel 7.0 and GNOME 50

Powered by the upcoming Linux 7.0 kernel series and using the Mesa 26.0 graphics stack, Ubuntu 26.04 LTS Beta ships today with the latest and greatest GNOME 50 desktop environment, with the addition of graphical Ubuntu Insights management controls in the Telemetry panel of the GNOME Settings app.

Tails 7.6 Privacy-Focused Linux Distro Released with Automatic Tor Bridges

The monthly Tails releases continue with Tails 7.6, which introduces support for automatic Tor bridges, a feature that lets the Tor Connection assistant ask about Tor bridges based on your region. According to the devs, this feature uses the same technology as Tor Browser’s connection assistant.

LibreOffice 26.2.2 Open-Source Office Suite Released with More Than 80 Bug Fixes

Coming a month after LibreOffice 26.2.1, the LibreOffice 26.2.2 release 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.

Firefox 150 Promises Support for the GTK Emoji Picker on Linux, Beta Out Now

Firefox 150 promises new features like support for the GTK emoji picker on Linux, allowing users to insert emoji by using the Ctrl+. keyboard shortcut (see it below in action), and the ability to reorganize PDF pages directly in the Firefox PDF viewer, including moving, copying, and deleting pages.

FreeCAD 1.1 Released with Improved Wayland Support, New Tools, and More

Coming a year and four months after FreeCAD 1.0, the FreeCAD 1.1 release promises to improve Wayland support, implement three-point lighting to improve the rendering of 3D models, add a search bar to the Preferences Editor, and support transparent Part Design previews.

LinuxGizmos.com

Pine64 FOSDEM 2026 Update Details PineNote and PineTab2 Progress

Pine64 has published a community update following FOSDEM 2026, outlining recent development activity, hardware demonstrations, and production challenges affecting its device lineup. The update highlights progress on PineNote and PineTab2 software, early work on PineTime Pro, and the impact of the ongoing DRAM shortage on several products.

Book Explores ELBE Workflows for Embedded Linux Systems

A new book titled Building Embedded Systems with Raspberry Pi, Linux, and ELBE by Krishna Pattabiraman describes approaches for developing reproducible Debian-based embedded Linux systems using the ELBE build environment. The content focuses on structured system design, image generation, and long-term maintainability for Raspberry Pi–based platforms.

DietPi March 2026 Update Adds Immich, uv, and RustDesk Client

The March release of DietPi v10.2 introduces new software options including Immich, uv, and the RustDesk Client, along with a range of enhancements and bug fixes across supported single-board computers.

Internet Society

US Supreme Court Unanimously Defends Internet Access for Millions

The United States Supreme Court unanimously ruled in favor of protecting people’s Internet access on Wednesday, 25 March.  

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

Kali Linux 2026.1 Is Out with New Default Theme, New Tools, and BackTrack Mode
Offensive Security released today Kali Linux 2026.1 as the latest stable snapshot of this Debian-based GNU/Linux distribution for penetration testing and ethical hacking, coming more than three months after Kali Linux 2025.4.
NVIDIA 595 Linux Graphics Driver Released as Latest Production Branch Version
NVIDIA released today the stable version of the NVIDIA 595 graphics driver for GNU/Linux, FreeBSD, and Solaris systems, introducing various new features and improvements.
Tails 7.6 Privacy-Focused Linux Distro Released with Automatic Tor Bridges
Tails 7.6 has been released today as the sixth update in the Tails 7.x series of this portable Linux distribution based on Debian GNU/Linux and designed to protect you against surveillance and censorship.
LibreOffice 26.2.2 Open-Source Office Suite Released with More Than 80 Bug Fixes
The Document Foundation announced today the general availability of LibreOffice 26.2.2 as the second maintenance update to the latest LibreOffice 26.2 office suite series with various bug fixes.
Kali Linux 2026.1 delivers several new tools and a classic desktop theme
Looking back at the first BackTrack Linux release, which arrived two decades ago as Kali's ancestor
 
Security Leftovers
Security related picks
Operating System Leftovers
BSD and SUSE
Free, Libre, and Open Source Software Leftovers
FOSS picks
Programming Leftovers
Development news
Canonical/Ubuntu: sudo-rs, Ubuntu’s App Center, Ubuntu 26.04 LTS, and NucBox
Canonical/Ubuntu leftovers
Open Hardware/Modding: 3D Printing, Raspberry Pi, and More
the hardware leftovers
Mixxx 2.5.6 Open-Source DJ App Improves Controller Mapping Support and Effects
Mixxx 2.5.6 open-source virtual DJ software for performing live mixes is now available for download with improvements to controller mappings and effects, as well as bug fixes.
Linux and so-called 'Linux' Foundation Leftovers
LF and more
FOSS Applications and News
Software leftovers
today's howtos
Instructionals/Technical picks
Fedora, Red Hat, and Oracle's Unbreakable Enterprise Kernel 8.2
RHEL and more
CIQ (Rocky Linux) Trying to Ride "Hey Hi" Hype Wave With x86
4 new picks
Games: Godot, Aethermancer, SteamRT3 Beta, and More
Some gaming news
Switching Switches [original]
Now back to normal
We Need Fewer Buildings, More Nature [original]
"Manchester’s new spy HQ"
No Social Control Media? No Problem. [original]
It's widely known and days ago a high-profile American court confirmed that Social Control Media is intentionally designed to be addictive
HaikuOS and Openwashing at Google
another pair of links
Server: eBPF, Kubernetes, and Slop
4 new picks
Canonical/Ubuntu Pushing Proprietary Software/Payware and Rust (Experimental Code Instead of Stable Code, in the Name of "Security")
Canonical/Ubuntu latest
Applications and HowTos
today's howtos
Programming Leftovers
Development picks
Android Leftovers
Android Auto is having a hard time recommending media
Tux Machines' Position on "Age Verification" in GNU/Linux [original]
It's not about protecting children
Free and Open Source Software
This is free and open source software
Calibre 9.6 Adds New Card-Based View of Full-Text Search Results with Book Covers
Calibre developer Kovid Goyal released Calibre 9.6 today as a hefty update of this open-source, free, and cross-platform e-book management software for GNU/Linux, macOS, and Windows.
Today in Techrights
Some of the latest articles
Ubuntu 26.04 LTS Beta Is Out Now with Linux Kernel 7.0 and GNOME 50
Canonical released today the beta version of the upcoming Ubuntu 26.04 LTS (Resolute Racoon) distribution ahead of the final release on April 23rd, 2026.
Free, Libre, and Open Source Software, Open Data, and Coding
FOSS and more
Firefox 149 and Firefox Developer Edition
Mozilla stuff
LibreOffice Donations and Document Freedom Day
some LibreOffice news
GNU/Linux and BSD Leftovers
mostly GNU/Linux for today
OpenBSD on Motorola 88000
a pair of posts regarding OpenBSD on Motorola 88000
Linux-friendly and Hackable Hardware Leftovers
Hardware picks
today's howtos
Instructionals/Technical posts
Red Hat Promoting Slop, Rocky and Oracle Follow
lots of nonsense again
Security Leftovers
Security picks
IBM Red Hat Promotes Age Surveillance Inside the OS
as expected
Openwashing and Slop Promotion by 'Linux' Foundation (Proprietary is 'Open')
latest examples
Android Leftovers
Google rolling out Android Auto fix for Galaxy S26 and Pixel users
I used every major Linux desktop—these 5 are better than GNOME
Most people switching to Linux naturally land on GNOME—not because it was their choice
GNU Stow turned me into the ultimate Linux distro-hopper
Distro-hopping is not for the faint of heart
CachyOS just dethroned Arch Linux on ProtonDB, and Linux gamers are finally noticing
In case you missed it, CachyOS recently toppled Arch Linux as the OS with the most reports sent to ProtonDB
Free and Open Source Software, howtos and Installations
This is free and open source software
Kamuriki LGX – Debian-based desktop-oriented distribution
Kamuriki Linux is a Debian-based, desktop-oriented distribution designed for lightness and ease of use
GNU/Linux, systemd trouble, and "Clown" Computing
today's leftovers
AnduinOS 1.4.2 Offers Redesigned GNOME for Windows Refugees
AnduinOS 1.4.2 pairs Ubuntu’s already easy-to-use foundation with a heavily customized GNOME desktop and Flatpak apps to ease the transition from Windows to Linux
The Danger of Microsoft Controlling European Tech [original]
"Europeans think Trump can shut down their [I]nternet"
Games: Proton Experimental, Humble Bundle, SPLITGATE, and Forza Horizon 6
4 stories from GamingOnLinux
GNOME Has Run Out of Money (IBM Divestment)
"GNOME Fellowship program"
Dealing With Bot Traffic (Half or Majority of Web Traffic) [original]
Other surveyors have said the same for years
Programming Leftovers
Development picks
Android Leftovers
Those lovely Android Calling Cards are already showing up on Pixel Watch calls
Age verification isn't sage verification inside OSes
Toothbrushes, Turing and the truth give the lie to California’s legal lunacy
4 Linux hardware devices I’m looking forward to in 2026
Most of the time when you hear about Linux
Free and Open Source Software
This is free and open source software
I forced myself to use Linux without the terminal for a week
My relationship with the Linux terminal is probably not completely healthy
Linux would be nothing without these 6 open-source apps
I have 6 things that make Linux what it is today
StratOS – Linux distribution based on Arch
StratOS Linux is a flexible Linux distribution built on top of Arch Linux
KDE Linux – free Linux-based operating system built by KDE
KDE Linux is a free, open-source
GNOME 50 “Tokyo” Desktop Environment Officially Released, This Is What’s New
The GNOME Project released today GNOME 50 (codename Tokyo) as the latest stable version of this widely used desktop environment for GNU/Linux distributions, a major release that introduces exciting new features.
Moddable Hardware: Raspberry Pi, GrapheneOS, and More
some hardware picks
PineTime Pro is an open source smartwatch with an OLED display and GPS
Pine64 is a company that produces inexpensive single-board computers, laptops, tablets
Stable kernels: Linux 6.19.10, Linux 6.18.20, Linux 6.12.78, Linux 6.6.130 and Linux 6.1.167
I'm announcing the release of the 6.19.10 kernel
Improving Our Static Site Generator (SSG) [original]
yesterday we tested (on a test machine) some improvements to the Static Site Generator (SSG), which turns 4 this summer
Maintenance Completed [original]
we're now back to normal (no ongoing work in the datacentre)
Today in Techrights
Some of the latest articles
Latest Half Dozen From LWN
mostly kernel
GNU/Linux Leftovers
mostly GNU/Linux leftovers
Free, Libre, and Open Source Software and Standards Leftovers
FOSS and more
Monopoly Boosting at Linux Foundation, Freedom Advocacy by Document Foundation
2 foundations, 2 directions
FSF / Software Freedom: Resisting GAFAM and an Upcoming Free Software Directory Meeting on IRC
FSF's latest
Programming Leftovers
Development news
Firefox News/Developments and Tor Browser has New Release
Firefox leftovers
Open Hardware/Modding: ESP32, DietPi, and More
Hardware stories
KDE: Lokalize, Wayland, Marknote, and More
Some KDE news
Security Leftovers
Security related news
Proprietary on GNU/Linux: Qt, "AgentX", and Microsoft Googlebombing a KDE/Nitrux Project
4 stories for today
today's howtos
Instructionals/Technical picks
Firefox 150 Promises Support for the GTK Emoji Picker on Linux, Beta Out Now
Firefox 150 open-source web browser is now available for public beta testing with support for the GTK emoji picker on Linux, extended local network access restrictions, and more.
Linux Won, and Nobody Noticed
The tech industry has failed to properly acknowledge this for years
Krita 5.3.0 Released!
Today is the simultaneous release of Krita 5.3.0 and Krita 6.0.0
Tux Machines Turns 22 in 11 Weeks, Tonight We Have Some Scheduled Maintenance (Network) [original]
Days ago there was a maintenance window; there is another one coming up tonight
Fedora Development and Red Hat 100% Preoccupied With Selling Slop for IBM
mostly redhat.com
FreeCAD 1.1 Released with Improved Wayland Support, New Tools, and More
FreeCAD 1.1 has been released today as a major update for this open-source, free, and cross-platform 3D parametric modeler with numerous new features and UI improvements.
Games: Oldies, Layoffs, War Thunder Infantry, and More
mostly from GamingOnLinux
Arch-based ML4W OS 2.12.0 now available with Quickshell and other changes
Arch-based ML4W OS 2.12.0 now available with Quickshell and other changes
Android Leftovers
I changed 3 hidden Android settings and my phone suddenly had more battery life
Exton Linux ExLight 260322 drops with Enlightenment 0.27.1, Calamares 3.3.14-1, and more
The base used is Debian 13.4 Trixie
4 reasons Linux Mint is the best Windows 11 replacement
If you're like me, you probably find Windows 11 a disappointment
Free and Open Source Software
This is free and open source software
Fluff Linux – Arch-based distribution
Fluff Linux is a Arch-based distribution focused on delivering a stable, high-performance
Feels Like Back to Wintertime [original]
The trees and the plants are getting "confused" by this odd shift between "seasons"
Today in Techrights
Some of the latest articles