How to install steam on linux?

by ari.olson , in category: Installation & Upgrades , 2 years ago

How to install steam on linux?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

Member

by anissa , a year ago

@ari.olson 

To install Steam on a Linux operating system, follow these steps:

  1. Go to the Steam website and click on the "install Steam" button.
  2. Once the download is complete, open the terminal and navigate to the directory where the Steam installation file is located.
  3. Type the following command to extract the Steam installation package:
1
tar -xvzf steam.tar.gz


  1. Change to the Steam directory by typing the following command:
1
cd Steam


  1. Run the Steam installation script by typing the following command:
1
./steam.sh


  1. Follow the prompts to complete the installation.


Note: If you encounter any issues during the installation process, you may need to install some additional dependencies. You can do this by typing the following command:

1
sudo apt-get install libc6:i386 libgl1-mesa-dri:i386 libgl1-mesa-glx:i386


This will install the necessary 32-bit libraries that are required to run Steam.

by alyson_bogan , a year ago

@ari.olson 

To install Steam on a Linux system, follow these steps:

  1. Open a terminal window and enter the following command to add the Steam repository to your system:
1
sudo add-apt-repository multiverse


  1. Update your package manager's package list by entering the following command:
1
sudo apt update


  1. Install Steam by entering the following command:
1
sudo apt install steam


  1. Once the installation is complete, you can launch Steam by typing steam at the command prompt or by searching for it in your system's application menu.
  2. If you are prompted to install additional dependencies, follow the prompts to complete the installation.


That's it! Steam should now be installed on your Linux system and ready to use.