Feed aggregator

PeerTube 7.3 Brings Multilingual Emails, Custom Branding Options

Linux Today - Fri, 09/26/2025 - 05:42

PeerTube 7.3, an open-source, decentralized video platform, adds multilingual emails, new admin tools, easier branding, and live stream scheduling.

The post PeerTube 7.3 Brings Multilingual Emails, Custom Branding Options appeared first on Linux Today.

Garuda Linux Releases New ISO with Mesa Fixes

Linux Today - Fri, 09/26/2025 - 05:40

Arch-based Garuda Linux September ISO refresh brings Mesa 25.2.2, bug fixes, and better hardware support.

The post Garuda Linux Releases New ISO with Mesa Fixes appeared first on Linux Today.

Garak: Open-source LLM Vulnerability Scanner

Linux Today - Fri, 09/26/2025 - 05:39

LLMs can make mistakes, leak data, or be tricked into doing things they were not meant to do. Garak is a free, open-source tool designed to test these weaknesses. It checks for problems like hallucinations, prompt injections, jailbreaks, and toxic outputs. By running different tests, it helps developers understand where a model might fail and how to make it safer.

The post Garak: Open-source LLM Vulnerability Scanner appeared first on Linux Today.

A Step-by-Step Guide To Migrate To Rootless Docker In Debian And Ubuntu Linux

Linux Today - Fri, 09/26/2025 - 05:34

Learn how to migrate Rootful Docker setup to Rootless Docker in Debian and Ubuntu Linux step-by-step. Make your containers more secure!

The post A Step-by-Step Guide To Migrate To Rootless Docker In Debian And Ubuntu Linux appeared first on Linux Today.

5 Best Linux Distros for Gaming and Playing Windows Games

Linux Today - Fri, 09/26/2025 - 05:33

Want to play Windows games on your Linux system but not sure where to begin? Heard that some Linux distros are better optimized for gaming but don’t know which ones to pick? Don’t worry, here’s a guide to the five best Linux distros that make running Windows games smooth and hassle-free.

The good news is that gaming on Linux has improved dramatically in recent years. Besides the many native Linux titles already available, you can also play a huge selection of Windows-only games using compatibility tools like Proton (built into Steam) and Wine. In fact, nearly 80% of the most popular Windows games now run on Linux with little to no extra effort.

Now, technically, you can install almost any Linux distro and get gaming to work with a few tweaks. But let’s be honest, if you’re just starting out or you simply want something that “just works”, you don’t want to spend hours configuring drivers, gaming tools, and compatibility settings. That’s where specialized Linux gaming distros come in!

The post 5 Best Linux Distros for Gaming and Playing Windows Games appeared first on Linux Today.

Steam Client Adds Advanced Options to the In-Game Performance Overlay for AMD & NVIDIA GPUs

Linux Today - Fri, 09/26/2025 - 05:31

The big news for Linux gamers is the implementation of advanced options for the in-game performance overlay for AMD and NVIDIA GPUs, improved Steam UI scaling in XWayland, improved system display scale in the in-game overlay, and improved Big Picture update progress UI.

The post Steam Client Adds Advanced Options to the In-Game Performance Overlay for AMD & NVIDIA GPUs appeared first on Linux Today.

Debian Trixie: The 2025 Flavor Release

Linux Today - Fri, 09/26/2025 - 05:28

The Debian Trixie release is jam-packed with new features thanks to the efforts of many. See where Collabora contributed to upgraded GNOME components, newer PipeWire versions, and more!

The post Debian Trixie: The 2025 Flavor Release appeared first on Linux Today.

We Asked LibreOffice and Collabora: Why Aren’t They in Schools Instead of Word and Google Docs?

Linux Today - Fri, 09/26/2025 - 05:25
FOSS Force’s Marco Fioretti asks LibreOffice’s Italo Vignoli and Collabora’s Naomi Obbard about why their software isn’t used in more schools, and what can be done to turn that around.

The post We Asked LibreOffice and Collabora: Why Aren’t They in Schools Instead of Word and Google Docs? appeared first on Linux Today.

4 Useful Free and Open Source systemd GUI Configuration Tools

Linux Today - Fri, 09/26/2025 - 05:23

This article picks some useful GUI tools that make configuring systemd much easier.

The post 4 Useful Free and Open Source systemd GUI Configuration Tools appeared first on Linux Today.

KDE Plasma 6.4.5 Desktop Environment Released

Linux Today - Fri, 09/26/2025 - 05:20

KDE Plasma 6.4.5 lands with bugfixes for KWin, Discover, Plasma Desktop, and more, improving Wayland handling, notifications, and system stability.

The post KDE Plasma 6.4.5 Desktop Environment Released appeared first on Linux Today.

Pop!_OS 24.04-beta

Updated Linux Distributions - Fri, 09/26/2025 - 04:02
Pop!_OS is an Ubuntu-based Linux distribution featuring a custom GNOME desktop. Pop!_OS is designed to have a minimal amount of clutter on the desktop without distractions in order to allow the user to focus on work. The distribution is developed by Linux computer retailer System76.

Macaroni 25.09

Updated Linux Distributions - Fri, 09/26/2025 - 03:24
Macaroni OS, a Linux distribution born as an incubation project under the source-based Funtoo Linux umbrella, develops a range of binary Linux operating systems for desktops, servers and containers.

Bluestar 6.16.8

Updated Linux Distributions - Thu, 09/25/2025 - 21:55
Bluestar Linux is a GNU/Linux distribution that is based on Arch Linux. The Bluestar distribution features up to date packages, a full range of desktop and multimedia software in the default installation and a live desktop DVD.

Cuni: Tracing JITs in the real world @ CPython Core Dev Sprint

Linux Weekly News - Thu, 09/25/2025 - 16:13
Longtime PyPy developer Antonio Cuni has a lengthy blog post that describes his talk at the recently completed 2025 CPython Core Dev Sprint, held at Arm in Cambridge, UK. The talk, entitled "Tracing JIT and real world Python — aka: what we can learn from PyPy" was meant to try to pass on some of his experiences "optimizing existing code for PyPy at a high-frequency trading firm" to the developers working on the CPython JIT compiler. His goal was to raise awareness of some of the problems he encountered: Until now CPython's performance has been particularly predictable, there are well established "performance tricks" to make code faster, and generally speaking you can mostly reason about the speed of a given piece of code "locally".

Adding a JIT completely changes how we reason about performance of a given program, for two reasons:

  1. JITted code can be very fast if your code conforms to the heuristics applied by the JIT compiler, but unexpectedly slow(-ish) otherwise;
  2. the speed of a given piece of code might depend heavily on what happens elsewhere in the program, making it much harder to reason about performance locally.

The end result is that modifying a line of code can significantly impact seemingly unrelated code. This effect becomes more pronounced as the JIT becomes more sophisticated.

Cuni also gave a talk on Python performance, which LWN covered, at EuroPython 2025 in July.

[$] The phaseout of the mmap() file operation

Linux Weekly News - Thu, 09/25/2025 - 13:48
The file_operations structure in the kernel is a set of function pointers implementing, as the name would suggest, operations on files. A subsystem that manages objects which can be represented by a file descriptor will provide a file_operations structure providing implementations of the various operations that a user of the file descriptor may want to carry out. The mmap() method, in particular, is invoked when user space calls the mmap() system call to map the object behind a file descriptor into its address space. That method, though, is currently on its way out in a multi-release process that started in 6.17.

Fedora considers an AI-tool policy

Linux Weekly News - Thu, 09/25/2025 - 13:43
The Fedora project has posted a proposal for a policy regarding the use of AI tools when developing for the distribution.

You are responsible for your contributions. AI-generated content must be treated as a suggestion, not as final code or text. It is your responsibility to review, test, and understand everything you submit. Submitting unverified or low-quality machine-generated content (sometimes called "AI slop") creates an unfair review burden on the community and is not an acceptable contribution.

TalOS 1.11.2

Updated Linux Distributions - Thu, 09/25/2025 - 13:38
Talos is a specialist Linux-based operating system for running Kubernetes, an open-source system for automating deployment, scaling and management of containerised applications. Minimal, immutable and hardened, it does not offer any shell or interactive console; instead, all system management is done via remote Application Programming Interface (API) calls, where messages sent from a client application are protected with mutual Transport Layer Security TLS (mTLS) authentication. Talos also delivers atomic updates, thus maintaining the Linux and Kubernetes versions up-to-date. Talos is developed in the USA by Sidero Labs, Inc.

next-20250925: linux-next

Latest Linux Kernel - Thu, 09/25/2025 - 12:28
Version:next-20250925 (linux-next) Released:2025-09-25

Four stable kernels released

Linux Weekly News - Thu, 09/25/2025 - 11:58
The 6.16.9, 6.12.49, 6.6.108, and 6.1.154 stable kernels have been released. As usual, they all contain important fixes throughout the kernel tree.

Security updates for Thursday

Linux Weekly News - Thu, 09/25/2025 - 11:39
Security updates have been issued by AlmaLinux (grub2 and kernel), Debian (chromium and libxslt), Fedora (chromium, expat, libssh, and webkitgtk), Oracle (avahi, firefox, ImageMagick, kernel, libtpms, and mysql), Red Hat (kernel), SUSE (bird3, expat, kernel, and tiff), and Ubuntu (dpkg, gnuplot, linux, linux-aws, linux-aws-5.15, linux-gcp, linux-gcp-5.15, linux-gke, linux-gkeop, linux-hwe-5.15, linux-ibm, linux-ibm-5.15, linux-intel-iotg, linux-intel-iotg-5.15, linux-lowlatency, linux-lowlatency-hwe-5.15, linux-nvidia, linux-nvidia-tegra, linux-nvidia-tegra-5.15, linux-oracle, linux-raspi, linux-riscv-5.15, linux-xilinx-zynqmp, linux, linux-aws, linux-gcp, linux-gcp-6.14, linux-oracle, linux-realtime, linux-riscv, linux-riscv-6.14, linux-aws-fips, linux-fips, linux-gcp-fips, linux-azure, linux-azure-fips, linux-ibm, linux-ibm-6.8, linux-intel-iot-realtime, linux-realtime, linux-oem-6.14, linux-oracle-5.15, linux-realtime-6.14, and python-eventlet).

Pages

Subscribe to Just Linux aggregator