Software & AppsOperating SystemLinux

How To Install Steam in Ubuntu: Troubleshooting “Not Found” Error

Ubuntu 19

Steam is a popular platform for digital distribution, multiplayer gaming, and social networking services. However, when installing Steam on Ubuntu, you might encounter the “Not Found” error. This guide will walk you through the process of installing Steam on Ubuntu and troubleshooting this error.

Quick Answer

To troubleshoot the "Not Found" error when installing Steam in Ubuntu, you can try updating the system and installing Steam using the command line, installing Steam as a Flatpak package, adding the Steam repository, or manually adding the source in the Software Center. If none of these solutions work, it may be necessary to check system requirements or contact Steam support.

Updating the System and Installing Steam Using Command Line

If the Ubuntu Software Center doesn’t display Steam, you can use the terminal to install it. Open the terminal and type the following command:

sudo apt-get update && sudo apt-get install steam

The sudo command gives you administrative privileges, apt-get update updates your package list, and apt-get install steam installs Steam. This solution applies to 32-bit Ubuntu versions.

Installing Steam as a Flatpak Package

Flatpak is a universal package system for software deployments, across various different Linux distributions. To install Steam as a flatpak package, open the terminal and run the following commands:

sudo add-apt-repository ppa:alexlarsson/flatpak # required in 16.04 only, not in later releases
sudo apt update 
sudo apt install flatpak
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub com.valvesoftware.Steam

The add-apt-repository command adds the Flatpak repository to your system. The apt update command updates your package list, and apt install flatpak installs Flatpak. The flatpak remote-add command adds the Flathub repository, and flatpak install installs Steam. You can launch Steam by clicking on its icon in the Dash or by running the command flatpak run com.valvesoftware.Steam.

Adding the Steam Repository

For 64-bit Ubuntu, you can add the Steam repository to your sources. Open the terminal and run the following commands:

sudo add-apt-repository "deb http://repo.steampowered.com/steam/ precise steam"
sudo apt-get update && sudo apt-get install steam-launcher

The add-apt-repository command adds the Steam repository to your system. The apt-get update command updates your package list, and apt-get install steam-launcher installs the Steam launcher.

Manually Adding the Source in the Software Center

If you cannot find Steam in the Software Center and cannot install the .deb file, you can manually add the source. Open the terminal and run the following commands:

echo "deb http://repo.steampowered.com/steam/ precise steam" | sudo tee /etc/apt/sources.list.d/steam.list
sudo apt-get update && sudo apt-get install steam

The echo command prints the string into the terminal. The | symbol is a pipe that takes the output of the command on the left and uses it as input for the command on the right. The tee command reads from the standard input and writes to standard output and files. In this case, it writes the output to the /etc/apt/sources.list.d/steam.list file. The apt-get update command updates your package list, and apt-get install steam installs Steam.

In conclusion, there are several ways to install Steam on Ubuntu. If you encounter the “Not Found” error, you can try updating the system, installing Steam as a Flatpak package, adding the Steam repository, or manually adding the source in the Software Center. If you still encounter issues, you may need to check your system requirements or contact Steam support.

Can I install Steam on any version of Ubuntu?

Yes, you can install Steam on any version of Ubuntu by following the installation methods mentioned in the guide. However, the commands and repositories used may vary slightly depending on the version of Ubuntu you are using.

What should I do if I encounter the “Not Found” error when installing Steam?

If you encounter the "Not Found" error, you can try updating your system using the sudo apt-get update command before installing Steam. This will ensure that you have the latest package information. If the error persists, you can try alternative installation methods mentioned in the guide, such as installing Steam as a Flatpak package or manually adding the Steam repository.

Is Steam available for 64-bit Ubuntu?

Yes, Steam is available for both 32-bit and 64-bit versions of Ubuntu. You can install it by following the methods mentioned in the guide. For 64-bit Ubuntu, you can add the Steam repository to your sources using the sudo add-apt-repository "deb http://repo.steampowered.com/steam/ precise steam" command.

How do I launch Steam after installing it?

After installing Steam, you can launch it by either clicking on its icon in the Dash or by running the command flatpak run com.valvesoftware.Steam in the terminal.

Leave a Comment

Your email address will not be published. Required fields are marked *