How to Install PlayOnLinux on Fedora 40 or 39 Linux

PlayOnLinux is a versatile and powerful graphical front-end for Wine, designed to simplify the installation and management of Windows applications and games on Linux. It supports a wide range of software, offering automated scripts to streamline the setup process. PlayOnLinux provides features such as easy installation of multiple Wine versions, automatic configuration adjustments, and an extensive library of scripts to install popular applications and games. This makes it an invaluable tool for users who want to run Windows software seamlessly on their Linux systems.

To install PlayOnLinux on Fedora 40 or 39, you have two primary methods: using the Fedora AppStream for a straightforward installation or opting for Flatpak with Flathub for a more flexible and up-to-date setup. This guide will walk you through both installation methods.

Method 1: Install PlayOnLinux via DNF

Update Fedora Before PlayOnLinux Installation

Prioritize updating your Fedora system to ensure compatibility and security before installing new software. This step helps mitigate issues by providing the latest patches and improvements.

sudo dnf upgrade --refresh

The above command refreshes the repository metadata and updates all packages to their latest versions.

Install PlayOnLinx via DNF Command

After updating your system, proceed with the installation of PlayOnLinux. This software allows you to use numerous Windows applications on Linux easily.

To do this, enter the following command.

sudo dnf install playonlinux

Inputting this command into the terminal will download and install PlayOnLinux from the Fedora repository. The DNF package manager simplifies the process by automatically resolving dependencies.

Method 2: Install PlayOnLinux via Flatpak with Flathub

Another option for installing PlayOnLinux on your Fedora system is to use the Flatpak package manager. Flatpak is a popular Linux application packaging and distribution system that allows for the easy installation and management of applications across multiple Linux distributions.

Ensure Flatpak is Installed on

Ensure that Flatpak, a universal package system for Linux, is installed on your Fedora system. If it’s missing, you can install it with the following command:

sudo dnf install flatpak

This installs Flatpak, enabling you to manage applications consistently across various Linux distributions.

Enable Flathub for PlayOnLinux Installation

Flathub is a comprehensive repository for Flatpak applications. To access PlayOnLinux and other applications, add Flathub to your system:

flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

This command configures Flathub as a remote source for your Flatpak installations, expanding your access to a broader range of applications.

Install PlayOnLinux via Flatpak Command

With Flathub now enabled on your system, you can proceed to install PlayOnLinux by entering the following command in your terminal:

flatpak install flathub org.phoenicis.playonlinux

This will initiate the download and installation process, which will be completed when PlayOnLinux is ready to use on your Fedora system.

Troubleshooting PlayOnLinux Flatpak Installation

If you face issues during the installation and see an error indicating that the Flathub repository is disabled, enable it with this command:

sudo flatpak remote-modify --enable flathub

Enabling the repository rectifies the error and allows the installation of PlayOnLinux through Flatpak.

Launch PlayOnLinux UI

Once you have successfully installed PlayOnLinux on your Fedora system using one of the methods described, you can launch the application directly from your terminal.

CLI Commands to Launch PlayOnLinux

To do this, open a terminal window and enter the following command:

playonlinux

If you have installed PlayOnLinux using the Flatpak package manager, you can launch the application by entering the following command in your terminal:

flatpak run org.phoenicis.playonlinux

GUI Method to Launch PlayOnLinux

Many desktop users prefer to launch applications using the application icon, which can be easily accessed through the following path:

Activities > Show Applications > PlayOnLinux

Additional PlayOnLinux Commands

Remove PlayOnLinux

If you’ve installed PlayOnLinux via DNF, removal is a single command away:

sudo dnf remove playonlinux

This command will purge PlayOnLinux and its associated data from your Fedora system.

For those who opted for the Flatpak installation, the removal process is just as streamlined:

flatpak remove  --delete-data org.phoenicis.playonlinux

This command uninstalls PlayOnLinux and deletes all associated data, including any virtual drives created within the application. It’s an essential step to maintain a clean system environment after software packages are removed.

Conclusion

With PlayOnLinux successfully installed on your Fedora system, you can easily run and manage a variety of Windows applications and games. Regularly check for updates to benefit from the latest features and improvements. Whether you are installing new software or managing existing installations, PlayOnLinux provides a user-friendly and powerful environment for integrating Windows applications into your Linux setup. Enjoy the flexibility and convenience that PlayOnLinux offers, making it easier than ever to use Windows software on Fedora.

Leave a Comment