Latest Linux and open source news from around the web

Raspberry Pi Camera Module 3 Sponsored · View on Amazon → UNIX and Linux System Administration Handbook Sponsored · View on Amazon →
LPI

Training Galicia for the Future with LPI: the CNTG Success

The Centro de Nuevas Tecnologías de Galicia (Center for New Technologies of Galicia or CNTG), a public institution under the Department of Employment of the Galician government, has become a key reference point for advanced technology training in the region. ... Read more The post Training Galicia for the Future with LPI: the CNTG Success appeared first on Linux Professional Institute (LPI).

OMG! Ubuntu

Wine 11.0 Release Brings Ntsync Support, Complete WoW64 + More

Wine 11.0, the latest stable release of the open-source compatibility layer that allows Windows games and apps to run on Linux and macOS, has been released. The annual release rounds off another year of development effort, with two standout features: ntsync kernel module support for improved performance, and a fully mature WoW64 mode that now handles 16-bit applications (among other changes). All of these changes were available to sample in the bi-weekly Wine development releases. If you kept pace with those builds throughout last year, the majority of what’s new in Wine 11.0 won’t surprise you. For everyone else, let’s […]

LWN.net

Firefox 147 released

Version 147.0 of the Firefox web browser has been released. Notable changes in this release include support for the XDG Base Directory specification, enabling local network access restrictions for users with enhanced tracking protection (ETP) set to "Strict", and a fix that improves Firefox's rendering with GNOME on fractionally scaled displays. Firefox 147 also includes a number of security fixes, including several sandbox escape vulnerabilities.

Phoronix

JPEG-XL Image Support Returns To Latest Chrome / Chromium Code

To the frustration of many developers and end-users, back in 2022 Google deprecated JPEG-XL support in Chrome/Chromium and proceeded to remove the support. That decision was widely slammed and ultimately Google said they may end up reconsidering it. In November there was renewed activity and interest in restoring JPEG-XL within Google's image web browser and as of yesterday the code was merged...

Phoronix

ReactOS Receives Fix For A Very Annoying Usability Issue

ReactOS began 2026 with another "major step" towards Windows NT 6 compatibility with updating its MSVCRT implementation from Wine for the Microsoft C Runtime DLL library. That improved support for a number of Windows applications running on this open-source OS. ReactOS is taking another step-forward now with addressing a very annoying usability issue where up until now you may need to refresh the file manager for seeing folder changes...

LWN.net

Security updates for Tuesday

Security updates have been issued by AlmaLinux (mariadb10.11, mariadb:10.11, mariadb:10.3, mariadb:10.5, and tar), Debian (net-snmp), Fedora (coturn, NetworkManager-l2tp, openssh, and tuxanci), Mageia (libtasn1), Oracle (buildah, cups, httpd, kernel, libpq, libsoup, libsoup3, mariadb:10.11, mariadb:10.3, openssl, and podman), SUSE (cpp-httplib, ImageMagick, libtasn1, python-cbor2, util-linux, valkey, and wget2), and Ubuntu (google-guest-agent, linux-iot, and python-urllib3).

Linux.org

Python Series Part 22: Tkinter Entry Widgets - Part 2

We can now continue with the Entry Object for Python. Hopefully, you have gone over Part 1 before continuing on here. Font Since we can change the colors, why not the font as well? You need to make sure that any font you use exists on the system where the Python code is being executed. On my system, I am running Ubuntu, so I have a font named ‘ubuntu’. In the example, the label will have the text ‘Example Entry’ with the font being ‘ubuntu’: Code: e1 = Entry(font='ubuntu')... https://www.linux.org/threads/python-series-part-22-tkinter-entry-widgets-part-2.58547/