Latest Linux and open source news from around the web

Ubiquiti UniFi U6+ Sponsored · View on Amazon → Crucial BX500 1TB SATA SSD Sponsored · View on Amazon →
Phoronix

ollama 0.14 Can Make Use Of Bash For Letting AI/LLMs Run Commands On Your System

The ollama 0.14-rc2 release is available today and it introduces new functionality with ollama run --experimental for in this experimental mode to run an agent loop so that LLMs can use tools like bash and web searching on your system. It's opt-in for letting ollama/LLMs make use of bash on your local system and there are at least some safeguards in place...

LWN.net

Evans: A data model for Git (and other docs updates)

On her blog, Julia Evans writes about improving Git documentation, including a new data model man page she wrote with Marie LeBlanc Flanagan, and updates to the pages for several other Git sub-commands (add, checkout, push, and pull). As part of the process, she asked Git users to describe problems they had run into in the documentation, which helped guide the changes that she made. I'm excited about this because understanding how Git organizes its commit and branch data has really helped me reason about how Git works over the years, and I think it's important to have a short (1600 words!) version of the data model that's accurate. The "accurate" part turned out to not be that easy: I knew the basics of how Git's data model worked, but during the review process I learned some new details and had to make quite a few changes (for example how merge conflicts are stored in the staging area).

OMG! Ubuntu

Big GPU & Kernel Update Headed to Ubuntu 24.04 LTS

A new hardware enablement (HWE) will roll out to users on Ubuntu 24.04 LTS this month, ahead of the Ubuntu 24.04.4 LTS point release due on February 12. Ubuntuโ€™s engineers periodically backport the Linux kernel and graphics drivers included in interim releases to the current long-term support (LTS) version. The next update delivers components from Ubuntu 25.10, released in October 2025. This means the Ubuntu 24.04.4 HWE brings the Linux 6.17 kernel and Mesa 25.2.7, a sizeable leap over the 25.0.x series that was delivered in the 24.04.3 HWE update last August. New versions of Intel VAAPI driver (2.4.1), libva, [โ€ฆ]

Phoronix

Wine 11.0-rc5 Brings 32 Bug Fixes

With no Wine 11.0 release candidate last Friday due to the New Year festivities, Wine 11.0-rc5 is out today and it comes packing 32 bug fixes for the past two weeks...

LWN.net

[$] READ_ONCE(), WRITE_ONCE(), but not for Rust

The READ_ONCE() and WRITE_ONCE() macros are heavily used within the kernel; there are nearly 8,000 call sites for READ_ONCE(). They are key to the implementation of many lockless algorithms and can be necessary for some types of device-memory access. So one might think that, as the amount of Rust code in the kernel increases, there would be a place for Rust versions of these macros as well. The truth of the matter, though, is that the Rust community seems to want to take a different approach to concurrent data access.