How to install Steam via .deb file?

QuestionsQuestions4 SkillsProYour First Linux LabDec, 04 2025
0928

To install Steam via a .deb file, follow these steps:

  1. Download the Steam .deb File:

    • Go to the official Steam website: Steam Download
    • Click on the "Install Steam" button to download the .deb file.
  2. Open Terminal: Press Ctrl + Alt + T to open a terminal window.

  3. Navigate to the Download Directory:

    • If you downloaded the file to your default Downloads folder, navigate there:
      cd ~/Downloads
      
  4. Install the .deb File:

    • Use the following command to install the downloaded .deb file:
      sudo dpkg -i steam_latest.deb
      
  5. Fix Dependencies (if needed):

    • If there are any dependency issues, run:
      sudo apt install -f
      
  6. Launch Steam:

    • After installation, you can launch Steam from your applications menu or by typing steam in the terminal.

By following these steps, you should be able to successfully install Steam using the .deb file.

0 Comments

no data
Be the first to share your comment!