Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

Low-Cost WT99P4C5-S1 Pairs ESP32-P4 SoC with ESP32-C5 Wi-Fi 6 Module

Wireless-Tag’s WT99P4C5-S1 is a versatile multimedia development board built around the WT0132P4-A1 core module, which integrates Espressif’s ESP32-P4 dual-core RISC-V SoC. According to the company, this board targets applications such as AIoT, Human-Machine Interfaces, and edge computing, offering extensive connectivity, audio features, and multimedia expansion options.

Arduino and Red Pitaya Learning Lab Connects Makers with Real-World Engineering

Arduino and Red Pitaya have partnered on a hardware bundle and structured curriculum that helps students, educators, and hobbyists advance from basic electronics projects to practical signal analysis and system prototyping. Combining the Arduino Uno R4 WiFi with the Red Pitaya STEMlab 125-14, the kit supports hands-on experiments that link simple interfacing with engineering-grade measurement.

Radxa CM5 Gets Adapted for Use with uConsole Pocket Terminal

The ClockworkPi uConsole is designed for Raspberry Pi CM4 or CM5 modules, but a growing group of users has been working to run the Radxa CM5 inside this pocket terminal. By using the Radxa CM5, they gain higher RAM capacity, more storage options, and a faster GPU for processing tasks.

Tor Project blog

Our commitment to donor privacy at Tor

At the Tor Project, transparency for a privacy project is not a contradiction: privacy is about choice, and we choose to be transparent in order to build trust and a stronger community. This is how we operate in all aspects of our work: we show you all of our projects, in source code, and in periodic project and team reports, and in collaborations with researchers who help assess and improve Tor. Transparency also means being clear about our values, promises, and priorities as laid out in our social contract.

9to5Linux

System76’s Adder WS Linux Laptop Gets Intel Core Ultra i9 and NVIDIA 50 Series

More than a year since the previous Adder WS refresh, System76’s high-end Linux laptop now features the NVIDIA 50 GPU series, namely the NVIDIA GeForce RTX 5050, NVIDIA GeForce RTX 5060, and NVIDIA GeForce RTX 5070, as well as the Intel Core Ultra i9 275HX CPU with 24 cores, 36MB cache, and up to 5.4 GHz clock speed.

Ubuntu 24.10 “Oracular Oriole” Reached End of Life, Upgrade to Ubuntu 25.04

Ubuntu 24.10 (Oracular Oriole) was released on October 10th, 2024, and, since it’s not an Ubuntu LTS (Long Term Support) release, it only received support for nine months, until July 2025. Ubuntu 24.10 was powered by the Linux 6.11 kernel series and featured the GNOME 47 “Denver” desktop environment series.

news

GDB 15.1 released!

posted by Roy Schestowitz on Jul 08, 2024,
updated Jul 09, 2024

            GDB 15.1 released!

Release 15.1 of GDB, the GNU Debugger, is now available. GDB is a source-level debugger for Ada, C, C++, Fortran, Go, Rust, and many other languages. GDB can target (i.e., debug programs running on) more than a dozen different processor architectures, and GDB itself can run on most popular GNU/Linux, Unix and Microsoft Windows variants. GDB is free (libre) software.
You can download GDB from the GNU HTTPS server in the directory:
https://ftp.gnu.org/gnu/gdb/?C=M;O=D
The vital stats:
Size sha256sum Name 24MiB 38254eacd4572134bca9c5a5aa4d4ca564cbbd30c369d881f733fb6b903354f2 gdb-15.1.tar.xz 40MiB 8b61b0c2bdd9d9c83b113c9167866bdb474651d291fedcaa5eb7cde49bd47036 gdb-15.1.tar.gz
There is a web page for GDB at:
https://www.gnu.org/software/gdb/
That page includes information about GDB mailing lists (an announcement mailing list, developers discussion lists, etc.), details on how to access GDB's source repository, locations for development snapshots, preformatted documentation, and links to related information around the net. We will put errata notes and host-specific tips for this release on-line as any problems come up. All mailing lists archives are also browsable via the web.
GDB 15.1 includes the following changes and enhancements:
* Building GDB and GDBserver now requires a C++17 compiler (for instance, GCC 9 or later).
* Enhanced Python support
** New function gdb.notify_mi(NAME, DATA), that emits custom GDB/MI async notification.
** New read/write attribute gdb.Value.bytes that contains a bytes object holding the contents of this value.
** New module gdb.missing_debug that facilitates dealing with objfiles that are missing any debug information.
** New function gdb.missing_debug.register_handler that can register an instance of a sub-class of gdb.missing_debug.MissingDebugInfo as a handler for objfiles that are missing debug information.
** New class gdb.missing_debug.MissingDebugInfo which can be sub-classed to create handlers for objfiles with missing debug information.
** Stop events now have a "details" attribute that holds a dictionary that carries the same information as an MI "*stopped" event.
** New function gdb.interrupt(), that interrupts GDB as if the user typed control-c.
** New gdb.InferiorThread.ptid_string attribute. This read-only attribute contains the string that appears in the 'Target Id' column of the 'info threads' command output.
** It is no longer possible to create new gdb.Progspace object using 'gdb.Progspace()', this will result in a TypeError. Progspace objects can still be obtained through calling other API functions, for example 'gdb.current_progspace()'.
** User defined attributes can be added to a gdb.Inferior object, these will be stored in the object's new Inferior.__dict__ attribute.
** User defined attributes can be added to a gdb.InferiorThread object, these will be stored in the object's new InferiorThread.__dict__ attribute.
** New constants gdb.SYMBOL_TYPE_DOMAIN, gdb.SYMBOL_FUNCTION_DOMAIN, and gdb.SEARCH_*_DOMAIN
* Debugger Adapter Protocol changes
** GDB now emits the "process" event.
** GDB now supports the "cancel" request.
** The "attach" request now supports specifying the program.
** New command "set debug dap-log-level" controls DAP logging.
* Remote protocol
** New stop reason: clone
** QThreadOptions in qSupported
** New remote packets: QThreadOptions, qIsAddressTagged
** New "set/show remote thread-options-packet" commands
* GDBserver
** The --remote-debug and --event-loop-debug command line options have been removed.
** The --debug command line option now takes an optional comma separated list of components to emit debug for. The currently supported components are: all, threads, event-loop, and remote. If no components are given then threads is assumed.
** The 'monitor set remote-debug' and 'monitor set event-loop-debug' command have been removed.
** The 'monitor set debug 0|1' command has been extended to take a component name, e.g.: 'monitor set debug COMPONENT off|on'. Possible component names are: all, threads, event-loop, and remote.
* Deprecated or removed
** The MPX commands "show/set mpx bound" have been deprecated, as Intel listed MPX as removed in 2019.
* Miscellaneous
** Guile API: New constants SYMBOL_TYPE_DOMAIN, SYMBOL_FUNCTION_DOMAIN, and SEARCH_*_DOMAIN
** New "set/show direct-call-timeout" commands.
** New "set/show indirect-call-timeout" commands.
** New "set/show unwind-on-timeout on|off" commands.
** New "set/show unwind-on-signal on|off" commands, renaming the old "set/show unwindonsignal" commands. The old commands are maintained as an alias.
** The "gcore" and "generate-core-file" commands now generates sparse core files, on systems that support it.
** The "maintenance info line-table" command now includes a new EPILOGUE-BEGIN column indicating the start of the function's epilogue.
** Simultaneous use of the 'r' and 'b' flags in the "disassemble" command now triggers an error.
For a complete list and more details on each item, please see the gdb/NEWS file, available at: https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=blob_plain;f=gdb/NEWS;hb=gdb-15.1-release
-- Joel Brobecker

Read on

An update

LWN:

Other Recent Tux Machines' Posts

Ubuntu 24.10 “Oracular Oriole” Reached End of Life, Upgrade to Ubuntu 25.04
This is your friendly reminder that Ubuntu 24.10 “Oracular Oriole” reached end-of-life today, July 10th, 2025, and it is no longer supported by Canonical with software and security updates.
Red Hat Offers Free RHEL Access for Business Developers
Red Hat’s new dev program, Red Hat Enterprise Linux for Business Developers
Bluestar Linux: Arch Power, User-Friendly Polish
Think Arch is only for the hardcore? Bluestar Linux rewrites the rules—delivering power, polish, and zero intimidation
"LLM Coding is a Scam" [original]
From libreplanet-discuss
Politics Inside Free Software [original]
Free Software is about technical things and also the philosophy of sharing, or ethics limited to the idea of sharing
Putting Microsoft SLAPPs in the Bin Where They Belong [original]
Attacks on the mere publication of GNU/Linux news won't be tolerated
Amarok 3.3 Open-Source Music Player Is Out as First Release Fully Ported to Qt 6
Today, the Amarok development team released Amarok 3.3, the latest stable version of this open-source music player software that brings various new features and bug fixes.
Fedora 43 won't drop 32-bit app support – or adopt Xlibre
Community vetoes plans to axe i686 compatibility and switch X11 forks
 
Android Leftovers
Google launches Android Canary program for Pixel users who want to live on the bleeding edge
5 Ways I Fight Linux’s App Gap and Use All the Software I Need
Do you want to use Linux but feel worried that your favorite apps won’t work
Wayback Becomes Part of the FreeDesktop.org Ecosystem
The Wayback project, a X11 compatibility layer that allows running X11 desktop environments using Wayland
I Use This 17-Year Old Linux App to Easily Back Up My Files
Looking for an easy-to-use but flexible method of backing up your files on a Linux desktop
Red Hat sweetens the RHEL deal for biz devs – just don't put it in prod
Up to 25 instances for free, but only to play with
I Use Fedora Linux Daily, but These 3 Things Drive Me Nuts
To me, most Linux distros are essentially the same
4 things Linux does better than Windows for the average user
As much as I'd like to see it change, Windows 11 remains a far more popular choice for consumers at large than Linux is
Mozilla VPN Linux App is Now Available on Flathub
Linux users can now install the official Mozilla VPN client from Flathub
Ubuntu 24.04.3 HWE Stack Provides a Major Mesa Upgrade
Existing users of Ubuntu 24.04 LTS will receive an updated hardware enablement (HWE) stack this month
Project Seeks Input on Future of 32-bit ARM
The openSUSE Project is seeking community input to determine whether it should continue supporting 32-bit ARM architectures
Free and Open Source Software
This is free and open source software
Diving into Plasma Bigscreen
I have been a long time Plasma Mobile contributor
Stable kernels: Linux 6.15.6, Linux 6.12.37, Linux 6.6.97, Linux 6.1.144, and Linux 5.15.187
I'm announcing the release of the 6.15.6 kernel
ExTiX's new release is an even better Windows 11-like Linux desktop
I find the latest version of ExTiX to be an elegant desktop that any user would feel right at home on
Games: RTS Rush Humble Bundle, Blessed Burden, and More
GamingOnLinux's latest 7 stories
Today in Techrights
Some of the latest articles
Security Leftovers
Linux and more
From Open Source User to Fedora Contributor
I started my open-source journey when I got my first laptop
Re-designing signing in Fedora
Over the past few months I’ve spent some time on-and-off working on Sigul and some related tools
Sparky Linux: “Takes the Options Ball and Runs With It!”
Our reviewer dives into Sparky Linux and discovers a distro bursting with choices, flexibility
System76’s Adder WS Linux Laptop Gets Intel Core Ultra i9 and NVIDIA 50 Series
System76 informs 9to5Linux.com today about the availability of a new version of their Adder WS Linux-powered notebook that features newer Intel CPUs and NVIDIA graphics.
GNU/Linux Leftovers
Linux-focused picks
Free, Libre, and Open Source Software Leftovers
FOSS and licensing focus
Web Browsers (Slop Nonsense) and Content Management Systems (CMS)
Some WWW-centric additions
Programming and Standards
Development centric stuff
Security Leftovers
Security related picks
Open Hardware/Modding: Raspberry Pi, Arduino
retro also
Fedora and Red Hat Leftovers
from the official site mostly
Android Leftovers
This new setting in Android ensures core Google services are always up to date
Miracle-WM 0.6 Released with Rounded Corners Support
Miracle-WM 0.6.0 tiling Wayland window manager lands with rounded corners
today's howtos
Instructionals/Technical posts, mostly idroot
Thunderbird ESR: Fresh functions for Mozilla's email client and monthly development update
some Thunderbird news
Krita 5.2.10 Rolls Out with Bug Fixes Ahead of Major Feature Releases
Krita 5.2.10, a free and open-source digital painting app
Pull yourself up by your bootstraps
The way Ubuntu boots on the Raspberry is changing in questing
PANZER-LITE93 Ubuntu 24.04 Box PC puts FRDM-IMX93 development board into a 3D printed case
MayQueen Technologies PANZER-LITE93 is an NXP i.MX 93-powered box PC running a customized Ubuntu 24.04 LTS distribution
The Licensing and Compliance Lab, not just holding it down, but pushing back
Hello, my fellow and soon-to-be fellow free software activists and Free Software Foundation (FSF) associate members
Shotcut 25.07 Beta Added Scrub While Dragging to Timeline trimming
Shotcut, the free open-source Qt-based video editor, released the Beta for next 25.07 few days ago
Free and Open Source Software
This is free and open source software
KWallet to SecretService, a client application: name wanted
Another pain point is the application used to look inside the wallets
Wayland Fedora Gnome vs KDE neon Plasma, plus X11 data!
I showed you Plasma idle desktop figures, two separate articles
This Linux distro makes openSUSE accessible to all - even newbies should take a look
Linux Kamarada 15.6 does an outstanding job of making openSUSE more user-friendly
Security and Windows TCO Leftovers
Security related news
Games: Minigalaxy, STEEL HUNTERS, and More
10 stories from GamingOnLinux
LWN on Injecting Hype Into Linux Kernel and More
Kernel picks
Today in Techrights
Some of the latest articles
GNU/Linux and BSD Leftovers
various picks
Free, Libre, and Open Source Software and Standards
mostly FOSS picks
Hardware and GNU/Linux Migrations
some more stories
Danish Ministry switching from Microsoft Office/365 to LibreOffice
Following the example of the German state of Schleswig-Holstein
Games: Godot, FEX, and Lossless Scaling Frame Generation
Games-related picks
SUSE to roll out Sovereign Premium Support
as Microsoft takes a fall
Web Browsers: Curl, Chrom*, and Mozilla/Firefox
mostly Firefox
Open Hardware: Radxa, Pi, RISC-V, and More
Linux centric hardware
Ubuntu Pro, Ubuntu Weekly Newsletter, and More
Some Ubuntu news
Debian Leftovers
Some Debian stories
Software: OCR, PhotoPrism, Blender, and syslog-ng
some software news
today's howtos
mostly idroot
Programming Leftovers
Development picks for today
Security Leftovers
patches and breaches
Windows TCO Tales
Windows very expensive to use
Google Outsources Agent2Agent to Microsoft Proprietary Jail (GitHub), Linux Foundation is Openwashing Dangerous Hype
Some LF openwash
DXVK 2.7 Improves Support for God of War, Watch Dogs 2, and Final Fantasy XIV
DXVK 2.7, a Vulkan-based implementation of D3D9, D3D10, and D3D11 for Linux / Wine, is now available for download with new features and other improvements for various games.
Welcome to Thunderbird 140 “Eclipse”
The wait is over! Thunderbird 140 “Eclipse” has reached totality
Security and Windows TCO Leftovers
mostly Windows TCO
PCLinuxOS and Open Hardware Leftovers
GNU/Linux and more
today's howtos
half a dozen howtos
Android Leftovers
Google Pixel Phones Receiving Android 16-Based Monthly Software Update for July 2025: What’s New
I run these 4 commands first on every fresh Linux install
When installing Linux for the first time
I Left Windows 11 for Linux—Here’s the Best Distro to Start With
Switching from Windows to Linux can feel daunting
Games: Rhythm of Resistance, Bazzite, and More
Only 4 stories from GamingOnLinux for now
OBS Studio 31.1 Released with Multitrack Video Support on Linux
OBS Studio 31.1 has been released today for this powerful, open-source, cross-platform, and free software for video recording and live streaming on Linux.
Floating Mini Panel GNOME Extension Adds Auto Mode
The Floating Mini Panel GNOME Shell Extension I wrote about recently now includes an option to automatically activate the compact
Celebrating 20 Years of openSUSE
To celebrate the project’s vibrant history
GIMP Tutorial: GIMP 3.0 Review
GIMP 3.0.4 is out!
Today in Techrights
Some of the latest articles
GNU/Linux Leftovers
3 more stories
Raspberry Pi Leftovers
some Raspberry Pi projecta and news