Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

Ubuntu Desktop 26.10 “Stonking Stingray” Daily Builds Now Available for Download

The Stonking Stingray development cycle has been nothing but strange until now. First, the daily builds for Ubuntu Desktop, which first appeared around mid-May, were only available for the 64-bit ARM (AArch64) architecture. Then, Canonical decided to release the first Snapshot without providing Ubuntu Desktop 64-bit images.

Ubuntu 25.10 “Questing Quokka” Will Reach End of Life on July 9th, 2026

Released on October 9th, 2025, Ubuntu 25.10 (codename Questing Quokka) shipped with Linux kernel 6.17 and the GNOME 49 desktop environment for the flagship Ubuntu Desktop edition. It was also the first Ubuntu release to default to a Wayland-only experience on the Ubuntu Desktop flavor.

First Look at Audacity 4: A Beautiful and Modern Revamp of the Audio Editor

I just remembered that I’ve been using Audacity on and off for about 20 years now. It’s always been the go-to program whenever I needed to trim an audio file or glue two tracks into one, or just extract a sample from an audio track. For me, Audacity was highly effective and reliable for this specific use case.

Shelly 2.3.3 Package Manager for Arch Linux Improves Flatpak/AppImage Support

Shelly is a modern reimagination and alternative to Arch Linux’s default package manager, supporting third-party app stores like AUR and Flathub, as well as AppImages. Shelly comes with both a graphical UI and a CLI version. CachyOS recently adopted Shelly as the default GUI package manager.

First Look at Antergos NeXT: A Modern Revival of Antergos Linux with KDE Plasma

Antergos Linux was created by developers Alexandre Filgueira, Gustau Castells, and Dustin Falgout back in 2012 as an unofficial Cinnamon flavor of the popular and flexible Arch Linux distribution. It was initially called Cinnarch (Cinnamon on Arch), but the developers renamed it Antergos in 2013.

GStreamer 1.28.4 Adds Support for FLAC Decoding and New Codec Profile Mappings

The GStreamer 1.28.4 release adds various new codec mime/profile mappings for WMV, VC1, AC3/EAC3/AC4, AAC, and H.265, as well as support decoding for FLAC files on Android, and support for SRTP, authentication, HTTP tunnelling, keep alive, stream selection, TLS validation, and latency configuration to the RTSP client plugin.

Systemd-Free Peppermint OS Devuan Is Now Based on Devuan 6 Excalibur

Based on the latest Devuan 6 “Excalibur” series, which is based on the Debian 13 “Trixie” operating system series, Peppermint OS Devuan ships with three init systems, including SysVinit, OpenRC, and runit, and features the lightweight Xfce 4.20 desktop environment by default.

KDE Frameworks 6.27 Is Out to Improve KRunner, Breeze Icons, and More

The KDE Frameworks 6.27 release is here to improve the display of disk sizes shown in various places across the Plasma desktop to fully respect your preference regarding storage units, and switching between light and dark Global Themes to prevent various Plasma UI elements from changing their colors halfway.

LinuxGizmos.com

M5Stack LLM-8850 Kit delivers 24 TOPS AI acceleration in M.2 form factor

The LLM-8850 Kit is an M.2-based AI accelerator designed for edge AI, embedded inference, video analytics, and multimodal large-model workloads. It combines the LLM-8850 Card, a compact M.2 M-Key 2242 module based on the Axera AX8850 SoC, with a PiHat adapter board for the Raspberry Pi 5.

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

Active AUR malicious packages incident
Some bad incident
MX Linux 25.2 “Infinity” Released with Linux Kernel 7.0, Based on Debian 13.5
MX Linux 25.2 distribution is now available for download with a new text-mode installer, Debian 13.5 base, and Linux kernel 7.0 on the AHS builds. Here’s what’s new!
 
Wine 11.11
The Wine development release 11.11 is now available
Ubuntu Desktop 26.10 “Stonking Stingray” Daily Builds Now Available for Download
Ubuntu Desktop 26.10 (Stonking Stingray) daily build ISO images are now available for download for early adopters and application developers.
Today in Techrights
Some of the latest articles
Ubuntu 25.10 “Questing Quokka” Will Reach End of Life on July 9th, 2026
Ubuntu 25.10 “Questing Quokka” will reach end of life on July 9th, 2026, and users should consider upgrading to Ubuntu 26.04 LTS “Resolute Raccoon”.
First Look at Audacity 4: A Beautiful and Modern Revamp of the Audio Editor
A first look at the new features and improvements in the upcoming Audacity 4 open-source audio editor.
Audiocasts/Shows:, Hackaday Podcast, Michael Geist on the Globe and Mail
2 episodes or shows
seL4 microkernel and rambles around computer science covering Linux kernel
kernel news
Distributions and Operating Systems: HaikuOS, BSDs, and More
misc. OS news
Free, Libre, and Open Source Software Leftovers
FOSS and more
Red Hat Selling Slop, RISC-V, LinuxONE
mostly slop though
Open Hardware/Modding: Arduino, Raspberry Pi, and More
hardware news picks
Mozilla: Lobbying on the American Innovation and Choice Online Act (AICOA) and More Exodus
Mozilla news
Programming Leftovers
Development picks
Security Leftovers
bugs, cracks, and more
GNOME: This Week in GNOME, Extending Libipuz, and Ayatana Indicators
GNOME news
today's howtos
Instructionals/Technical posts
Games: Godot, Classics, and Handhelds
gaming leftovers
Apple and GNU/Linux Containers
a pair of reports
EasyOS Changes in Internet Radio, Symphytum, and EcoTube
Updates from BK
Shelly 2.3.3 Package Manager for Arch Linux Improves Flatpak/AppImage Support
Shelly 2.3.3 open-source graphical package manager for Arch Linux-based distributions is now available for download with better handling of Flatpak and AppImage bundles, and other changes.
Long Days [original]
We're now exactly a week away from the longest day
GNU/Linux Leftovers
GNU/Linux stories for today
Today in Techrights
Some of the latest articles
Android's Quick Share finally works on Linux—and it's simpler than KDE Connect
Even though I prefer GNOME over KDE
There's a full Linux server dashboard hiding in your browser — and it's already installed
If you're a long-time Linux user, there's a very good chance that a raft of terminal commands is living in your head rent-free right now
Juno Tab 4 Linux tablets launch in 10.5'' and 13'' versions powered by Intel processors
Juno Computers has refreshed its Linux tablet line with two new models
Audacity 3.7.8 Audio Editor Improves Support for HiDPI Displays on Linux
Audacity 3.7.8 open-source digital audio editor and recording software is now available for download with improves support for HiDPI displays on Linux, new options to choose where silence is truncated, and more.
CIB seven – workflow and process automation platform
This is free and open source software
This Week in Plasma: 6.8 is Very Close!
This week the Plasma team put the finishing touches on Plasma 6.7
Open Hardware/Modding: Commodore 64, Framework Laptop 13 Pro, and More
Hardware leftovers
First Look at Antergos NeXT: A Modern Revival of Antergos Linux with KDE Plasma
A first look at Antergos NeXT, a modern revival of the Antergos Linux distribution based on Arch Linux and featuring the KDE Plasma desktop environment.
GNU/Linux Leftovers
GNU/Linux related picks
Distributions and Operating Systems Leftovers
OS stuff, BSD also
Ubuntu Leftovers
Ubuntu picks
Graphics: eGPU in Linux and Linux Settings
Graphics and GPUs
Open Hardware/Modding: 3D Printing, Olimex, and More
hardware side of things
Free, Libre, and Open Source Software Leftovers
FOSS and education
Programming Leftovers
Development news
Mozilla: Spellchecker, VPN, and Addons for Firefox
Firefox news and views
Red Hat Very Drunk on Slop/Plagiarism, Many Things Rebranded as "AI"
very sad
FOSS Weekly and Windows Cross-overs
Applications news
today's howtos
idroot and more
Openwashing by 'Linux' Foundation by Outsourcing to Proprietary Microsoft (GitHub)
GitHub Foundation?
piBrick PocketCM5 – An open-source handheld Linux computer kit for Raspberry Pi CM5
Designed by Indonesian maker Ahmad Amarullah (amarullz), the piBrick PocketCM5 is an open-source hardware handheld Linux computer kit built around the Raspberry Pi CM5
Gert Wollny Pushing LLM Slop Into Linux Kernel
one of many
Alpine Linux is a crazy-fast distro for your desktop - with just one caveat
Alpine Linux isn't always considered for traditional desktop use
Almost Half of 2026 Gone [original]
Tomorrow it's a weekend again and next week we'll redo the front page of the site, at long last!
Next Richard Stallman Lecture/Talk is on Tuesday at School of Engineering, FAU (Erlangen, Germany) [original]
"[p]resenting the moral issues of free vs nonfree software, why your freedom demands freeing yourself from nonfree software, and how reverse engineering is crucial for freeing our computers."
GStreamer 1.28.4 Adds Support for FLAC Decoding and New Codec Profile Mappings
GStreamer 1.28.4 open-source multimedia framework is now available for download with support for decoding FLAC files and new codec mime/profile mappings for Android, bug fixes, and various other improvements.
Systemd-Free Peppermint OS Devuan Is Now Based on Devuan 6 Excalibur
Peppermint OS Devuan distribution has been updated today to Devuan 6 (Excalibur), based on the Debian 13 (Trixie) operating system series but without the systemd init system.
Games: Videogames, Proton-CachyOS, Proton Experimental, and More
gaming picks
Android Leftovers
Onyx BOOX Go 6 (Gen II) brings pen support to an Android-powered eReader
KDE Frameworks 6.27 Is Out to Improve KRunner, Breeze Icons, and More
KDE Frameworks 6.27 open-source software suite is out now with various improvements and bug fixes for KDE apps and the Plasma desktop environment. Here’s what’s new!
Today in Techrights
Some of the latest articles