Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

Coreboot 26.03 Open-Source Firmware Adds Full Support for Intel PantherLake SoCs

Highlights of Coreboot 26.03 include full support for the recently released Intel PantherLake SoCs, increased SMMSTORE capacity, updated TPM and signed secure blob plumbing across multiple platforms, Star Labs Starbook Horizon support, and SPD/memory data generation refresh.

4MLinux 51.0 Released with Improved Support for ZX Spectrum and Atari Music

Coming four months after 4MLinux 50.0, the 4MLinux 51.0 release improves support for ZX Spectrum and Atari music via the AY/YM emulation library, and adds support for installing the Midori web browser and C* Music Player (cmus) ncurses-based music player as downloadable extensions.

GNOME 51 “A Coruña” Desktop Environment Scheduled for September 16th, 2026

GNOME 50 “Tokyo” was just released earlier this month, and while it has not yet reached the stable software repositories of popular rolling-release distributions like openSUSE Tumbleweed or Arch Linux, the GNOME devs have started work on the GNOME 51 release.

9to5Linux Weekly Roundup: March 29th, 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.

KaOS Linux 2026.03 Is Out with Linux 6.19, More systemd Components Removed

Last month, when KaOS Linux 2026.02 was released, we reported that the distribution had dropped its KDE/Plasma desktop environment, after more than 12 years using it as the default, in favor of a Niri/Noctalia setup to avoid any use the systemd init system and move to Dinit instead.

GIMP 3.2.2 Released with Various Improvements and UI/UX Updates

GIMP 3.2.2 is here to improve the importing of SVG paths in the Paths dock by properly scaling the imported path based on user preference, improve the FITS, TIM, PAA, ICNS, PVR, SFW, and JIF image import plugins, and improve the Paintshop Pro plugin to correctly load the active selection shape.

SystemRescue 13 Released with Linux Kernel 6.18 LTS, GParted 1.8.1, and More

Powered by the long-term supported Linux 6.18 LTS kernel series, SystemRescue 13 ships with updated Bcachefs tools and kernel module, and new tools including the FATSort utility for sorting FAT12, FAT16, FAT32, and exFAT partitions, and nss-mdns, a NSS plugin providing host name resolution via Multicast DNS.

LinuxGizmos.com

FLiP Multicore Module Rev B Adds USB-C and Expanded Power Input

California-based Parallax Inc. has released Revision B of its FLiP Multicore Module, updating the design with USB-C connectivity, a wider input voltage range, and additional identification features.

Jetway F35-ARU1 Combines Core Ultra SoC in 3.5-inch Form Factor

Jetway has shared early details of the F35-ARU1, a 3.5-inch subcompact board based on Intel Core Ultra processors from the Arrow Lake-U series. The board integrates CPU, GPU, and NPU resources within a low-power platform intended for embedded and industrial systems.

Vividnode Mobile AI Packs RISC-V Processor and 60 TOPS AI Engine

A compact system from ZUIKI based on a K3 RISC-V processor has appeared on the Japanese crowdfunding platform Kibidango. The Vividnode Mobile AI is presented as a small form-factor system for local inference and development.

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

Ubuntu MATE’s founder is stepping back after 12 years and LinuxConfig covers APT in Ubuntu
Ubuntu picks
Open Hardware/Modding: ESP, PineTime Pro, 3-D Printing, and More
hardware and gadgets
After 6 Years, One of Wayland’s Most Annoying Problems is Finally Getting Fixed
The new xdg-session-management protocol finally brings session saving and restoration to Wayland
Linux 7.0-rc6
new RC
SystemRescue 13 Released with Linux Kernel 6.18 LTS, GParted 1.8.1, and More
SystemRescue 13 live Linux system rescue toolkit is now available for download with the Linux kernel 6.18 LTS, new tools, and HiDPI improvements.
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
Today in Techrights
Some of the latest articles
Emmabuntüs Debian Edition 6 1.01 Is Out with More Accessibility Improvements
The Emmabuntüs Collective informs 9to5Linux.com today about the general availability of Emmabuntüs Debian Edition 6 1.01 as the first point release to the latest Emmabuntüs Debian Edition 6 series of this Debian-based distribution designed to facilitate the reconditioning of old computers.
Peropesis 3.2 keeps the CLI-only world alive with the 6.18.2 kernel, Bash 5.3, and more
With version 3.2, Peropesis continues to deliver a fresh yet old-school Linux experience by relying exclusively on the command line interface
 
Android Leftovers
‘Tap to Share’ gesture for Quick Share leaks in Samsung’s Android 17 update
Sparky Linux 9 brings a rolling release to Debian
Sparky Linux's rolling release edition delivers the rock-solid stability Debian is known for — plus the latest software
I installed one Linux app I'd never heard of and it replaced three tools
But switching to GNOME Document Scanner has made me realize that I've been overcomplicating things for years
5 Linux Mint desktop widgets that save me time and help me get more done
Linux Mint offers a clean and reliable Windows-like desktop experience—but for some users (like me)
Using FireWire On A Raspberry Pi Before Linux Drops Support
Once the premium option for data transfers and remote control for high-end audiovisual and other devices
It seems like every new Linux user goes through a phase of "distro-hopping," or constantly switching Linux distros
It seems like every new Linux user goes through a phase of "distro-hopping," or constantly switching Linux distros
This hidden Linux feature makes Windows look embarrassing for developers
Yet, there is a feature so fundamental to Linux
Free and Open Source Software, howtos and Installations
This is free and open source software
OpenBosniana OS – Debian-based Linux distribution
OpenBosniana OS is an operating system for desktop and laptop computers
End of First Quarter [original]
The main challenge will be to keep GNU/Linux free (as in freedom)
Coreboot 26.03 Open-Source Firmware Adds Full Support for Intel PantherLake SoCs
Coreboot 26.03 open-source firmware is now available for download with full support for Intel PantherLake SoCs and other changes. Here’s what’s new!
4MLinux 51.0 Released with Improved Support for ZX Spectrum and Atari Music
4MLinux 51.0 distribution is now available for download with improved support for ZX Spectrum and Atari music and other changes. Here’s what’s new!
Leftovers Regarding GNU/Linux Distributions and Operating Systems
today's leftovers
GNOME Desktop/GTK: "Cambalache’s First Major Milestone!" (1.0) and Thibault Martin on Blogs
GNOME picks
Free, Libre, and Open Source Software, Wikipedia, and Standards
FOSS and more
Programming Leftovers
Development stories
Games: New Steam Games and Williams Sinistar Arcade Documentary
Recent gaming news/picks
today's howtos
Instructionals/Technical posts
Valnet on Command Line Piping and tmux
2 new articles
Android Leftovers
Android 17: Google Finally Brought This Useful Trick to Every App
Get the best of LibreOffice Calc with the Calc Guide 26.2
The LibreOffice documentation team is proud to announce the immediate availability of the Calc Guide 26.2
5 Linux Mint extensions that finally made my desktop feel complete
Linux Mint is a beautiful and efficient operating system that just works out of the box
Ubuntu was my first distro—here's why we went our separate ways
I once used Ubuntu and followed its development with extreme excitement
Free and Open Source Software
This is free and open source software
Debian Pixel – remix of the Raspberry Pi Foundation PIXEL
Debian 12 Pixel allows you to run Raspberry Pi’s PIXEL Desktop on a PC or Mac
Review: NetBSD jails
About a month ago we shared that there is an effort underway to bring jails, a popular isolation technology used by FreeBSD, to the NetBSD operating system
New Releases of Parted Magic and ExLight
two recent distro releases
today's howtos
Instructionals/Technical posts
GNOME 51 “A Coruña” Desktop Environment Scheduled for September 16th, 2026
The development cycle of the upcoming GNOME 51 “A Coruña” desktop environment kicks off with a draft release schedule suggesting the final release is expected later this year on September 16th, 2026.
Protesting (Principled Stance) Pays Off [original]
We stand with the protesters
How Third-Party Funding and 'Former' Microsoft Staff Spent About a Million Dollars Lawyering Up Against Us [original]
a chance to catch up
9to5Linux Weekly Roundup: March 29th, 2026
The 285th installment of the 9to5Linux Weekly Roundup is here for the week ending March 29th, 2026.
Up North [original]
Maybe this year we can celebrate up north somewhere
Sharing is Caring but There is Carrying Capacity [original]
Sometimes using something that not many people use (e.g. some "niche" distro) helps guarantee its quality and loyalty to its core/original userbase
Android Leftovers
5 Android Phones That Still Come With A Headphone Jack In 2026
This Week in Plasma: Easier Microphone Sensitivity Adjustment
This week saw a large variety of improvements in fields as diverse as better support for multi-screen and multi-GPU setups
Free, Libre, and Open Source Software, Programming, and Standards
FOSS and more
GNU/Linux and BSD Leftovers
GNU/Linux mostly
GNU/Linux Devices, Open Hardware, and Linux for smartphones
gadgets and hardware
Games: ScummVM 2026.2.0 "Railmonicon" and Stagger v0.1.0
gaming picks
today's howtos
Instructionals/Technical posts
Say hello to Neil Roberts, new LibreOffice developer focusing on scripting support
The Document Foundation, the non-profit entity behind LibreOffice
GIMP 3.2.2 Released
We present the first micro-release of GIMP 3.2! Over the last two weeks
Fedora 44 will automatically make your Windows games run faster, no tweaks required
Don't get me wrong; gaming on Linux has come a long way in the last few years
KaOS Linux 2026.03 Is Out with Linux 6.19, More systemd Components Removed
KaOS Linux 2026.03 distribution is now available for download with Linux kernel 6.19, Niri 25.11 compositor, Noctalia 4.7 desktop shell, and more.
Framework Becomes a KDE Patron
Framework supports free open-source software and becomes KDE's latest patron
Free and Open Source Software
This is free and open source software
ZestISO – desktop Linux distribution built on Arch Linux
ZestISO is a rolling-release desktop Linux distribution built on Arch Linux
PluriOS – Bolivian Linux distribution based on Ubuntu LTS
PluriOS is an open-source project that aims to standardize a Linux desktop environment for Bolivia
Open Hardware/Modding: GNU-like Mobile Linux, Raspberry Pi Pico, and More
Projects and gadgets
Programming Leftovers
Development picks
Fedora: Update Problem and Ultra-powerful Tool
Fedora quietly solved Linux's update problem
AçorOS – Debian-based Linux distribution
AçorOS is an arm64 and amd64 Debian-based Linux distribution from Portugal
Linux KDu – Brazilian Ubuntu-based operating system
Linux KDu is a Brazilian, Ubuntu-based operating system in the Brazilian-Portuguese language version
After a Long Time, Ubuntu Shows Some Respect to Deb Packages
It will be easier to manage the classic Debian packages in the Snap/App Center in the upcoming Ubuntu 26.04 LTS
February/March in KDE Itinerary
In the past two months since the previous report we added a new welcome screen
Today in Techrights
Some of the latest articles
GIMP 3.2.2 Released with Various Improvements and UI/UX Updates
GIMP 3.2.2 open-source image editor is now available for download with various improvements, bug fixes, and UI/UX updates.
GNU/Linux and BSD Leftovers
GNU/Linux mostly
Free, Libre, and Open Source Software Leftovers
Mozilla and more
Ubuntu Against Choice and Diversity, the Excuse Being 'Security'
bad turn
New Debian Developers and Maintainers and Samuel Henrique on Curl
Debian leftovers
Wikipedia Tarnished by Slop, Not Just 'Donations' From Rich People Who Control the Wiki
Wikipedia woes, slop vs Open Access/Content
Programming Leftovers
Development with Python and more
Fedora, Red Hat, and Slop
mostly Red Hat's site
OpenSUSE Planet News Roundup and Tumbleweed Review
OpenSUSE news
Season of KDE 2026 Report on Lokalize and More
KDE development
GNOME Desktop/GTK: This Week in GNOME, Gedit 50.0 Released, and Monitor Panel
some GNOME updates
Canonical/Ubuntu Leftovers
"I stopped using Snap" and more
Open Hardware/Modding: ESP32, SparkFun, 64-bit RISC-V, and More
devices and gadgets
Samsung and Linux UI
5 new picks
Audiocasts/Shows: Hackaday Podcast, Smashing Security, and Linux Age Checks
Episodes for today and video of interest
today's howtos
from two domains only
Games: Visual Game Script Editor, Alien Deathstorm, and More
mostly Liam's articles
SaaS/Back End/Databases: DNSDB, "SaaS is mostly dead", and Greenmask Releases
server-centric news
Security Leftovers
Security news with focus on Linux
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.
Recent Videos About GNU/Linux and Free Software
Shows and clips via Invidious
Android Leftovers
Android Auto has had a rough time lately, with yet another issue popping up
Even if you have 16GB of RAM, this one "compressed swap" trick makes Linux significantly smoother
RAM swapping is a common tool your OS uses to free up RAM in occasions
Age verification isn't sage verification inside OSes
Toothbrushes, Turing and the truth give the lie to California’s legal lunacy
This non-Chromium Linux browser can run Chrome, Firefox, and Safari extensions
It can be really tough to settle on a browser if you're not a fan of Chromium, at least on Linux
Free and Open Source Software
This is free and open source software
Mageia 10 Art Voting
With the release of the first version candidate planned for the coming weeks
LazyLinux – Void-based desktop Linux distribution with Xfce
LazyLinux is a fully pre-configured Linux distribution originating from Hadrut, Armenia, built on top of Void Linux
Coyote Linux – security-focused distribution
Coyote Linux is a security-focused Linux distribution designed to deliver firewall
Linux 6.12.79
I'm announcing the release of the 6.12.79 kernel
ODF is the future, OOXML is the past
Whenever a user, a government, a school or a business chooses the format in which to store and exchange its digital documents
Today in Techrights
Some of the latest articles