| by Arround The Web | No comments

How to Install Lutris on Linux

“If you are a gamer, you will appreciate Lutris, a game manager for Linux systems. The good thing with Lutris is that it avails multiple games in its catalog, and you can easily install any game and update them whenever. The installation is simple, and you don’t need to be a techie to work around it.

The Linux package manager does not support Lutris. Therefore, you need to install Wine to accommodate it first, and this guide will offer you a hands-on tutorial on installing Wine and Lutris to set your gaming path straight.”

Installing Wine on Ubuntu 20.04

Wine is an open-source tool that enables installing Windows applications on a Linux system. Since Lutris is a Windows application, we must use Wine to install it. To install Wine and its dependencies, use the commands below.

First, check the architecture of your system. You can use the command below for that.

1
$ uname -m

If running an x64 bit system, you need to enable 32-bit architecture before installing Wine, using the command below. If your system is 32-bit, skip this step.

1
$ sudo dpkg - -add-architecture i386

Next, run the command below to download the Wine repository key into your Ubuntu system.

1
$ wget -nc https://dl.winehq.org/wine-builds/winehq.key

Once the repository key gets downloaded, you need to add it to your system. For that, use the command below.

1
$ sudo apt-key add winehq.key

The last step to installing Wine is to add the Wine repository using the command below.

1
$ sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/focal main'

With Wine downloaded and installed, you need to update the apt repository and the Wine repository to the latest stable versions using the below commands.

1
2
3
$ sudo apt update

$ sudo apt install –install-recommends winehq-stable

Once everything is updated, proceed to install Lutris.

Installing Lutris on Ubuntu 20.04

The only dependency needed was Wine, and since we have successfully installed it, we can now go ahead and install Lutris. Installing Lutris is easy. You only need to add its repository and use the package manager to install it.

Start by adding the Lutris PPA using the command given.

1
$ sudo add-apt-repository ppa:lutris-team/lutris

Next, update the system.

1
$ sudo apt update

Finally, install Lutris.

1
$ sudo apt install lutris

Note that we are using Ubuntu as our host system to install Lutris. If you are running a different distro, visit the Lutris page to see the installation steps for your OS.

Open Lutris from applications once its installation completes and begin installing games.

Getting Started With Lutris

To use Lutris for downloading games, you need to create an account. If you have one already, log in to it once Lutris opens. On the other hand, create an account if you have none.

Once logged in, visit the official Lutris website and search for any game you wish to install.

Click on the Install button, which will open a new link to connect to Lutris.

Also, you will need to select the installation directory for the downloaded game, and once everything checks, click the Install button.

Follow the installation prompts and allows the process to go to completion. If any dependencies exist, click Continue to download them.

Once the game gets downloaded, you can open it by clicking the Launch button.

You will note a start screen for the game, and it’s time to get your hands dirty and have fun!

The procedure to download any game is the same. Thanks to Lutris, there is a variety of games that you can download.

Wrap Up

This guide covered how to install Wine which offers a platform for installing the Lutris application on Ubuntu. We’ve seen the different commands you can use and how to start downloading and installing games on Ubuntu. Hopefully, you now understand how you can install Lutris on Ubuntu. Also, check out the Lutris download page for installation steps for different Linux distributions.

Share Button

Source: linuxhint.com

Leave a Reply