Announcement

Collapse
No announcement yet.

How to Install Steam on Ubuntu 24.04

Collapse
X
Collapse
  •  

  • How to Install Steam on Ubuntu 24.04


    Even on Linux, you can enjoy gaming and interact with fellow gamers via Steam. As a Linux gamer, Steam is a handy game distribution platform that allows you to install different games, including purchased ones. Moreover, with Steam, you can connect with other games and play multiplayer titles.Steam is a cross-platform game distribution platform that offers games the option of purchasing and installing games on any device through a Steam account. This post gives different options for installing Steam on Ubuntu 24.04.

    Different Methods of Installing Steam on Ubuntu 24.04

    No matter the Ubuntu version that you use, there are three easy ways of installing Steam. For our guide, we are working on Ubuntu 24.04, and we’ve detailed the steps to follow for each method. Take a look!

    Method 1: Install Steam via Ubuntu Repository

    On your Ubuntu, Steam can be installed through the multiverse repository by following the steps below.

    Step 1: Add the Multiverse Repository

    The multiverse repository isn’t added on Ubuntu by default but executing the following command will add it.

    $ sudo add-apt-multiverse




    Step 2: Refresh the Package Index

    After adding the new repository, we must refresh the package index before we can install Steam.

    $ sudo apt update




    Step 3: Install Steam

    Lastly, install Steam from the repository by running the APT command below.

    $ sudo apt install steam




    Method 2: Install Steam as a Snap

    Steam is available as a snap package and you can install it by accessing the Ubuntu 24.04 App Center or by installing via command-line.

    To install it via GUI, use the below steps.

    Step 1: Search for Steam on App Center

    On your Ubuntu, open the App Center and search for “Steam” in the search box. Different results will open and the first one is what we want to install.



    Step 2: Install Steam

    On the search results page, click on Steam to open a window showing a summary of its information. Locate the green Install button and click on it.



    You will get prompted to enter your password before the installation can begin.



    Once you do so, a window showing the progress bar of the installation process will appear. Once the process completes, you will have Steam installed and ready for use on your Ubuntu 24.04.

    Alternatively, if you prefer using the command-line option to install Steam from App Center, you can do so using the snap command. Specify the package when running your command as shown below.

    $ sudo snap install steam




    On the output, the download and installation progress will be shown and once it completes, Steam will be available from your applications. You can open it and set it up for your gaming.

    Method 3: Download and Install the Steam Package

    Steam releases a .deb package for Linux and by downloading it, you can use it to install Steam. Unlike the previous methods, this method requires downloading the Steam package from its website using command line utilities such as wget or curl.

    Step 1: Install wget

    To download the Steam .deb package, we will use wget. You can skip this step if you already have it installed. Otherwise, execute the below command.

    $ sudo apt install wget




    Step 2: Download the Steam Package

    With wget installed, run the following command to download the Steam .deb package.

    $ wget https://steamcdn-a.akamaihd.net/client/installer/steam.deb




    Step 3: Install Steam

    To install the .deb package, we will use the dpkg command below.

    $ sudo dpkg -i steam.deb




    Once Steam completes installing, verify that you can access it by searching for it on your Ubuntu 24.04.



    With that, you now have Steam installed on Ubuntu.

    Conclusion

    Steam is handy tool for any gamer and its cross-platform nature means you can install it on Ubuntu 24.04. we’ve given three installation methods you can use depending on your preference. Once you’ve installed Steam, configure it and create your account to start utilizing it. Happy gaming!





    More...
      Posting comments is disabled.

    Categories

    Collapse

    Article Tags

    Collapse

    There are no tags yet.

    Latest Articles

    Collapse

    • What is Shebang: Bash Script Header on First Line?
      by Kasimba
      As Linux enthusiasts, we all come across bash scripting as an essential part of the Linux system. However, many Linux users don’t know why the first line of the bash script contains #!. So this combination of # and ! is called shebang or shebang.
      Although shebang looks like a bash script header, it initially instructs the system about interpreters to execute the script. This concept feels a bit complicated, but that’s not true, as this guide is all about the shebang: bash script header....
      Yesterday, 07:59 PM
    • Bash Script Loops Examples
      by Kasimba
      A loop in programming is a control structure that allows a specific code to be executed repeatedly until a condition is met. This process is repeated until no further action is required. Loop allows you to repeat the desired set of instructions numerous times to attain the desired outcome. These recursions can be useful for all tasks that require repetitive operations or when working with data collections.
      In this article, we will explore the meaning, types, and examples of loops, further...
      Yesterday, 07:59 PM
    • How to Install NVIDIA GPU Driver on Fedora 40+ KDE 6 Spin on Wayland
      by Kasimba
      Installing the NVIDIA GPU driver is the first thing you will want to do after installing Fedora 40 on your computer. Fedora 40 comes with different spins (desktop environments) and the latest software. Wayland display server (which will replace the X11/Xorg display server completely one day) is the default on some of the Fedora 40 spins. One of the most awaited Fedora 40 spin is the KDE spin. Fedora 40 KDE spin comes with the KDE Plasma 6 desktop environment which supports only the Wayland display...
      Yesterday, 07:59 PM
    • How to SSH Into Docker Container
      by Kasimba
      Administrators commonly use SSH to access and operate remote servers and devices, including a Docker container. When you connect to any device using SSH, you can run commands, access its files, and perform multiple other tasks. You can also use the Docker container as a hypervisor image that can run applications. For example, a software developer can create a Docker container image to package the software.

      Hence, a Docker container image package software with all the dependencies and...
      Yesterday, 01:12 PM
    • How to SSH Into EC2 Instance
      by Kasimba
      EC2 is a service provided by Amazon Web Services (AWS) that lets you rent virtual servers (known as instances). In these instances, you can leverage virtual machines to develop, test, deploy, and manage computer applications.

      SSH is an incredible utility for accessing and managing Amazon Elastic Compute Cloud (EC2) instances. With SSH, you can operate a remote device, access data, execute commands, troubleshoot issues, and more. Although you can easily SSH into an EC2 instance, many...
      Yesterday, 01:12 PM
    • How to Tunnel Web Traffic Through SSH for Secure Browsing
      by Kasimba
      Nowadays, an uncountable number of cyber attacks, scams, and data theft occur every single day. This makes it necessary for users to look for ways to secure their data. After all, it is better to take precautions than to experience a guilt trip. Fortunately, SSH offers tunneling, which channels internet traffic to your local system via a remote system.

      Meanwhile, this transmission encrypts incoming and outgoing network traffic on your local Linux device, ensuring the system’s security....
      Yesterday, 05:01 AM
    Working...
    X