How to start a GUI software on a remote Linux PC via SSH

370,896

Solution 1

Yes. You just need to run export DISPLAY=:0 (or whatever the remote display is numbered as) in your ssh session and programs run will run on the remote display. A quick example:

oli@bert:~$ ssh tim
oli@tim:~$ export DISPLAY=:0
oli@tim:~$ firefox

Firefox is now running on tim's display.

However when you close your ssh session, most of the time the remote application will close. If you want to disconnect from ssh but leave the application running you need to launch it in a special way using something like screen (keeps the ssh session running in the background) or nohup, or another method. For more information on this there was recently another question on it.

You can shorten this all down into one command that will connect, export the display in-line and start the application in a way that won't close it after the ssh session dies:

ssh tim "DISPLAY=:0 nohup firefox"

Solution 2

Depends on where you want to see the application displayed

To display the application on your local PC

You first ssh to the remote computer with the additional -Y option and the run the application (e.g. firefox):

ssh -Y ...
firefox

If -Y doesn't work check you sshd config on the remote PC (see Denis Lukinykh's answer). Another similar option is -X. Google for the differences.

To display the application on an existing session at the remote PC

You need to login with user A at the remote PC and leave the session open. Afterwards you can ssh with the same user A and start the application (e.g. firefox) like this:

ssh A@...
DISPLAY=:0 nohup firefox

To display the application nowhere

You need to install & start xvfb. xvfb will create an invisible X session at DISPLAY 10. Then you start your application directing its output to that DISPLAY:

sudo apt install xvfb
sudo Xvfb :10 -ac -screen 0 1024x768x24 &
DISPLAY=:10 firefox

Solution 3

A modern solution that should work with Wayland sessions as well, set up all the environment variables used in modern sessions (XDG_RUNTIME_DIR, GTK_MODULES, XDG_DATA_DIRS, XAUTHORITY, SESSION_MANAGER etc.), forward the application's console output to the journal, and run it in the background without stealing your ssh shell or quitting when you close the ssh session:

ssh tim 
export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$UID/bus
systemd-run --user firefox
Share:
370,896

Related videos on Youtube

Raul Petrescu
Author by

Raul Petrescu

Updated on September 18, 2022

Comments

  • Raul Petrescu
    Raul Petrescu almost 2 years

    Sometimes I need to start XMBC media player or other GUI software on one of my remote PC (small Xubuntu PC used as a media center).

    Usually, I do this by starting an X11vnc server on the remote PC via SSH and then connecting with an Xvnc client to the Xfce desktop.

    Is there a way to start a GUI software on a remote Linux PC via SSH?

    Thanks!

    • Benjamin R
      Benjamin R over 6 years
      Can confirm that the approach in chosen answer works if the remote client is a Mac, too. Working successfully with macOS Sierra.
  • PyRulez
    PyRulez over 9 years
    It said No DISPLAY: this may not be what you want. when i tried it (I tried it from abiword by the way. `
  • Oli
    Oli over 9 years
    @PyRulez Note the "or whatever the remote display is numbered as" in the first line. If it's not the first graphical server it might be :1 or higher. Run w to see who's logged in and where. That will tell you the DISPLAY number too.
  • PyRulez
    PyRulez over 9 years
    I do have a display 0, and it is the only display and it is physically on and working.
  • Oli
    Oli over 8 years
    @akabhirav How do you mean?
  • Oli
    Oli over 8 years
    unset DISPLAY
  • Yannick Schneider
    Yannick Schneider about 8 years
    sometimes you want to do the opposite and run the X app locally just connect using -Y and then run your app ssh -Y <remoteip>
  • GTodorov
    GTodorov about 7 years
    I have only mouse and starting the keyboard remotely from the command line is reaaaally helpful! :) ssh user@localhost "DISPLAY=:0 nohup onboard"
  • Lucas Pottersky
    Lucas Pottersky over 6 years
    what is you want to start the whole Uniy GUI Session?
  • Benjamin R
    Benjamin R over 6 years
    Tried ssh-ing into macOS (Sierra) laptop from my linux box, works exactly as expected. Can get mpv to play a video file on my mac laptop AND it passes along the keyboard shortcuts as well if the term session is the active window. This is damned awesome, thank you!
  • Luca Cappelletti
    Luca Cappelletti about 5 years
    I just get No protocol specified Unable to init server: Could not connect: Connection refused Error: cannot open display: :0 when trying to use this.
  • Thomas Brooman
    Thomas Brooman over 4 years
    FYI, the value of $DISPLAY should be :0 . the : is not part of the export syntax.
  • alexpotato
    alexpotato about 4 years
    You could also use xvfb-run which wraps Xvfb and is useful if you want to run just one command.
  • Will S
    Will S about 2 years
    in my case the DBUS_SESSION_BUS_ADDRESS envar was already correct, so it's even easier.