search
HomeSystem TutorialLINUXFedora Linux 41 Is Officially Released With Linux Kernel 6.11, DNF 5 And More

Fedora Linux 41 is officially released, bringing a lot of updates and improvements, including Linux kernel 6.11, workstation version GNOME 47, Fedora KDE version KDE version KDE Plasma 6.2, and DNF 5. This article will highlight key changes and new features in Fedora Linux 41.

Fedora Linux 41 Is Officially Released With Linux Kernel 6.11, DNF 5 And More

Fedora 41 Main Features

The following are some improvements worth paying attention to:

  • DNF 5: The DNF command line package management tool has received a major update. DNF 5 is faster and smaller and requires fewer support packages, making it suitable for environments from containers to desktops.

  • Desktop Update: Fedora Workstation 41 is based on GNOME 47, bringing a small amount of screen support with enhanced color customization, and new dialog windows. Ptyxis replaces GNOME Terminal as the default terminal application, providing functions such as terminal inspector, native light/dark mode support, and customizable keyboard shortcuts.

  • KDE Plasma 6.2: Fedora KDE Plasma desktop version is equipped with the latest KDE Plasma 6.2 version, and a new version containing KDE Plasma Mobile is added.

  • Fedora Miracle: New desktop environment Miracle is based on Mir and Wayland and offers tile window management, smooth animation and eye-catching graphics.

  • Mirror mode improvements: Mirror-based Fedora variants such as Atomic Desktops, CoreOS, and Fedora IoT now include "bootc", which is the successor to rpm-ostree. This tool provides greater flexibility, allowing users to define their Fedora experience using container patterns. The conversion from rpm-ostree to bootc is easy to implement, with just a simple command such as sudo bootc switch quay.io/fedora/fedora-iot:41 (for Fedora IoT). Future plans include DNF 5 integration for managing software packages installed locally in mirrored mode systems. The addition of bootupd simplifies updates to bootloaders, including updates to secure boot databases.

  • Security boot for Nvidia users: Fedora 41 restores secure boot support for systems requiring proprietary Nvidia drivers. This change makes it easier for users to use their hardware, as the GNOME software now creates a machine owner key when the driver is installed, allowing manual activation.

  • MIPI and Pipewire camera support: Integrate support for Intel IPU6 additional MIPI cameras (common in new laptops), solving the previous problem of getting these cameras to work properly. Firefox also comes with default PipeWire support for videos, providing a clearer indicator for camera activation in the GNOME status bar.

  • Traditional Chinese input method: ibus-chewing has become the default input method for traditional Chinese (Taiwan) users, which enhances user friendliness and provides functions such as multi-dictionary support.

System-level changes for Fedora 41

In addition to user-oriented features, some system-wide changes have been implemented:

  • Programming Languages ​​and Development Tools: Python 2.7 has been deprecated; the default package manager has been changed from dnf to dnf5; the Python stack has been updated from Python 3.12 to Python 3.13; Perl has been updated to version 5.40; Golang has been updated to version 1.23; Node.js 22.x has become the default interpreter; RPM has been updated to version 4.20; the GNU toolchain has been updated to include gcc 14.1, binutils 2.42, glibc 2.40, and gdb 14.

  • Security and System Management: Support for ifcfg format in NetworkManager has been removed; OpenSSL no longer trusts SHA-1 signatures by default; Tuned becomes the default power profile management daemon in Fedora Workstation, KDE Plasma, and Budgie; Redis is replaced by Valkey due to license changes; the system is upgraded to createrepo_c 1.0 and the repository metadata settings have been changed.

  • Other notable changes: PyTorch 2.4, ROCm 6.2, LXQt 2.0, self-encrypted drive support, Taskwarrior 3, GIMP 3, etc.

Download, upgrade and install Fedora Linux 41

You can download the version that suits your needs from the official Fedora website for a fresh installation or upgrade. Detailed upgrade and installation guides can also be found on the official website.

This article rewritten the original text, striving to make the language smoother and more natural without changing the original meaning, and simplifying and adjusting some of the content. The image link remains the same.

The above is the detailed content of Fedora Linux 41 Is Officially Released With Linux Kernel 6.11, DNF 5 And More. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Explain the role of system calls in Linux and Windows.Explain the role of system calls in Linux and Windows.May 16, 2025 am 12:12 AM

System calls are implemented in Linux and Windows through different mechanisms: 1) In Linux, system calls are implemented through interrupt mechanisms, involving context switching; 2) In Windows, the "fast system calls" mechanism is used to reduce the context switching overhead.

How to Use 'next' Command with Awk in Linux - Part 6How to Use 'next' Command with Awk in Linux - Part 6May 15, 2025 am 10:43 AM

In this sixth installment of our Awk series, we will explore the next command, which is instrumental in enhancing the efficiency of your script executions by skipping redundant processing steps.What is the next Command?The next command in awk instruc

How to Efficiently Transfer Files in LinuxHow to Efficiently Transfer Files in LinuxMay 15, 2025 am 10:42 AM

Transferring files in Linux systems is a common task that every system administrator should master, especially when it comes to network transmission between local or remote systems. Linux provides two commonly used tools to accomplish this task: SCP (Secure Replication) and Rsync. Both provide a safe and convenient way to transfer files between local or remote machines. This article will explain in detail how to use SCP and Rsync commands to transfer files, including local and remote file transfers. Understand the scp (Secure Copy Protocol) in Linux scp command is a command line program used to securely copy files and directories between two hosts via SSH (Secure Shell), which means that when files are transferred over the Internet, the number of

10 Most Popular Linux Desktop Environments of All Time10 Most Popular Linux Desktop Environments of All TimeMay 15, 2025 am 10:35 AM

One fascinating feature of Linux, in contrast to Windows and Mac OS X, is its support for a variety of desktop environments. This allows desktop users to select the most suitable and fitting desktop environment based on their computing requirements.A

How to Install LibreOffice 24.8 in Linux DesktopHow to Install LibreOffice 24.8 in Linux DesktopMay 15, 2025 am 10:15 AM

LibreOffice stands out as a robust and open-source office suite, tailored for Linux, Windows, and Mac platforms. It boasts an array of advanced features for handling word documents, spreadsheets, presentations, drawings, calculations, and mathematica

How to Work with PDF Files Using ONLYOFFICE Docs in LinuxHow to Work with PDF Files Using ONLYOFFICE Docs in LinuxMay 15, 2025 am 09:58 AM

Linux users who manage PDF files have a wide array of programs at their disposal. Specifically, there are numerous specialized PDF tools designed for various functions.For instance, you might opt to install a PDF viewer for reading files or a PDF edi

How to Filter Command Output Using Awk and STDINHow to Filter Command Output Using Awk and STDINMay 15, 2025 am 09:53 AM

In the earlier segments of the Awk command series, our focus was primarily on reading input from files. However, what if you need to read input from STDIN?In Part 7 of the Awk series, we will explore several examples where you can use the output of o

Clifm - Lightning-Fast Terminal File Manager for LinuxClifm - Lightning-Fast Terminal File Manager for LinuxMay 15, 2025 am 09:45 AM

Clifm stands out as a distinctive and incredibly swift command-line file manager, designed on the foundation of a shell-like interface. This means that users can engage with their file system using commands they are already familiar with.The choice o

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Clair Obscur: Expedition 33 - How To Get Perfect Chroma Catalysts
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools