Feed aggregator
Fedora Linux Is Coming To Windows Subsystem For Linux (WSL)
The Fedora Project is exploring the possibility of creating official Fedora Linux images for the Windows Subsystem for Linux (WSL).
The post Fedora Linux Is Coming To Windows Subsystem For Linux (WSL) appeared first on Linux Today.
German State Schleswig-Holstein Migrates 30,000 PCs To LibreOffice
The Schleswig-Holstein state government in northern Germany is migrating 30,000 PCs from Microsoft Windows and Office to Linux and LibreOffice, prioritising digital sovereignty and reducing reliance on proprietary software.
The post German State Schleswig-Holstein Migrates 30,000 PCs To LibreOffice appeared first on Linux Today.
How to Uninstall MySQL from Ubuntu 24.04 (for Beginners)
Learn how to completely remove MySQL from Ubuntu, Debian, Linux Mint, and other Linux distros via the recommended methods.
The post How to Uninstall MySQL from Ubuntu 24.04 (for Beginners) appeared first on Linux Today.
This Is the Default Theme of Debian GNU/Linux 13 “Trixie”
For Debian GNU/Linux 13 “Trixie,” coming in the summer of 2025, the Debian Project held its usual artwork contest from September 2024 to mid-November 2024. The winner was announced today as “Ceratopsian” created by Elise Couper.
The post This Is the Default Theme of Debian GNU/Linux 13 “Trixie” appeared first on Linux Today.
December Steam Client Update Enhances Game Recording
December Steam Client Update: Fixes rare crashes, enhances game recording settings, resolves audio desync, and improves Remote Play for Mac and Linux.
The post December Steam Client Update Enhances Game Recording appeared first on Linux Today.
Initial Upstream Support for the Rockchip RK3576
Initial support for Rockchip’s RK3576 has landed in Linux kernel 6.12, a new System-on-a-Chip (SoC) introduced earlier this year. With the main target being industrial applications, it is less of a powerhouse than the RK3588, but it still reuses many components.
The post Initial Upstream Support for the Rockchip RK3576 appeared first on Linux Today.
wttr.in – curl the Weather
wttr.in is a console-based weather forecast service that offers lots of options including various information representation methods. These include terminal-oriented ANSI-sequences for console HTTP clients, HTML for web browsers, or PNG for graphical viewers.
The post wttr.in – curl the Weather appeared first on Linux Today.
Fedora moves towards Forgejo (Fedora Magazine)
Fedora Project Leader Matthew Miller reports that the project's search to replace Pagure as its git forge is almost complete, with the Fedora Council strongly in favor of Forgejo:
The Council, currently, has a clear preference for Forgejo. This is a big decision and we don't want it to feel rushed. Therefore, we're opening this up one last time to everyone's comments. After two weeks, we'll take our formal vote — and then get on with the work!LWN looked at Forgejo in February.
Walleij: New ARM32 Security Features in v6.10
PAN is an abbreviation for the somewhat grammatically incorrect Privileged Access Never. [...]
For modern ARM32 systems with large memories configured to use LPAE nothing like PAN was available: this version of the MMU simply did not implement a PAN option.
As of the patch originally developed by Catalin Marinas, we deploy a scheme that will use the fact that LPAE has two separate translation table base registers (TTBR:s): one for userspace (TTBR0) and one for kernelspace (TTBR1).
[$] The return of RWF_UNCACHED
Hurl 6.0.0 released
Version 6.0.0 of the Hurl command-line tool has been released. Hurl is curl-powered utility that runs HTTP requests and tests defined in a plain-text Hurl file. Notable features in this release include the ability to generate dynamic values with functions, shorter syntax, and an option to export Hurl files to a list of curl commands. See the release notes for a full list of changes and downloads.
next-20241204: linux-next
Security updates for Wednesday
The December 2024 Issue of the PCLinuxOS Magazine
The PCLinuxOS Magazine staff is pleased to announce the release of the December 2024 issue. With the exception of a brief period in 2009, The PCLinuxOS Magazine has been published on a monthly basis since September, 2006. The PCLinuxOS Magazine is a product of the PCLinuxOS community, published by volunteers from the community. The magazine is led by Paul Arnote, Chief Editor, and Assistant Editor Meemaw. The PCLinuxOS Magazine is released under the Creative Commons Attribution-NonCommercial-Share-Alike 3.0 Unported license, and some rights are reserved. All articles may be freely reproduced via any and all means following first publication by The PCLinuxOS Magazine, provided that attribution to both The PCLinuxOS Magazine and the original author are maintained, and a link is provided to the originally published article.
In the December 2024 issue:
* 2024 Holiday Gift Guides
* ICYMI: New Spear-Phishing Attacks From Russian Hackers
* How To Install The Typst Compiler Locally On PCLinuxOS
* Inkscape Tutorial: Inkscape 1.4 Released!
* Tip Top Tips: Accented Characters In Plasma/Qt
* PCLinuxOS Recipe Corner: Instant Pot Beef Stroganoff
* And much more inside!
This month’s cover was created by parnote.
Download the PDF (5.6 MB)
https://pclosmag.com/download.php?f=2024-12.pdf
Download the EPUB Version (6.3 MB)
https://pclosmag.com/download.php?f=202412epub.epub
Download the MOBI Version (6.7 MB)
https://pclosmag.com/download.php?f=202412mobi.mobi
https://pclosmag.com/html/enter2024.html
The post The December 2024 Issue of the PCLinuxOS Magazine appeared first on Linux Today.
GStreamer 1.24.10 Released with Over 40 Security Fixes
GStreamer 1.24.10 multimedia framework released with bug fixes, 40+ security improvements, and enhanced stability.
The post GStreamer 1.24.10 Released with Over 40 Security Fixes appeared first on Linux Today.
next-20241203: linux-next
RustDesk 1.3.3 Introduces Mobile Clipboard Support
RustDesk 1.3.3 open-source remote desktop adds mobile clipboard, Mac arm sound, “untagged” address filtering, and GPU improvements.
The post RustDesk 1.3.3 Introduces Mobile Clipboard Support appeared first on Linux Today.
Vulkan 1.4 Expands Cross-Platform GPU Capabilities
Khronos Group unveils Vulkan 1.4, bringing 8K rendering, dynamic features, and streamlined cross-platform development.
The post Vulkan 1.4 Expands Cross-Platform GPU Capabilities appeared first on Linux Today.
How To Find Flatpak Applications Using A Specific Runtime In Linux
A Runtime provides the necessary libraries and environment for Flatpak applications to run. This tutorial explains which flatpak applications use a specific runtime in Linux.
The post How To Find Flatpak Applications Using A Specific Runtime In Linux appeared first on Linux Today.
[$] Rust's incremental compiler architecture
The traditional structure of a compiler forms a pipeline — parsing, type-checking, optimization, and code-generation, usually in that order. But modern programming languages have requirements that are ill-suited to such a design. Increasingly, compilers are moving toward other designs in order to support incremental compilation and low-latency responses for uses like integration into IDEs. Rust has, for the last eight years, been pursuing a particularly unusual design; in that time compile times have substantially improved, but there's still more work to be done.