← back

Remotely Accessing Your Steam Deck

Mar 21, 2025/Steam Deck/Steam Deck, SSH

There are two main methods to remotely access your Steam Deck: Steam Link and SSH. I recommend setting up both as they complement each other well - Steam Link for GUI, SSH for file transfers and command-line access.

Steam Link Setup

Install Steam Link for your platform:

Steam Link works out of the box with your Steam Deck - just make sure both devices are on the same network.

SSH Setup

SSH provides powerful command-line access and file transfer capabilities. Here's how to set it up:

  1. Enter Desktop Mode

    • Press the Steam button
    • Select Power
    • Choose "Switch to Desktop"
  2. Open Terminal

    • Press the bottom-left Start button
    • Go to System
    • Select Konsole
  3. Set User Password

   passwd

Choose a strong password.

  1. Enable SSH Service
   sudo systemctl enable sshd --now
  1. Connect to Your Steam Deck
   # Basic connection using hostname
   ssh deck@steamdeck
   
   # If hostname doesn't resolve, find IP address
   ip addr | grep inet
   
   # Connect using IP address
   ssh [email protected]  # Replace with your Steam Deck's IP

With both Steam Link and SSH set up, you'll have comprehensive remote access to your Steam Deck - Steam Link for gaming and desktop access, SSH for file management and system administration.