• Business
  • Entertainment
  • Health
  • News
  • Sport
  • Tech
  • World
Newsy Today
news of today
Home - Ubuntu benchmarks
Tag:

Ubuntu benchmarks

Tech

Bcachefs 1.37 Released With Linux 7.0 Support, Erasure Coding Stable & New Sub-Commands

by Chief Editor March 15, 2026
written by Chief Editor

Bcachefs 1.37: A Deep Dive into the Next-Gen Filesystem’s Latest Advancements

The landscape of Linux storage is constantly evolving, and Bcachefs remains a prominent player pushing the boundaries of what’s possible. Kent Overstreet recently released version 1.37 of Bcachefs, bringing significant improvements to stability, performance, and usability. This release isn’t just another incremental update; it signals a maturing filesystem ready for wider adoption.

Erasure Coding Now Stable: Data Redundancy Reimagined

Perhaps the most significant news is the stabilization of Bcachefs’ erasure coding functionality. Developed over several years and refined through numerous updates, erasure coding provides a robust data redundancy solution, similar in concept to RAID implementations. This means increased data protection against drive failures without the performance overhead traditionally associated with RAID. The Bcachefs Wiki offers detailed technical information for those interested in the implementation: https://bcachefs.org/ErasureCoding/.

Did you realize? Erasure coding can offer better storage efficiency than traditional RAID configurations, especially when dealing with large capacity drives.

Enhanced Recovery and Performance Improvements

Bcachefs 1.37 addresses critical recovery scenarios. The update now includes automatic recovery from devices with problematic flush/fua (force unit access) support, leading to more reliable data integrity. Faster recovery from unclean shutdowns is also a key benefit, minimizing downtime and data loss. Performance improvements have been implemented for multi-device file-systems, making Bcachefs an even more attractive option for complex storage setups.

Journal Rewind Safety and Recent Sub-Commands

The journal rewind functionality, allowing users to revert the filesystem to a previous state, is now considered safe to utilize. Bcachefs automatically tracks how far back it can be safely rewound, providing a safety net for experimental operations or accidental data corruption. New sub-commands – subvolume list, list-snapshots, and reflink-option-propagate – enhance the filesystem’s manageability and provide more granular control over storage resources.

Extensive Documentation Updates: The Principles of Operation

Understanding a complex filesystem is crucial for effective administration. Bcachefs 1.37 includes a major update to its Principles of Operation (PoO) documentation, expanding it by around 100 pages. This comprehensive documentation empowers users to fully leverage the filesystem’s capabilities and troubleshoot potential issues.

Linux 7.0 Compatibility and Rust Conversion

Compatibility with the latest Linux 7.0 kernel is a significant step forward, opening the door for new benchmarks and performance testing. The ongoing effort to convert Bcachefs user-space components to the Rust programming language continues, promising improved security and maintainability in the long run.

More details on the release can be found in the Bcachefs-tools repository: https://evilpiepirate.org/git/bcachefs-tools.git/commit/?id=0fecba5bae654a493733ef77fb935ffe5457eb37.

FAQ

What is Bcachefs? Bcachefs is a next-generation, copy-on-write filesystem for Linux.

What is erasure coding? Erasure coding is a data redundancy method that allows for data recovery even if some storage devices fail.

Is Bcachefs stable? With the 1.37 release, key features like erasure coding are now considered stable.

What is the benefit of using Bcachefs? Bcachefs offers features like erasure coding, efficient snapshots, and advanced data integrity checks.

Where can I find more information about Bcachefs? Visit the official Bcachefs website and Wiki for detailed documentation and resources.

Pro Tip: Regularly review the Bcachefs documentation to stay informed about best practices and new features.

Interested in learning more about advanced Linux storage solutions? Explore our other articles on filesystem technologies and data management strategies. Share your thoughts and experiences with Bcachefs in the comments below!

March 15, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Linux 7.0 Lands Improvements To Deal With Upcoming Rust Changes, Build Reproducibility

by Chief Editor March 15, 2026
written by Chief Editor

Linux 7.0: Rust’s Growing Influence on the Kernel

The Linux kernel is undergoing a significant evolution, with Rust playing an increasingly prominent role. Recent merges into the mainline code for Linux 7.0 demonstrate a commitment to enhancing build reproducibility and preparing for future Rust releases, specifically versions 1.95, and 1.96. These changes, spearheaded by Miguel Ojeda and approved by Linus Torvalds, signal a deeper integration of the modern systems programming language into the heart of the operating system.

Improving Build Reproducibility with Rust

A key focus of these updates is build reproducibility. The kernel developers are remapping paths to avoid absolute references, a change directly tied to the upcoming Rust 1.95.0 release. This ensures that builds are consistent regardless of the specific environment, a critical factor for security and reliability. Previously, attempts to address this issue caused problems with debug information, but the current approach avoids those pitfalls.

This emphasis on reproducibility isn’t merely academic. Consistent builds are vital for verifying the integrity of the kernel and ensuring that updates are trustworthy. In a world increasingly concerned with supply chain security, this is a crucial step.

Preparing for Future Rust Versions

The kernel team isn’t just focused on the present; they’re also looking ahead. Allowing the ‘unused_features’ lint for Rust 1.96.0 demonstrates a proactive approach to adopting new features and improvements from the Rust ecosystem. While the team doesn’t currently see significant benefit from this specific lint, enabling it now prepares the kernel for potential future use cases.

Technical Deep Dive: Specific Changes

Beyond the broader themes of reproducibility and future compatibility, several specific technical changes have been implemented. These include fixes within the ‘kernel’ crate – specifically in the ‘str’ and ‘cpufreq’ modules – and adjustments to the ‘pin-init’ crate. Notably, an unsound attribute, ‘#[disable_initialized_field_access]’, has been removed, impacting support for structs with unaligned fields.

Another change involves emitting dependency information directly into the ‘$(depfile)’ to streamline the build process, eliminating a temporary ‘.d’ file. These seemingly minor adjustments contribute to a more efficient and maintainable codebase.

Why Rust in the Kernel Matters

The increasing adoption of Rust within the Linux kernel isn’t arbitrary. Rust offers memory safety guarantees that can help prevent a wide range of security vulnerabilities common in C code, the kernel’s traditional language. While a complete rewrite isn’t feasible or desirable, strategically incorporating Rust for new components and drivers can significantly enhance the kernel’s overall security posture.

The move to Rust also reflects a broader trend in systems programming, with more developers recognizing the benefits of a language that balances performance with safety. This is particularly important in the context of the kernel, where even tiny bugs can have catastrophic consequences.

What’s Next for Rust and Linux?

The integration of Rust into the Linux kernel is an ongoing process. Expect to see continued efforts to improve build reproducibility, adopt new Rust features, and gradually expand the use of Rust for new kernel components. The upcoming Rust 1.95 and 1.96 releases will likely drive further changes and optimizations.

FAQ

Q: What is Rust?
A: Rust is a modern systems programming language focused on safety, speed, and concurrency.

Q: Why is build reproducibility important?
A: Build reproducibility ensures that the same source code always produces the same binary, verifying integrity and security.

Q: Will Rust replace C in the Linux kernel?
A: It’s unlikely Rust will completely replace C, but it will likely be used for new components and drivers to improve security and reliability.

Q: What is a “lint”?
A: A lint is a static analysis tool that identifies potential problems in code.

Q: What is the significance of Linux 7.0?
A: The version bump to 7.0 is primarily for housekeeping purposes, but it coincides with significant internal changes, including increased Rust integration.

Did you know? Linus Torvalds has jokingly expressed concerns about his ability to manage large version numbers, contributing to the decision to bump to 7.0.

Pro Tip: Stay updated on kernel development by following the LWN.net website for in-depth coverage of kernel changes.

Want to learn more about the Linux kernel and Rust? Explore the resources available on kernel.org and rust-lang.org.

Share your thoughts on the future of Rust in the Linux kernel in the comments below!

March 15, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Open-Source “GreenBoost” Driver Aims To Augment NVIDIA GPUs vRAM With System RAM & NVMe To Handle Larger LLMs

by Chief Editor March 15, 2026
written by Chief Editor

NVIDIA GPUs Receive a Memory Boost: Open-Source GreenBoost Extends VRAM with System RAM and NVMe

NVIDIA GPU users may soon be able to run larger AI models than their graphics card’s dedicated video memory (VRAM) allows, thanks to a new open-source project called GreenBoost. Developed by Ferran Duarri, GreenBoost is a Linux kernel module designed to augment GPU VRAM with system RAM and even NVMe storage, offering a potential solution to the growing memory demands of large language models (LLMs).

How GreenBoost Works: A Multi-Tiered Approach

GreenBoost doesn’t replace NVIDIA’s official drivers; instead, it works alongside them. It functions as a CUDA caching layer, transparently expanding memory access for AI workloads. The system utilizes a multi-tiered approach, leveraging system RAM and NVMe storage to handle data that exceeds the GPU’s VRAM capacity.

The core of GreenBoost is a kernel module (`greenboost.ko`) that allocates pinned DDR4 pages and makes them accessible to the GPU as CUDA external memory. Data movement between the GPU and system resources is handled via the PCIe 4.0 x16 link, achieving speeds of around 32 GB/s. A CUDA shim (`libgreenboost_cuda.so`) intercepts memory allocation calls, redirecting large allocations to the kernel module. This process is designed to be seamless, requiring no modifications to existing CUDA software.

According to the developer’s announcement in the NVIDIA Forums, the system includes a watchdog thread to monitor RAM and NVMe pressure, alerting users before potential issues arise. A sysfs interface (`/sys/class/greenboost/greenboost/pool_info`) provides real-time usage monitoring.

Addressing the LLM Memory Challenge

The motivation behind GreenBoost stems from the increasing size of AI models. Duarri specifically aimed to run a 31.8GB model (glm-4.7-flash:q8_0) on a GeForce RTX 5070 with 12GB of VRAM. Traditional methods, like offloading layers to the GPU, resulted in performance drops due to a lack of CUDA coherence in system memory. Reducing model quantization, while an option, can compromise quality.

GreenBoost offers a potential middle ground, allowing users to run larger models without sacrificing performance or quality. The project is particularly relevant as LLMs continue to grow in size, and complexity.

Open Source and GPLv2 Licensed

GreenBoost is released under the GPLv2 license, encouraging community contributions and further development. The experimental code is available on GitLab. The project’s open-source nature allows for transparency and collaborative improvement, potentially accelerating its adoption and refinement.

Potential Impact on Gaming and AI

While initially focused on LLMs, the technology behind GreenBoost could have broader implications. The ability to effectively utilize system RAM and NVMe storage as GPU memory could benefit other memory-intensive applications, including gaming. Early tests suggest significant performance improvements with reduced VRAM usage, hinting at future possibilities for NVIDIA and DirectX AI-powered enhancements for gamers.

FAQ

Q: Will GreenBoost replace my NVIDIA drivers?
A: No, GreenBoost is designed to be complementary to NVIDIA’s official Linux kernel drivers, working alongside them as a dedicated kernel module.

Q: What hardware is required to use GreenBoost?
A: GreenBoost requires an NVIDIA discrete GPU, system RAM, and ideally, NVMe storage for optimal performance.

Q: Is GreenBoost stable for everyday use?
A: As an experimental project, GreenBoost is still under development. Stability and performance may vary depending on the hardware and workload.

Q: What is CUDA coherence?
A: CUDA coherence refers to the efficient access of data by the GPU. System memory typically lacks this coherence, leading to performance drops when used directly for GPU workloads.

Q: Where can I find more information and contribute to the project?
A: You can find the project on GitLab.

Did you know? GreenBoost intercepts CUDA memory allocation calls to redirect large requests to system RAM and NVMe storage, making it appear as if the GPU has more VRAM than it physically does.

Pro Tip: Monitor the `/sys/class/greenboost/greenboost/pool_info` interface to track GreenBoost’s memory usage and ensure optimal performance.

Interested in learning more about the latest advancements in GPU technology and AI? Explore our other articles or subscribe to our newsletter for regular updates.

March 15, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Linux 7.0-rc2 Released: “So I’m Not Super-Happy With How Big This Is”

by Chief Editor March 2, 2026
written by Chief Editor

Linux 7.0-rc2: A Larger Release Candidate Signals Potential Kernel Development Shifts

The second release candidate for Linux 7.0 has arrived, and it’s raising eyebrows. Linus Torvalds himself noted he’s “not super-happy with how big this is,” suggesting a potentially significant shift in the typical kernel development cycle. This release, packed with fixes and updates, offers a glimpse into the evolving priorities within the Linux ecosystem.

AMD Ryzen AI Accelerator Support and the Rise of Heterogeneous Computing

A substantial portion of the fixes in Linux 7.0-rc2 revolves around the AMDXDNA Ryzen AI accelerator driver. This highlights the growing importance of integrating AI capabilities directly into the kernel. The inclusion of working NTSYNC drivers in Linux 6.14, and continued refinement in 7.0-rc2, demonstrates a commitment to optimizing performance for these specialized processors. This trend aligns with the broader industry move towards heterogeneous computing, where CPUs and dedicated accelerators work in tandem to tackle complex workloads.

The increasing focus on AI acceleration within the kernel isn’t surprising. Applications ranging from image recognition to natural language processing are becoming increasingly demanding, and offloading these tasks to dedicated hardware is crucial for maintaining responsiveness and efficiency.

Beyond Drivers: A Shift in Kernel Development Focus?

Torvalds observed that this release candidate is unusual in that the bulk of the changes aren’t concentrated in drivers, a typical area of focus. Filesystems (SMB client, XFS, and erofs) and areas like BPF, core kernel functions, and networking account for a larger proportion of the changes. This suggests a broadening of development efforts beyond simply supporting new hardware.

The emphasis on filesystems, particularly SMB, indicates a continued effort to improve interoperability and performance in networked environments. Improvements to XFS and erofs suggest a focus on optimizing existing filesystem technologies for modern storage devices and workloads.

The Linux-Next Project and Kernel Credits

Linux 7.0 introduces a change in how kernel credits are assigned, now honoring the creator of Linux-Next. This seemingly minor change underscores the importance of recognizing contributions from all levels of the development process. The Linux-Next project is crucial for integrating new drivers and features into the mainline kernel, and acknowledging its role is a positive step towards fostering a collaborative development environment.

Imagination Drivers and Broad SoC Support

The ongoing work to support a wider range of Systems on a Chip (SoCs), such as the TI AM62P through Imagination drivers (spanning Linux 6.20 to 7.0), demonstrates the Linux kernel’s commitment to versatility. This is vital for embedded systems and edge computing applications where specialized hardware is common.

Expanding SoC support allows Linux to power a diverse range of devices, from industrial controllers to smart home appliances, solidifying its position as the dominant operating system in these sectors.

What Does a Larger rc2 Mean for the Final Release?

Torvalds speculates the size of rc2 might be due to work that was delayed from the 6.19 cycle. While a larger release candidate doesn’t necessarily indicate problems, it does suggest a more extensive testing phase will be required. The final stable release of Linux 7.0 is still expected around mid-April.

FAQ

Q: What is a release candidate?
A: A release candidate (rc) is a pre-release version of the kernel that is considered feature-complete and is primarily focused on bug fixing.

Q: What is AMDXDNA?
A: AMDXDNA is AMD’s unified architecture for GPUs and AI accelerators.

Q: What is NTSYNC?
A: NTSYNC is a synchronization mechanism designed to improve performance in AMD GPUs.

Q: What is Linux-Next?
A: Linux-Next is a tree used to stage changes before they are merged into the mainline Linux kernel.

Q: When is the expected release date for Linux 7.0?
A: The stable release is expected around mid-April.

Did you know? The Linux kernel is one of the most actively developed software projects in the world, with contributions from thousands of developers globally.

Pro Tip: If you’re a developer or system administrator, consider testing the release candidates to identify potential issues and contribute to the stability of the final release.

Want to learn more about the latest Linux kernel developments? Explore more articles on Phoronix.

March 2, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

AMD AOMP 23.0-0 Compiler Continues Enhancing Fortran Support

by Chief Editor February 21, 2026
written by Chief Editor

AMD AOMP 23.0-0: Fortran Support and the Future of GPU Offloading

AMD’s latest release of the AOMP 23.0-0 compiler signifies a continued push towards optimized GPU offloading for Radeon and Instinct hardware. This LLVM/Clang downstream build is designed to deliver the best possible experience with OpenMP and OpenACC APIs, acting as a leading-edge compiler before these improvements are integrated into the main LLVM project.

The Rise of Fortran in High-Performance Computing

A key focus of AOMP 23.0-0, and recent releases generally, is enhanced support for the Fortran programming language through the Flang compiler front-complete. While often overshadowed by C++ and Python in mainstream development, Fortran remains a cornerstone of high-performance computing (HPC), particularly in scientific and engineering applications. Its strengths in numerical computation and established codebases produce it vital for fields like climate modeling, computational fluid dynamics, and materials science.

The ongoing improvements to Flang within AOMP demonstrate AMD’s commitment to supporting this critical language. These updates include numerous fixes and additions designed to improve performance, and stability. This represents particularly important as developers seek to leverage the power of GPUs to accelerate Fortran-based applications.

Simplifying Distribution with ManyLinux

A significant change with AOMP 23.0-0 is the shift to a unified binary distribution built on ManyLinux. Previously, AMD provided builds specific to Ubuntu, SUSE, RHEL, and CentOS. The ManyLinux approach aims to provide a single, compatible binary that simplifies deployment across a wider range of Linux distributions. This reduces fragmentation and streamlines the development process for users.

Pro Tip: ManyLinux is a project that creates reproducible build environments for Linux packages, ensuring compatibility across different distributions.

ROCm 7.2 Integration and the AMD GPU Ecosystem

AOMP 23.0-0 is re-based on the AMD ROCm 7.2 source code, integrating the latest AMD capabilities. ROCm (Radeon Open Compute platform) is AMD’s open-source software stack for GPU computing. This integration ensures that AOMP users have access to the newest features and optimizations available within the AMD GPU ecosystem. The combination of AOMP and ROCm is crucial for developers aiming to maximize the performance of their applications on AMD hardware.

GPU Offloading: A Growing Trend

The emphasis on GPU offloading reflects a broader trend in the HPC landscape. CPUs are increasingly facing limitations in their ability to retain pace with the demands of complex computations. GPUs, with their massively parallel architectures, offer a significant performance boost for suitable workloads. GPU offloading allows developers to leverage this power by delegating computationally intensive tasks to the GPU, freeing up the CPU for other operations.

AMD’s AOMP compiler plays a vital role in facilitating this process, providing the tools and optimizations necessary to effectively transfer data and computations between the CPU and GPU.

The Future of Compiler Technology and GPU Acceleration

The continued development of compilers like AOMP, coupled with the advancements in GPU technology, points towards a future where GPU acceleration becomes increasingly commonplace. We can expect to see further improvements in compiler support for languages like Fortran, as well as the development of new tools and techniques for simplifying GPU offloading. The integration of managed memory support, as seen in the recent GCC 16 compiler updates, will also play a key role in making GPU programming more accessible and efficient.

FAQ

What is AOMP? AOMP is an LLVM/Clang downstream compiler developed by AMD, focused on delivering the latest AMD patches for GPU offloading.

What is ROCm? ROCm is AMD’s open-source software platform for GPU computing.

Why is Fortran still important? Fortran remains a critical language for high-performance computing, particularly in scientific and engineering applications.

What is ManyLinux? ManyLinux is a project that creates reproducible build environments for Linux packages, ensuring compatibility across different distributions.

Where can I find more information about AOMP 23.0-0? You can find details on the release, including updates and source code, at the AOMP GitHub repository.

Want to learn more about AMD’s advancements in GPU technology? Explore other articles on our site or visit the official AMD website.

February 21, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Linux 7.0 Merges Support For Rock Band 4 PS4 / PS5 Guitars Plus More Laptop Quirks

by Chief Editor February 14, 2026
written by Chief Editor

Linux 7.0 Strikes a Chord: Rock Band Guitar Support and HID Improvements

The latest kernel merge window for Linux 7.0 has brought exciting news for musicians and gamers alike. Significant updates to the Human Interface Device (HID) subsystem now include native support for Rock Band 4 guitars designed for PlayStation 4 and PlayStation 5 consoles. This marks a major step forward for open-source gaming compatibility.

Bringing the Band Back Together: Rock Band Support Details

Previously requiring patches, support for PDP RiffMaster and CRKD Gibson SG guitars – in both PS4 and PS5 modes – is now built directly into the Linux kernel. Device IDs for the CRKD Gibson SG dongle have similarly been added. Which means users can plug in their instruments and enjoy a more seamless gaming experience without relying on workarounds.

Pro Tip: Ensure your guitar is in the correct PS4 or PS5 mode for optimal compatibility. Check your guitar’s documentation for instructions on switching modes.

Beyond Guitars: A Wave of HID Enhancements

The HID improvements in Linux 7.0 extend far beyond just musical instruments. The update also addresses quirks and enhances functionality for a variety of devices, including laptops and peripherals.

Laptop Love: ASUS and Beyond

Fixes have been implemented for Fn lock and WMI fan control handling on numerous ASUS laptop models, including ROG series and the ProArt P16. This addresses common user frustrations with keyboard functionality and thermal management.

Peripheral Power-Ups

The update also brings improvements for:

  • Intel ISH HID sensor hub driver firmware handling
  • ELECOM HUGE Plus M-HT1MRBK support
  • Multi-touch support for the eGalaxTouch EXC3188
  • Side button functionality on the RAPOO 0x2015 mouse
  • Multi-touch quirks for the Lenovo Yoga Book 9i

The Expanding Universe of HID Support: What’s Next?

This surge in HID support highlights a growing trend within the Linux community: a commitment to broader hardware compatibility. As more developers contribute to the kernel, we can expect to spot even more devices supported natively, reducing the need for proprietary drivers and enhancing the overall user experience. The focus on Bluetooth guitars specifically suggests a potential increase in support for other specialized gaming peripherals.

The ongoing development of the HID subsystem also reflects the increasing complexity of modern hardware. Manufacturers are constantly innovating, and the Linux kernel must adapt to accommodate these changes. The recent updates demonstrate the kernel’s ability to keep pace with this evolution.

FAQ

Q: What versions of Rock Band guitars are supported?
A: PDP RiffMaster and CRKD Gibson SG guitars, in both PS4 and PS5 modes, are now supported.

Q: Will this update improve performance in Rock Band 4 on Linux?
A: Native kernel support should provide a more stable and responsive experience compared to relying on patches.

Q: What is the HID subsystem?
A: The Human Interface Device (HID) subsystem handles communication with input devices like keyboards, mice, and game controllers.

Q: Where can I find more details about the changes?
A: You can find detailed information about the merged HID changes here.

Did you know? The Linux kernel is an open-source project maintained by a global community of developers. Contributions from individuals and companies are vital to its continued success.

Want to stay up-to-date on the latest Linux developments? Explore more articles on our site or subscribe to our newsletter for regular updates!

February 14, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Linux 6.19 Released With Better Support For Older AMD GPUs, DRM Color Pipeline API

by Chief Editor February 8, 2026
written by Chief Editor

Linux 6.19: A Leap Forward for AMD GPUs and Kernel Performance

Linus Torvalds has released the Linux 6.19 kernel, marking the first major release of 2026. This update brings significant improvements, particularly for older AMD Radeon GPUs, alongside broader enhancements to file systems and overall system performance.

Reviving Older AMD Hardware with Modern Drivers

A key highlight of Linux 6.19 is the transition of older AMD Radeon GPUs – specifically the “Southern Islands” (GCN 1.0) and “Sea Islands” (GCN 1.1) series – to the modern amdgpu driver. Previously relying on the legacy radeon driver, cards like the HD 7970, R9 280, and R9 290X now gain native RADV Vulkan support. Benchmarks indicate a performance boost of up to 40% under specific workloads, breathing new life into 2012-era GPUs.

Pro Tip: This driver switch could significantly improve gaming performance on older systems using compatibility layers like DXVK and Proton.

Ext4 File System Gets a Speed Boost

Beyond GPU improvements, Linux 6.19 introduces larger block sizes for the ext4 file system. This breaks the traditional 4KB page size limit, potentially improving write operations by up to 50%. This enhancement focuses on storage performance, making file access and manipulation faster.

HDR Colour Pipeline Support and Hardware Compatibility

The new kernel also introduces the DRM Color Pipeline API, paving the way for hardware-accelerated HDR on the Linux desktop. Linux 6.19 offers better hardware compatibility for devices like the Steam Deck and ROG Ally, ensuring a smoother user experience on these platforms.

Addressing Initial Performance Regressions

The development of Linux 6.19 wasn’t without its challenges. Initial builds experienced performance regressions, particularly related to the scheduler. However, these issues were resolved before the final release, ensuring a stable and performant kernel.

Looking Ahead: Linux 7.0 and Ubuntu 26.04 LTS

Development is already underway on the next major kernel release, expected to be Linux 7.0. This version is anticipated to bring even more exciting changes and will power Ubuntu 26.04 LTS this spring. Linus Torvalds has officially confirmed that Linux 7.0 is the next version.

Intel Enhancements in Linux 6.19

The update isn’t solely focused on AMD. Intel platforms also benefit from Linux 6.19, with enablement work for Wildcat Lake and Nova Lake platforms. New features like Intel Linear Address Space Separation (LASS) and Content Adaptive Sharpness Filter (CASF) are also included.

Frequently Asked Questions

What is the amdgpu driver?
The amdgpu driver is the modern driver for AMD GPUs, offering better performance and features compared to the older radeon driver.
What is RADV?
RADV is an open-source Vulkan implementation for AMD GPUs on Linux.
Will Linux 6.19 improve my gaming performance?
If you have an older AMD GPU, the switch to the amdgpu driver could significantly improve gaming performance, especially when using compatibility layers like DXVK and Proton.
What is ext4?
ext4 is a journaling file system commonly used in Linux distributions.

You can download Linux 6.19 from kernel.org if you prefer to build your own kernel.

Want to learn more about kernel development? Explore our other articles on Linux system administration and open-source technologies. Share your experiences with Linux 6.19 in the comments below!

February 8, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Intel Appears To Have Quietly Sunset “On Demand” Software Defined Silicon

by Chief Editor February 8, 2026
written by Chief Editor

Intel Abandons “On Demand” CPU Feature: A Sign of Things to Come?

Intel has quietly sunsetted its “On Demand” software-defined silicon (SDSi) feature, a controversial pay-to-utilize model for unlocking additional capabilities within its Xeon processors. The move, first reported by Phoronix on February 8, 2026, signals a potential shift in how Intel approaches feature licensing and hardware acceleration.

The Rise and Fall of Pay-to-Use Hardware

Launched in 2021, Intel On Demand allowed users to activate extra licensed hardware features on select Xeon SKUs after purchase. This meant paying for access to accelerators already physically present on the chip but disabled by default. The concept drew criticism for its complexity and the perception of nickel-and-diming customers for functionality they might expect to be included upfront.

The service offered two models: one-time license-based activation and a consumption-based metering system. Intel managed the service primarily, working with hardware providers to deliver the functionality. Lenovo, for example, provided an overview of the service on its website.

Why Did Intel On Demand Fail to Gain Traction?

Several factors likely contributed to the demise of Intel On Demand. The initial reaction from the tech community was largely negative, with many questioning the value proposition. The complexity of managing licenses and activations also presented a hurdle for both finish-users and system administrators. The lack of significant updates or marketing around the feature in the past year or two suggested a waning commitment from Intel.

The archiving of the Intel SDSi GitHub project in November further solidified the impression that the project was being abandoned. The removal of dedicated webpages from Intel’s site completed the process.

Implications for the Future of Hardware Acceleration

Intel’s decision to discontinue On Demand raises questions about the future of hardware acceleration licensing. While the pay-to-use model didn’t resonate with the market, the underlying concept of software-defined silicon remains intriguing. The ability to dynamically enable or disable features could offer flexibility and cost optimization for certain workloads.

Though, the industry may need to explore alternative approaches that are more transparent and user-friendly. Potential models could include subscription-based access to features, bundled offerings with specific software licenses, or a more streamlined activation process.

What’s Next for Software Defined Silicon?

Despite the failure of Intel On Demand, the idea of Software Defined Silicon isn’t necessarily dead. The technology allows for greater flexibility in hardware deployment and could be particularly valuable in cloud environments where resources are dynamically allocated. Intel’s move may simply be a course correction, paving the way for a more refined and customer-centric approach in the future.

The focus may shift towards tighter integration of acceleration features into existing software stacks, making them easier to utilize without requiring separate licensing or activation steps. Alternatively, we could see a resurgence of specialized hardware designed for specific workloads, eliminating the need for post-purchase feature unlocking.

FAQ

What was Intel On Demand? Intel On Demand was a service that allowed users to pay to activate additional hardware features on their Xeon processors after purchase.

Why did Intel discontinue On Demand? The service faced criticism for its complexity and cost, and saw limited adoption. Intel has now archived the related GitHub project and removed associated webpages.

What is Software Defined Silicon (SDSi)? SDSi is a technology that enables hardware features to be activated or deactivated through software, offering greater flexibility in hardware deployment.

Will Intel revisit the concept of pay-to-use hardware? It’s possible, but likely in a different form. Intel may explore more user-friendly and transparent licensing models.

Where can I find more information about Intel On Demand? Some older documentation remains available as PDFs on the Intel site, but the primary resources have been removed.

Did you know? Intel first began preparing Linux patches for Software Defined Silicon features back in 2021.

Pro Tip: Keep an eye on developments in hardware acceleration technologies, as they can significantly impact performance for demanding workloads like AI and data analytics.

Stay tuned for further updates on this evolving story. What are your thoughts on Intel’s decision? Share your opinions in the comments below!

February 8, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Linux’s b4 Kernel Development Tool Now Dog-Feeding Its AI Agent Code Review Helper

by Chief Editor February 1, 2026
written by Chief Editor

AI is Now Reviewing Linux Kernel Code: A Glimpse into the Future of Open-Source Development

The world of open-source software, particularly the Linux kernel, is known for its rigorous code review process. Now, that process is getting a significant boost – and a touch of artificial intelligence. Recent developments showcase the integration of AI agents, like Claude Code, directly into the workflow of kernel developers, starting with the popular b4 tool.

The ‘b4 review’ TUI: AI as a Collaborative Partner

For years, Linux kernel developers have relied on b4 to manage their patch submissions. Konstantin Ryabitsev, lead developer of b4 at the Linux Foundation, has been spearheading the creation of a text user interface (TUI) – b4 review tui – specifically designed to leverage AI assistance. This isn’t about replacing human reviewers; it’s about augmenting their capabilities.

The initial tests, as reported by Phoronix, involved the AI reviewing patches to the b4 tool itself – a clever “dog-feeding” approach to ensure the system is tested on code it understands well. Ryabitsev acknowledges that refinements are still needed, but the early results are promising, with the AI already identifying potentially useful insights.

The ‘b4 review tui’ in action, showcasing AI-assisted code review within the terminal.

Beyond ‘b4’: A Broader Trend in AI-Powered Code Review

The b4 review tui isn’t an isolated incident. Chris Mason at Meta is also actively developing AI code review prompt helpers, demonstrating a growing interest in utilizing Large Language Models (LLMs) to improve code quality and accelerate development cycles. This convergence suggests a significant shift in how open-source projects approach code review.

Did you know? Studies show that code review catches an average of 50-70% of bugs before they reach production. AI-assisted review aims to increase this percentage and reduce the time spent on the process.

Why This Matters: The Future of Open-Source Collaboration

The integration of AI into code review isn’t just about efficiency. It’s about scalability. The Linux kernel is a massive project with a vast and active community. Keeping up with the sheer volume of contributions requires significant effort. AI can help filter out trivial issues, allowing human reviewers to focus on more complex and critical problems.

Furthermore, AI can potentially identify subtle bugs or security vulnerabilities that might be missed by human eyes, especially in complex codebases. This is particularly important in projects like the Linux kernel, which forms the foundation of countless systems and applications.

Pro Tip: Experiment with AI-powered code analysis tools in your own projects. Even basic static analysis can catch common errors and improve code quality.

Challenges and Considerations

While the potential benefits are clear, there are also challenges to consider. AI models are not perfect. They can generate false positives, miss subtle errors, or even introduce new bugs. Therefore, human oversight remains crucial. The AI should be viewed as a collaborative partner, not a replacement for skilled developers.

Another concern is the potential for bias in AI models. If the training data is biased, the AI may perpetuate those biases in its code review suggestions. Careful attention must be paid to the training data and the AI’s output to mitigate this risk.

Looking Ahead: Semantic Code Understanding and Automated Patch Generation

The current focus is on using AI to *assist* with code review. However, the long-term potential is far greater. Future developments could include:

  • Semantic Code Understanding: AI that truly understands the *meaning* of code, not just its syntax.
  • Automated Patch Generation: AI that can automatically generate patches to fix identified issues.
  • Personalized Code Review: AI that adapts its review style to the preferences of individual developers.
  • Proactive Bug Detection: AI that can predict potential bugs before they are even introduced.

These advancements could revolutionize the open-source development process, making it faster, more efficient, and more reliable.

FAQ

Q: Will AI replace human code reviewers?
A: No. The goal is to augment human reviewers, not replace them. Human expertise remains crucial for complex issues and ensuring code quality.

Q: What AI models are being used for code review?
A: Currently, Claude Code is being used in the b4 review tui. Other LLMs are also being explored.

Q: Is AI-assisted code review available for all projects?
A: Not yet. It’s currently being integrated into specific tools like b4, but wider adoption is expected in the future.

Q: How can I learn more about AI in software development?
A: Explore resources like OpenAI, Anthropic, and academic papers on LLMs and code analysis.

What are your thoughts on AI-assisted code review? Share your opinions in the comments below! Don’t forget to explore our other articles on open-source development and artificial intelligence for more insights.

February 1, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Linux Kernel AI Chatter, ReactOS Developments & AMD Ryzen 7 9850X3D Topped January

by Chief Editor February 1, 2026
written by Chief Editor

Linux in 2026: AI, ReactOS, and the Evolving Open-Source Landscape

The past month at Phoronix has highlighted a fascinating period for Linux and the broader open-source world. From the integration of AI tools to the steady progress of projects like ReactOS, and continued hardware innovation from AMD and Intel, the ecosystem is rapidly evolving. Let’s dive into the key trends shaping the future of Linux.

The AI Revolution Within the Kernel and Beyond

Linus Torvalds’ recent comments regarding AI-generated code submissions have sparked a crucial debate. The core issue isn’t simply about documentation, but about maintaining code quality and understanding in the face of increasingly complex, AI-assisted contributions. As Torvalds pointed out, focusing solely on documenting “tools” won’t solve the problem if AI continues to generate code regardless. This suggests a need for new approaches to code review and potentially, AI-assisted analysis tools to verify the integrity of submissions.

The use of “vibe coding” by Torvalds himself, as reported, is a compelling example. It demonstrates that AI isn’t just a threat to the development process, but a potential asset. Expect to see more developers experimenting with AI tools for tasks like code generation, bug detection, and documentation, leading to a hybrid development model.

Pro Tip: Explore AI-powered code completion tools like GitHub Copilot or Tabnine to boost your own productivity, but always review the generated code carefully.

ReactOS: The Open-Source Windows Alternative Gains Momentum

ReactOS continues its impressive journey towards Windows NT6 compatibility. The project’s 30th anniversary this year underscores its long-term commitment to providing a free and open-source alternative to Windows. Recent improvements in networking performance and bug fixes demonstrate tangible progress. While still a work in progress, ReactOS is becoming increasingly viable for users seeking an open-source operating system with Windows application compatibility. This is particularly relevant for organizations looking to reduce licensing costs or avoid vendor lock-in.

The success of ReactOS hinges on continued community contributions and addressing the inherent challenges of reverse-engineering a complex operating system like Windows. However, its steady progress suggests a bright future for this ambitious project.

Hardware Advancements: AMD, Intel, and the Linux Benchmarking Race

The launches of the AMD Ryzen 7 9850X3D and Intel Core Ultra Series 3 Panther Lake processors have ignited a new round of benchmarking. Phoronix’s detailed analysis, including comparisons of DDR5 memory speeds with the Ryzen 7 9850X3D, provides valuable insights for Linux users building or upgrading their systems. The data consistently shows that optimized software stacks are crucial for maximizing performance on these new platforms.

The ongoing improvements to the Radeon RADV driver, with ray-tracing performance gains on RDNA2 architecture, are a testament to the power of open-source graphics development. These advancements are particularly important for gamers and content creators who rely on Linux for their workflows.

The State of Distributions: Debian, Fedora, and KDE

The challenges facing Debian’s Data Protection Team highlight the importance of volunteer contributions to open-source projects. Maintaining compliance with regulations like GDPR requires dedicated effort, and the loss of volunteers can create significant risks. This underscores the need for increased support and recognition for open-source maintainers.

Fedora’s decision to switch to the Plasma Login Manager and the ongoing development of KDE Plasma 6.6 demonstrate a commitment to innovation and user experience. These changes aim to improve stability, performance, and usability for desktop users.

Security and Stability: Long-Term Concerns

The discovery of a security vulnerability in the GNU C Library (glibc) dating back to 1996 serves as a stark reminder of the importance of ongoing security maintenance. Even well-established codebases can harbor hidden vulnerabilities, highlighting the need for continuous auditing and patching. The quick response from the glibc developers demonstrates the effectiveness of the open-source security model.

Addressing inaccuracies in the Out-Of-Memory (OOM) killer on systems with high core counts is another critical area of focus. Improving the OOM killer’s ability to identify and terminate resource-intensive processes will enhance system stability and prevent crashes.

Gaming on Linux: Steam, Proton, and the Future

Steam’s continued growth on Linux, reaching nearly 3.2% market share, is a positive sign for the platform. The success of the Steam Deck and the ongoing improvements to Proton are driving increased adoption. The upcoming Steam Frame and Steam Machine hardware could further accelerate this trend, potentially making Linux a more mainstream gaming platform.

Did you know?

Proton compatibility layer allows many Windows-based games to run seamlessly on Linux, expanding the gaming library available to Linux users.

FAQ

  • Is Linux a secure operating system? Yes, Linux is generally considered very secure due to its open-source nature, active community, and robust security features.
  • What is ReactOS? ReactOS is a free and open-source operating system aiming to be binary-compatible with Windows.
  • What is the role of the OOM killer? The OOM killer is a process in the Linux kernel that terminates processes to free up memory when the system is running low.
  • How can I contribute to open-source projects? You can contribute by submitting bug reports, writing code, creating documentation, or providing financial support.

The Linux landscape is dynamic and complex. The trends highlighted here – the integration of AI, the progress of open-source alternatives, and the ongoing hardware and software innovations – point towards a future where Linux continues to play a central role in the technology world.

February 1, 2026 0 comments
0 FacebookTwitterPinterestEmail
Newer Posts
Older Posts

Recent Posts

  • Fluminense vs Atlético-MG: Brasileirão 2026 – Preview, Lineups & How to Watch

    March 21, 2026
  • Rare Nasal Leak Saved Patient From Deadly Meningitis | Fano Hospital Success

    March 21, 2026
  • Hubble Captures Comet Disintegration Near the Sun | TEK Notícias

    March 21, 2026
  • Iowa vs Florida Basketball: Time, TV Channel for March Madness Game

    March 21, 2026
  • Canada & France’s Nuclear Umbrella: Should Canada Join the Queue?

    March 21, 2026

Popular Posts

  • 1

    Maya Jama flaunts her taut midriff in a white crop top and denim jeans during holiday as she shares New York pub crawl story

    April 5, 2025
  • 2

    Saar-Unternehmen hoffen auf tiefgreifende Reformen

    March 26, 2025
  • 3

    Marta Daddato: vita e racconti tra YouTube e podcast

    April 7, 2025
  • 4

    Unlocking Success: Why the FPÖ Could Outperform Projections and Transform Austria’s Political Landscape

    April 26, 2025
  • 5

    Mecimapro Apologizes for DAY6 Concert Chaos: Understanding the Controversy

    May 6, 2025

Follow Me

Follow Me
  • Cookie Policy
  • CORRECTIONS POLICY
  • PRIVACY POLICY
  • TERMS OF SERVICE

Hosted by Byohosting – Most Recommended Web Hosting – for complains, abuse, advertising contact: o f f i c e @byohosting.com


Back To Top
Newsy Today
  • Business
  • Entertainment
  • Health
  • News
  • Sport
  • Tech
  • World